/* elbfischer design – Production CSS */
/* Tailwind-kompatible Utility-Klassen + Custom Styles */
/* Letzte Aktualisierung: Desktop/Mobile Fixes + Lightbox */

:root {
  --ink: #161616;
  --surface: #1F1F1F;
  --forest: #8b4539;
  --wood: #C9A06A;

  /* Gradient System – Tailwind-kompatibel */
  --tw-gradient-from: transparent;
  --tw-gradient-via: transparent;
  --tw-gradient-to: transparent;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: var(--ink);
  color: rgb(229, 231, 235);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   RESPONSIVE IMAGE DEFAULTS
   FIX #3: Logo-Verzerrung – img-Regel greift
   NICHT mehr auf Elemente mit expliziter Höhe
   ============================================ */
img {
  max-width: 100%;
  display: block;
}
/* Logo und Bilder mit fester Höhe behalten ihre Dimensionen */
img[class*="h-"] {
  height: auto; /* wird durch spezifische Klasse überschrieben */
}

/* Text & Typography */
.text-balance { text-wrap: balance; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.font-sans { font-family: 'Inter', sans-serif; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[4rem\] { font-size: 4rem; line-height: 1; }

/* Font Weight */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Text Transform & Tracking */
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.015em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }

/* Colors */
.text-white { color: rgb(255, 255, 255); }
.text-gray-100 { color: rgb(243, 244, 246); }
.text-gray-200 { color: rgb(229, 231, 235); }
.text-gray-300 { color: rgb(209, 213, 219); }
.text-gray-400 { color: rgb(156, 163, 175); }
.text-gray-500 { color: rgb(107, 114, 128); }
.text-wood { color: var(--wood); }
.text-forest { color: var(--forest); }
.text-\[#6f3629\] { color: #6f3629; }
.text-center { text-align: center; }

/* Display & Flex */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Sizing */
.h-4 { height: 1rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-\[320px\] { height: 320px; }
.h-full { height: 100%; }
.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-auto { width: auto; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-fit { width: fit-content; }
.w-full { width: 100%; }
.min-h-\[560px\] { min-height: 560px; }
.flex-1 { flex: 1 1 0%; }

/* Spacing – Padding */
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
/* FIX: Tailwind .5-Klassen mit korrektem Escape */
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-4 { padding-bottom: 1rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }

/* Spacing – Margin */
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Borders */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/25 { border-color: rgba(255, 255, 255, 0.25); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-wood\/40 { border-color: rgba(201, 160, 106, 0.4); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Background */
.bg-ink { background-color: var(--ink); }
.bg-surface { background-color: var(--surface); }
.bg-forest { background-color: var(--forest); }
.bg-wood\/10 { background-color: rgba(201, 160, 106, 0.1); }
.bg-wood\/15 { background-color: rgba(201, 160, 106, 0.15); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-ink\/90 { background-color: rgba(22, 22, 22, 0.9); }
.bg-\[#1F1F1F\] { background-color: #1F1F1F; }
.bg-\[#6f3629\] { background-color: #6f3629; }
.bg-\[#C9A06A\]\/15 { background-color: rgba(201, 160, 106, 0.15); }

/* ============================================
   GRADIENT SYSTEM – FIX #1 & #4
   Die Gradient-Stops werden jetzt korrekt aus
   from/via/to zusammengesetzt (wie Tailwind).
   ============================================ */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-ink {
  --tw-gradient-from: var(--ink);
  --tw-gradient-to: rgba(22, 22, 22, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-ink\/90 {
  --tw-gradient-from: rgba(22, 22, 22, 0.9);
  --tw-gradient-to: rgba(22, 22, 22, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

/* ============================================================
   HERO-OVERLAY OPACITY – FIX #4
   ============================================================
   Hier steuern Sie die Dunkelheit des Hero-Hintergrundbilds.
   
   Aktueller Wert: via-ink/75 = 75% Dunkelheit (25% Bild sichtbar)
   
   ANPASSUNG: Ändern Sie den rgba-Alpha-Wert unten:
   - 0.60 = 60% dunkel (40% Bild sichtbar) – heller
   - 0.70 = 70% dunkel (30% Bild sichtbar) – etwas heller
   - 0.75 = 75% dunkel (25% Bild sichtbar) – AKTUELL ✓
   - 0.80 = 80% dunkel (20% Bild sichtbar) – dunkler
   - 0.85 = 85% dunkel (15% Bild sichtbar) – sehr dunkel
   
   Suchen Sie nach "HERO-OPACITY" um diese Stelle schnell zu finden.
   ============================================================ */
/* HERO-OPACITY: via-Wert bestimmt die mittlere Abdunkelung */
.via-ink\/75 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(22, 22, 22, 0.5), var(--tw-gradient-to);
}
/* Originaler Wert war via-ink/85 (zu dunkel). Jetzt via-ink/75. */
.via-ink\/85 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(22, 22, 22, 0.85), var(--tw-gradient-to);
}

.to-ink\/30 {
  --tw-gradient-to: rgba(22, 22, 22, 0.3);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

/* CTA-Overlay (nicht Hero) */
.bg-ink\/85 { background-color: rgba(22, 22, 22, 0.85); }

/* Positioning */
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.z-50 { z-index: 50; }

/* Display Props */
/* WICHTIG: .hidden OHNE !important, damit lg:flex etc. überschreiben können */
.hidden { display: none; }
.block { display: block; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

/* Shadow & Effects */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.transition { transition-property: color, background-color, border-color, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.hover\:scale-105:hover { transform: scale(1.05); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* Interactive States */
.hover\:text-white:hover { color: white; }
.hover\:text-gray-300:hover { color: rgb(209, 213, 219); }
.hover\:text-wood:hover { color: var(--wood); }
.hover\:bg-\[#6f3629\]:hover { background-color: #6f3629; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }

/* Details / FAQ */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 300ms ease; }

/* Max-Width */
.max-w-xs { max-width: 20rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-\[1200px\] { max-width: 1200px; }
.max-w-\[900px\] { max-width: 900px; }

/* Leading/Line-height */
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-relaxed { line-height: 1.625; }

/* Space Between */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Group pseudo-class */
.group { position: relative; }

/* Links */
a { color: inherit; text-decoration: none; }
footer a:hover { color: white; }

/* Focus */
*:focus-visible { outline: 2px solid var(--wood); outline-offset: 2px; }

/* Additional utilities */
.text-\[15px\] { font-size: 15px; }
.text-\[#C9A06A\] { color: #C9A06A; }

/* Mobile menu */
#mobile-menu.hidden { display: none !important; }

/* ============================================
   FIX #3: Logo – feste Höhe + aspect-ratio
   ============================================ */
.logo-img {
  height: 2rem;        /* h-8 */
  width: auto;
  aspect-ratio: auto;  /* Seitenverhältnis aus dem Bild */
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================
   FIX #5: Galerie-Bilder – Klickbar-Styling
   FIX #6: Einheitliche Höhe für gemischte Formate
   ============================================ */
.gallery-item {
  cursor: pointer;
}
.gallery-item img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
/* Zoom-Icon Overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: rgba(22, 22, 22, 0.6);
  border-radius: 9999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://static.vecteezy.com/system/resources/previews/026/552/013/non_2x/magnifying-glass-with-clock-pixel-perfect-linear-icon-time-tracking-dial-inside-loupe-estimation-thin-line-illustration-contour-symbol-outline-drawing-editable-stroke-vector.jpg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0zM10 7v6m3-3H7'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 2;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ============================================
   LIGHTBOX STYLES – FIX #5
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 300ms ease;
}
.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10000;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 200ms ease;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 200ms ease;
  backdrop-filter: blur(8px);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   FIX #1: Alle md: und lg: Klassen vollständig
   ============================================ */

/* SM: ≥640px */
@media (min-width: 640px) {
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:w-auto { width: auto; }
  .sm\:inline-block { display: inline-block; }
}

/* MD: ≥768px */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:h-9 { height: 2.25rem; }
  .md\:h-20 { height: 5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-14 { margin-bottom: 3.5rem; }
  .md\:mt-7 { margin-top: 1.75rem; }
  .md\:mt-9 { margin-top: 2.25rem; }
  .md\:mt-10 { margin-top: 2.5rem; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:min-h-\[660px\] { min-height: 660px; }

  /* Logo auf md */
  .md\:h-9.logo-img { height: 2.25rem; }

  /* Lightbox Nav größer auf Tablet+ */
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
}

/* LG: ≥1024px */
@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-\[4rem\] { font-size: 4rem; }
  .lg\:leading-\[1\.1\] { line-height: 1.1; }

  /* Lightbox Nav noch größer auf Desktop */
  .lightbox-nav { width: 3.5rem; height: 3.5rem; font-size: 1.5rem; }
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-container {
  display: none; /* wird per JS auf flex gesetzt */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(15, 15, 15, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.cookie-content p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0 15px 15px;
}

.btn-accept {
  background: #5a3e2b; /* forest */
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-accept:hover { background: #6f3629; }

.btn-deny {
  background: transparent;
  color: #d1d5db;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-deny:hover { background: rgba(255,255,255,0.08); }

.cookie-link {
  font-size: 0.8125rem;
  color: #9ca3af;
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-link:hover { color: #fff; }

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-buttons {
    padding: 0;
    flex-shrink: 0;
  }
}

/* ============================================
   DATA-ATTRIBUTE (dev/debug)
   ============================================ */
[data-design-id] { }
