:root {
  --bg-main: #0a0a0a;       /* Tiefes, sattes Schwarz */
  --bg-sec: #141414;        /* Leicht helleres Schwarz für Abschnitte */
  --gold: #d4af37;          /* Edles Gold */
  --text-light: #f4f4f4;    /* Klares Weiß für gute Lesbarkeit */
  --text-muted: #888888;    /* Grau für Nebentexte */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ACCESSIBILITY: skip link + focus states */
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--gold);
  color: var(--bg-main);
  padding: 0.6rem 1.2rem;
  z-index: 1000;
  text-decoration: none;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 1rem;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* NAVIGATION - Ultra Minimalistisch */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* LOGO STYLING - MIT NEUEM TOUCH */
.brand {
  display: flex;
  align-items: center;
}

.brand-logo-text {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  position: relative;
  transition: transform 0.3s ease;
}

.brand-logo-text:hover {
  transform: translateY(-1px);
}

.brand-main {
  font-size: 1.45rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #f4f4f4;
  letter-spacing: 2.5px;
  transition: color 0.3s ease;
}

.brand-accent {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #ffe082 0%, #d4af37 50%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  letter-spacing: 1px;
}

.brand-logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.4s ease;
}

.brand-logo-text:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-outline {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-main);
}

.btn-solid {
  border: 1px solid var(--gold);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  color: var(--bg-main);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.text-link:hover {
  opacity: 0.7;
}

/* NAV TOGGLE (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* NAV DRAWER (Mobile off-canvas menu) */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
}

.nav-drawer-overlay[hidden] {
  display: none;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-sec);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 200;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.nav-drawer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

.nav-drawer-links a:hover {
  color: var(--gold);
}

.nav-drawer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.nav-drawer-info .btn-solid,
.nav-drawer-info .btn-outline {
  text-align: center;
}

.nav-drawer-hours {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* HERO SEKTION - Groß und Imposant */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);

  background-image:
    linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95)), /* Starkes Overlay */
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1600&q=80'); /* Stimmungsvolles Salon-Bild */
}

.hero span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-logo {
  width: min(240px, 60vw);
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero .text-link {
  margin-top: 1rem;
}

/* BARBER POLE (dekorative Säulen im Hero) */
.barber-pole {
  width: 15px;
  height: 100px;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  background: repeating-linear-gradient(
    45deg,
    #ff4b2b,
    #ff4b2b 10px,
    #fff 10px,
    #fff 20px,
    #2b4bff 20px,
    #2b4bff 30px,
    #fff 30px,
    #fff 40px
  );
  background-size: 100% 200%;
  animation: barberPoleMove 2s linear infinite;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes barberPoleMove {
  from { background-position: 0 0; }
  to { background-position: 0 100%; }
}

/* STATUS BADGE (Geöffnet/Geschlossen) */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.status-badge.is-open {
  border-color: rgba(70, 200, 120, 0.4);
  color: #7ee2a0;
}

.status-badge.is-open::before {
  background: #46c878;
  box-shadow: 0 0 6px rgba(70, 200, 120, 0.8);
}

.status-badge.is-closed {
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
}

.status-badge.is-closed::before {
  background: var(--gold);
}

/* QUICK INFO BAR (Adresse / Öffnungszeiten / Telefon) */
.quick-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.quick-info-item {
  background: var(--bg-sec);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.3s ease;
}

a.quick-info-item:hover {
  background: #1c1c1c;
}

.quick-info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.quick-info-item strong {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.quick-info-item em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ALLGEMEINE ABSCHNITTE */
section {
  padding: 8rem 5%;
}

.section-title {
  font-size: 3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 4rem;
  text-align: center;
}

/* INTRO TEXT */
.intro {
  height: 50vh; /* Festgelegte Höhe für den Stadt-Abriss-Effekt */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-sec);

  /* DORNSTADT STADT-ABRISS GRAFIK */
  /* Wir verwenden eine dunkle Grafik und ein Overlay für das Ambiente */
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.95)), /* Dunkles Overlay */
    url('../img/dornstadt-abriss.webp');

  background-position: center; /* Wichtig für den Abriss-Effekt */
  background-size: cover; /* Damit die Grafik nicht verzerrt wird */
  background-repeat: no-repeat;
}

