/* Simple cookie notice bar (VECTOR-style bottom bar, essential-only) */
.sc-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  color: var(--sc-ink, #1a1a1a);
  background: var(--sc-paper, #fff);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.22);
}

.sc-cookie-bar[hidden] {
  display: none !important;
}

.sc-cookie-bar__inner {
  max-width: var(--sc-max, 960px);
  margin: 0 auto;
  padding: 1.1rem var(--sc-pad, 1.25rem) 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.sc-cookie-bar__text {
  flex: 1 1 18rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.sc-cookie-bar__text a {
  color: var(--sc-burgundy, #b50c40);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sc-cookie-bar__text a:hover,
.sc-cookie-bar__text a:focus-visible {
  color: var(--sc-burgundy-dark, #8f0a33);
}

.sc-cookie-bar__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sc-cookie-bar__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0.7rem 1.35rem;
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  background: var(--sc-burgundy, #b50c40);
  transition: background 0.15s ease, filter 0.15s ease;
}

.sc-cookie-bar__btn:hover,
.sc-cookie-bar__btn:focus-visible {
  background: var(--sc-burgundy-dark, #8f0a33);
  outline: none;
}

.sc-cookie-bar__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(181, 12, 64, 0.35);
}

@media (max-width: 640px) {
  .sc-cookie-bar__inner {
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .sc-cookie-bar__actions {
    width: 100%;
  }

  .sc-cookie-bar__btn {
    width: 100%;
    text-align: center;
  }
}
