/* =====================================================================
   FROGS SHOP — Sistema de diseño "tipo app"
   Inspirado en Bahama Bay Pool Club (pills, sombras suaves, cards
   redondeadas, micro-interacciones) + cards estilo Mayan Monkey,
   con la identidad de Señor Frog's (rojo / verde lima / amarillo fiesta).
   Mobile-first · 70% del público es móvil.
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta OFICIAL Señor Frog's (Brand Book 2025) */
  --navy:       #043768;   /* Azul marino — Pantone 2955 C · superficie principal */
  --navy-dark:  #022B50;   /* Azul profundo (gradientes)                    */
  --red:        #BD0829;   /* Rojo — Pantone 186 C                          */
  --red-dark:   #8E0620;   /* Rojo profundo                                 */
  --red-deep:   #6A0518;   /* Sombra roja                                   */
  --green:      #4CA658;   /* Verde — Pantone 7738 C (acción "Add")         */
  --green-dark: #3C8A49;   /* Hover verde                                   */
  --yellow:     #F7BE39;   /* Amarillo — Pantone 136 C                      */
  --yellow-ink: #043768;   /* Texto azul marino sobre amarillo              */
  --teal:       #1FABBA;   /* Teal — Pantone 7467 C                         */
  --orange:     #DD5035;   /* Naranja — Pantone 7417 C                      */
  --lime:       #8DC63F;   /* Verde lima brillante (detalles)               */

  /* Gradientes de marca */
  --grad-navy:  linear-gradient(120deg, #043768 0%, #022B50 100%);
  --grad-red:   linear-gradient(120deg, #BD0829 0%, #8E0620 100%);

  /* Superficies */
  --ink:        #062B4E;   /* Footer/secciones oscuras = azul marino profundo */
  --ink-2:      #2A2F34;
  --slate:      #5A636B;   /* Texto secundario                              */
  --line:       #E7EAEE;   /* Bordes/divisores                              */
  --bg:         #F4F6F8;   /* Fondo app                                     */
  --bg-2:       #FBFCFD;
  --white:      #FFFFFF;

  /* Tipografía — Oswald en titulares (como senorfrogs.com), Montserrat en cuerpo */
  --font-head:  'Oswald', 'Montserrat', system-ui, sans-serif;
  --font-body:  'Montserrat', system-ui, sans-serif;

  /* Radios (estilo app) */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Sombras suaves (sello Bahama) */
  --sh-sm: 0 2px 10px rgba(21,24,27,.06);
  --sh-md: 0 8px 28px rgba(21,24,27,.10);
  --sh-lg: 0 18px 50px rgba(21,24,27,.16);
  --sh-red: 0 8px 22px rgba(216,30,44,.34);
  --sh-green: 0 8px 22px rgba(93,187,70,.40);

  --shell: 1180px;        /* ancho máx desktop */
  --tab-h: 64px;          /* alto bottom nav móvil */
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; overflow-x: clip; }
/* evita que columnas de grid se desborden a lo ancho (móvil) */
.pd-wrap > *, .co-wrap > * { min-width: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Iconos de línea (stroke) */
.ic {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto; pointer-events: none;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 18px; }

/* Patrón de marca (relleno del hero) */
.brand-pattern {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.07) 0 8px, transparent 9px),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.05) 0 6px, transparent 7px),
    radial-gradient(circle at 45% 85%, rgba(255,255,255,.06) 0 5px, transparent 6px);
  background-size: 140px 140px, 110px 110px, 90px 90px;
}

/* =====================================================================
   HEADER APP (sticky, compacto)
   ===================================================================== */
.app-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 16px rgba(21,24,27,.10);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}
/* al pasar el hero → se mantiene blanco, solo sombra más marcada */
.app-header.scrolled {
  box-shadow: 0 6px 22px rgba(21,24,27,.16);
}
.app-header__bar {
  display: flex; align-items: center; gap: 12px;
  height: 60px;
  max-width: var(--shell); margin: 0 auto; padding: 0 16px;
}
/* Botón "Atrás" (páginas internas) — rojo, pegado a la orilla izquierda de la pantalla */
.back-btn {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%); z-index: 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 0 var(--r-pill) var(--r-pill) 0;
  background: var(--red); border: none; color: #fff;
  font-size: 18px; box-shadow: var(--sh-red);
  transition: background .2s, transform .15s;
}
.back-btn .ic { stroke: #fff; color: #fff; }
.back-btn:hover { background: var(--red-dark); }
.back-btn:active { transform: translateY(-50%) scale(.92); }

/* Botón "Atrás" flotante sobre el hero */
.hero-back {
  position: absolute; top: 16px; left: 0; z-index: 5;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.32); color: #fff;
  display: grid; place-items: center; font-size: 18px;
  backdrop-filter: blur(6px); transition: background .2s, transform .15s;
}
.hero-back .ic { stroke: #fff; color: #fff; }
.hero-back:hover { background: rgba(255,255,255,.3); }
.hero-back:active { transform: scale(.92); }

.app-header__logo { height: 42px; width: auto; display: block; transition: transform .15s; }
a:active > .app-header__logo { transform: scale(.95); }
/* Botones del header: oscuros sobre el header blanco */
.app-header__store .ic, .cart-btn .ic { stroke: var(--ink); color: var(--ink); }
.app-header__store {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.app-header__store:hover { background: #eef1f4; }
.app-header__store:active { transform: scale(.96); }
.app-header__title {
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  font-size: 13px; opacity: .92;
}

/* botón carrito header (desktop) */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--bg); border: 1px solid var(--line);
  font-size: 18px; transition: background .2s, border-color .2s, transform .15s;
}
.cart-btn:hover { background: #eef1f4; }

.cart-btn:active { transform: scale(.92); }
.cart-btn__badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--yellow); color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transform: scale(0); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cart-btn__badge.show { transform: scale(1); }
@keyframes badgePop { 0%{transform:scale(1)} 40%{transform:scale(1.4)} 100%{transform:scale(1)} }
.cart-btn__badge.pop { animation: badgePop .4s; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #8e0620 0%, #5e0417 55%, #420211 100%);
  color: #fff;
  padding: 46px 0 86px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::after { /* corte diagonal inferior estilo screenshots */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 54px; z-index: 3;
  background: var(--bg);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
/* Nebulosas rojas en movimiento (glows que brillan sobre el rojo oscuro) */
.hero::before {
  content: ""; position: absolute; inset: -30%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(34% 42% at 18% 26%, rgba(255,92,80,.95),  transparent 56%),
    radial-gradient(40% 48% at 84% 18%, rgba(255,42,98,.85),  transparent 56%),
    radial-gradient(46% 46% at 70% 84%, rgba(255,128,58,.80), transparent 55%),
    radial-gradient(36% 42% at 30% 82%, rgba(226,32,62,.90),  transparent 56%),
    radial-gradient(28% 30% at 52% 52%, rgba(255,70,70,.65),  transparent 60%);
  mix-blend-mode: screen;
  filter: blur(34px) saturate(1.3);
  animation: heroNebula 5.3s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes heroNebula {
  0%   { transform: translate(-3%,-2%) scale(1)    rotate(-3deg); opacity: .9; }
  50%  { transform: translate(4%,-4%)  scale(1.22) rotate(5deg);  opacity: 1; }
  100% { transform: translate(-2%,3%)  scale(1.12) rotate(-2deg); opacity: .85; }
}
@media (prefers-reduced-motion: reduce){ .hero::before { animation: none; } }
.hero__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 20px; }
.hero__eyebrow {
  display: inline-block; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(22px, 4.4vw, 40px); line-height: 1.12; letter-spacing: -.01em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,.28);
}
.hero__title .accent { color: var(--yellow); }
.hero__tagline {
  margin: 10px auto 0;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(15px, 2.6vw, 19px); letter-spacing: .1em; color: var(--yellow);
}
.hero__desc {
  margin: 16px auto 0; max-width: 540px;
  font-size: 15px; font-weight: 300; opacity: .95; line-height: 1.7;
}
.hero__mascot {
  position: absolute; right: 4%; bottom: 26px; width: clamp(90px, 16vw, 165px);
  z-index: 2; filter: drop-shadow(0 12px 22px rgba(0,0,0,.3));
  pointer-events: none;
}
@media (max-width: 720px){ .hero__mascot{ opacity:.28; right:-10px; bottom:40px; } }

/* =====================================================================
   TÍTULOS DE SECCIÓN
   ===================================================================== */
.sec { padding: 40px 0; }
.sec-head { text-align: center; margin-bottom: 22px; }
.sec-head__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-dark);
}
.sec-head__title {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(20px, 4vw, 30px); color: var(--red); letter-spacing: .01em;
  margin-top: 4px;
}
.sec-head__line { width: 56px; height: 4px; border-radius: 4px; background: var(--yellow); margin: 12px auto 0; }

