/* ============================================================
   HELADOS FRUTIFRESCA — styles.css
   Mobile-first · fiel al diseño de la captura
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --blue-dark : #0d47a1;
  --blue      : #1565c0;
  --blue-mid  : #1976d2;
  --blue-hero : #0d5ab5;   /* inicio del gradiente hero */
  --blue-light: #b3d4f5;
  --blue-pale : #e8f4fd;
  --white     : #ffffff;
  --gray-50   : #f5f5f5;
  --gray-100  : #eeeeee;
  --gray-200  : #e0e0e0;
  --gray-500  : #757575;
  --gray-800  : #212121;
  --navy      : #0d1b2e;
  --navy-line : #1e3a5f;
  --navy-muted: rgba(255,255,255,.7);
  --font      : 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h     : 60px;
  --radius    : 10px;
  --tr        : .28s ease;
  --shadow-card: 0 1px 6px rgba(0,0,0,.08);
}

/* ── BASE ── */
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.br-desktop { display: none; }

/* ── FOCUS ── */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}


/* ══════════════════════════════════════════════
   BOTONES
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
}

.btn-white         { background: var(--white);       color: var(--blue);      border-color: var(--white); }
.btn-white:hover   { background: var(--blue-pale);   color: var(--blue-dark); border-color: var(--blue-pale); }

.btn-outline-white         { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover   { background: var(--white); color: var(--blue); }

.cta-btn       { background: var(--blue);      color: var(--white); border-color: var(--blue); padding: 13px 28px; }
.cta-btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); }


/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--tr);
  gap: 12px;
}
.nav.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,.1); }

/* Logo */
.nav-logo-link { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo-img  { height: 36px; width: auto; object-fit: contain; }

/* Nav menu — hidden on mobile */
#navMenu { display: none; }

/* Links */
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-link  {
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--blue);
  position: relative; padding-bottom: 2px; transition: opacity var(--tr);
}
.nav-link:hover { opacity: .7; }

/* Right side (social + hamburger) */
.nav-right  { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-social { display: flex; align-items: center; gap: 10px; }

.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; color: var(--blue);
  transition: opacity var(--tr);
}
.nav-social-icon:hover { opacity: .65; }
.nav-social-icon svg   { width: 18px; height: 18px; }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--blue); border-radius: 2px; transition: all var(--tr);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */

/* ── Contenedor principal ── */
.hero {
  position: relative;
  background: linear-gradient(125deg, #0a4fa8 0%, #1469cc 40%, #1e88e5 75%, #5db8f5 100%);
  overflow: hidden;
  min-height: 320px;
}

/* ── Olas decorativas de fondo ── */
.hero-waves-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-waves-bg svg {
  width: 100%;
  height: 100%;
}

/* ── Layout inner: flex row en desktop, column en mobile ── */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 36px 24px 80px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

/* ── IZQUIERDA: texto ── */
.hero-left {
  width: 100%;
  z-index: 2;
}

.hero-title {
  font-size: clamp(30px, 7.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
  margin-bottom: 0;
}

/* La última línea "MOMENTO" es aún más bold en la imagen */
.hero-title-bold {
  font-weight: 900;
  display: block;
  font-size: 1.12em;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  margin-top: 12px;
  opacity: .93;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

/* Botones hero — estilo exacto imagen: blancos, esquinas muy redondeadas, texto azul */
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: .5px;
}
.btn-white:hover { background: #e3f0ff; color: var(--blue-dark); border-color: #e3f0ff; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: .5px;
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

/* Badge "Hecho en North Hollywood" con estrella */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--white);
}
.hero-badge svg       { color: var(--white); flex-shrink: 0; }
.hero-badge-small     { font-size: 9px;  font-weight: 700; text-transform: uppercase; letter-spacing: .6px; opacity: .9; }
.hero-badge-big       { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .4px; }

/* ── DERECHA: imagen paletas + badge 40 años ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  width: 100%;
  /* sin margen superior en mobile: imagen va pegada al texto */
  margin-top: -8px;
}

/* Imagen de paletas — sin fondo, recortada sobre el splash azul */
.hero-product-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  display: block;
  /* sombra de drop para que "flote" sobre el azul */
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.22));
  position: relative;
  z-index: 2;
}

