/* ============================================
   NATURALBIKE — PRO DESIGN SYSTEM 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root {
  /* Brand */
  --green:          #1DB954;
  --green-dark:     #128a3a;
  --green-dim:      rgba(29,185,84,.12);
  --green-glow:     0 0 30px rgba(29,185,84,.35);

  /* Neutrals */
  --bg:             #0a0c0e;
  --surface:        #111416;
  --surface-2:      #181c1f;
  --surface-3:      #1f2428;
  --border:         rgba(255,255,255,.07);
  --border-accent:  rgba(29,185,84,.3);

  /* Text */
  --text-primary:   #f0f4f8;
  --text-secondary: #8b9ab0;
  --text-muted:     #4a5568;
  --white:          #ffffff;

  /* Accents (catégories) */
  --trial:   #f59e0b;
  --bmx:     #ef4444;
  --scoot:   #3b82f6;
  --gear:    #f97316;

  /* Spacing */
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.6);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.7);

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;

  /* Legacy aliases (backward compat) */
  --green-natural:       var(--green);
  --green-natural-light: var(--green);
  --green-natural-dark:  var(--green-dark);
  --grey-anthracite:     #1f2428;
  --grey-dark:           #8b9ab0;
  --grey-light:          #1f2428;
  --grey-white:          #111416;
  --error:   var(--bmx);
  --warning: var(--trial);
  --info:    var(--scoot);
  --spacing-xs: var(--sp-1);
  --spacing-sm: var(--sp-2);
  --spacing-md: var(--sp-3);
  --spacing-lg: var(--sp-4);
  --spacing-xl: var(--sp-5);
  --spacing-2xl: var(--sp-6);
  --spacing-3xl: var(--sp-7);
  --radius-sm: var(--r-sm);
  --radius-md: var(--r-md);
  --radius-lg: var(--r-lg);
  --shadow-md-var: var(--shadow-md);
  --shadow-lg-var: var(--shadow-lg);
  --font-primary: var(--font-body);
  --font-size-sm:   .875rem;
  --font-size-base: 1rem;
  --font-size-lg:   1.125rem;
  --font-size-xl:   1.25rem;
  --font-size-2xl:  1.5rem;
  --font-size-3xl:  1.875rem;
  --font-size-4xl:  2.25rem;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
img  { display:block; max-width:100%; }
a    { text-decoration:none; transition:color .2s; }
ul   { list-style:none; }

/* ── BASE ────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); }
h3 { font-size: 1.35rem; }

p { color: var(--text-secondary); margin-bottom: var(--sp-3); }
p:last-child { margin-bottom:0; }

/* ── CONTAINER ───────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* ── HEADER / NAV ────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,12,14,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex-wrap: wrap;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.5px;
  color: var(--text-primary);
}
.logo img { height: 38px; width: auto; }
.logo span { color: var(--green); }
.logo:hover { color: var(--text-primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: all .2s;
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,.06);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: "▾";
  margin-left: 4px;
  font-size: .7em;
  transition: transform .3s;
}
.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 240px;
  padding: var(--sp-1) 0;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 10px 18px;
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 500;
  transition: all .15s;
}
.dropdown-item:hover {
  color: var(--green);
  background: var(--green-dim);
}

/* Mobile nav pills */
.mobile-nav-container {
  display: none; /* caché en desktop */
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 0 8px;
  border-top: 1px solid var(--border);
}
.mobile-trial-btn, .mobile-bmx-btn, .mobile-scoot-btn, .mobile-gear-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: .3px;
}
.mobile-trial-btn { background: var(--trial); }
.mobile-bmx-btn   { background: var(--bmx); }
.mobile-scoot-btn { background: var(--scoot); }
.mobile-gear-btn  { background: var(--gear); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  background: none;
  border: none;
  outline: none;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  padding: var(--sp-7) 0 var(--sp-6);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,185,84,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { color: var(--white); margin-bottom: var(--sp-3); }
.hero p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--sp-4);
}