/* =====================================================================
   STORE SELECTOR CARDS (estilo app, redondeadas + hover lift)
   ===================================================================== */
.store-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.store-card {
  position: relative; background: #fff; border-radius: var(--r-lg);
  padding: 30px 24px; text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition: transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s;
  overflow: hidden;
}
.store-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--green), var(--lime));
}
.store-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.store-card__icon {
  width: 64px; height: 64px; margin: 6px auto 16px;
  display: grid; place-items: center; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(93,187,70,.16), rgba(141,198,63,.16));
  color: var(--green-dark); font-size: 30px;
}
.store-card__name {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: 19px; letter-spacing: .02em; color: var(--ink);
}
.store-card__desc { font-size: 13.5px; color: var(--slate); margin: 8px 0 20px; font-weight: 300; }

/* =====================================================================
   BOTONES (pills, sello Bahama)
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; font-size: 13px;
  padding: 13px 26px; border-radius: var(--r-pill);
  transition: transform .15s, box-shadow .25s, background .2s, filter .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn--green { background: var(--green); color: #fff; box-shadow: var(--sh-green); }
.btn--green:hover { background: var(--green-dark); }
.btn--red { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn--red:hover { background: var(--red-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--yellow-ink); box-shadow: 0 8px 22px rgba(247,190,57,.45); }
.btn--yellow:hover { background: #ffca4d; }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--sh-sm); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 14px; }

/* =====================================================================
   SHOP — barra de filtros (buscador + categorías)
   ===================================================================== */
.shop-filters { position: sticky; top: 60px; z-index: 40; background: var(--bg); }
.shop-filters__inner { position: relative; display: flex; align-items: center; gap: 14px; padding: 16px 18px 18px; }
.shop-filters__inner::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 0; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--green));
  background-size: 200% 100%;
  animation: lineFlow 7s linear infinite;
}
@keyframes lineFlow { from { background-position: 0 0; } to { background-position: 200% 0; } }
@media (prefers-reduced-motion: reduce){ .shop-filters__inner::after { animation: none; } }
.shop-search { position: relative; flex: 0 0 auto; min-width: 230px; }
.shop-search .ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--slate); font-size: 16px; }
.shop-search input {
  width: 100%; padding: 11px 16px 11px 40px; border: 1.5px solid var(--line); border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 14px; background: var(--bg-2); color: var(--ink);
  transition: border-color .2s, background .2s;
}
.shop-search input:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(93,187,70,.12); }
.shop-cats { display: flex; gap: 8px; overflow-x: auto; flex: 1; scrollbar-width: none; }
.shop-cats::-webkit-scrollbar { display: none; }
.shop-cat {
  font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--slate); background: #fff; border: 1.5px solid var(--line);
  padding: 9px 16px; border-radius: var(--r-pill); white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.shop-cat:hover { border-color: var(--red); color: var(--red); }
.shop-cat:active { transform: scale(.95); }
.shop-cat.is-active { background: var(--red); color: #fff; border-color: var(--red); }
.shop-count { font-size: 12.5px; font-weight: 600; color: var(--slate); margin-bottom: 14px; }

/* secciones por categoría (título + slider) */
.shop-group { margin-bottom: 34px; }
.shop-group__title {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: 21px; letter-spacing: .01em; color: var(--ink);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.shop-group__count {
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  color: #fff; background: var(--red); border-radius: var(--r-pill); padding: 2px 10px;
}
.shop-group__single { grid-template-columns: repeat(auto-fill, minmax(280px, 320px)); }
.shop-empty { text-align: center; color: var(--slate); padding: 50px 20px; font-size: 15px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.shop-empty .ic { font-size: 30px; color: var(--line); }
@media (max-width: 720px){
  .shop-filters__inner { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .shop-search { flex: 1 1 100%; min-width: 0; }
}

/* =====================================================================
   PRODUCT GRID + CARDS (estilo Mayan Monkey + app)
   ===================================================================== */
.prod-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.prod-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition: transform .26s cubic-bezier(.2,.8,.3,1), box-shadow .26s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.prod-card__media {
  position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--line);
}
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod-card__media.ph { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.prod-card__media.ph::after { content: ""; position: absolute; inset: 0; background: url("../assets/img/logo-sf.png") center / 130px auto no-repeat; opacity: .92; }
.prod-card:hover .prod-card__media img { transform: scale(1.06); }
.prod-card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(21,24,27,.78); color: #fff; backdrop-filter: blur(4px);
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.prod-card__tag--hot { background: var(--red); }
.prod-card__body { padding: 16px 16px 14px; display: flex; flex-direction: column; flex: 1; }
.prod-card__name {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: 17px; letter-spacing: .02em; color: var(--ink); line-height: 1.2;
}
.prod-card__includes {
  margin: 9px 0 0; font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--navy);
}
.prod-card__feats { margin: 5px 0 0; display: flex; flex-direction: column; gap: 4px; }
.prod-card__feats li {
  font-size: 14.5px; color: var(--slate); font-weight: 300; padding-left: 16px; position: relative;
}
.prod-card__feats li b { font-weight: 600; color: var(--ink-2); }
.prod-card__feats li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.prod-card__foot {
  margin-top: auto; padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.prod-card__price {
  font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 21px;
}
.prod-card__price small { font-size: 11px; color: var(--slate); font-weight: 600; }
.prod-card__taxnote {
  display: block; font-family: var(--font-body); font-size: 10.5px; line-height: 1.3;
  color: var(--slate); font-weight: 600; letter-spacing: .01em; margin-top: 2px; text-transform: none;
}
.prod-card__actions { display: flex; gap: 8px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  display: grid; place-items: center; font-size: 17px;
  background: var(--green); color: #fff; box-shadow: var(--sh-green);
  transition: transform .15s, background .2s;
}
.icon-btn:hover { background: var(--green-dark); }
.icon-btn:active { transform: scale(.88); }
@keyframes addBounce { 0%{transform:scale(1)} 45%{transform:scale(.82) rotate(-8deg)} 100%{transform:scale(1)} }
.icon-btn.added { animation: addBounce .4s; }
.btn--mini {
  padding: 11px 16px; font-size: 11.5px; border-radius: var(--r-pill);
}

/* =====================================================================
   PRODUCT DETAIL
   ===================================================================== */
.pd-wrap { display: grid; grid-template-columns: 1fr; gap: 22px; padding: 26px 0 40px; }
@media (min-width: 900px){ .pd-wrap { grid-template-columns: 65fr 35fr; align-items: start; } }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); margin-bottom: 4px; }
.breadcrumb a { color: var(--red); font-weight: 600; }
/* ---- GALERÍA con miniaturas ---- */
.pd-gallery__main {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); background: #fff;
}
.pd-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__play {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(4,55,104,.82); color: #fff; backdrop-filter: blur(6px);
  font-size: 12.5px; font-weight: 700; padding: 9px 15px; border-radius: var(--r-pill);
  box-shadow: var(--sh-md); transition: transform .15s, background .2s;
}
.pd-gallery__play:hover { background: var(--navy); transform: translateY(-2px); }
.pd-gallery__play .ic { font-size: 16px; }
.pd-gallery__count {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,43,78,.55); color: #fff; backdrop-filter: blur(4px);
  font-size: 12px; font-weight: 700; padding: 7px 12px; border-radius: var(--r-pill);
}
.pd-gallery__thumbs {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 8px; margin-top: 10px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }
.pd-thumb {
  aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; min-width: 64px;
  border: 2.5px solid transparent; transition: border-color .18s, transform .15s; padding: 0;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.is-active { border-color: var(--red); }
.pd-thumb:hover { transform: translateY(-2px); }

/* ---- CABECERA producto ---- */
.pd-head { margin-top: 22px; }
.pd-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--r-pill);
}
.pd-title {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(24px, 4vw, 36px); color: var(--ink); margin: 12px 0 10px; line-height: 1.05;
}
.pd-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--ink-2); }
.pd-rating strong { font-weight: 800; }
.pd-rating__count { color: var(--red); font-weight: 700; }
.pd-rating__sep { color: var(--line); }
.pd-rating__loc { display: inline-flex; align-items: center; gap: 5px; color: var(--slate); }
.pd-rating__loc .ic { color: var(--teal); }
.pd-stars { display: inline-flex; gap: 2px; color: var(--yellow); }
.pd-stars .ic { fill: var(--yellow); stroke: var(--yellow); }
.pd-stars--lg { font-size: 20px; }
.pd-stars--sm { font-size: 13px; }
.pd-facts {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.pd-facts li {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 13px; border-radius: var(--r-pill);
}
.pd-facts .ic { color: var(--teal); font-size: 15px; }

/* ---- NAV de anclas ---- */
.pd-anchors {
  position: sticky; top: 60px; z-index: 30; display: flex; gap: 4px; margin: 22px 0 4px;
  padding: 6px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r-pill); box-shadow: var(--sh-sm);
  overflow-x: auto; scrollbar-width: none;
}
.pd-anchors::-webkit-scrollbar { display: none; }
.pd-anchors a {
  white-space: nowrap; font-size: 12.5px; font-weight: 700; color: var(--slate);
  padding: 8px 15px; border-radius: var(--r-pill); transition: all .2s;
}
.pd-anchors a.is-active { background: var(--navy); color: #fff; }

/* ---- SECCIONES de contenido ---- */
.pd-section { margin-top: 32px; scroll-margin-top: 120px; }
.pd-h2 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 23px); color: var(--ink); margin-bottom: 16px; letter-spacing: .01em;
}
.pd-h2 .ic { color: var(--red); font-size: .95em; }
.pd-prose { font-size: 15px; color: var(--ink-2); margin-bottom: 12px; }
.pd-prose strong { color: var(--ink); }

