/* ==========================================================================
   tourist-guide-venice.com - Design System & Modern Responsive Stylesheet
   GEO: France (FR)
   Theme: Bordeaux Velvet & Venetian Champagne Gold (Unique French Luxury Aesthetic)
   Button Styles & Card Links: Exact match to best-everes.com
   Mobile Optimization: First 2 cards visible on launch without scrolling
   ========================================================================== */

:root {
  /* Unique Color Palette (Bordeaux & Venetian Gold) */
  --bg-primary: #140713;
  --bg-secondary: #1e0a1d;
  --bg-card: #270e25;
  --bg-card-hover: #331230;
  --bg-glass: rgba(39, 14, 37, 0.75);
  
  --gold-primary: #e4ba65;
  --gold-light: #f6df9e;
  --gold-dark: #b8882a;
  --gold-gradient: linear-gradient(135deg, #f6df9e 0%, #e4ba65 50%, #b8882a 100%);
  --gold-btn-gradient: linear-gradient(180deg, #ffec3c 0%, #e39800 100%);
  
  --accent-ruby: #a81c3b;
  --accent-ruby-dark: #7a122a;
  
  --text-main: #fbf8f5;
  --text-muted: #cbbac9;
  --text-dim: #998397;
  
  --border-gold: rgba(228, 186, 101, 0.3);
  --border-gold-hover: rgba(228, 186, 101, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(228, 186, 101, 0.25);
  
  --font-serif: 'Cinzel', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
}

/* Reset & Global Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, #360e32 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, #2a0b27 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, #1e071c 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  background: var(--gold-primary);
  color: #140713;
  padding: 10px 18px;
  font-weight: 700;
  z-index: 10000;
  border-radius: var(--border-radius-sm);
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

/* ==========================================================================
   1. Regulatory 18+ Top Bar (GEO FR Compliance)
   ========================================================================== */
.top-notice-bar {
  background: #0f040e;
  border-bottom: 1px solid rgba(228, 186, 101, 0.2);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 100;
}

.top-notice-bar img {
  flex-shrink: 0;
}

.top-notice-bar p {
  margin: 0;
  line-height: 1.3;
}

.top-notice-bar strong {
  color: var(--gold-primary);
}

/* ==========================================================================
   2. Header Navigation
   ========================================================================== */
header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(20, 7, 19, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
  background: rgba(228, 186, 101, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--gold-primary);
}

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-gold);
  z-index: 9999;
  padding: 60px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  right: 0;
}

.close-mobile-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-nav-overlay .nav-link {
  font-size: 1.1rem;
  padding: 12px;
}

/* ==========================================================================
   3. Hero Section (French Luxury Venetian Theme with Generated BG)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 50px 24px 36px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 7, 19, 0.78) 0%, rgba(39, 14, 37, 0.88) 100%), url('../images/french-hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-gold);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.french-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 28, 59, 0.35);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 14px;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 7, 19, 0.6);
  border: 1px solid rgba(228, 186, 101, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--gold-light);
  backdrop-filter: blur(6px);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

/* ==========================================================================
   4. Main Content & Ranking Cards Grid
   ========================================================================== */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exact-casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 220px 1fr 220px;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.exact-casino-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(228, 186, 101, 0.2);
  background: var(--bg-card-hover);
}

/* Ribbon Badge */
.card-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #a81c3b 0%, #d49516 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-bottom-right-radius: var(--border-radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

/* Card Number Badge */
.card-number-badge {
  width: 54px;
  height: 54px;
  background: rgba(228, 186, 101, 0.1);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.card-number-badge p {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin: 0;
}

/* Brand Box */
.card-brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand-icon-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.card-score-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(228, 186, 101, 0.2);
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

.score-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin: 0;
}