/* ── SECTION ─────────────────────────────── */
.section { padding: var(--sp-7) 0; }
.section-alt { background: var(--surface); }

.section-title { text-align: center; margin-bottom: var(--sp-6); }
.section-title h2 { margin-bottom: var(--sp-2); }
.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  max-width: 560px;
  margin: 0 auto;
}

/* ── GRID ────────────────────────────────── */
.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); }

/* ── CARD ────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg), var(--green-glow);
}
.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.card-content { padding: var(--sp-4); }
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.card-description {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}
.card-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: var(--sp-3);
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(29,185,84,.35);
}
.btn-primary:hover {
  background: #22d45f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,185,84,.5);
  color: var(--bg);
}
.btn-secondary {
  background: var(--surface-3);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--green);
  color: var(--green);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-small { padding: 8px 16px; font-size: .85rem; }

/* ── BADGE ───────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-green  { background: var(--green-dim); color: var(--green); border: 1px solid var(--border-accent); }
.badge-trial  { background: rgba(245,158,11,.12); color: var(--trial); }
.badge-bmx    { background: rgba(239,68,68,.12);  color: var(--bmx); }
.badge-scoot  { background: rgba(59,130,246,.12); color: var(--scoot); }
.badge-gear   { background: rgba(249,115,22,.12); color: var(--gear); }

/* ── FEATURE ─────────────────────────────── */
.feature {
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: border-color .3s;
}
.feature:hover { border-color: var(--border-accent); }
.feature-icon { font-size: 2.5rem; margin-bottom: var(--sp-2); }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--sp-1); color: var(--text-primary); }
.feature-description { font-size: .9rem; color: var(--text-secondary); }

/* ── PARTNERSHIP BANNER ───────────────────── */
.partnership-banner {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 10px var(--sp-4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.partner-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

/* ── INFO BOX ────────────────────────────── */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--r-md);
  padding: var(--sp-4);
}
.info-box h3 { color: var(--text-primary); margin-bottom: var(--sp-2); }

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-4);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(29,185,84,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: var(--sp-2); }
.cta-section p  { font-size: 1.1rem; margin-bottom: var(--sp-4); }

/* ── FORMS ───────────────────────────────── */
.form-group { margin-bottom: var(--sp-3); }
label { display:block; margin-bottom: 6px; font-weight: 600; font-size: .9rem; color: var(--text-primary); }
input, textarea, select {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-primary);
  transition: border-color .2s, box-shadow .2s;
}
input::placeholder { color: var(--text-muted); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,185,84,.15);
}
textarea { resize: vertical; min-height: 120px; }

/* ── ALERTS ──────────────────────────────── */
.alert { padding: var(--sp-3); border-radius: var(--r-md); margin-bottom: var(--sp-3); font-weight: 500; }
.alert-success { background: rgba(29,185,84,.12); color: #1DB954; border: 1px solid rgba(29,185,84,.3); }
.alert-error   { background: rgba(239,68,68,.12);  color: #ef4444; border: 1px solid rgba(239,68,68,.3); }

/* ── MODAL ───────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
}
.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.modal-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: var(--sp-4);
}
.modal-header h3 { color: var(--white); }
.modal-header p  { color: rgba(255,255,255,.8); margin:0; font-size:.9rem; }
.modal-body { padding: var(--sp-4); }
.modal-close {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: color .2s;
}
.modal-close:hover { color: var(--text-primary); }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--sp-7) 0 var(--sp-4);
  margin-top: 0;
  color: var(--text-secondary);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.footer-section h4 { color: var(--text-primary); margin-bottom: var(--sp-3); font-size: 1rem; }
.footer-link {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: .9rem;
  transition: color .2s;
}
.footer-link:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
}
.footer-brand { display: flex; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.footer-brand img { height: 32px; }
.footer-brand span { font-weight: 800; color: var(--text-primary); }

/* ── LIGHTBOX ────────────────────────────── */
#image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(12px);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity .3s;
}
#image-lightbox.active { display: flex; opacity: 1; }

/* ── COCKPIT ─────────────────────────────── */
.cockpit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}
.cockpit-button {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.cockpit-button:hover { border-color: var(--green); background: var(--green-dim); }
.cockpit-icon { font-size: 2rem; display:block; margin-bottom: var(--sp-1); }
.cockpit-label { font-weight: 600; font-size: .85rem; color: var(--text-primary); }

/* ── UTILITIES ───────────────────────────── */
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-muted  { color: var(--text-muted); }
.text-small  { font-size: .875rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--sp-2); }
.mt-2 { margin-top: var(--sp-3); }
.mt-3 { margin-top: var(--sp-4); }
.mt-4 { margin-top: var(--sp-5); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--sp-2); }
.mb-2 { margin-bottom: var(--sp-3); }
.mb-3 { margin-bottom: var(--sp-4); }
.mb-4 { margin-bottom: var(--sp-5); }