/* Highlights */
.pd-highlights { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 560px){ .pd-highlights { grid-template-columns: 1fr 1fr; } }
.pd-hl {
  display: flex; gap: 13px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px; box-shadow: var(--sh-sm);
}
.pd-hl__ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), #178a98); color: #fff; font-size: 20px;
}
.pd-hl strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 2px; }
.pd-hl p { font-size: 13px; color: var(--slate); line-height: 1.45; }

/* Incluye / No incluye */
.pd-include { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px){ .pd-include { grid-template-columns: 1.2fr .8fr; } }
.pd-include__col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 20px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 12px;
}
.pd-include__col li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.pd-include__col--yes .ic { color: var(--green); margin-top: 2px; }
.pd-include__col--no { background: #fbfafa; }
.pd-include__col--no .ic { color: var(--slate); margin-top: 2px; }
.pd-include__col--no li { color: var(--slate); }

/* Schedule */
.pd-schedule { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.pd-sched-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 14px;
}
.pd-sched-row:last-child { border-bottom: none; }
.pd-sched-day { font-weight: 700; color: var(--ink); }
.pd-sched-time { color: var(--ink-2); font-variant-numeric: tabular-nums; }
.pd-sched-row--note {
  background: rgba(31,171,186,.08); color: var(--navy); font-size: 13px; gap: 9px; justify-content: flex-start;
}
.pd-sched-row--note .ic { color: var(--teal); flex: 0 0 auto; }

/* Debes saber — un solo contenedor con iconos en badge */
.pd-know {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-sm); overflow: hidden;
}
.pd-know li {
  display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-2);
  padding: 15px 18px; border-bottom: 1px solid var(--line);
}
.pd-know li:last-child { border-bottom: none; }
.pd-know .ic {
  box-sizing: border-box; flex: 0 0 auto;
  width: 38px; height: 38px; padding: 9px; border-radius: 11px;
  background: linear-gradient(135deg, var(--teal), #137f8c);
  color: #fff; stroke: #fff;
  box-shadow: 0 4px 10px rgba(31,171,186,.30);
}
.pd-know strong { color: var(--ink); }

/* Reseñas */
.pd-reviews-summary {
  display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px; box-shadow: var(--sh-sm); margin-bottom: 16px;
}
@media (min-width: 560px){ .pd-reviews-summary { grid-template-columns: auto 1fr; gap: 28px; } }
.pd-reviews-score { text-align: center; }
.pd-reviews-score strong { display: block; font-family: var(--font-head); font-size: 46px; color: var(--ink); line-height: 1; }
.pd-reviews-score small { display: block; color: var(--slate); font-size: 12px; margin-top: 6px; }
.pd-reviews-bars { display: flex; flex-direction: column; gap: 7px; }
.pd-bar { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--slate); }
.pd-bar span { width: 10px; text-align: right; font-weight: 700; }
.pd-bar i { flex: 1; height: 7px; background: var(--line); border-radius: 99px; overflow: hidden; }
.pd-bar b { display: block; height: 100%; background: var(--yellow); border-radius: 99px; }
.pd-reviews { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px){ .pd-reviews { grid-template-columns: 1fr 1fr; } }
.pd-review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; box-shadow: var(--sh-sm); }
.pd-review header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pd-review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
}
.pd-review header strong { display: block; font-size: 14px; color: var(--ink); }
.pd-review header small { color: var(--slate); font-size: 11.5px; }
.pd-review header .pd-stars { font-size: 12px; }
.pd-review p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* FAQ acordeón */
.pd-faq { display: flex; flex-direction: column; gap: 10px; }
.pd-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; }
.pd-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; font-size: 14.5px; font-weight: 700; color: var(--ink); text-align: left;
}
.pd-faq__chev { color: var(--red); transition: transform .25s; flex: 0 0 auto; }
.pd-faq__item.is-open .pd-faq__chev { transform: rotate(180deg); }
.pd-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.pd-faq__item.is-open .pd-faq__a { max-height: 240px; }
.pd-faq__a p { padding: 0 18px 16px; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ---- CARD COMPRA (sticky) ---- */
.pd-card {
  background: #fff; border-radius: var(--r-lg); padding: 22px;
  box-shadow: var(--sh-md); border: 1px solid var(--line);
  position: sticky; top: 76px;
}
.pd-card__deal {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  background: linear-gradient(120deg, var(--orange), var(--red)); color: #fff;
  font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.pd-card__name {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: 18px; line-height: 1.12; color: var(--ink); margin: 8px 0 14px;
}
.pd-pricerow {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0 0 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px;
}

/* Fecha + Personas lado a lado */
.pd-fields-row { display: flex; gap: 14px; align-items: flex-end; }
.pd-fields-row .pd-field:first-child { flex: 1 1 auto; min-width: 0; }
.pd-fields-row .pd-field:last-child { flex: 0 0 auto; }
.pd-fields-row .pd-field-label, .pd-fields-row .pd-qty-label { margin: 0 0 8px; }

/* Franja de logos de pago al final del producto (solo móvil) */
.pd-paystrip { display: none; }
@media (max-width: 760px){ .pd-paystrip { display: block; padding: 0 0 16px; } }

/* Selector de hora (slots) */
.pd-times { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-time {
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .02em;
  color: var(--ink); background: var(--bg-2); border: 1.5px solid var(--line);
  padding: 9px 13px; border-radius: var(--r-pill);
  transition: background .18s, color .18s, border-color .18s, transform .12s;
}
.pd-time:hover { border-color: var(--red); color: var(--red); }
.pd-time:active { transform: scale(.95); }
.pd-time.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* Logos de pago seguro */
.pd-pay { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: nowrap; }
.pd-pay__cards { display: contents; }
.pd-pay__secure-img { height: 32px; width: auto; }
.pay-card {
  flex: 0 0 auto; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pay-card svg, .pay-card img { display: block; width: auto; max-width: 100%; height: auto; max-height: 26px; object-fit: contain; }
.pd-pricerow__label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.pd-price-wrap { display: flex; align-items: baseline; gap: 8px; }
.pd-price { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 34px; line-height: 1.05; }
.pd-price small { font-size: 13px; color: var(--slate); font-weight: 600; }
.pd-price-old { font-size: 16px; color: var(--slate); text-decoration: line-through; font-weight: 600; }
.pd-price-tag {
  display: inline-flex; align-items: center; gap: 5px; flex: 0 0 auto;
  background: var(--yellow); color: var(--yellow-ink); font-size: 12px; font-weight: 800;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.pd-field-label, .pd-qty-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--slate); margin: 0 0 8px;
}
.pd-qty-label { margin-top: 16px; }
.pd-field-label .ic, .pd-qty-label .ic { color: var(--navy); }
.pd-input {
  width: 100%; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; background: var(--bg-2);
  transition: border-color .2s;
}
.pd-input:focus { outline: none; border-color: var(--teal); }
.pd-total {
  display: flex; align-items: center; justify-content: space-between; margin-top: 16px;
  padding: 13px 16px; background: var(--bg); border-radius: var(--r-sm); font-size: 13px; color: var(--slate); font-weight: 600;
}
.pd-total strong { font-family: var(--font-head); font-size: 22px; color: var(--ink); }
.pd-trust { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.pd-trust li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-2); }
.pd-trust .ic { color: var(--green); flex: 0 0 auto; }
.pd-trust strong { color: var(--ink); }
.pd-help {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--navy);
}
.pd-help .ic { color: var(--teal); }

/* ---- EXPERIENCIAS RELACIONADAS ---- */
.pd-related { background: var(--bg-2); border-top: 1px solid var(--line); padding: 36px 0 44px; margin-top: 20px; }
.pd-related__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px;
}
.pd-related__row::-webkit-scrollbar { display: none; }
@media (min-width: 760px){ .pd-related__row { grid-auto-flow: row; grid-template-columns: repeat(4,1fr); grid-auto-columns: auto; overflow: visible; } }
.rel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); scroll-snap-align: start; transition: transform .18s, box-shadow .2s; display: block; }
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.rel-card__img { position: relative; aspect-ratio: 4/3; }
.rel-card__img img { width: 100%; height: 100%; object-fit: cover; }
.rel-card__badge {
  position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px;
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; padding: 5px 10px; border-radius: var(--r-pill);
}
.rel-card__body { padding: 14px 15px 16px; }
.rel-card__body h3 { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.rel-card__price { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 19px; margin-top: 8px; }
.rel-card__price small { font-size: 11px; color: var(--slate); font-weight: 600; }

/* ---- BARRA RESERVA MÓVIL ---- */
.pd-mobilebar {
  position: fixed; left: 0; right: 0; bottom: var(--tab-h); z-index: 55; display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(21,24,27,.10);
  padding: 10px 16px;
}
/* Barra fija de pago (checkout móvil) */
.co-mobilebar {
  position: fixed; left: 0; right: 0; bottom: var(--tab-h); z-index: 55; display: none;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(21,24,27,.10);
  padding: 10px 16px;
}
.co-mobilebar .btn { width: 100%; }
.pd-mobilebar__price { font-size: 13px; color: var(--slate); display: flex; align-items: baseline; gap: 6px; }
.pd-mobilebar__price strong { font-family: var(--font-head); font-size: 22px; color: var(--red); }
.pd-mobilebar .btn { padding: 12px 22px; }

/* ---- LIGHTBOX ---- */
.pd-lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(6,43,78,.92); display: grid; place-items: center; padding: 24px; }
.pd-lightbox[hidden] { display: none; }
.pd-lightbox__close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; font-size: 20px; }
.pd-lightbox__inner { width: min(900px, 100%); aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; background: #021f3a; box-shadow: var(--sh-lg); }
.pd-lightbox__placeholder { width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 12px; color: rgba(255,255,255,.7); }
.pd-lightbox__placeholder .ic { font-size: 56px; color: var(--yellow); }

/* Stepper (qty) — pill app */
.stepper {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 5px;
}
.stepper button {
  width: 38px; height: 38px; border-radius: var(--r-pill);
  font-size: 20px; font-weight: 700; color: var(--ink); background: #fff;
  box-shadow: var(--sh-sm); transition: transform .12s, background .2s, color .2s;
  display: grid; place-items: center; line-height: 1;
}
.stepper button:hover { background: var(--green); color: #fff; }
.stepper button:active { transform: scale(.9); }
.stepper input {
  width: 46px; text-align: center; border: none; background: transparent;
  font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink);
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pd-secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: 12.5px; color: var(--green-dark); font-weight: 600; }

/* Tabs descripción */
.pd-tabs { margin-top: 26px; }
.pd-tab-head { display: inline-flex; gap: 4px; background: #fff; padding: 5px; border-radius: var(--r-pill); box-shadow: var(--sh-sm); }
.pd-tab-head button {
  padding: 9px 18px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--slate); transition: all .2s;
}
.pd-tab-head button.active { background: var(--red); color: #fff; }
.pd-tab-body {
  margin-top: 14px; background: #fff; border-radius: var(--r-lg); padding: 22px 24px;
  box-shadow: var(--sh-sm); border: 1px solid var(--line);
}
.pd-tab-body ul { display: flex; flex-direction: column; gap: 10px; }
.pd-tab-body li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink-2); }
.pd-tab-body li::before { content: "✓"; position: absolute; left: 0; top: 0; font-size: 14px; font-weight: 800; color: var(--green); }