.intro p {
  position: relative;
  z-index: 2; /* Text über der Grafik */
  max-width: 800px; margin: 0 auto;
  font-size: 1.4rem; font-weight: 300;
  color: var(--text-light); /* Textfarbe auf hell wechseln für Kontrast */
  padding: 0 20px;
}

.intro p strong {
  color: var(--text-light);
  font-weight: 400;
}

/* LEISTUNGEN / PREISE (Clean Grid mit Dornstadt-Abriss-Hintergrund) */
#leistungen {
  position: relative;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.94)),
    url('../img/dornstadt-abriss.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.25rem;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  border: 1px solid rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.services-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
}

.service-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 1.1rem;
}

/* IMPRESSIONEN (Große Bilder) */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-box {
  height: 500px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.6s ease;
}

.image-box:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* FOOTER / KONTAKT */
footer {
  background-color: #050505;
  padding: 5rem 5%;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.footer-grid h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-grid p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.9rem;
}

.footer-grid address {
  font-style: normal;
}

.footer-grid a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-grid a:hover {
  color: var(--gold);
}

.social-link {
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4rem;
}

/* --- ABSCHNITT: GOOGLE MAPS --- */
.map-section {
  padding: 0; /* Keine Polsterung für die Karte */
  height: 400px;
  width: 100%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.map-section iframe {
  width: 60%;
  height: 100%;
  border: none;
  display: block;
  margin: 0 auto;
}

.map-directions-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--bg-main);
  color: var(--gold);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
}

/* STICKY MOBILE CTA BAR */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem calc(0.75rem + env(safe-area-inset-left)) calc(0.75rem + env(safe-area-inset-bottom)) calc(0.75rem + env(safe-area-inset-right));
  gap: 0.75rem;
}

.sticky-cta-btn {
  flex: 1;
  text-align: center;
  background: var(--gold);
  color: var(--bg-main);
  text-decoration: none;
  padding: 0.9rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sticky-cta-btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .services-container { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .nav-links,
  nav .nav-call { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 4rem 6%; }
  .section-title { font-size: 2rem; margin-bottom: 2.5rem; }

  .intro { height: auto; padding: 3.5rem 6%; }

  .quick-info-bar { grid-template-columns: 1fr; }

  .map-section { height: 320px; }
  .map-section iframe { width: 100%; }
  .map-directions-link { position: static; display: block; text-align: center; margin: 0 auto 0.5rem auto; width: fit-content; }

  .sticky-cta { display: flex; }
  footer { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; letter-spacing: 2px; }
  .hero span { font-size: 1.1rem; }
  .barber-pole { display: none; }
}

/* Scissor Hover Animation */
.btn-scissor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.scissor-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-outline:hover .scissor-icon {
  /* The scissor "snips" by rotating back and forth quickly */
  animation: snip 0.4s ease-in-out infinite alternate;
}

@keyframes snip {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(-30deg) scale(1.1); }
}

/* CUSTOMER APPOINTMENT NOTICE & PRICE LIST EXTENSIONS */
.hero-subtext {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.customer-notice {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 1.25rem 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-subheader {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin: 1rem 0 1.25rem 0;
  font-weight: 600;
}

.service-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

.service-item--highlight {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

/* MODALS (Impressum & Datenschutz) */
.legal-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.legal-link:hover {
  opacity: 0.8;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-sec);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  padding: 1.5rem 2rem 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.75rem 0;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem 0;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body ul {
  margin: 0 0 1rem 1.5rem;
}

.modal-body a {
  color: var(--gold);
  text-decoration: underline;
}

/* MAP PLACEHOLDER (Consent mode) */
.map-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.95);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.map-placeholder[hidden] {
  display: none;
}

.map-placeholder-content {
  max-width: 450px;
}

.map-placeholder-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.98);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(10px);
  z-index: 900;
  padding: 1.75rem 5%;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-content {
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