/* ─── Badge circular "Más de 40 Años" ─── */
.hero-years {
  position: absolute;
  /* En mobile: esquina inferior derecha de .hero-right */
  right: 4px;
  bottom: 28px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
}

/* Círculo blanco con borde azul oscuro */
.hero-years-inner {
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 3.5px solid #1a4fa0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px 4px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.8);
}

/* Estrellas pequeñas en las esquinas superiores */
.hero-years-star {
  position: absolute;
  font-size: 9px;
  color: #1a4fa0;
  top: 12px;
}
.hero-years-star--tl { left: 14px; }
.hero-years-star--tr { right: 14px; }

.hero-years-top {
  font-size: 8.5px;
  font-weight: 800;
  color: #1a4fa0;
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1;
  margin-top: 2px;
}

.hero-years-num-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.hero-years-num {
  font-size: 44px;
  font-weight: 900;
  color: #1a4fa0;
  line-height: .92;
  letter-spacing: -2px;
}

.hero-years-sup {
  font-size: 14px;
  font-weight: 900;
  color: #1a4fa0;
  margin-top: 6px;
}

.hero-years-label {
  font-size: 13px;
  font-weight: 900;
  color: #1a4fa0;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1;
  margin-top: 1px;
}

/* Ribbon azul "Refrescando generaciones" */
.hero-years-ribbon {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: var(--white);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

/* ── Ola de corte inferior del hero ── */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 3;
  display: block;
}


/* ══════════════════════════════════════════════
   PRODUCTOS
══════════════════════════════════════════════ */
.productos {
  padding: 56px 0 64px;
  background: var(--gray-50);
}

.sec-header { text-align: center; margin-bottom: 36px; }

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.title-icon      { width: 22px; height: auto; }
.title-icon-flip { transform: scaleX(-1); }

.sec-sub { font-size: 13px; color: var(--gray-500); margin-top: 6px; }

/* Grid mobile: 2 columnas */
.prod-grid { display: grid; gap: 12px; }
.prod-grid--5 { grid-template-columns: repeat(2, 1fr); }
.prod-grid--4 { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }

/* Tarjeta */
.prod-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--tr), box-shadow var(--tr);
}
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.11); }

.prod-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
  text-align: center;
}

.prod-img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  flex: 1;
}

.prod-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

.prod-desc {
  font-size: 10.5px;
  color: var(--gray-500);
  line-height: 1.45;
  text-align: center;
}

.prod-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }


/* ══════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════ */
.stats-band {
  background: var(--blue);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.stats-badge-img { width: 140px; height: auto; }

.stats-text {
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.3;
}

.stats-divider { width: 48px; height: 2px; background: rgba(255,255,255,.35); border-radius: 2px; }

.stats-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  width: 100%;
  max-width: 320px;
}

.stats-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px; color: var(--white);
}
.stats-item-icon  { width: 30px; height: auto; }
.stats-item-label { font-size: 11px; font-weight: 700; text-transform: uppercase; text-align: center; line-height: 1.3; }


/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #dceefb 100%);
  padding: 44px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.cta-store-icon { width: 90px; height: auto; }

.cta-title {
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.6;
}

.cta-fruits { width: 160px; height: auto; }


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--blue);
  padding: 48px 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.footer-logo    { height: 38px; width: auto; object-fit: contain; margin: 0 auto 12px; }
.footer-tagline { font-size: 12px; color: var(--navy-muted); line-height: 1.65; max-width: 240px; margin: 0 auto; }

.footer-col-title {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 14px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: var(--navy-muted); transition: color var(--tr); }
.footer-links a:hover { color: var(--white); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-contact li {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 7px; font-size: 12px; color: var(--navy-muted); line-height: 1.4;
}
.footer-contact svg { flex-shrink: 0; margin-top: 1px; color: var(--navy-muted); }

.footer-social { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.footer-social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: opacity var(--tr);
}
.footer-social-btn:hover { opacity: .8; }

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--navy-line);
  padding: 18px 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.55);
}


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≥ 600px
══════════════════════════════════════════════ */
@media (min-width: 600px) {
  /* Productos: 3 columnas */
  .prod-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .prod-grid--4 { grid-template-columns: repeat(2, 1fr); }

  .prod-name { font-size: 12px; }
  .prod-img  { max-height: 150px; }

  /* Stats: 4 en fila */
  .stats-items {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  /* CTA: alinear botón */
  .cta-banner { padding: 48px 32px; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — DESKTOP  ≥ 900px
══════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --nav-h: 64px; }

  /* --- NAV desktop --- */
  .nav { padding: 0 32px; }
  .nav-toggle { display: none; }       /* ocultar hamburger */
  #navMenu { display: block; }         /* mostrar menú */

  /* --- HERO desktop: lado a lado --- */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 52px 48px 96px;
    gap: 0;
  }

  .hero-left {
    flex: 0 0 auto;
    width: 44%;
    max-width: 500px;
  }
  .hero-btns  { justify-content: flex-start; }
  .hero-badge { justify-content: flex-start; }
  .hero-sub   { max-width: 380px; margin-left: 0; margin-right: 0; }

  .hero-title       { font-size: clamp(34px, 3.8vw, 52px); }
  .hero-title-bold  { font-size: 1.15em; }

  .hero-right {
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
    padding-right: 60px;  /* espacio para el badge 40 años */
    align-items: center;
  }

  .hero-product-img {
    max-width: 620px;
  }

  .hero-years {
    width: 190px;
    height: 190px;
    right: -16px;
    bottom: 24px;
  }
  .hero-years-num   { font-size: 80px; }
  .hero-years-label { font-size: 22px; }
  .hero-years-top   { font-size: 13px; }
  .hero-years-ribbon { font-size: 9px; padding: 6px 16px; bottom: -14px; }

  /* --- PRODUCTOS desktop --- */
  .productos { padding: 72px 0 80px; }
  .sec-eyebrow { font-size: 26px; }

  .prod-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .prod-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }

  .prod-name { font-size: 13px; }
  .prod-img  { max-height: 180px; }
  .prod-desc { font-size: 11px; }

  /* --- STATS BAND desktop: fila horizontal --- */
  .stats-band {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 48px;
    gap: 36px;
    text-align: left;
  }
  .stats-text { max-width: 280px; flex-shrink: 0; font-size: 18px; }
  .stats-divider { width: 1px; height: 56px; }
  .stats-items {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 40px;
  }

  /* --- CTA BANNER desktop --- */
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 52px 56px;
    text-align: left;
    gap: 36px;
  }
  .cta-store-icon { width: 110px; }
  .cta-text { flex: 1; }
  .cta-fruits { width: 200px; }

  /* --- FOOTER desktop --- */
  .footer { padding: 56px 0 0; }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1.6fr 1fr;
    gap: 40px;
    text-align: left;
  }
  .footer-logo    { margin: 0 0 12px; }
  .footer-tagline { margin: 0; }
  .footer-contact li  { justify-content: flex-start; }
  .footer-social      { justify-content: flex-start; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP  ≥ 1200px
══════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .nav { padding: 0 40px; }
  .hero-inner { padding: 60px 56px 104px; }
  .hero-left  { max-width: 520px; }
  .hero-product-img { max-width: 700px; }
  .hero-years {
    width: 210px;
    height: 210px;
    right: -6px;
    bottom: 28px;
  }
  .hero-years-num    { font-size: 90px; }
  .hero-years-label  { font-size: 24px; }
  .hero-years-ribbon { font-size: 10px; bottom: -15px; }
  .container { padding: 0 32px; }
}

/* ── SUBMENU ── */
.nav-item--has-sub { position: relative; }

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  list-style: none;
  min-width: 180px;
  z-index: 400;
  overflow: hidden;
}

.nav-item--has-sub:hover .nav-submenu { display: block; }

.nav-submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue);
  transition: background var(--tr);
}

.nav-submenu a:hover { background: var(--blue-pale); }

/* ── BOTÓN VER CATÁLOGO ── */
.prod-catalog-btn {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  padding: 8px 20px;
  background: transparent;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: color var(--tr);
}
.prod-catalog-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
  z-index: 0;
}
.prod-catalog-btn:hover { color: var(--white); }
.prod-catalog-btn:hover::before { transform: scaleX(1); }
.prod-catalog-btn span {
  position: relative;
  z-index: 1;
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}
.lb-overlay.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  cursor: default;
  animation: lbIn .2s ease;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  z-index: 10000;
}
.lb-close:hover { background: rgba(255,255,255,.3); }

/* ── STATS SLIDER ── */
.stats-slider {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.stats-slide {
  position: absolute;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
  line-height: 1.2;
}
.stats-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}