/* =====================================================================
   CART DRAWER (slide-in derecha)
   ===================================================================== */
.scrim {
  position: fixed; inset: 0; background: rgba(21,24,27,.5);
  backdrop-filter: blur(2px); opacity: 0; visibility: hidden;
  transition: opacity .3s; z-index: 90;
}
.scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--bg-2); z-index: 100;
  transform: translateX(105%); transition: transform .38s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 50px rgba(0,0,0,.25);
}
.drawer.open { transform: translateX(0); }
.drawer__head {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; padding: 12px 52px 12px 18px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.drawer__title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 17px; letter-spacing: .03em; }
.drawer__loc { font-size: 12.5px; opacity: .9; margin-top: 0; display: flex; align-items: center; gap: 5px; }
.drawer__close {
  position: absolute; top: 11px; right: 14px; color: #fff; font-size: 20px;
  width: 32px; height: 32px; border-radius: var(--r-pill); display: grid; place-items: center;
  background: rgba(255,255,255,.15); transition: background .2s, transform .15s;
}
.drawer__close:hover { background: rgba(255,255,255,.3); }
.drawer__close:active { transform: scale(.9); }
.drawer__body { flex: 1; overflow-y: auto; padding: 10px 18px; }
.drawer__empty { text-align: center; color: var(--slate); padding: 60px 20px; }
.drawer__empty .emoji { font-size: 48px; display: block; margin-bottom: 12px; }

.cart-line {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__thumb {
  width: 44px; height: 44px; border-radius: var(--r-sm, 8px); object-fit: cover;
  border: 1px solid var(--line); flex-shrink: 0; cursor: zoom-in;
}
.cart-line__info { flex: 1; min-width: 0; }
.cart-line__name { font-weight: 700; font-size: 14px; color: var(--ink); }
.cart-line__price { color: var(--red); font-weight: 800; font-size: 14px; margin-top: 2px; }
.cart-line .stepper { padding: 2px; }
.cart-line .stepper button { width: 26px; height: 26px; font-size: 15px; }
.cart-line .stepper input { width: 26px; font-size: 13px; }
.cart-line__del {
  width: 34px; height: 34px; border-radius: var(--r-pill); color: var(--slate);
  display: grid; place-items: center; font-size: 16px; transition: background .2s, color .2s;
}
.cart-line__del:hover { background: rgba(216,30,44,.1); color: var(--red); }

/* ---------- UPGRADES DE COMBO (drawer del carrito y resumen del checkout) ---------- */
.drawer-upsell {
  margin: 10px 0 6px; padding: 10px 12px;
  background: var(--bg-2); border: 1px dashed var(--green); border-radius: var(--r-md);
}
.drawer-upsell__title {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: .04em; color: var(--ink); margin-bottom: 4px;
}
.drawer-upsell__title .ic { width: 16px; height: 16px; color: var(--green); }
.drawer-upsell__item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid var(--line);
}
.drawer-upsell__item:last-child { border-bottom: 0; padding-bottom: 2px; }
.upsell-thumb {
  width: 40px; height: 40px; border-radius: var(--r-sm, 8px); object-fit: cover;
  border: 1px solid var(--line); flex-shrink: 0; cursor: zoom-in;
}