/* ── FILTER BUTTONS ──────────────────────── */
.filter-btn { transition: all .2s; }
.filter-btn.active {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 992px) {

  /* ─ nav : 2 lignes en mobile ─ */
  nav {
    height: auto;
    padding: 10px 0 0;
    justify-content: center;   /* centre le logo */
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .logo {
    flex: unset;
    order: 0;
  }

  /* Hamburger masqué totalement */
  .menu-toggle { display: none !important; }

  /* Ligne 2 : 4 pills centrés */
  .mobile-nav-container {
    display: flex;
    order: 2;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  /* nav-menu deskop → drawer mobile */
  .nav-menu {
    order: 99;
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px var(--sp-4) var(--sp-4);
    gap: 4px;
    transition: right .4s cubic-bezier(.16,1,.3,1);
    z-index: 1005;
    overflow-y: auto;
  }
  /* Sur mobile sans hamburger, on force le nav-menu visible mais discret */
  .nav-menu {
    position: static;
    right: auto;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    border: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    gap: 0;
    display: none;   /* caché — pas de hamburger = pas de menu */
  }

  .nav-link { padding: 10px 14px; font-size: .95rem; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--surface-3);
    border-radius: var(--r-md);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .3s ease;
  }
  .dropdown.active .dropdown-menu { max-height: 300px; padding: var(--sp-1) 0; }
}

@media (max-width: 768px) {
  .hero { padding: var(--sp-6) 0 var(--sp-5); }
  .section { padding: var(--sp-5) 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-section { padding: var(--sp-5) var(--sp-3); }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-3); }
  .footer-content { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
}

/* ── TOP CTA BAR ──────────────────────────── */
.payment-bar {
  background: linear-gradient(90deg, #0d3b1f, #14532d, #0d3b1f);
  border-bottom: 1px solid rgba(29,185,84,.35);
  padding: 10px var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.payment-bar-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.payment-bar-text {
  font-size: .88rem;
  font-weight: 600;
  color: #d1fae5;
  letter-spacing: .2px;
}
.payment-bar-text strong {
  color: #4ade80;
  font-weight: 800;
}
.payment-bar a {
  color: #86efac;
  text-decoration: underline;
  font-weight: 700;
}
@media (max-width: 480px) {
  .payment-bar { padding: 10px var(--sp-2); }
  .payment-bar-text { font-size: .8rem; }
}

/* ── STICKY WHATSAPP ──────────────────────── */
.wa-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #06290f !important;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none !important;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.42);
  color: #06290f !important;
}
.wa-sticky-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wa-sticky-label { white-space: nowrap; }
@media (max-width: 640px) {
  .wa-sticky { right: 12px; bottom: 12px; padding: 13px 14px; }
  .wa-sticky-label { display: none; }
}

.btn-whatsapp {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #06290f !important;
  font-weight: 800;
}
.btn-whatsapp:hover {
  filter: brightness(1.05);
  color: #06290f !important;
}

/* ── PAGE NAV OVERLAY ─────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1004;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }
