.consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 500;
  padding: 0.85rem clamp(1rem, 3vw, 1.5rem) calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(16, 25, 43, 0.97);
  color: rgba(247, 242, 232, 0.92);
  border-top: 1px solid rgba(247, 242, 232, 0.14);
  box-shadow: 0 -8px 28px rgba(16, 24, 40, 0.22);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.consent-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.consent-banner__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 760px) {
  .consent-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }
}
.consent-banner__text {
  margin: 0;
  font-family: "Cormorant Garamond", Garamond, Palatino, Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.5;
}
.consent-banner__text a {
  color: #f7f2e8;
  border-bottom: 1px solid rgba(247, 242, 232, 0.45);
}
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-start;
}
@media (min-width: 760px) {
  .consent-banner__actions { justify-content: flex-end; }
}
.consent-banner__btn {
  font-family: "Playfair Display", "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.5rem 0.95rem;
  border-radius: 2px;
  border: 1px solid rgba(247, 242, 232, 0.35);
  background: transparent;
  color: #f7f2e8;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.consent-banner__btn:hover,
.consent-banner__btn:focus-visible {
  outline: none;
  border-color: #f7f2e8;
  background: rgba(247, 242, 232, 0.08);
}
.consent-banner__btn--primary {
  background: #a84830;
  border-color: #a84830;
  color: #f7f2e8;
  font-weight: 600;
}
.consent-banner__btn--primary:hover,
.consent-banner__btn--primary:focus-visible {
  background: #8f3a26;
  border-color: #8f3a26;
}
.consent-settings-link {
  position: fixed;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 120;
  font-family: "Cormorant Garamond", Garamond, Palatino, Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(16, 24, 40, 0.55);
  background: rgba(247, 242, 232, 0.92);
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 2px;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
}
.consent-settings-link:hover,
.consent-settings-link:focus-visible {
  color: #a84830;
  outline: none;
}
body.consent-banner-open .consent-settings-link {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