/* Lightbox de imagen (foto de addon en grande) */
.img-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2,15,28,.82); display: grid; place-items: center;
  padding: 24px; cursor: zoom-out;
  opacity: 0; transition: opacity .22s ease;
}
.img-lightbox.open { opacity: 1; }
.img-lightbox img {
  max-width: min(560px, 92vw); max-height: 82vh;
  border-radius: var(--r-lg); background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: scale(.96); transition: transform .22s ease;
}
.img-lightbox.open img { transform: scale(1); }
.img-lightbox__close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  border-radius: var(--r-pill); background: rgba(255,255,255,.16); color: #fff;
  font-size: 18px; display: grid; place-items: center; transition: background .2s;
}
.img-lightbox__close:hover { background: rgba(255,255,255,.3); }
.drawer-upsell__info { flex: 1; min-width: 0; }
.drawer-upsell__name { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.drawer-upsell__price { color: var(--green-dark); font-weight: 800; font-size: 13px; margin-top: 1px; }
.drawer-upsell .btn--mini { padding: 7px 14px; }

.drawer__foot { background: #fff; border-top: 1px solid var(--line); padding: 10px 18px 12px; box-shadow: 0 -8px 30px rgba(0,0,0,.06); }
/* Versión compacta del resumen y logos SOLO dentro del drawer */
.drawer__foot .summary-row { font-size: 12.5px; margin-bottom: 4px; }
.drawer__foot .summary-total { margin-top: 6px; padding-top: 8px; }
.drawer__foot .summary-total__label { font-size: 14px; }
.drawer__foot .summary-total__val { font-size: 20px; }
.drawer__foot .btn--lg { padding: 13px 18px; font-size: 14.5px; }
.drawer__foot .pd-pay { margin-top: 10px; padding-top: 10px; }
.drawer__foot .pd-pay__secure-img { height: 26px; }
.drawer__foot .pay-card { height: 22px; }
.drawer__foot .pay-card svg, .drawer__foot .pay-card img { max-height: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--slate); margin-bottom: 7px; }
.summary-row span:last-child { font-weight: 600; color: var(--ink-2); }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 2px dashed var(--line); margin-top: 10px; padding-top: 12px;
}
.summary-total__label { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 15px; }
.summary-total__val { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 24px; }

/* =====================================================================
   CHECKOUT
   ===================================================================== */
.co-wrap { display: grid; grid-template-columns: 1fr; gap: 22px; padding: 28px 0 50px; }
@media (min-width: 900px){ .co-wrap { grid-template-columns: 1.3fr .85fr; align-items: start; } }
.co-forms { display: flex; flex-direction: column; gap: 22px; }
.panel { background: #fff; border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-md); border: 1px solid var(--line); }
.panel__title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 17px; letter-spacing: .04em; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 14.5px; background: var(--bg-2); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(93,187,70,.14);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bunting { height: 16px; background-size: 22px 16px; margin: 22px 0;
  background-image: linear-gradient(135deg, var(--yellow) 25%, transparent 25%),
                    linear-gradient(225deg, var(--yellow) 25%, transparent 25%);
  background-position: 0 0; }

.co-summary { position: sticky; top: 76px; }
.co-summary__head { background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff; padding: 16px 20px; border-radius: var(--r-lg) var(--r-lg) 0 0; font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: .04em; }
.co-summary__body { background: #fff; border: 1px solid var(--line); border-top: none; border-radius: 0 0 var(--r-lg) var(--r-lg); padding: 18px 20px; box-shadow: var(--sh-md); }
.co-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.co-item__thumb {
  width: 44px; height: 44px; border-radius: var(--r-sm, 8px); object-fit: cover;
  border: 1px solid var(--line); flex-shrink: 0; cursor: zoom-in;
}
.co-item__name { font-weight: 700; font-size: 14px; }
.co-item__qty { font-size: 12px; color: var(--slate); }
.co-item__qtyrow { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.stepper--sm { padding: 2px; }
.stepper--sm button { width: 26px; height: 26px; font-size: 15px; }
.stepper--sm input { width: 28px; font-size: 13px; }
.co-item__price { font-weight: 800; font-size: 14px; }
.promo { display: flex; gap: 8px; margin-top: 14px; }
.promo input { flex: 1; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: var(--r-md); font-size: 13px; }

/* check / terms */
.terms { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: 13px; color: var(--slate); }
.terms input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.terms a { color: var(--red); font-weight: 600; }

/* =====================================================================
   THANK YOU (confirmación de orden)
   ===================================================================== */
.ty-wrap { display: flex; justify-content: center; padding: 50px 0 70px; }
.ty-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); padding: 44px 38px; max-width: 560px; width: 100%; text-align: center;
}
.ty-check {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center; background: var(--green); color: #fff;
  box-shadow: var(--sh-green); animation: tyPop .5s cubic-bezier(.34,1.56,.64,1);
}
.ty-check .ic { width: 42px; height: 42px; stroke: #fff; stroke-width: 2.6; }
@keyframes tyPop { 0%{ transform: scale(0) rotate(-20deg) } 100%{ transform: scale(1) rotate(0) } }
.ty-eyebrow { font-family: var(--font-head); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green-dark); font-size: 12px; }
.ty-title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: clamp(26px,5vw,40px); color: var(--ink); margin: 8px 0 12px; line-height: 1.05; }
.ty-sub { font-size: 14.5px; color: var(--slate); max-width: 430px; margin: 0 auto 22px; line-height: 1.6; }
.ty-sub strong { color: var(--ink); }
.ty-order {
  display: inline-flex; flex-direction: column; gap: 3px;
  background: var(--bg); border: 1.5px dashed var(--line); border-radius: var(--r-md);
  padding: 12px 28px; margin-bottom: 24px;
}
.ty-order span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.ty-order strong { font-family: var(--font-head); font-size: 23px; color: var(--red); letter-spacing: .04em; }
.ty-summary { text-align: left; border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 26px; }
.ty-line { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--slate); padding: 6px 0; }
.ty-line span { min-width: 0; }
.ty-line strong { color: var(--ink-2); font-weight: 700; white-space: nowrap; }
.ty-line--total { border-top: 2px dashed var(--line); margin-top: 8px; padding-top: 13px; font-family: var(--font-head); font-size: 15px; color: var(--ink); text-transform: uppercase; }
.ty-line--total strong { color: var(--red); font-size: 21px; }
.ty-empty { color: var(--slate); text-align: center; font-size: 14px; padding: 6px 0; }
.ty-cta .btn { width: 100%; }

/* =====================================================================
   BOTTOM TAB BAR (móvil — sello app)
   ===================================================================== */
.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  height: var(--tab-h);
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: none;
  box-shadow: 0 -6px 24px rgba(0,0,0,.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar__inner { display: flex; align-items: center; justify-content: space-around; height: var(--tab-h); max-width: 520px; margin: 0 auto; }
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: var(--slate); position: relative; padding: 6px 14px; transition: color .2s;
}
.tab .tab__icon { font-size: 20px; line-height: 1; }
.tab.active { color: var(--red); }
/* Cart: igual a los demás; se pone VERDE cuando hay algo en el carrito */
.tab--cart.has-items { color: var(--green); }
.tab--cart.has-items .ic { stroke: var(--green); color: var(--green); }
.tab__badge {
  position: absolute; top: 0; right: 8px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--red); color: #fff; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 800; display: grid; place-items: center;
  transform: scale(0); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.tab__badge.show { transform: scale(1); }