.score-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Body Text */
.card-body-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-description {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.5;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: rgba(228, 186, 101, 0.08);
  border: 1px solid rgba(228, 186, 101, 0.2);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ==========================================================================
   Action Box & Button Styling (EXACT Match to best-everes.com)
   ========================================================================== */
.card-action-box {
  width: 100%;
  margin-top: auto;
}

.btn-acceder {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-acceder p {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffec3c 0%, #e39800 100%);
  box-shadow: 3px 3px 0 0 #ffffff;
  text-wrap: nowrap;
  color: #0b0512;
  font-family: var(--font-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.38px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hidden Link Style (EXACT match to best-everes.com) */
.shdewenrhwer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.btn-acceder:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ==========================================================================
   5. Partner Badges Section (GEO FR)
   ========================================================================== */
.partner-badges-section {
  background: rgba(15, 4, 14, 0.8);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 30px 24px;
  margin: 40px 0;
}

.partner-badges-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.badge-item:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

.badge-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

/* Editorial Content Box */
.greek-features-section {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  margin-bottom: 50px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(228, 186, 101, 0.15);
  border-radius: var(--border-radius-md);
  padding: 24px;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: var(--gold-primary);
}

.feature-card h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ==========================================================================
   6. Footer & Transparency Section
   ========================================================================== */
.footer {
  background: #0d030c;
  border-top: 1px solid var(--border-gold);
  padding: 50px 24px 30px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-warning-line {
  background: rgba(168, 28, 59, 0.2);
  border: 1px solid rgba(168, 28, 59, 0.4);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  text-align: center;
  color: #ffb8c6;
  font-size: 0.92rem;
  margin-bottom: 36px;
  line-height: 1.5;
}

.footer-warning-line strong {
  color: var(--gold-primary);
}

.footer-transparency-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transparency-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.transparency-item h4 {
  color: var(--text-main);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.transparency-item p {
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer-help-links a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-help-links a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-divider {
  height: 1px;
  background: rgba(228, 186, 101, 0.2);
  margin: 36px 0 24px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copyright-text {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   7. Modals & Banners (Age Verification & Cookie Banner)
   ========================================================================== */
.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 3, 10, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.age-modal-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.age-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--border-radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.age-modal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.age-modal-body p {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 20px;
}

.age-modal-help-links {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.age-modal-help-links a {
  color: var(--gold-primary);
  text-decoration: none;
}

.age-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.age-btn {
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.age-btn-accept {
  background: var(--gold-btn-gradient);
  color: #140713;
}

.age-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.underage-screen {
  display: none;
}

.underage-screen.active {
  display: block;
}

/* Cookie Banner - Fixed non-overlapping structure */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-title {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--gold-primary);
  font-size: 0.98rem;
  line-height: 1.3;
  margin: 0 0 2px 0;
  padding: 0;
  display: block;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4px;
}

.cookie-btn {
  padding: 7px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.cookie-btn-accept {
  background: var(--gold-primary);
  color: #140713;
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   8. Media Queries & Mobile Adaptation (Minimum 2 cards visible on launch)
   ========================================================================== */
@media (max-width: 992px) {
  .exact-casino-card {
    grid-template-columns: 60px 180px 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .card-action-box {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  .navbar {
    padding: 6px 14px;
  }
  
  .brand-logo-img {
    height: 32px;
  }

  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    padding: 4px 6px;
  }

  /* Compact hero on mobile so Card 1 & Card 2 fit in the initial screen */
  .hero-section {
    padding: 14px 12px 10px;
  }
  
  .french-quality-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  
  .hero-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .trust-badges {
    gap: 6px;
  }

  .trust-item {
    font-size: 0.7rem;
    padding: 2px 8px;
  }

  .trust-item svg {
    width: 12px;
    height: 12px;
  }

  /* Compact main container & cards layout */
  .main-content {
    padding: 10px 10px 30px;
  }

  .cards-container {
    gap: 10px;
  }

  .exact-casino-card {
    grid-template-columns: 36px 140px 1fr;
    grid-template-rows: auto auto;
    padding: 10px 10px 8px;
    gap: 8px;
    border-radius: 12px;
  }

  .exact-casino-card.has-ribbon,
  .exact-casino-card:has(.card-ribbon) {
    padding-top: 28px;
  }

  .card-ribbon {
    font-size: 0.6rem;
    padding: 2px 8px;
  }

  .card-number-badge {
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .card-number-badge p {
    font-size: 1.1rem;
  }

  .card-brand-box {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .brand-icon-box img {
    width: 44px;
    height: 44px;
  }

  .card-score-box {
    padding: 2px 6px;
  }

  .score-text {
    font-size: 0.95rem;
  }

  .card-body-text {
    grid-column: 1 / -1;
    gap: 4px;
  }

  .card-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .card-tags {
    gap: 4px;
  }

  .tag-item {
    font-size: 0.7rem;
    padding: 2px 6px;
  }

  .card-action-box {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .btn-acceder p {
    font-size: 14px;
    padding: 8px 0;
    border-radius: 8px;
    box-shadow: 2px 2px 0 0 #ffffff;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Compact cookie banner on mobile */
  .cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px 14px;
    gap: 8px;
  }
  
  .cookie-title {
    font-size: 0.9rem;
  }

  .cookie-text {
    font-size: 0.8rem;
  }

  .cookie-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