/* FAB carrito (móvil, flotante estilo Bahama screenshots) */
.fab-cart {
  position: fixed; right: 18px; bottom: calc(var(--tab-h) + 16px); z-index: 70;
  width: 58px; height: 58px; border-radius: var(--r-pill);
  background: var(--red); color: #fff; font-size: 22px;
  display: none; place-items: center; box-shadow: var(--sh-red);
  transition: transform .15s;
}
.fab-cart:active { transform: scale(.9); }
.fab-cart__badge {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px;
  background: var(--yellow); color: var(--ink); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  transform: scale(0); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.fab-cart__badge.show { transform: scale(1); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: #fff; text-align: center; padding: 40px 20px 28px; margin-top: 0; }
.footer__logo { height: 56px; width: auto; margin: 0 auto 22px; }
.footer__social { display: flex; justify-content: center; gap: 18px; margin-bottom: 24px; }
.footer__social a { width: 40px; height: 40px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 16px; transition: background .2s, transform .15s; }
.footer__social a:hover { background: var(--green); transform: translateY(-2px); }
.footer__line { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: 12px; opacity: .55; }

/* =====================================================================
   TOAST
   ===================================================================== */
.toast {
  position: fixed; left: 50%; bottom: 90px;
  transform: translateX(-50%) translateY(30px);
  background: var(--ink); color: #fff; padding: 12px 22px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transition: all .35s cubic-bezier(.2,.8,.2,1); z-index: 120;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast .emoji { font-size: 17px; }

/* =====================================================================
   RESPONSIVE — activa modo app en móvil
   ===================================================================== */
@media (max-width: 760px){
  .app-header__title { display: none; }
  .cart-btn { display: none; }            /* en móvil usamos FAB + tabbar */
  .app-header__store { display: none; }   /* Locations vive en la tab-bar en móvil */
  .app-header__bar { justify-content: center; padding-left: 16px !important; }  /* logo al centro */
  .tabbar { display: block; }
  .fab-cart { display: none; }   /* el carrito vive en la tab-bar (Cart resaltado) */
  body { padding-bottom: var(--tab-h); }
  .sec { padding: 22px 0 28px; }
  .pd-card { display: none; }   /* en móvil ya está la barra fija (precio + Book) */
  .pd-mobilebar { display: flex; }
  body.pd-page { padding-bottom: calc(var(--tab-h) + 70px); }
  .co-mobilebar { display: block; }
  body.co-page { padding-bottom: calc(var(--tab-h) + 78px); }
  .co-summary #payNow { display: none; }          /* en móvil usamos la barra fija */
  body.pd-page .fab-cart, body.co-page .fab-cart { display: none; }  /* ya hay barra de acción */
  .pd-anchors { top: 60px; gap: 3px; overflow: visible; }
  .pd-anchors a { flex: 1 1 0; min-width: 0; text-align: center; font-size: 11.5px; padding: 8px 5px; }
  /* píldoras de datos en una sola fila deslizable */
  .pd-facts { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pd-facts::-webkit-scrollbar { display: none; }
  .pd-facts li { flex: 0 0 auto; white-space: nowrap; }
  /* horarios: día y hora en una sola línea */
  .pd-sched-row { padding: 12px 14px; gap: 8px; font-size: 13px; }
  .pd-sched-day, .pd-sched-time { white-space: nowrap; }
  .co-summary { position: static; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-card__includes, .prod-card__feats { display: none; }    /* tarjetas más limpias y rápidas en móvil */
  .prod-card__name { font-size: 15.5px; }
  .prod-card__body { padding: 12px; }
  .prod-card__price { font-size: 18px; }
  .icon-btn { width: 42px; height: 42px; }
  .prod-card__foot .btn--mini { display: inline-flex; }   /* mostrar "Details" en móvil */
}
@media (max-width: 380px){
  .prod-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   LANDING — componentes + animaciones (added)
   ===================================================================== */

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none } }

/* ---- Marquesina superior animada ---- */
.marquee {
  background: var(--ink); color: #fff; overflow: hidden; white-space: nowrap;
  border-bottom: 3px solid var(--yellow);
}
.marquee__track { display: inline-flex; gap: 0; animation: marquee 26s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  padding: 9px 26px; font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
}
.marquee__track span b { color: var(--yellow); }
@keyframes marquee { from{ transform: translateX(0) } to{ transform: translateX(-50%) } }

/* ---- HERO landing (animado) ---- */
.hero--landing { padding: 64px 0 96px; }
.hero--landing .hero__inner > * { opacity: 0; transform: translateY(26px); animation: heroUp .8s cubic-bezier(.2,.8,.2,1) forwards; }
.hero--landing .hero__eyebrow { animation-delay: .05s; }
.hero--landing .hero__title { animation-delay: .18s; }
.hero--landing .hero__desc { animation-delay: .32s; }
.hero--landing .hero__cta { animation-delay: .46s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.hero__mascot--float { animation: floaty 4.5s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(0) } 50%{ transform: translateY(-16px) rotate(-2deg) } }
.hero__badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; opacity: 0; transform: translateY(26px); animation: heroUp .8s .58s cubic-bezier(.2,.8,.2,1) forwards; }
.hero__chip { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 7px 15px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }

/* ---- Barra de beneficios ---- */
.benefits { background: var(--grad-red); }
.benefits .benefit__t { color: #fff; }
.benefits .benefit__s { color: rgba(255,255,255,.82); }
.benefits .benefit__ic { color: #fff; }
.benefits__row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 18px 0; }
.benefit { display: flex; align-items: center; gap: 11px; justify-content: center; text-align: left; }
.benefit__ic { font-size: 24px; }
.benefit__t { font-family: var(--font-head); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; line-height: 1.1; }
.benefit__s { font-size: 11.5px; color: var(--slate); }
@media (max-width: 760px){
  /* beneficios como marquesina: uno por uno, centrado, lento */
  .benefits__row { display: block; position: relative; height: 56px; padding: 16px 0; }
  .benefits__row .benefit {
    position: absolute; inset: 16px 0; margin: 0; justify-content: center;
    opacity: 0; visibility: hidden; transform: none;
    transition: opacity .8s ease, visibility .8s;
  }
  .benefits__row .benefit.is-on { opacity: 1; visibility: visible; }
}

/* ---- Cómo funciona (NO delivery) ---- */
.how { background: var(--bg); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width:760px){ .how-grid{ grid-template-columns: 1fr; } }
.how-step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 24px 26px; text-align: center; box-shadow: var(--sh-sm);
  transition: transform .26s, box-shadow .26s;
}
.how-step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.how-step__num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; font-size: 16px;
  box-shadow: var(--sh-red);
}
.how-step__ic { font-size: 42px; margin: 8px 0 12px; display: inline-block; animation: pop-in .5s both; }
.how-step:hover .how-step__ic { animation: wiggle .5s; }
@keyframes wiggle { 0%,100%{ transform: rotate(0) } 25%{ transform: rotate(-9deg) } 75%{ transform: rotate(9deg) } }
@keyframes pop-in { from{ transform: scale(.5); opacity:0 } to{ transform: scale(1); opacity:1 } }
.how-step__t { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 16px; color: var(--ink); }
.how-step__d { font-size: 13.5px; color: var(--slate); margin-top: 8px; font-weight: 300; }
.how-note { text-align: center; margin-top: 22px; font-size: 14px; }
.how-note b { color: var(--red); }

/* ---- Video de yards (embed YouTube) ---- */
.yard-video {
  position: relative; aspect-ratio: 16/9; width: 100%;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); background: #000;
}
.yard-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- How it works: grid en desktop, slider 1-card en móvil ---- */
.slider--how .slider__track { padding-top: 24px; }            /* espacio para el número del paso */
.slider--how .slider__track > * { flex: 1 1 0; min-width: 0; }            /* desktop: 3 en fila (sin deslizar) */
.slider--how .how-step { height: 100%; }
/* flechas abajo (fila con dots) */
.slider--how .slider__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; }
.slider--how .slider__arrow { position: static; top: auto; transform: none; }
.slider--how .slider__arrow:active { transform: scale(.92); }
.slider--how .slider__dots { margin-top: 0; }
@media (min-width: 761px){ .slider--how .slider__nav { display: none; } }   /* desktop: grid, sin nav */
@media (max-width: 760px){
  .slider--how .slider__track > * { flex: 0 0 100%; }        /* móvil: solo 1 card */
  .slider--how .slider__arrow { display: grid; }             /* mostrar flechas (override) */
}

/* ---- Variety showcase (tiles con foto) ---- */
.variety-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width:900px){ .variety-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .variety-grid{ grid-template-columns: 1fr 1fr; } }
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--sh-sm); display: block; isolation: isolate;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.tile::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(21,24,27,.82)); z-index:1; }
.tile:hover img { transform: scale(1.09); }
.tile__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px; color: #fff; }
.tile__t { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 18px; letter-spacing: .02em; }
.tile__s { font-size: 12.5px; opacity: .9; margin-top: 2px; }
.tile__count { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: var(--r-pill); }

/* ---- Promo CTA banner ---- */
.promo-cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff;
  padding: 46px 40px; text-align: center; box-shadow: var(--sh-lg);
}
.promo-cta__title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: clamp(24px,4vw,40px); line-height: 1.02; }
.promo-cta__title .accent { color: var(--yellow); }
.promo-cta__sub { margin: 12px auto 22px; max-width: 520px; font-size: 15px; opacity: .95; font-weight: 300; }
.promo-cta__mascot { position: absolute; right: 3%; bottom: -8px; width: 130px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.3)); }
@media (max-width:760px){ .promo-cta__mascot{ display:none } }

/* ---- Newsletter ---- */
.news { background: var(--ink); color: #fff; text-align: center; padding: 52px 20px; }
.news h2 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: clamp(22px,3.6vw,32px); }
.news h2 .accent { color: var(--yellow); }
.news p { opacity: .8; margin: 8px auto 22px; max-width: 440px; font-size: 14px; }
.news__form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.news__form input { flex: 1; padding: 14px 18px; border: none; border-radius: var(--r-pill); font-size: 14px; font-family: var(--font-body); }
.news__form input:focus { outline: 3px solid var(--yellow); }

/* ---- Section title alt (con cuenta) ---- */
.sec-head__sub { font-size: 14px; color: var(--slate); margin-top: 8px; font-weight: 300; max-width: 540px; margin-left: auto; margin-right: auto; }
.tile.ph { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.tile.ph img { display: none; }
.tile.ph::before { content: ""; position: absolute; inset: 0; z-index: 1; background: url("../assets/img/logo-sf.png") center / 130px auto no-repeat; opacity: .85; }

/* =====================================================================
   SLIDER de ubicaciones (scroll-snap + flechas + dots)
   ===================================================================== */
.slider { position: relative; }
.slider__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 8px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { scroll-snap-align: center; flex: 0 0 320px; }
@media (max-width: 760px){ .slider__track > * { flex: 0 0 84%; } }

/* sección variedad: banda roja a TODO el ancho + textos que resaltan */
#variety { background: var(--grad-red); }
#variety .sec-head__eyebrow { color: var(--yellow); }
#variety .sec-head__title { color: #fff; }
#variety .sec-head__line { background: var(--yellow); }
#variety .slider__dots button { background: rgba(255,255,255,.45); }
#variety .slider__dots button.active { background: var(--yellow); }

/* carrusel de cards pequeñas (variedad) — 4 por vista, formato 19:6 */
.slider--sm .slider__track > * { flex: 0 0 calc((100% - 54px) / 4); }
@media (max-width: 760px){ .slider--sm .slider__track > * { flex: 0 0 100%; } }
.slider--sm .tile { aspect-ratio: 16 / 9; }
.slider--sm .tile__cap { padding: 12px 14px; }
.slider--sm .tile__t { font-size: 14px; }
.slider--sm .tile__s { font-size: 11px; }

.slider__arrow {
  position: absolute; top: 44%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: var(--r-pill);
  background: #fff; color: var(--red); font-size: 24px; font-weight: 800;
  display: grid; place-items: center; box-shadow: var(--sh-md);
  border: 1px solid var(--line); transition: transform .15s, background .2s, color .2s, opacity .2s;
}
.slider__arrow:hover { background: var(--red); color: #fff; }
.slider__arrow:active { transform: translateY(-50%) scale(.9); }
.slider__arrow--prev { left: -10px; }
.slider__arrow--next { right: -10px; }
.slider__arrow[disabled] { opacity: .35; pointer-events: none; }
@media (max-width: 760px){ .slider__arrow { display: none; } }   /* en móvil se desliza con el dedo */

.slider__dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.slider__dots button {
  width: 9px; height: 9px; border-radius: var(--r-pill); background: var(--line);
  transition: background .25s, width .25s;
}
.slider__dots button.active { background: var(--red); width: 26px; }

/* Card de ubicación con foto (slider) */
.loc-card { padding: 0; overflow: hidden; }
.loc-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.loc-card:hover .loc-card__media img { transform: scale(1.07); }
.loc-card__media::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(21,24,27,.72)); }
.loc-card__city {
  position: absolute; left: 16px; bottom: 12px; z-index:2; color:#fff;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 21px; letter-spacing: .02em; text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.loc-card__media.ph { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.loc-card__media.ph img { display:none; }
.loc-card__body { padding: 16px 18px 20px; }
.loc-card__row { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--slate); margin-bottom: 12px; }

/* =====================================================================
   POPUP "Agregado al carrito" (notificación visible)
   ===================================================================== */
.add-pop {
  position: fixed; top: 78px; right: 20px; z-index: 130;
  width: min(360px, calc(100vw - 32px));
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); border: 1px solid var(--line);
  overflow: hidden;
  transform: translateX(120%); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.9,.25,1), opacity .35s;
}
.add-pop.show { transform: translateX(0); opacity: 1; }
.add-pop__top { height: 5px; background: linear-gradient(90deg, var(--green), var(--lime)); }
.add-pop__body { display: flex; align-items: center; gap: 13px; padding: 16px 16px 14px; }
.add-pop__check {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-size: 22px; font-weight: 800; box-shadow: var(--sh-green);
  animation: checkPop .45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes checkPop { 0%{ transform: scale(0) rotate(-30deg) } 100%{ transform: scale(1) rotate(0) } }
.add-pop__info { flex: 1; min-width: 0; }
.add-pop__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); }
.add-pop__name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.15; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.add-pop__price { font-weight: 800; color: var(--red); font-size: 14px; margin-top: 1px; }
.add-pop__close { flex: 0 0 auto; width: 28px; height: 28px; border-radius: var(--r-pill); color: var(--slate); font-size: 16px; display: grid; place-items: center; transition: background .2s; }
.add-pop__close:hover { background: var(--bg); }
.add-pop__actions { display: flex; gap: 8px; padding: 0 16px 16px; }
.add-pop__actions .btn { flex: 1; }
.add-pop__bar { height: 3px; background: var(--green); width: 100%; transform-origin: left; animation: popBar 3.6s linear forwards; }
@keyframes popBar { from{ transform: scaleX(1) } to{ transform: scaleX(0) } }
@media (max-width: 600px){
  .add-pop { top: 12px; right: 50%; transform: translate(50%, -140%); }
  .add-pop.show { transform: translate(50%, 0); }
}

/* =====================================================================
   DROPDOWN de ubicaciones (combo en el header)
   ===================================================================== */
.loc-dd { position: relative; margin-left: auto; }
.loc-dd .app-header__store { margin-left: 0; cursor: pointer; }
.loc-dd__caret { font-size: .82em; opacity: .9; transition: transform .25s; }
.loc-dd.open .loc-dd__caret { transform: rotate(180deg); }
.loc-dd__menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 75;
  width: 250px; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--sh-lg); border: 1px solid var(--line); padding: 8px;
  opacity: 0; transform: translateX(34px) scale(.96); transform-origin: top right;
  pointer-events: none; transition: opacity .26s ease, transform .34s cubic-bezier(.2,.9,.25,1);
}
.loc-dd.open .loc-dd__menu { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.loc-dd__menu::before {
  content: ""; position: absolute; top: -6px; right: 24px; width: 12px; height: 12px;
  background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.loc-dd__head {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); padding: 6px 12px 8px;
}
.loc-dd__item {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 11px;
  color: var(--ink); font-size: 14px; font-weight: 600; transition: background .18s, color .18s;
}
.loc-dd__item .ic { color: var(--red); font-size: 16px; }
.loc-dd__item:hover { background: var(--bg); color: var(--red); }
.loc-dd__item.active { background: rgba(189,8,41,.08); color: var(--red); }
.loc-dd__item.active::after { content: "✓"; margin-left: auto; font-weight: 800; }
@media (max-width: 600px){ .loc-dd__menu { width: 220px; } }

/* =====================================================================
   UNIT EXPLORER — Mapa interactivo + panel inmersivo (elige tu unidad)
   Superficie AZUL MARINO oficial (regla de marca). Mapa (izq) y panel
   full-bleed (der) sincronizados: tocar un pin cambia el panel y viceversa.
   ===================================================================== */
.unit-explorer {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 16px;
  background: var(--grad-navy);
  border-radius: var(--r-xl); padding: 16px;
  box-shadow: var(--sh-lg); position: relative; overflow: hidden;
  isolation: isolate;
}
.unit-explorer::before { /* glow tropical sutil */
  content: ""; position: absolute; width: 60%; height: 60%; top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(31,171,186,.22), transparent 70%);
  z-index: 0; pointer-events: none;
}
.unit-cta { display: none; width: 100%; justify-content: center; grid-column: 1 / -1; }  /* solo móvil */
@media (max-width: 900px){
  .unit-explorer { grid-template-columns: 1fr; gap: 14px; }
  .unit-stage { order: 1; }                 /* 1) foto */
  .unit-side  { order: 2; }                 /* 2) locaciones */
  .unit-cta   { order: 3; display: inline-flex; }   /* 3) botón full-width */
  .unit-slide__cta { display: none; }       /* en móvil el botón va abajo */
  .unit-slide__body { justify-content: flex-start; align-items: center; text-align: center; }  /* título centrado */
}

/* ---- MAPA ---- */
.unit-map {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 420px;
  background: radial-gradient(circle at 32% 22%, rgba(31,171,186,.20), transparent 58%),
              linear-gradient(165deg, #06335f 0%, #022b50 100%);
  border: 1px solid rgba(255,255,255,.08); z-index: 1;
}
@media (max-width: 900px){ .unit-map { min-height: 300px; } }
.unit-map__grid {
  position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 60%, transparent 100%);
          mask-image: radial-gradient(circle at 50% 45%, #000 60%, transparent 100%);
}
.unit-map__svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.unit-map__land { fill: rgba(255,255,255,.055); stroke: rgba(31,171,186,.55); stroke-width: 1.4; stroke-dasharray: 6 6; }
.unit-map__head {
  position: absolute; top: 16px; left: 18px; z-index: 4; pointer-events: none;
  font-family: var(--font-head); color: #fff;
}
.unit-map__head b { display: block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.unit-map__head span { font-size: 11px; color: rgba(255,255,255,.6); font-weight: 400; letter-spacing: .04em; }

/* Pines */
.unit-pin {
  position: absolute; transform: translate(-50%, -50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.unit-pin__dot {
  position: relative; width: 14px; height: 14px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(247,190,57,.22), 0 4px 10px rgba(0,0,0,.45);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s;
}
.unit-pin__dot::after { /* anillo pulsante */
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--yellow); opacity: 0;
}
.unit-pin__label {
  font-family: var(--font-head); font-weight: 700; font-size: 10.5px;
  letter-spacing: .03em; text-transform: uppercase; color: #fff;
  background: rgba(2,28,55,.7); border: 1px solid rgba(255,255,255,.16);
  padding: 3px 9px; border-radius: var(--r-pill); white-space: nowrap;
  backdrop-filter: blur(4px); transition: background .2s, color .2s, transform .2s;
}
.unit-pin:hover .unit-pin__dot { transform: scale(1.18); }
.unit-pin:hover .unit-pin__label { background: rgba(2,28,55,.95); }
.unit-pin.is-active { z-index: 6; }
.unit-pin.is-active .unit-pin__dot {
  background: #fff; transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(255,255,255,.25), 0 6px 16px rgba(0,0,0,.5);
}
.unit-pin.is-active .unit-pin__dot::after { animation: pinRing 1.6s ease-out infinite; }
.unit-pin.is-active .unit-pin__label {
  background: var(--yellow); color: var(--navy); border-color: var(--yellow);
  transform: translateY(1px) scale(1.04);
}
@keyframes pinRing { 0%{ transform: scale(1); opacity: .8 } 100%{ transform: scale(2.6); opacity: 0 } }

/* ---- PANEL INMERSIVO (stage) ---- */
.unit-stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 420px; z-index: 1; background: #021f3a;
}
@media (max-width: 900px){ .unit-stage { min-height: 360px; } }
.unit-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s; }
.unit-slide.is-active { opacity: 1; visibility: visible; }
.unit-slide__img { position: absolute; inset: 0; }
.unit-slide__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s ease; }
.unit-slide.is-active .unit-slide__img img { transform: scale(1.16); }
.unit-slide__img.ph { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.unit-slide__img.ph img { display: none; }
.unit-slide__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,28,55,.62) 0%, rgba(2,28,55,.22) 38%, rgba(2,28,55,.5) 72%, rgba(2,28,55,.9) 100%);
}
.unit-slide__body {
  position: absolute; inset: 0; z-index: 2; color: #fff;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  padding: 26px; text-align: left;
}
.unit-slide__cta { align-self: flex-end; }
.unit-slide__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px;
}
.unit-slide__city {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 4.5vw, 40px); line-height: 1; letter-spacing: .01em;
  text-shadow: 0 3px 18px rgba(0,0,0,.4);
}
.unit-slide__state { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; opacity: .85; margin-top: 8px; }
.unit-slide__state .ic { color: var(--teal); }
.unit-slide__blurb { font-size: 14px; font-weight: 300; opacity: .92; margin-top: 12px; max-width: 460px; line-height: 1.55; }
.unit-slide__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.unit-slide__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: 6px 12px; border-radius: var(--r-pill); font-size: 11.5px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.unit-slide__chip .ic { color: var(--yellow); font-size: 13px; }
.unit-slide__cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 20px; }
.unit-slide__count { font-size: 12.5px; opacity: .8; display: inline-flex; align-items: center; gap: 6px; }
.unit-slide__count b { color: var(--yellow); font-family: var(--font-head); font-size: 15px; }
.unit-flag { /* cinta tipo "flagship" */
  position: absolute; top: 18px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--r-pill); box-shadow: var(--sh-md);
}
.unit-flag .ic { color: var(--yellow); font-size: 13px; }

/* ---- NAV del panel (flechas + dots + contador) ---- */
.unit-nav {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 22px;
}
.unit-nav__btn {
  width: 42px; height: 42px; border-radius: var(--r-pill); flex: 0 0 auto;
  background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.28);
  display: grid; place-items: center; font-size: 18px;
  backdrop-filter: blur(6px); transition: background .2s, transform .15s;
}
.unit-nav__btn:hover { background: rgba(255,255,255,.32); }
.unit-nav__btn:active { transform: scale(.9); }
.unit-nav__dots { display: flex; gap: 7px; margin: 0 auto; }
.unit-nav__dots button {
  width: 8px; height: 8px; border-radius: var(--r-pill); background: rgba(255,255,255,.4);
  transition: background .25s, width .25s;
}
.unit-nav__dots button.active { background: var(--yellow); width: 24px; }
.unit-nav__idx { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #fff; letter-spacing: .06em; margin: 0 auto; }
.unit-nav__idx b { color: var(--yellow); }

/* ---- LADO IZQUIERDO: menú de ciudades ---- */
.unit-side { display: flex; flex-direction: column; gap: 12px; height: 460px; z-index: 1; }
.unit-side__head { padding: 4px 4px 8px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 4px; }
.unit-side__head b {
  display: block; font-family: var(--font-head); color: var(--yellow);
  font-size: 30px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.unit-side__head span { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* Pills de país */
.unit-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.unit-tab {
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: .04em; text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 13px; border-radius: var(--r-pill);
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.unit-tab:hover { background: rgba(255,255,255,.16); }
.unit-tab:active { transform: scale(.95); }
.unit-tab.is-active { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

.unit-menu {
  flex: 1 1 auto; min-height: 0; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px; padding-right: 4px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.3) transparent;
}
.unit-menu::-webkit-scrollbar { width: 6px; }
.unit-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 99px; }
.unit-menu__group {
  position: sticky; top: 0; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--yellow);
  padding: 10px 6px 5px; margin-top: 2px;
  background: linear-gradient(180deg, #043a6e 70%, rgba(4,58,110,0));
}
.unit-menu__group:first-child { margin-top: 0; padding-top: 4px; }
.unit-menu__item {
  flex: 1 1 auto; min-height: 0;
  display: flex; align-items: center; gap: 12px; text-align: left; width: 100%;
  padding: 11px 14px; border-radius: var(--r-md); color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.unit-menu__item:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.26); }
.unit-menu__item:active { transform: scale(.985); }
.unit-menu__item.is-active {
  background: #fff; color: var(--navy); border-color: #fff; box-shadow: var(--sh-md);
}
.unit-menu__num {
  flex: 0 0 auto; font-family: var(--font-head); font-weight: 800; font-size: 13px;
  color: var(--yellow); width: 22px; text-align: center; letter-spacing: .02em;
}
.unit-menu__item.is-active .unit-menu__num { color: var(--red); }
.unit-menu__txt { flex: 1 1 auto; min-width: 0; }
.unit-menu__txt b {
  display: block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 14px; letter-spacing: .02em; line-height: 1.1;
}
.unit-menu__txt small {
  display: flex; align-items: center; gap: 5px; font-size: 11px; margin-top: 3px;
  opacity: .72; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.unit-menu__txt small .ic { color: var(--teal); flex: 0 0 auto; font-size: 12px; }
.unit-menu__item.is-active .unit-menu__txt small { color: var(--slate); opacity: 1; }
.unit-menu__chev { flex: 0 0 auto; opacity: .45; font-size: 16px; transition: transform .2s, opacity .2s; }
.unit-menu__item:hover .unit-menu__chev { opacity: .85; transform: translateX(2px); }
.unit-menu__item.is-active .unit-menu__chev { color: var(--red); opacity: 1; }

@media (max-width: 900px){
  .unit-pin__label { display: none; }
  .unit-pin.is-active .unit-pin__label { display: block; }
  .unit-slide__body { padding: 28px 20px 20px; }
  .unit-side { height: auto; }
  .unit-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-height: none; overflow: visible; }
  .unit-menu__item { flex: none; }
}

