/* =====================================================================
   VOLTA — Tienda virtual de demostración · Control Facilito
   Estilo: Marketplace tipo Amazon · tema claro, denso, utilitario
   Tipografía: Hanken Grotesk
   ===================================================================== */

:root {
  --bg: #eaeded;
  --surface: #ffffff;
  --surface-alt: #f7f8f8;

  --nav: #131921;
  --nav2: #232f3e;
  --nav3: #37475a;

  --ink: #0f1111;
  --ink2: #565959;
  --ink3: #6f7373;

  --link: #007185;
  --link-hover: #c7511f;

  --border: #d5d9d9;
  --border-2: #e6e6e6;

  --star: #ffa41c;
  --deal: #cc0c39;
  --price: #0f1111;
  --ok: #007600;
  --prime: #00a8e1;

  --cart: #ffd814;
  --cart-b: #fcd200;
  --cart-h: #f7ca00;
  --buy: #ffa41c;
  --buy-b: #ff8f00;
  --buy-h: #fa8900;

  --r: 8px;
  --r-pill: 100px;
  --shadow: 0 2px 8px rgba(15, 17, 17, 0.12);
  --shadow-hover: 0 6px 18px rgba(15, 17, 17, 0.16);

  --maxw: 1500px;
  --pad: clamp(14px, 3vw, 22px);

  --f: "Hanken Grotesk", "Amazon Ember", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: #ffd814; color: #0f1111; }

.v-wrap { width: min(100% - 2 * var(--pad), var(--maxw)); margin-inline: auto; }
.v-mono { font-variant-numeric: tabular-nums; }
.v-hide-sm { }

h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }

.v-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink3); font-weight: 700; display: inline-block;
}

/* link genérico azul */
.v-link { color: var(--link); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.v-link:hover { color: var(--link-hover); text-decoration: underline; }
.v-link svg { width: 15px; }

/* =====================================================================
   NAVBAR (dos niveles)
   ===================================================================== */
.v-nav { position: sticky; top: var(--offerbar-h, 0px); z-index: 100; }

.v-nav__main {
  background: var(--nav); color: #fff;
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px; height: 60px;
}
.v-nav__main > a, .v-nav__main > .v-logo {
  border: 1px solid transparent; border-radius: 3px; padding: 7px 8px;
  display: flex; align-items: center;
}
.v-nav__main > a:hover, .v-nav__main > .v-logo:hover { border-color: #fff; }

.v-logo {
  font-weight: 800; font-size: 1.45rem; letter-spacing: -0.03em;
  display: inline-flex; align-items: baseline; gap: 4px; color: #fff;
}
.v-logo b { color: var(--cart); }
.v-logo .v-bolt { width: 20px; height: 20px; color: var(--cart); align-self: center; }
.v-logo__tld { font-size: 0.7rem; color: #9fa6ad; font-weight: 600; letter-spacing: 0; }

.v-loc { color: #fff; line-height: 1.1; gap: 4px; }
.v-loc svg { width: 16px; }
.v-loc span { display: flex; flex-direction: column; }
.v-loc span small, .v-loc span > i { font-size: 0.72rem; color: #ccced2; font-style: normal; }
.v-loc b { font-size: 0.86rem; }

/* Buscador central */
.v-search {
  flex: 1; display: flex; align-items: stretch; min-width: 0; position: relative;
  border-radius: var(--r); height: 40px;
  background: #fff; border: 2px solid transparent;
}
.v-search > select, .v-search > input, .v-search > button { border-radius: 0; }
.v-search > .v-search__scope { border-top-left-radius: var(--r); border-bottom-left-radius: var(--r); }
.v-search > .v-search__btn { border-top-right-radius: var(--r); border-bottom-right-radius: var(--r); }
.v-search:focus-within { border-color: var(--buy); box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.45); }
.v-search__scope {
  background: #e6e6e6; color: #0f1111; border: 0; padding: 0 8px;
  font-size: 0.78rem; max-width: 120px; cursor: pointer; border-right: 1px solid #cdcdcd;
}
.v-search input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 12px; color: #0f1111; font-size: 0.95rem; }
.v-search__btn {
  background: var(--buy); width: 45px; min-width: 45px; flex: 0 0 45px;
  display: grid; place-items: center; color: #131921;
  transition: background 0.15s;
}
.v-search__btn:hover { background: var(--buy-h); }
.v-search__btn svg { width: 22px; height: 22px; stroke: #131921; fill: none; display: block; }

/* Autocompletado en vivo */
.v-ac {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 120;
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: 0 10px 30px rgba(15, 17, 17, 0.3);
  overflow: hidden auto; max-height: min(74vh, 560px); display: none;
}
.v-ac.is-open { display: block; }
.v-ac__sect { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink3); padding: 11px 14px 4px; font-weight: 700; }
.v-ac__item { display: flex; align-items: center; gap: 11px; padding: 8px 14px; cursor: pointer; }
.v-ac__item.is-hl, .v-ac__item:hover { background: var(--surface-alt); }
.v-ac__thumb { width: 44px; height: 44px; flex: none; background: #fff; border: 1px solid var(--border-2); border-radius: 6px; overflow: hidden; padding: 3px; }
.v-ac__info { flex: 1; min-width: 0; }
.v-ac__name { display: block; font-size: 0.88rem; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-ac__name mark { background: #fff3bf; color: inherit; padding: 0 1px; border-radius: 2px; }
.v-ac__meta { font-size: 0.74rem; color: var(--ink2); display: flex; align-items: center; gap: 6px; margin-top: 1px; }
.v-ac__price { font-weight: 700; font-size: 0.92rem; white-space: nowrap; }
.v-ac__chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 14px 12px; }
.v-ac__chip { font-size: 0.8rem; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 5px 12px; background: var(--surface-alt); cursor: pointer; color: var(--ink); }
.v-ac__chip:hover, .v-ac__chip.is-hl { border-color: var(--ink2); background: #fff; }
.v-ac__all { display: block; padding: 12px 14px; font-weight: 600; color: var(--link); border-top: 1px solid var(--border-2); background: var(--surface-alt); cursor: pointer; }
.v-ac__all:hover, .v-ac__all.is-hl { color: var(--link-hover); }
.v-ac__empty { padding: 18px 14px; color: var(--ink2); font-size: 0.9rem; }

.v-acct { color: #fff; line-height: 1.15; flex-direction: column; align-items: flex-start; }
.v-acct span { font-size: 0.72rem; color: #fff; }
.v-acct b { font-size: 0.84rem; }

.v-cartlink { color: #fff; align-items: flex-end; gap: 4px; position: relative; }
.v-cartlink__ic { position: relative; display: flex; align-items: flex-end; }
.v-cartlink svg { width: 30px; height: 30px; }
.v-cartlink b { font-size: 0.86rem; padding-bottom: 2px; }
.v-cartlink [data-cart-count] {
  position: absolute; top: -6px; left: 17px; min-width: 18px; text-align: center;
  color: var(--buy); font-weight: 800; font-size: 1rem; line-height: 1;
}
.v-cartlink [data-cart-count].is-empty { display: none; }
.v-pop { animation: vpop 0.35s cubic-bezier(.2,1.4,.4,1); }
@keyframes vpop { 0% { transform: scale(0.5); } 60% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* Sub-nav */
.v-nav__sub { background: var(--nav2); color: #fff; }
.v-nav__sub-inner { display: flex; align-items: center; gap: 2px; padding: 0 8px; height: 39px; overflow-x: auto; scrollbar-width: none; }
.v-nav__sub-inner::-webkit-scrollbar { display: none; }
.v-nav__links a { white-space: nowrap; }
.v-nav__all { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; padding: 8px 9px; border: 1px solid transparent; border-radius: 2px; }
.v-nav__all svg { width: 18px; }
.v-nav__all:hover, .v-nav__links a:hover { border-color: #fff; }
.v-nav__links { display: flex; align-items: center; gap: 0; }
.v-nav__links a { font-size: 0.9rem; padding: 8px 9px; border: 1px solid transparent; border-radius: 2px; color: #fff; }
.v-nav__deals { color: var(--cart) !important; font-weight: 700; }

.v-nav__toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; border-radius: 3px; }
.v-nav__toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.v-nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.v-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.v-nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   BOTONES (estilo Amazon)
   ===================================================================== */
.v-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--border); background: var(--surface); color: var(--ink);
  box-shadow: 0 1px 2px rgba(15,17,17,0.08); transition: background 0.12s, box-shadow 0.12s, border-color 0.12s;
  white-space: nowrap; line-height: 1.3;
}
.v-btn svg { width: 17px; height: 17px; }
.v-btn:hover { background: var(--surface-alt); }
.v-btn--primary { background: var(--cart); border-color: var(--cart-b); color: #0f1111; }
.v-btn--primary:hover { background: var(--cart-h); }
.v-btn--buy { background: var(--buy); border-color: var(--buy-b); color: #0f1111; }
.v-btn--buy:hover { background: var(--buy-h); }
.v-btn--wa { background: #25d366; border-color: #1da851; color: #fff; }
.v-btn--wa:hover { background: #1eb95a; }
.v-btn--wa svg { width: 20px; height: 20px; }
.v-cta__badge { display: inline-block; background: #fff3cd; color: #7a5b00; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 8px; }
.v-cta p { margin: 8px 0 0; }
.v-cta .v-btn { margin-top: 12px; }
.v-btn--ghost { background: var(--surface); border-color: #8d9091; }
.v-btn--ghost:hover { background: var(--surface-alt); }
.v-btn--block { width: 100%; white-space: normal; text-align: center; line-height: 1.3; }
.v-btn--lg { padding: 12px 22px; font-size: 0.98rem; }
/* Mobile: el CTA largo del modal de cierre se desbordaba */
@media (max-width: 540px) {
  .v-btn--block.v-btn--lg { padding: 11px 16px; font-size: .92rem; }
  #ctaWa { padding: 12px 14px; font-size: .88rem; }
  #ctaWa svg { flex-shrink: 0; }
}

/* =====================================================================
   BADGES
   ===================================================================== */
.v-badge {
  font-size: 0.7rem; font-weight: 700; padding: 3px 7px; border-radius: 4px; line-height: 1.1;
  display: inline-block; position: relative; overflow: hidden;
}
.v-badge--disc { background: var(--deal); color: #fff; }
.v-badge--top-ventas { background: #cc0c39; color: #fff; }
.v-badge--mas-vendido { background: #cc0c39; color: #fff; }
.v-badge--nuevo { background: var(--prime); color: #fff; }
.v-badge--oferta { background: #cc0c39; color: #fff; }
.v-badge--premium { background: #111; color: #ffd966; }
.v-badge--estilo-retro { background: #b1462f; color: #fff; }

.v-chip-envio { font-size: 0.8rem; color: var(--ok); font-weight: 600; }
.v-chip-envio strong { color: var(--ok); }

/* =====================================================================
   ESTRELLAS
   ===================================================================== */
.v-stars { display: inline-flex; gap: 1px; line-height: 1; vertical-align: middle; }
.v-star { position: relative; font-size: var(--s); color: transparent; }
.v-star-bg { color: #e3e6e6; }
.v-star-fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--star); }

/* =====================================================================
   IMÁGENES DE PRODUCTO (fondo blanco, contain)
   ===================================================================== */
.v-render { width: 100%; height: 100%; }
img.v-render { object-fit: contain; background: #fff; }

/* =====================================================================
   HERO (banner Amazon + tarjetas superpuestas)
   ===================================================================== */
.v-hero { position: relative; background: var(--bg); }
.v-hero__banner {
  height: clamp(220px, 30vw, 360px);
  background:
    linear-gradient(180deg, rgba(234,237,237,0) 55%, var(--bg) 100%),
    linear-gradient(110deg, #232f3e 0%, #37475a 40%, #4d6178 70%, #febd69 140%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.v-hero__banner::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(255,189,105,0.35), transparent 45%);
}
.v-hero__banner-text { position: relative; z-index: 2; color: #fff; padding-bottom: 40px; }
.v-hero__banner-text .v-eyebrow { color: var(--cart); }
.v-hero__banner-text h1 { font-size: clamp(1.8rem, 4.4vw, 3.2rem); margin: 8px 0 10px; max-width: 16ch; }
.v-hero__banner-text p { font-size: clamp(0.95rem, 1.4vw, 1.15rem); color: #e7e9ec; max-width: 40ch; margin-bottom: 18px; }

.v-home-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(-120px, -9vw, -90px); position: relative; z-index: 3;
  padding-bottom: 22px;
}
.v-hcard { background: var(--surface); border-radius: var(--r); padding: 18px; box-shadow: var(--shadow); }
.v-hcard h3 { font-size: 1.15rem; margin-bottom: 12px; }
.v-hcard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v-hcard__cell { display: flex; flex-direction: column; gap: 4px; }
.v-hcard__img { aspect-ratio: 1; background: var(--surface-alt); border-radius: 4px; overflow: hidden; }
.v-hcard__lbl { font-size: 0.72rem; color: var(--ink2); line-height: 1.2; }
.v-hcard__link { display: inline-block; margin-top: 12px; color: var(--link); font-size: 0.86rem; font-weight: 600; }
.v-hcard__link:hover { color: var(--link-hover); text-decoration: underline; }
.v-hcard--solo .v-hcard__solo { aspect-ratio: 16/12; background: var(--surface-alt); border-radius: 4px; overflow: hidden; margin-bottom: 10px; }

/* =====================================================================
   SECCIONES
   ===================================================================== */
.v-section { padding: 16px 0; }
.v-section--alt { background: transparent; }
.v-panel { background: var(--surface); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); }
.v-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.v-sec-head h2 { font-size: 1.35rem; }
.v-sec-head p { color: var(--ink2); font-size: 0.9rem; margin-top: 2px; }

/* =====================================================================
   CATEGORÍAS (tarjetas claras)
   ===================================================================== */
.v-cats { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.v-cat {
  position: relative; overflow: hidden; background: var(--surface); border-radius: var(--r);
  padding: 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
  transition: box-shadow 0.2s;
}
.v-cat:hover { box-shadow: var(--shadow-hover); }
.v-cat__glow { display: none; }
.v-cat__icon { flex: none; width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(140deg, var(--cg1), var(--cg2)); color: #fff; }
.v-cat__icon svg { width: 28px; height: 28px; }
.v-cat__name { font-size: 1rem; font-weight: 700; }
.v-cat__tag { color: var(--ink2); font-size: 0.82rem; }
.v-cat__count { color: var(--link); font-size: 0.8rem; font-weight: 600; margin-top: 2px; }
.v-cat__art { display: none; }

/* =====================================================================
   GRILLA / TARJETA DE PRODUCTO
   ===================================================================== */
.v-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); align-items: stretch; }
.v-card {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}
.v-card:hover { box-shadow: var(--shadow-hover); border-color: var(--border); }
.v-card__media { position: relative; display: block; aspect-ratio: 1 / 1; width: 100%; background: #fff; overflow: hidden; flex-shrink: 0; }
.v-card__media .v-render { position: absolute; inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); object-fit: contain; object-position: center; transition: transform 0.3s; display: block; }
.v-card:hover .v-card__media .v-render { transform: scale(1.04); }
.v-card__badges { position: absolute; top: 10px; left: 10px; z-index: 3; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.v-wish {
  position: absolute; top: 8px; right: 8px; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--border); color: var(--ink2); box-shadow: var(--shadow);
}
.v-wish:hover { background: var(--surface-alt); }
.v-wish.is-on { color: var(--deal); }
.v-wish.is-on svg path { fill: var(--deal); }

.v-card__body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; overflow: hidden; }
.v-card__brand { font-size: 0.74rem; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.04em; height: 1.2em; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-card__title {
  font-size: 0.92rem; font-weight: 400; line-height: 1.32; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 2.64em;
}
.v-card__title:hover { color: var(--link-hover); text-decoration: underline; }
.v-card__rate { display: flex; align-items: center; gap: 6px; height: 18px; white-space: nowrap; overflow: hidden; }
.v-card__rv { font-size: 0.8rem; color: var(--link); }
.v-card__rv:hover { color: var(--link-hover); }
.v-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; height: 1.6rem; white-space: nowrap; overflow: hidden; }
.v-card__save { display: flex; align-items: baseline; gap: 8px; height: 1.1rem; line-height: 1.1rem; white-space: nowrap; overflow: hidden; }
.v-price { font-size: 1.3rem; font-weight: 700; color: var(--price); letter-spacing: -0.02em; }
.v-price-old { font-size: 0.8rem; color: var(--ink3); text-decoration: line-through; }
.v-card__disc { font-size: 0.8rem; color: var(--deal); font-weight: 700; }
.v-card__foot { display: flex; flex-direction: column; gap: 2px; margin-top: 2px; }
.v-cuota { font-size: 0.8rem; color: var(--ink2); height: 1.2em; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-card__add { margin-top: 10px; }
.v-card__add:active { transform: translateY(1px); }
.v-card__quick { /* compat: ya no flota sobre la imagen */ }

/* =====================================================================
   OFERTAS / COUNTDOWN
   ===================================================================== */
.v-deals { display: grid; grid-template-columns: 280px 1fr; gap: 18px; background: var(--surface); border-radius: var(--r); padding: 18px; box-shadow: var(--shadow); align-items: stretch; }
.v-deals__promo { background: linear-gradient(160deg, #232f3e, #37475a); color: #fff; border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.v-deals__promo .v-eyebrow { color: var(--cart); }
.v-deals__promo h3 { font-size: 1.7rem; margin: 8px 0; }
.v-deals__promo p { color: #d7dadd; font-size: 0.9rem; }
.v-count { display: flex; gap: 8px; margin-top: 16px; }
.v-count__box { background: rgba(255,255,255,0.1); border-radius: 6px; padding: 8px 0; width: 58px; text-align: center; }
.v-count__n { font-size: 1.45rem; font-weight: 800; line-height: 1; color: var(--cart); font-variant-numeric: tabular-nums; }
.v-count__l { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: #c4c8cc; margin-top: 5px; }
.v-deals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* =====================================================================
   TIRA DE BENEFICIOS
   ===================================================================== */
.v-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.v-feat { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); }
.v-feat__ic { flex: none; width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; background: #e8f3f5; color: var(--link); }
.v-feat__ic svg { width: 22px; height: 22px; }
.v-feat h4 { font-size: 0.95rem; }
.v-feat p { color: var(--ink2); font-size: 0.82rem; margin-top: 2px; }

/* =====================================================================
   FOOTER (estilo Amazon)
   ===================================================================== */
.v-backtop { background: var(--nav3); color: #fff; text-align: center; padding: 15px; font-size: 0.85rem; }
.v-backtop:hover { background: #485769; }
.v-footer { background: var(--nav2); color: #ddd; margin-top: 22px; }
.v-footer__top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 40px var(--pad); max-width: var(--maxw); margin-inline: auto; }
.v-footer__brand .v-logo { color: #fff; margin-bottom: 12px; }
.v-footer__brand p { color: #b9bec3; font-size: 0.86rem; max-width: 32ch; }
.v-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.v-footer__social a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid #45525f; display: grid; place-items: center; color: #cfd3d7; }
.v-footer__social a:hover { border-color: #fff; color: #fff; }
.v-footer__col h5 { font-size: 0.95rem; color: #fff; margin-bottom: 12px; font-weight: 700; }
.v-footer__col a { display: block; color: #b9bec3; padding: 5px 0; font-size: 0.85rem; }
.v-footer__col a:hover { color: #fff; text-decoration: underline; }
.v-footer__bottom { background: var(--nav); color: #b9bec3; }
.v-footer__bottom > * { max-width: var(--maxw); margin-inline: auto; padding: 22px var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.v-footer__bottom p { font-size: 0.8rem; }
.v-footer__demo { font-size: 0.78rem; color: var(--cart); border: 1px solid #45525f; padding: 5px 12px; border-radius: var(--r-pill); }

/* =====================================================================
   TOAST
   ===================================================================== */
.v-toast-host { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.v-toast { display: flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r); box-shadow: var(--shadow-hover); font-size: 0.88rem; opacity: 0; transform: translateY(16px); transition: 0.3s; }
.v-toast.show { opacity: 1; transform: none; }
.v-toast--ok { background: #0f6d31; }
.v-toast--ok::before { content: "✓"; font-weight: 800; }

/* =====================================================================
   BREADCRUMB / PAGEHEAD
   ===================================================================== */
.v-bread { font-size: 0.82rem; color: var(--ink2); padding: 12px 0; }
.v-bread a { color: var(--link); }
.v-bread a:hover { color: var(--link-hover); text-decoration: underline; }
.v-bread span { color: var(--ink2); }
.v-pagehead { padding: 6px 0 14px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.v-pagehead__l { flex: 1 1 320px; min-width: 260px; }
.v-pagehead h1 { font-size: 1.7rem; }
.v-pagehead p { color: var(--ink2); margin-top: 4px; font-size: 0.9rem; }
.v-pagehead__stats { display: flex; gap: 10px; flex-wrap: wrap; }
.v-phstat { display: flex; align-items: center; gap: 10px; padding: 8px 14px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; box-shadow: var(--shadow); }
.v-phstat__ic { width: 32px; height: 32px; border-radius: 8px; background: #e8f3f5; color: var(--link); display: grid; place-items: center; flex: none; }
.v-phstat__ic svg { width: 17px; height: 17px; }
.v-phstat__txt { display: flex; flex-direction: column; line-height: 1; }
.v-phstat__txt b { font-size: 1rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.v-phstat__txt span { font-size: 0.66rem; color: var(--ink2); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; white-space: nowrap; }
@media (max-width: 820px) { .v-pagehead__stats { display: none; } }

/* =====================================================================
   CATÁLOGO
   ===================================================================== */
.v-shop { display: grid; grid-template-columns: 240px 1fr; gap: 18px; align-items: start; padding-bottom: 40px; }
.v-filters { display: flex; flex-direction: column; gap: 4px; background: var(--surface); border-radius: var(--r); padding: 16px; box-shadow: var(--shadow); position: sticky; top: calc(112px + var(--offerbar-h, 0px)); align-self: start; max-height: calc(100vh - 124px - var(--offerbar-h, 0px)); overflow-y: auto; }
.v-fgroup { padding: 12px 0; border-bottom: 1px solid var(--border-2); }
.v-fgroup:last-child { border-bottom: 0; }
.v-fgroup h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--ink); }
.v-fopt { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; color: var(--ink); font-size: 0.88rem; }
.v-fopt:hover { color: var(--link-hover); }
.v-fopt input { accent-color: var(--buy); width: 15px; height: 15px; }
.v-fopt .v-fopt__c { margin-left: auto; font-size: 0.78rem; color: var(--ink3); }
.v-fopt.is-active {
  color: #fff; font-weight: 800;
  background: linear-gradient(95deg, #cc0c39, #ff6a00, #cc0c39);
  background-size: 220% 100%;
  border-radius: 8px;
  padding: 7px 12px;
  margin: 3px -10px;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, .65), 0 4px 14px rgba(204, 12, 57, .32);
  animation: vfoptFire 1.6s ease-in-out infinite;
  position: relative;
  isolation: isolate;
}
.v-fopt.is-active::before {
  content: "🔥";
  font-size: 1.05rem;
  margin-right: 1px;
  display: inline-block;
  filter: drop-shadow(0 0 5px rgba(255, 200, 0, .9));
  animation: vfoptFlame .55s ease-in-out infinite alternate;
  transform-origin: bottom center;
}
.v-fopt.is-active .v-fopt__c {
  color: #fff;
  background: rgba(0, 0, 0, .25);
  padding: 1px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.v-fopt.is-active input { accent-color: #fff; }
.v-fopt.is-active::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 8px;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: vfoptShine 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes vfoptFire {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, .65), 0 4px 14px rgba(204, 12, 57, .32);
    background-position: 0% 50%;
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 106, 0, 0), 0 6px 18px rgba(204, 12, 57, .5);
    background-position: 100% 50%;
  }
}
@keyframes vfoptFlame {
  0% { transform: scale(1) rotate(-4deg); filter: drop-shadow(0 0 5px rgba(255, 165, 0, .85)); }
  100% { transform: scale(1.18) rotate(4deg); filter: drop-shadow(0 0 9px rgba(255, 220, 60, 1)); }
}
@keyframes vfoptShine {
  0%, 40% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}
.v-range { width: 100%; accent-color: var(--buy); margin-top: 6px; }
.v-range-val { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink2); margin-top: 6px; }

.v-results { background: var(--surface); border-radius: var(--r); padding: 16px; box-shadow: var(--shadow); }
.v-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border-2); margin-bottom: 14px; flex-wrap: wrap; }
.v-toolbar__count { color: var(--ink2); font-size: 0.88rem; }
.v-toolbar__count b { color: var(--ink); }
.v-sort { display: flex; align-items: center; gap: 8px; }
.v-sort label { font-size: 0.8rem; color: var(--ink2); }
.v-sort select { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r); padding: 8px 12px; cursor: pointer; }
.v-active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.v-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 5px 8px 5px 12px; font-size: 0.8rem; }
.v-pill button { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: #d9dada; }
.v-pill button:hover { background: var(--deal); color: #fff; }
.v-empty { text-align: center; padding: 60px 20px; color: var(--ink2); }
.v-empty svg { width: 56px; height: 56px; color: var(--ink3); margin: 0 auto 14px; }
.v-empty h3 { color: var(--ink); }
.v-mobile-filter-btn { display: none; }
.v-filters__close { display: none; }

/* =====================================================================
   PRODUCTO
   ===================================================================== */
.v-pd { display: grid; grid-template-columns: 1fr 1.1fr 300px; gap: 26px; background: var(--surface); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); align-items: start; }
.v-gallery { position: sticky; top: 70px; display: flex; flex-direction: row-reverse; gap: 12px; }
.v-gallery__main { position: relative; flex: 1; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: #fff; border: 1px solid var(--border-2); cursor: zoom-in; }
.v-gallery__main .v-render { padding: 10px; transition: transform 0.3s; }
.v-gallery__main:hover .v-render { transform: scale(1.5); }
.v-gallery__thumbs { display: flex; flex-direction: column; gap: 10px; }
.v-thumb { width: 52px; aspect-ratio: 1; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); background: #fff; opacity: 0.8; padding: 3px; }
.v-thumb:hover { opacity: 1; border-color: var(--buy); }
.v-thumb.is-active { border: 2px solid var(--link); opacity: 1; }

.v-bullets { margin: 0; padding-left: 18px; list-style: disc; color: var(--ink); }
.v-bullets li { font-size: 0.88rem; padding: 3px 0; }
.v-bullets li b { font-weight: 600; }
.v-wish-btn svg { width: 16px; height: 16px; }
.v-wish-btn.is-on { border-color: var(--deal); color: var(--deal); }
.v-wish-btn.is-on svg path { fill: var(--deal); }
.v-pd__buybox-col { align-self: start; }

.v-pd__brand { font-size: 0.84rem; color: var(--link); }
.v-pd__brand:hover { color: var(--link-hover); text-decoration: underline; }
.v-pd h1 { font-size: 1.5rem; font-weight: 600; margin: 4px 0 8px; line-height: 1.25; }
.v-pd__rate { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--ink2); font-size: 0.86rem; padding-bottom: 12px; border-bottom: 1px solid var(--border-2); }
.v-pd__rate b { color: var(--ink); }
.v-pd__rate a { color: var(--link); }
.v-pd__rate a:hover { color: var(--link-hover); text-decoration: underline; }
.v-pd__sku { color: var(--ink3); }

/* la "buy box" (3a columna) */
.v-pd__pricebox { border: 1px solid var(--border); border-radius: var(--r); padding: 18px; }
.v-pd__price-row { display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap; }
.v-pd__price { font-size: 1.9rem; font-weight: 700; color: var(--price); letter-spacing: -0.02em; line-height: 1; }
.v-pd__old { color: var(--ink3); text-decoration: line-through; font-size: 0.95rem; }
.v-pd__save { color: var(--deal); font-weight: 700; font-size: 0.9rem; }
.v-pd__cuotas { color: var(--ink2); font-size: 0.88rem; margin-top: 8px; }
.v-pd__pricetop { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.v-pd__off { background: var(--deal); color: #fff; font-weight: 800; font-size: 0.82rem; padding: 3px 9px; border-radius: 6px; }
.v-pd__hist { display: inline-flex; align-items: center; gap: 5px; font-size: 0.74rem; color: var(--ok); font-weight: 600; }
.v-spark { display: inline-block; vertical-align: middle; }
.v-pd__old i { font-style: normal; color: var(--ink3); text-decoration: none; font-size: 0.72rem; margin-right: 3px; }
.v-pricecmp { border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; margin-bottom: 16px; background: var(--surface-alt); }
.v-pricecmp__head { font-size: 0.78rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.v-pricecmp__row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 0.86rem; color: var(--ink2); border-top: 1px dashed var(--border); }
.v-pricecmp__row:first-of-type { border-top: 0; }
.v-pricecmp__row--best { color: var(--ink); }
.v-pricecmp__row--best b { color: var(--ok); font-size: 1rem; }
.v-pricecmp__tag { background: #e6f4ea; color: var(--ok); font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: var(--r-pill); text-transform: uppercase; }
.v-pricecmp__foot { margin-top: 8px; font-size: 0.78rem; color: var(--ok); font-weight: 600; }
.v-pd__stock { font-size: 1.05rem; color: var(--ok); margin: 14px 0; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.v-pd__stock i { display: none; }
.v-pd__free { color: var(--ink); font-size: 0.86rem; margin-bottom: 14px; }
.v-pd__free b { color: var(--ok); }

/* info central */
.v-pd__opt { margin: 16px 0; padding-bottom: 16px; border-bottom: 1px solid var(--border-2); }
.v-pd__opt h4 { font-size: 0.9rem; margin-bottom: 10px; }
.v-colors { display: flex; gap: 8px; flex-wrap: wrap; }
.v-color { padding: 7px 14px; border: 1px solid var(--border); border-radius: var(--r); font-size: 0.84rem; color: var(--ink); background: var(--surface); }
.v-color:hover { border-color: var(--ink2); }
.v-color.is-active { border: 2px solid var(--link); background: #e8f3f5; font-weight: 600; }

.v-pd__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.v-pd__qtyrow { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.v-qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--r-pill); overflow: hidden; background: var(--surface-alt); }
.v-qty button { width: 38px; height: 38px; font-size: 1.2rem; color: var(--ink); }
.v-qty button:hover { background: #e3e6e6; }
.v-qty input { width: 38px; text-align: center; background: none; border: 0; outline: 0; font-size: 0.95rem; }

.v-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-2); }
.v-trust__it { display: flex; gap: 10px; align-items: center; }
.v-trust__it svg { width: 20px; height: 20px; color: var(--link); flex: none; }
.v-trust__it b { font-size: 0.82rem; display: block; }
.v-trust__it span { font-size: 0.76rem; color: var(--ink2); }

/* tabs */
.v-tabs { grid-column: 1 / -1; margin-top: 24px; background: var(--surface); border-radius: var(--r); padding: 0 22px 8px; box-shadow: var(--shadow); }
.v-tabs__nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.v-tabs__btn { padding: 14px 18px; color: var(--ink2); font-weight: 700; position: relative; font-size: 0.95rem; }
.v-tabs__btn:hover { color: var(--ink); }
.v-tabs__btn.is-active { color: var(--ink); }
.v-tabs__btn.is-active::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 3px; background: var(--buy); border-radius: 3px; }
.v-tabs__panel { display: none; padding: 22px 0; }
.v-tabs__panel.is-active { display: block; }
.v-tabs__panel p { color: var(--ink); max-width: 75ch; font-size: 0.92rem; }
.v-specs { width: 100%; border-collapse: collapse; max-width: 680px; }
.v-specs tr:nth-child(odd) { background: var(--surface-alt); }
.v-specs td { padding: 11px 12px; font-size: 0.9rem; }
.v-specs td:first-child { color: var(--ink2); font-weight: 600; width: 38%; }

/* reseñas */
.v-reviews { display: grid; grid-template-columns: 300px 1fr; gap: 36px; }
.v-review-sum { align-self: start; }
.v-review-sum__big { font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.v-review-sum__cnt { color: var(--ink2); font-size: 0.84rem; margin: 6px 0 16px; }
.v-bars { display: flex; flex-direction: column; gap: 8px; }
.v-bar { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--link); }
.v-bar__track { flex: 1; height: 22px; border-radius: 4px; background: #f0f2f2; overflow: hidden; border: 1px solid var(--border); }
.v-bar__fill { height: 100%; background: var(--star); width: 0; transition: width 0.9s cubic-bezier(.2,1,.3,1); }
.v-review { border-top: 1px solid var(--border-2); padding: 20px 0; }
.v-review:first-child { border-top: 0; }
.v-review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.v-review__av { width: 36px; height: 36px; border-radius: 50%; background: #c7d1da; display: grid; place-items: center; font-weight: 700; color: var(--nav); flex: none; }
.v-review__name { font-weight: 600; font-size: 0.88rem; }
.v-review__meta { font-size: 0.76rem; color: var(--ink3); }
.v-review__verif { color: var(--deal); font-size: 0.74rem; font-weight: 600; }
.v-review h5 { font-size: 0.95rem; margin: 6px 0 4px; }
.v-review p { color: var(--ink); font-size: 0.9rem; }
.v-review__helpful { margin-top: 10px; font-size: 0.8rem; color: var(--ink2); display: flex; gap: 12px; }
.v-review__helpful button { color: var(--ink2); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 5px 12px; }
.v-review__helpful button:hover { background: var(--surface-alt); }

/* =====================================================================
   CARRITO
   ===================================================================== */
.v-cart { display: grid; grid-template-columns: 1fr 300px; gap: 18px; align-items: start; padding-bottom: 40px; }
.v-cart__items { background: var(--surface); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); }
.v-citem { display: grid; grid-template-columns: 120px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-2); align-items: start; }
.v-citem:first-of-type { padding-top: 0; }
.v-citem__media { border-radius: 6px; overflow: hidden; aspect-ratio: 1; background: #fff; border: 1px solid var(--border-2); padding: 6px; }
.v-citem__brand { font-size: 0.74rem; color: var(--ink3); text-transform: uppercase; }
.v-citem__title { font-weight: 600; font-size: 0.98rem; display: block; margin: 2px 0; color: var(--ink); }
.v-citem__title:hover { color: var(--link-hover); text-decoration: underline; }
.v-citem__price { font-size: 1.05rem; font-weight: 700; }
.v-citem__stock { color: var(--ok); font-size: 0.78rem; margin: 4px 0 10px; }
.v-citem__right { text-align: right; }
.v-citem__rm { font-size: 0.8rem; color: var(--link); display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; }
.v-citem__rm:hover { color: var(--link-hover); text-decoration: underline; }
.v-citem__tools { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.v-qty--sm button { width: 32px; height: 32px; font-size: 1rem; }
.v-qty--sm input { width: 32px; }

.v-summary { background: var(--surface); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); position: sticky; top: 70px; }
.v-summary h3 { font-size: 1.1rem; margin-bottom: 14px; }
.v-srow { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink2); font-size: 0.9rem; }
.v-srow b { color: var(--ink); }
.v-srow--disc { color: var(--ok); }
.v-summary__total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; margin-top: 4px; border-top: 1px solid var(--border); }
.v-summary__total span { color: var(--ink); font-weight: 600; }
.v-summary__total b { font-size: 1.5rem; color: var(--deal); font-weight: 700; }
.v-coupon { display: flex; gap: 8px; margin: 14px 0; }
.v-coupon input { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 9px 12px; outline: none; }
.v-coupon input:focus { border-color: var(--buy); box-shadow: 0 0 0 3px rgba(255,153,0,0.3); }
.v-coupon button { padding: 9px 14px; border-radius: var(--r); border: 1px solid var(--border); font-weight: 600; }
.v-coupon button:hover { background: var(--surface-alt); }
.v-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; color: var(--ink2); font-size: 0.76rem; }
.v-secure svg { width: 14px; }
.v-cart-empty { text-align: center; padding: 60px 20px; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); grid-column: 1 / -1; }
.v-cart-empty svg { width: 72px; height: 72px; color: var(--ink3); margin: 0 auto 18px; }
.v-cart-empty h2 { font-size: 1.6rem; }
.v-cart-empty p { color: var(--ink2); margin: 10px 0 22px; }

/* modal */
.v-modal { position: fixed; inset: 0; z-index: 9500; display: none; place-items: center; padding: 16px; overflow-y: auto; }
.v-modal.is-open { display: grid; }
.v-modal__bg { position: absolute; inset: 0; background: rgba(15,17,17,0.55); }
.v-modal__card { position: relative; max-width: 440px; width: 100%; max-height: calc(100vh - 32px); overflow-y: auto; background: #fff; border-radius: var(--r); padding: 34px 26px; text-align: center; box-shadow: var(--shadow-hover); animation: vrise 0.3s ease; }
@keyframes vrise { from { opacity: 0; transform: translateY(20px); } }
.v-modal__check { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: #e6f4ea; display: grid; place-items: center; color: var(--ok); }
.v-modal__check svg { width: 40px; height: 40px; }
.v-modal h3 { font-size: 1.5rem; }
.v-modal p { color: var(--ink2); margin: 10px 0 22px; font-size: 0.92rem; }

/* =====================================================================
   REVEAL (sutil)
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: 0.04s; }
[data-reveal][data-d="2"] { transition-delay: 0.08s; }
[data-reveal][data-d="3"] { transition-delay: 0.12s; }
[data-reveal][data-d="4"] { transition-delay: 0.16s; }
.v-hero [data-anim] { opacity: 0; transform: translateY(12px); animation: vin 0.6s ease forwards; }
.v-hero [data-anim="1"] { animation-delay: 0.05s; }
.v-hero [data-anim="2"] { animation-delay: 0.15s; }
.v-hero [data-anim="3"] { animation-delay: 0.25s; }
.v-hero [data-anim="4"] { animation-delay: 0.35s; }
@keyframes vin { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =====================================================================
   MOVIMIENTO: banner slider, carruseles, prueba social, contadores
   ===================================================================== */
/* Banner / hero slider */
.v-slider { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.v-slides { display: flex; transition: transform 0.6s cubic-bezier(.4, 0, .2, 1); }
.v-slide { flex: 0 0 100%; min-height: clamp(420px, 42vw, 560px); display: flex; align-items: flex-start; padding: clamp(40px, 6vw, 80px) clamp(22px, 5vw, 64px) clamp(150px, 14vw, 200px); position: relative; color: #fff; overflow: hidden; }
.v-slide__bg { position: absolute; inset: 0; z-index: 0; }
.v-slide__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 85% 30%, rgba(255, 255, 255, .14), transparent 60%); }
.v-slide__content { position: relative; z-index: 2; max-width: 62%; }
.v-slide .v-eyebrow { color: var(--cart); }
.v-slide h2 { font-size: clamp(1.6rem, 3.8vw, 3rem); margin: 8px 0; line-height: 1.05; }
.v-slide p { color: rgba(255, 255, 255, .92); margin-bottom: 18px; max-width: 36ch; }
.v-slide__art { position: absolute; right: 4%; top: 12%; width: 34%; max-width: 340px; aspect-ratio: 1; z-index: 1; animation: vbob 6s ease-in-out infinite; }
.v-slide__art .v-render, .v-slide__art img { filter: drop-shadow(0 24px 44px rgba(0, 0, 0, .45)); border-radius: 16px; }
@keyframes vbob { 50% { transform: translateY(-14px); } }
.v-slider__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 6; }
.v-slider__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .5); cursor: pointer; transition: .3s; }
.v-slider__dot.is-active { background: #fff; width: 28px; border-radius: 6px; }
.v-slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .22); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; z-index: 6; transition: .2s; }
.v-slider__arrow:hover { background: rgba(255, 255, 255, .42); }
.v-slider__arrow svg { width: 22px; }
.v-slider__arrow--prev { left: 12px; } .v-slider__arrow--next { right: 12px; }

/* Carrusel horizontal de productos */
.v-railwrap { position: relative; }
.v-rail { display: flex; align-items: flex-start; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; padding: 4px 2px 14px; }
.v-rail::-webkit-scrollbar { height: 8px; }
.v-rail::-webkit-scrollbar-track { background: transparent; }
.v-rail::-webkit-scrollbar-thumb { background: #c8cdd0; border-radius: 20px; }
.v-rail .v-card { flex: 0 0 232px; width: 232px; scroll-snap-align: start; }
.v-rail__btn { position: absolute; top: 42%; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-hover); display: grid; place-items: center; z-index: 5; transition: .2s; color: var(--ink); }
.v-rail__btn:hover { background: var(--surface-alt); }
.v-rail__btn svg { width: 20px; }
.v-rail__btn--prev { left: -18px; } .v-rail__btn--next { right: -18px; }
.v-rail__btn[disabled] { opacity: 0; pointer-events: none; }
@media (hover: none), (max-width: 900px) { .v-rail__btn { display: none; } }

/* Prueba social / live */
.v-social { background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); padding: 11px 16px; display: flex; align-items: center; gap: 18px; }
.v-social__live { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.v-social__live b { color: var(--deal); font-variant-numeric: tabular-nums; }
.v-social__dot { width: 9px; height: 9px; border-radius: 50%; background: #e0193a; animation: vpulse 1.6s infinite; }
@keyframes vpulse { 0% { box-shadow: 0 0 0 0 rgba(224, 25, 58, .5); } 70% { box-shadow: 0 0 0 9px rgba(224, 25, 58, 0); } 100% { box-shadow: 0 0 0 0 rgba(224, 25, 58, 0); } }
.v-social__ticker { flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.v-social__track { display: inline-flex; gap: 38px; white-space: nowrap; animation: vmarq 28s linear infinite; }
.v-social__track span { color: var(--ink2); font-size: 0.85rem; }
@keyframes vmarq { to { transform: translateX(-50%); } }

/* Urgencia / vistas en tarjetas */
.v-card__urg { margin-top: 6px; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; height: 30px; }
.v-stockbar { height: 6px; border-radius: 20px; background: #edf0f0; overflow: hidden; }
.v-stockbar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--buy), var(--deal)); border-radius: 20px; transition: width 1s cubic-bezier(.2,1,.3,1); }
.v-stocklbl { font-size: 0.74rem; color: var(--deal); font-weight: 700; }
.v-card__viewers { font-size: 0.74rem; color: var(--ink2); display: inline-flex; align-items: center; gap: 5px; }
.v-card__viewers i { width: 7px; height: 7px; border-radius: 50%; background: #e0193a; animation: vpulse 1.6s infinite; }
.v-card__ship { display: flex; align-items: center; gap: 8px; margin-top: 2px; height: 1.1rem; white-space: nowrap; overflow: hidden; }
.v-ship-free { font-size: 0.82rem; color: var(--ok); font-weight: 700; }
.v-ship-paid { font-size: 0.82rem; color: var(--ink3); }
.v-full { background: #00a650; color: #fff; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em; padding: 2px 7px; border-radius: 3px; }
.v-card__delivery { font-size: 0.78rem; color: var(--ink); font-weight: 600; margin-top: 1px; height: 1.2em; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-card__delivery::before { content: "🚚 "; }

/* Aviso en vivo: "alguien compró…" */
.v-livebuy { position: fixed; left: 16px; bottom: 16px; z-index: 9300; display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-hover); padding: 10px 14px 10px 10px; max-width: 320px; transform: translateY(140%); opacity: 0; transition: transform .5s cubic-bezier(.2,1,.3,1), opacity .4s; }
.v-livebuy.show { transform: translateY(0); opacity: 1; }
.v-livebuy__img { width: 44px; height: 44px; flex: none; background: #fff; border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; padding: 3px; }
.v-livebuy__txt { font-size: 0.8rem; line-height: 1.25; color: var(--ink2); }
.v-livebuy__txt b { color: var(--ink); display: block; font-size: 0.84rem; }
.v-livebuy__txt em { color: var(--ok); font-style: normal; font-weight: 600; }
@media (max-width: 560px) { .v-livebuy { left: 10px; right: 76px; bottom: 12px; max-width: none; } }

/* Frecuentemente comprados juntos */
.v-fbt { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); padding: 22px; }
.v-fbt__items { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.v-fbt__prod { width: 116px; text-align: center; }
.v-fbt__img { aspect-ratio: 1; background: #fff; border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; padding: 8px; }
.v-fbt__prod span { font-size: 0.74rem; color: var(--ink2); display: block; margin-top: 4px; line-height: 1.2; }
.v-fbt__plus { font-size: 1.6rem; color: var(--ink3); font-weight: 300; }
.v-fbt__cta { margin-left: auto; }
.v-fbt__total { font-size: 0.9rem; color: var(--ink2); margin-bottom: 8px; }
.v-fbt__total b { font-size: 1.5rem; color: var(--ink); display: block; }

/* Sello IA */
.v-ai-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(90deg, var(--link), var(--buy)); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; border-radius: var(--r-pill); text-transform: uppercase; vertical-align: middle; margin-left: 8px; }
.v-ai-badge svg { width: 13px; height: 13px; }

/* Marquee de marcas */
.v-brands { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); padding: 6px 0; }
.v-brands__track { display: inline-flex; white-space: nowrap; animation: vmarq 30s linear infinite; }
.v-brands__track span { font-weight: 800; font-size: 1.4rem; color: #b9c0c4; padding-right: 54px; letter-spacing: -0.02em; }
.v-stats [data-count] { font-variant-numeric: tabular-nums; }

/* Barra de categorías (chips deslizables) */
.v-catbar { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.v-catbar::-webkit-scrollbar { display: none; }
.v-chip-cat { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 90px; padding: 14px 8px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; scroll-snap-align: start; }
.v-chip-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.v-chip-cat__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, var(--cg1, #37475a), var(--cg2, #131921)); color: #fff; }
.v-chip-cat__ic svg { width: 27px; height: 27px; }
.v-chip-cat span { font-size: 0.72rem; font-weight: 600; text-align: center; line-height: 1.15; color: var(--ink); }

/* Banner promo animado (gradiente en movimiento) */
.v-promo { position: relative; overflow: hidden; border-radius: var(--r); padding: clamp(22px, 4vw, 42px); color: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: linear-gradient(110deg, #9c2d00, #ff6a00, #ffb800, #ff6a00, #9c2d00); background-size: 300% 100%; animation: vgrad 9s ease infinite; }
@keyframes vgrad { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.v-promo__txt h3 { font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.1; }
.v-promo__txt .v-eyebrow { color: #fff; opacity: .9; }
.v-promo__txt p { color: rgba(255, 255, 255, .92); margin-top: 6px; }
.v-promo .v-btn { flex: none; }

/* Banners duales */
.v-promos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v-promo2 { position: relative; overflow: hidden; border-radius: var(--r); padding: 28px; color: #fff; min-height: 160px; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow); background-size: 220% 100%; animation: vgrad 11s ease infinite; transition: transform .25s; }
.v-promo2:hover { transform: translateY(-4px); }
.v-promo2 h4 { font-size: 1.35rem; max-width: 16ch; }
.v-promo2 p { color: rgba(255, 255, 255, .9); font-size: 0.9rem; margin: 6px 0 14px; }
.v-promo2 .v-link2 { font-weight: 700; color: #fff; }
.v-promo2 .v-link2:hover { text-decoration: underline; }

/* Carrusel que se mueve solo (marquee infinito) */
.v-mq { overflow: hidden; padding: 6px 0 14px; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.v-mq__track { display: flex; align-items: flex-start; gap: 14px; width: max-content; animation: vscroll 48s linear infinite; }
.v-mq:hover .v-mq__track { animation-play-state: paused; }
.v-mq .v-card { width: 220px; flex: 0 0 220px; }
@keyframes vscroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .v-mq__track { animation: none; } .v-promo, .v-promo2 { animation: none; } }
@media (max-width: 700px) { .v-promos { grid-template-columns: 1fr; } .v-promo { flex-direction: column; align-items: flex-start; } }

/* Brillo al pasar el cursor por la tarjeta */
.v-card__media::after { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%); transform: translateX(-130%); transition: transform .7s; }
.v-card:hover .v-card__media::after { transform: translateX(130%); }

/* Badges animados — pulse + glow + shine para llamar la atención */
.v-badge--oferta, .v-badge--disc, .v-badge--top-ventas, .v-badge--mas-vendido {
  animation: vbadgePulse 1.4s ease-in-out infinite;
  transform-origin: center;
}
.v-badge--oferta::before, .v-badge--disc::before, .v-badge--top-ventas::before, .v-badge--mas-vendido::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .65) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: vbadgeShine 2.2s ease-in-out infinite;
}
@keyframes vbadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(204, 12, 57, .65), 0 2px 6px rgba(0, 0, 0, .18);
    filter: brightness(1) saturate(1);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(204, 12, 57, 0), 0 6px 14px rgba(0, 0, 0, .28);
    filter: brightness(1.22) saturate(1.18);
  }
}
@keyframes vbadgeShine {
  0%, 35% { transform: translateX(-130%); }
  65%, 100% { transform: translateX(130%); }
}
/* La variante --disc usa color de descuento, ajustar el glow al tono */
.v-badge--disc {
  animation-name: vbadgePulseDisc;
}
@keyframes vbadgePulseDisc {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 73, 36, .7), 0 2px 6px rgba(0, 0, 0, .18);
    filter: brightness(1) saturate(1);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(247, 73, 36, 0), 0 6px 14px rgba(0, 0, 0, .28);
    filter: brightness(1.22) saturate(1.18);
  }
}
.v-full { position: relative; overflow: hidden; }
.v-full::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .75) 50%, transparent 65%); transform: translateX(-130%); animation: vshine 2.8s infinite; }
@keyframes vshine { 0%, 55% { transform: translateX(-130%); } 100% { transform: translateX(130%); } }

/* Estallido del corazón al guardar */
.v-wish.is-on { animation: vheart .45s cubic-bezier(.2, 1.4, .4, 1); }
@keyframes vheart { 0% { transform: scale(1); } 40% { transform: scale(1.4); } 100% { transform: scale(1); } }

/* Barra de progreso de scroll */
.v-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--buy), var(--cart)); box-shadow: 0 0 8px rgba(255, 153, 0, .6); }

/* Orbes flotantes en el banner */
.v-slide__bg::before { content: ""; position: absolute; width: 46%; aspect-ratio: 1; right: -6%; top: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 70%); animation: vfloat1 9s ease-in-out infinite; }
@keyframes vfloat1 { 50% { transform: translate(-14%, 20%) scale(1.15); } }
@media (prefers-reduced-motion: reduce) {
  .v-badge--oferta, .v-badge--disc, .v-badge--top-ventas, .v-badge--mas-vendido,
  .v-badge--oferta::before, .v-badge--disc::before, .v-badge--top-ventas::before, .v-badge--mas-vendido::before,
  .v-fopt.is-active, .v-fopt.is-active::before, .v-fopt.is-active::after,
  .v-full::after, .v-slide__bg::before { animation: none; }
}

/* Entrada escalonada de tarjetas (catálogo: anima en cada filtrado) */
.v-anim { animation: vcardin .5s both; }
@keyframes vcardin { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
/* Toolbar del catálogo pegajosa */
.v-toolbar { position: sticky; top: calc(102px + var(--offerbar-h, 0px)); z-index: 20; background: var(--surface); }
.v-results { overflow: visible; }
.v-toolbar__count b { display: inline-block; min-width: 1.5ch; }
@media (prefers-reduced-motion: reduce) { .v-anim { animation: none; } }
@media (max-width: 820px) { .v-toolbar { top: 0; } }

/* =====================================================================
   UI GLOBAL: modales, drawer, WhatsApp, páginas institucionales
   ===================================================================== */
.v-modal__x { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; color: var(--ink2); }
.v-modal__x:hover { background: var(--surface-alt); }
.v-modal__card--wide { max-width: 680px; }
.v-form { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; text-align: left; }
.v-field { display: flex; flex-direction: column; gap: 5px; }
.v-field span { font-size: 0.82rem; font-weight: 600; }
.v-field input, .v-field textarea, .v-field select { border: 1px solid var(--border); border-radius: var(--r); padding: 10px 12px; outline: none; background: #fff; font-family: inherit; }
.v-field input:focus, .v-field textarea:focus { border-color: var(--buy); box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3); }
.v-form__alt { text-align: center; margin-top: 14px; font-size: 0.88rem; color: var(--ink2); }
.v-form__alt a { color: var(--link); font-weight: 600; }
.v-form__alt a:hover { color: var(--link-hover); }
.v-form__demo { text-align: center; font-size: 0.75rem; color: var(--ink3); margin-top: 12px; }
.v-locopts { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.v-locopt { border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; text-align: left; display: flex; flex-direction: column; gap: 2px; }
.v-locopt:hover { border-color: var(--buy); background: var(--surface-alt); }
.v-locopt b { font-size: 0.92rem; }
.v-locopt span { font-size: 0.8rem; color: var(--ink2); }
.v-locopt__h { color: var(--ok) !important; font-weight: 600; }

.v-drawer { position: fixed; inset: 0; z-index: 9600; display: none; }
.v-drawer.is-open { display: block; }
.v-drawer__bg { position: absolute; inset: 0; background: rgba(15, 17, 17, 0.5); animation: vfade 0.25s ease; }
.v-drawer__panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(360px, 86vw); background: #fff; box-shadow: var(--shadow-hover); display: flex; flex-direction: column; overflow-y: auto; animation: vslide 0.3s cubic-bezier(.2,1,.3,1); }
@keyframes vslide { from { transform: translateX(-100%); } }
@keyframes vfade { from { opacity: 0; } }
.v-drawer__head { background: var(--nav2); color: #fff; padding: 16px 18px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
.v-drawer__head .v-modal__x { position: static; color: #fff; }
.v-drawer__sect { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink3); font-weight: 700; padding: 16px 18px 6px; }
.v-drawer__list { display: flex; flex-direction: column; }
.v-drawer__list a { padding: 12px 18px; border-bottom: 1px solid var(--border-2); font-size: 0.92rem; }
.v-drawer__list a:hover { background: var(--surface-alt); color: var(--link-hover); }

.v-wa { position: fixed; right: 18px; bottom: 18px; z-index: 9400; display: inline-flex; align-items: center; background: #25d366; color: #fff; border-radius: var(--r-pill); height: 54px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); overflow: hidden; }
.v-wa svg { width: 28px; height: 28px; margin: 0 13px; flex: none; }
.v-wa span { font-weight: 700; font-size: 0.9rem; max-width: 0; white-space: nowrap; opacity: 0; transition: max-width 0.3s, opacity 0.3s, padding 0.3s; }
.v-wa:hover span { max-width: 180px; opacity: 1; padding-right: 18px; }

.v-suc { display: grid; grid-template-columns: 380px 1fr; gap: 20px; align-items: start; padding-bottom: 30px; }
.v-suc__list { display: flex; flex-direction: column; gap: 12px; }
.v-branch { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.v-branch:hover { box-shadow: var(--shadow); }
.v-branch.is-active { border-color: var(--buy); box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.25); }
.v-branch__top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.v-branch__top b { font-size: 1rem; }
.v-branch__tag { background: #e8f3f5; color: var(--link); font-size: 0.66rem; font-weight: 700; padding: 3px 8px; border-radius: var(--r-pill); text-transform: uppercase; }
.v-branch__row { font-size: 0.86rem; color: var(--ink2); padding: 2px 0; }
.v-branch__row a { color: var(--link); }
.v-branch__actions { display: flex; gap: 16px; margin-top: 10px; }
.v-suc__mapwrap { position: sticky; top: 70px; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.v-suc__maphead { padding: 12px 16px; font-weight: 700; border-bottom: 1px solid var(--border-2); }
.v-suc__map { width: 100%; height: 520px; border: 0; display: block; }

.v-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.v-contact__info { display: flex; flex-direction: column; gap: 14px; }
.v-contact__it { display: flex; gap: 12px; align-items: flex-start; }
.v-contact__it svg { width: 22px; height: 22px; color: var(--link); flex: none; margin-top: 2px; }
.v-contact__it b { display: block; font-size: 0.92rem; }
.v-contact__it span { font-size: 0.86rem; color: var(--ink2); }

.v-about__hero { background: linear-gradient(150deg, #232f3e, #37475a); color: #fff; border-radius: var(--r); padding: clamp(28px, 5vw, 56px); }
.v-about__hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 18ch; }
.v-about__hero p { color: #d7dadd; margin-top: 12px; max-width: 55ch; }
.v-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.v-statbox { background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); padding: 22px; text-align: center; }
.v-statbox b { font-size: 2rem; display: block; color: var(--ink); }
.v-statbox span { font-size: 0.84rem; color: var(--ink2); }
.v-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v-value { background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px; }
.v-value__ic { width: 46px; height: 46px; border-radius: 10px; background: #e8f3f5; color: var(--link); display: grid; place-items: center; margin-bottom: 12px; }
.v-value h4 { font-size: 1.05rem; }
.v-value p { color: var(--ink2); font-size: 0.88rem; margin-top: 6px; }

.v-help { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; padding-bottom: 30px; }
.v-help__nav { position: sticky; top: 70px; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); padding: 10px; display: flex; flex-direction: column; }
.v-help__nav a { padding: 10px 12px; border-radius: 6px; font-size: 0.9rem; color: var(--ink); }
.v-help__nav a:hover { background: var(--surface-alt); color: var(--link-hover); }
.v-help__sec { background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px; margin-bottom: 16px; scroll-margin-top: 80px; }
.v-help__sec h2 { font-size: 1.3rem; margin-bottom: 10px; }
.v-help__sec > p { color: var(--ink2); font-size: 0.92rem; margin-bottom: 8px; }
.v-help__sec ul { list-style: disc; padding-left: 20px; color: var(--ink2); font-size: 0.92rem; }
.v-help__sec li { padding: 3px 0; }
.v-faq { border-bottom: 1px solid var(--border-2); }
.v-faq__q { width: 100%; text-align: left; padding: 14px 0; font-weight: 600; font-size: 0.96rem; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.v-faq__q::after { content: "+"; font-size: 1.3rem; color: var(--ink2); }
.v-faq.is-open .v-faq__q::after { content: "−"; }
.v-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--ink2); font-size: 0.9rem; }
.v-faq.is-open .v-faq__a { max-height: 260px; padding-bottom: 14px; }

@media (max-width: 1000px) {
  .v-suc { grid-template-columns: 1fr; } .v-suc__mapwrap { position: static; }
  .v-help { grid-template-columns: 1fr; } .v-help__nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .v-stats { grid-template-columns: repeat(2, 1fr); } .v-values { grid-template-columns: 1fr; } .v-contact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .v-stats { grid-template-columns: 1fr; } .v-wa span { display: none; } }

/* =====================================================================
   QUICK VIEW · COMPARADOR · OFERTAS · FAVORITOS
   ===================================================================== */
/* Botones de acción en la tarjeta */
.v-card__acts { position: absolute; top: 8px; right: 8px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.v-card__acts .v-wish { position: static; }
.v-compare { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--border); color: var(--ink2); box-shadow: var(--shadow); transition: .2s; }
.v-compare:hover { background: var(--surface-alt); color: var(--ink); }
.v-compare.is-on { color: var(--link); border-color: var(--link); background: #e8f3f5; }
.v-card__quickbtn { position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 3; background: rgba(19, 25, 33, .92); color: #fff; border-radius: 8px; padding: 9px; font-weight: 600; font-size: 0.82rem; opacity: 0; transform: translateY(10px); transition: .25s; }
.v-card:hover .v-card__quickbtn { opacity: 1; transform: none; }
@media (hover: none) { .v-card__quickbtn { display: none; } }
.v-btn.is-on { border-color: var(--link); color: var(--link); background: #e8f3f5; }

/* Quick View modal */
#vQuickModal .v-modal__card--wide { max-width: 860px; text-align: left; padding: 26px; }
.v-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.v-quick__main { aspect-ratio: 1; background: #fff; border: 1px solid var(--border-2); border-radius: var(--r); overflow: hidden; padding: 12px; }
.v-quick__thumbs { display: flex; gap: 8px; margin-top: 10px; }
.v-quick__thumb { width: 54px; aspect-ratio: 1; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #fff; padding: 3px; opacity: .8; }
.v-quick__thumb.is-active { border: 2px solid var(--link); opacity: 1; }
.v-quick__actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.v-quick__row { display: flex; gap: 10px; }
.v-quick__row .v-btn { flex: 1; }
.v-quick__row .v-btn svg { width: 16px; height: 16px; }
@media (max-width: 680px) { .v-quick { grid-template-columns: 1fr; } }

/* Barra flotante de comparación */
.v-ctray { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%) translateY(150%); z-index: 9350; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-hover); padding: 10px 14px; display: flex; align-items: center; gap: 14px; transition: transform .45s cubic-bezier(.2, 1, .3, 1); max-width: calc(100vw - 24px); }
.v-ctray.show { transform: translateX(-50%) translateY(0); }
.v-ctray__lbl { font-weight: 700; font-size: 0.85rem; }
.v-ctray__items { display: flex; gap: 10px; }
.v-ctray__item { position: relative; width: 46px; height: 46px; border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; background: #fff; padding: 3px; }
.v-ctray__rm { position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; border-radius: 50%; background: var(--deal); color: #fff; font-size: 0.85rem; display: grid; place-items: center; }
.v-ctray__cta { display: flex; align-items: center; gap: 12px; }
.v-ctray__clear { font-size: 0.8rem; color: var(--ink2); }
.v-ctray__clear:hover { color: var(--deal); }
@media (max-width: 560px) { .v-ctray { left: 8px; right: 8px; bottom: 8px; max-width: none; transform: translateY(160%); } .v-ctray.show { transform: none; } .v-ctray__lbl { display: none; } }

/* Burbuja flotante del carrito */
.v-cartfab { position: fixed; right: 18px; bottom: 18px; z-index: 9360; display: none; align-items: center; gap: 10px; background: var(--cart); color: #0f1111; border-radius: var(--r-pill); padding: 10px 18px 10px 12px; box-shadow: 0 10px 28px rgba(0, 0, 0, .28); font-weight: 700; transform: translateY(20px); opacity: 0; transition: transform .35s cubic-bezier(.2, 1, .3, 1), opacity .35s, background .15s; }
.v-cartfab.show { display: flex; transform: none; opacity: 1; }
.v-cartfab:hover { background: var(--cart-h); }
.v-cartfab__ic { position: relative; display: grid; place-items: center; }
.v-cartfab__ic svg { width: 26px; height: 26px; }
.v-cartfab__n { position: absolute; top: -7px; right: -9px; background: var(--deal); color: #fff; min-width: 19px; height: 19px; border-radius: 10px; font-size: .7rem; font-weight: 800; display: grid; place-items: center; padding: 0 4px; }
.v-cartfab__txt { display: flex; flex-direction: column; line-height: 1.05; font-size: .76rem; }
.v-cartfab__txt b { font-size: .98rem; }
body.has-fab .v-wa { bottom: 84px; }
@media (max-width: 560px) { .v-cartfab { right: 10px; bottom: 10px; } body.has-fab .v-wa { bottom: 76px; } }

/* Página Hot Sale */
.v-hotsale { background: linear-gradient(120deg, #9c2d00, #ff6a00, #ffb800); background-size: 300% 100%; animation: vgrad 9s ease infinite; color: #fff; border-radius: var(--r); padding: clamp(24px, 4vw, 46px); text-align: center; box-shadow: var(--shadow); }
.v-hotsale h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.v-hotsale p { color: rgba(255, 255, 255, .92); margin: 8px 0 16px; }
.v-hotsale .v-count { justify-content: center; }

/* Comparador */
.v-cmp { overflow-x: auto; }
.v-cmp table { border-collapse: collapse; width: 100%; min-width: 540px; background: var(--surface); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.v-cmp th, .v-cmp td { padding: 14px; border-bottom: 1px solid var(--border-2); text-align: center; vertical-align: top; font-size: 0.9rem; }
.v-cmp td.lbl { text-align: left; color: var(--ink2); font-weight: 600; width: 150px; background: var(--surface-alt); }
.v-cmp__img { width: 120px; aspect-ratio: 1; margin: 0 auto 10px; background: #fff; border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; padding: 6px; }
.v-cmp__name { font-weight: 600; font-size: 0.86rem; display: block; }
.v-cmp .best { color: var(--ok); font-weight: 800; }
.v-cmp__rm { color: var(--link); font-size: 0.8rem; margin-top: 8px; }
.v-cmp__rm:hover { color: var(--link-hover); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1200px) {
  .v-home-cards { grid-template-columns: repeat(2, 1fr); margin-top: -70px; }
  .v-pd { grid-template-columns: 1fr 1fr; }
  .v-pd__buybox-col { grid-column: 1 / -1; }
  .v-reviews { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .v-cats { grid-template-columns: repeat(2, 1fr); }
  .v-feats { grid-template-columns: repeat(2, 1fr); }
  .v-deals { grid-template-columns: 1fr; }
  .v-pd { grid-template-columns: 1fr; }
  .v-gallery { position: static; }
  .v-cart { grid-template-columns: 1fr; }
  .v-summary { position: static; }
}
@media (max-width: 820px) {
  /* Buscador a fila completa (estilo Amazon móvil); menú al drawer "Todo" */
  .v-loc, .v-acct { display: none; }
  .v-nav__main { height: auto; flex-wrap: wrap; padding: 8px 10px; row-gap: 8px; column-gap: 8px; }
  .v-search { order: 5; flex-basis: 100%; height: 42px; }
  .v-cartlink { margin-left: auto; }
  .v-nav__toggle { display: none; }
  .v-nav__all { display: inline-flex; }
  .v-nav__sub-inner { height: 44px; }
  .v-nav__links { display: none !important; }
  .v-shop { grid-template-columns: 1fr; }
  .v-mobile-filter-btn { display: inline-flex; }
  .v-filters { position: fixed; inset: 0; z-index: 200; border-radius: 0; padding: 70px 18px 18px; overflow-y: auto; display: none; max-height: none; top: 0; }
  .v-filters.is-open { display: flex; }
  .v-filters__close { display: grid; place-items: center; position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); font-size: 1.3rem; }
}
@media (max-width: 620px) {
  .v-home-cards { grid-template-columns: 1fr; margin-top: -50px; }
  .v-cats, .v-feats { grid-template-columns: 1fr; }
  .v-deals__grid { grid-template-columns: 1fr; }
  .v-footer__top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .v-citem { grid-template-columns: 84px 1fr; gap: 12px; }
  .v-citem__tools { flex-wrap: wrap; }
  .v-citem__right { grid-column: 1 / -1; text-align: left; display: flex; align-items: baseline; gap: 10px; }
  .v-search__scope { display: none; }
}

/* =====================================================================
   BARRA STICKY DE OFERTA (franja superior, siempre visible)
   ===================================================================== */
:root { --offerbar-h: 38px; }
body.offerbar-off { --offerbar-h: 0px; }
.v-offerbar {
  position: sticky; top: 0; z-index: 130; height: var(--offerbar-h);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, #cc0c39, #ff6a00, #cc0c39); background-size: 200% 100%;
  animation: voffer 7s linear infinite; color: #fff; font-size: 0.82rem; font-weight: 600;
  overflow: hidden; padding: 0 38px;
}
@keyframes voffer { to { background-position: 200% 0; } }
.v-offerbar__inner { display: flex; align-items: center; gap: 10px; white-space: nowrap; overflow: hidden; }
.v-offerbar__count { font-variant-numeric: tabular-nums; font-weight: 800; background: rgba(0, 0, 0, .22); padding: 2px 8px; border-radius: 5px; letter-spacing: .03em; }
.v-offerbar__sep { opacity: .55; }
.v-offerbar__ship { font-weight: 700; }
.v-offerbar__coupon { color: #fff; font-weight: 600; border: 1px dashed rgba(255, 255, 255, .75); border-radius: 6px; padding: 2px 10px; transition: background .15s; }
.v-offerbar__coupon:hover { background: rgba(255, 255, 255, .18); }
.v-offerbar__coupon b { font-weight: 800; }
.v-offerbar__x { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 1.1rem; opacity: .85; }
.v-offerbar__x:hover { background: rgba(0, 0, 0, .22); opacity: 1; }
body.offerbar-off .v-offerbar { display: none; }
@media (max-width: 700px) {
  .v-offerbar { font-size: 0.72rem; padding: 0 32px; }
  .v-offerbar__ship, .v-offerbar__sep:first-of-type { display: none; }
}

/* =====================================================================
   MINI-CART (panel lateral derecho que abre la burbuja)
   ===================================================================== */
.v-minicart { position: fixed; inset: 0; z-index: 9600; display: none; }
.v-minicart.is-open { display: block; }
.v-minicart__bg { position: absolute; inset: 0; background: rgba(15, 17, 17, .5); animation: vfadein .2s ease; }
@keyframes vfadein { from { opacity: 0; } }
.v-minicart__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--surface); display: flex; flex-direction: column; box-shadow: -10px 0 44px rgba(0, 0, 0, .26); animation: vslidein .32s cubic-bezier(.2, 1, .3, 1); }
@keyframes vslidein { from { transform: translateX(100%); } }
.v-minicart__head { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--border-2); }
.v-minicart__head b { font-size: 1.1rem; }
.v-minicart__head .v-modal__x { position: static; }
.v-minicart__ship { padding: 12px 18px; background: #fff7ed; border-bottom: 1px solid var(--border-2); font-size: .82rem; color: var(--ink); }
.v-minicart__shiptxt b { color: var(--deal); }
.v-minicart__shiptxt--ok b { color: var(--ok); }
.v-minicart__bar { height: 7px; border-radius: 20px; background: #edddca; overflow: hidden; margin-top: 8px; }
.v-minicart__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--buy), var(--ok)); border-radius: 20px; transition: width .5s cubic-bezier(.2, 1, .3, 1); }
.v-minicart__items { flex: 1; overflow-y: auto; padding: 4px 18px; }
.v-mci { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-2); }
.v-mci__img { width: 64px; aspect-ratio: 1; border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; background: #fff; padding: 4px; }
.v-mci__name { font-size: .84rem; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.v-mci__name:hover { color: var(--link-hover); }
.v-mci__price { font-size: .8rem; color: var(--ink2); margin: 3px 0 6px; }
.v-mci__qty { display: flex; align-items: center; gap: 6px; }
.v-mci__qty button { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 6px; display: grid; place-items: center; font-size: 1rem; color: var(--ink); background: var(--surface); transition: background .15s; }
.v-mci__qty button:hover { background: var(--surface-alt); }
.v-mci__qty > span { min-width: 22px; text-align: center; font-weight: 700; font-size: .85rem; }
.v-mci__rm { width: auto; border: 0; color: var(--ink3); font-size: .76rem; margin-left: 4px; }
.v-mci__rm:hover { color: var(--deal); text-decoration: underline; }
.v-mci__sub { font-weight: 700; color: var(--price); font-size: .9rem; white-space: nowrap; }
.v-minicart__foot { padding: 16px 18px; border-top: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 8px; }
.v-minicart__total { display: flex; justify-content: space-between; align-items: baseline; font-size: .95rem; }
.v-minicart__total b { font-size: 1.4rem; color: var(--price); }
.v-minicart__cuota { font-size: .78rem; color: var(--ink2); margin-bottom: 2px; }
.v-minicart__empty { text-align: center; padding: 48px 16px; color: var(--ink2); }
.v-minicart__empty svg { width: 54px; height: 54px; color: var(--ink3); margin-bottom: 12px; }
.v-minicart__empty p { margin-bottom: 16px; }

/* =====================================================================
   RELLENO DE LA COLUMNA DE FILTROS (que no quede hueco a la izquierda)
   ===================================================================== */
.v-ffiller { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 14px; }
.v-fcoupon { background: linear-gradient(135deg, #fff3e0, #ffe2c7); border: 1px dashed var(--buy-b); border-radius: 10px; padding: 14px; text-align: center; }
.v-fcoupon b { display: block; font-size: 1.35rem; color: var(--deal); letter-spacing: .05em; }
.v-fcoupon span { font-size: .76rem; color: var(--ink2); display: block; margin: 2px 0 8px; }
.v-fwidget h5 { font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink2); margin-bottom: 8px; }
.v-fdeal { display: flex; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-2); }
.v-fdeal:last-child { border-bottom: 0; }
.v-fdeal__img { width: 44px; aspect-ratio: 1; border: 1px solid var(--border-2); border-radius: 6px; overflow: hidden; background: #fff; padding: 3px; flex: none; }
.v-fdeal__info { min-width: 0; }
.v-fdeal__name { font-size: .76rem; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.25; }
.v-fdeal__name:hover { color: var(--link-hover); }
.v-fdeal__price { font-size: .84rem; font-weight: 700; color: var(--price); }
.v-fdeal__old { font-size: .7rem; color: var(--ink3); text-decoration: line-through; margin-left: 4px; }

/* =====================================================================
   TIRA PROMOCIONAL DENTRO DE LA GRILLA (catálogo)
   ===================================================================== */
.v-gridpromo {
  grid-column: 1 / -1; border-radius: var(--r); padding: 12px 22px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  position: relative; overflow: hidden; isolation: isolate; min-height: 64px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
}
.v-gridpromo::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .45) 50%, transparent 65%);
  transform: translateX(-130%); animation: vgridshine 3.6s ease-in-out infinite;
}
.v-gridpromo::after {
  content: ""; position: absolute; top: -40%; right: -2%; width: 180px; height: 180%; z-index: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, .14), transparent 60%);
  pointer-events: none;
}
.v-gridpromo > * { position: relative; z-index: 1; }
@keyframes vgridshine {
  0%, 30% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}
.v-gridpromo__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.v-gridpromo__txt h4 {
  font-size: 1.32rem; margin: 0; letter-spacing: -.01em; font-weight: 900;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25); text-transform: uppercase; line-height: 1.05;
}
.v-gridpromo__txt p { font-size: .82rem; opacity: .96; font-weight: 600; margin: 0; }
.v-gridpromo .v-btn {
  flex: none; background: #fff !important; color: #131921 !important; font-weight: 800;
  padding: 9px 18px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
  transition: transform .15s, box-shadow .15s; letter-spacing: .02em; border: 0;
}
.v-gridpromo .v-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0, 0, 0, .28); }
@media (max-width: 620px) {
  .v-gridpromo { padding: 10px 14px; gap: 10px; min-height: 56px; }
  .v-gridpromo__txt h4 { font-size: 1.05rem; }
  .v-gridpromo__txt p { font-size: .76rem; }
  .v-gridpromo .v-btn { padding: 7px 12px; font-size: .82rem; }
}
.v-gridsep { grid-column: 1 / -1; font-size: .82rem; font-weight: 700; color: var(--ink2); text-transform: uppercase; letter-spacing: .06em; padding: 10px 4px 4px; display: flex; align-items: center; gap: 10px; }
.v-gridsep::after { content: ""; flex: 1; height: 1px; background: var(--border-2); }

/* =====================================================================
   HERO + GATEWAY OVERLAP (estilo Amazon: tiles sobre la base del hero)
   ===================================================================== */
.v-section--hero { padding-top: 14px; padding-bottom: 0; }
.v-section--gateway { padding-top: 0; margin-top: clamp(-150px, -13vw, -110px); position: relative; z-index: 3; }
@media (max-width: 700px) {
  .v-slide { padding-bottom: clamp(40px, 6vw, 60px) !important; min-height: clamp(280px, 50vw, 360px) !important; }
  .v-slide__art { width: 30%; top: 18%; }
  .v-section--gateway { margin-top: 16px; }
}

/* =====================================================================
   GATEWAY TILES (home, estilo Amazon: 4 tarjetas en fila)
   ===================================================================== */
.v-gateway { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.v-gtile { background: var(--surface); border-radius: 4px; padding: 18px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.v-gtile__h { font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.25; margin: 0 0 14px; }
.v-gtile__solo, .v-gtile__main { background: #fff; border-radius: 4px; overflow: hidden; padding: 6px; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.v-gtile__solo { flex: 1; }
.v-gtile__solo .v-render, .v-gtile__main .v-render { width: 100%; height: 100%; object-fit: contain; }
.v-gtile__main-lbl { font-size: 0.85rem; color: var(--ink); margin: 10px 0 2px; font-weight: 500; }
.v-gtile__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.v-gtile__cell { display: flex; flex-direction: column; gap: 6px; min-width: 0; color: var(--ink); }
.v-gtile__cell:hover .v-gtile__cell-lbl { color: var(--link-hover); }
.v-gtile__cell-img { position: relative; aspect-ratio: 1; background: var(--surface-alt); border-radius: 4px; overflow: hidden; padding: 4px; display: flex; align-items: center; justify-content: center; }
.v-gtile__cell-img .v-render { width: 100%; height: 100%; object-fit: contain; }
.v-gtile__cell-disc { position: absolute; top: 6px; left: 6px; background: var(--deal); color: #fff; font-size: 0.68rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; letter-spacing: .02em; }
.v-gtile__cell-lbl { font-size: 0.78rem; color: var(--ink); line-height: 1.25; height: 2.5em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.v-gtile__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.v-gtile__thumb-cell { display: flex; flex-direction: column; gap: 5px; min-width: 0; color: var(--ink); }
.v-gtile__thumb-cell:hover .v-gtile__thumb-lbl { color: var(--link-hover); }
.v-gtile__thumb-img { aspect-ratio: 1; border-radius: 4px; overflow: hidden; padding: 0; display: grid; place-items: center; color: #fff; }
.v-gtile__thumb-img svg { width: 60%; height: 60%; }
.v-gtile__thumb-lbl { font-size: 0.74rem; color: var(--ink); text-align: center; line-height: 1.2; height: 2.4em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.v-gtile__link { color: var(--link); font-size: 0.86rem; margin-top: 14px; display: inline-block; }
.v-gtile__link:hover { color: var(--link-hover); text-decoration: underline; }
@media (max-width: 980px) { .v-gateway { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v-gateway { grid-template-columns: 1fr; } }

/* =====================================================================
   SUB-NAV (estilo Amazon: tira de text-links + chips con flechas)
   ===================================================================== */
.v-snav { background: var(--surface); border-bottom: 1px solid var(--border-2); }
.v-snav__inner { width: min(100% - 2 * var(--pad), var(--maxw)); margin-inline: auto; }
.v-snav__top { background: #fff; border-bottom: 1px solid var(--border-2); }
.v-snav__top .v-snav__inner { display: flex; gap: 22px; padding: 8px 0; font-size: .82rem; flex-wrap: wrap; align-items: center; }
.v-snav__top a { color: var(--ink); transition: color .15s; white-space: nowrap; }
.v-snav__top a:hover { color: var(--link-hover); text-decoration: underline; }
.v-snav__top a[data-snav-coupon] { color: var(--deal); font-weight: 600; }
.v-snav__bottom .v-snav__inner { display: flex; align-items: center; gap: 6px; padding: 10px 0; position: relative; }
.v-snav__pills { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; scroll-behavior: smooth; padding: 2px 0; }
.v-snav__pills::-webkit-scrollbar { display: none; }
.v-snav__pill { display: inline-block; padding: 7px 16px; border: 1px solid var(--border); border-radius: 22px; font-size: .82rem; color: var(--ink); white-space: nowrap; transition: border-color .15s, color .15s, background .15s; background: var(--surface); }
.v-snav__pill:hover { border-color: var(--link); color: var(--link); }
.v-snav__pill.is-active { background: #eaf6ff; border: 2px solid var(--link); color: var(--link); font-weight: 700; padding: 6px 15px; }
.v-snav__arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink); flex: none; cursor: pointer; transition: background .15s; }
.v-snav__arrow:hover { background: var(--surface-alt); }
.v-snav__arrow:disabled { opacity: 0; pointer-events: none; }
.v-snav__arrow svg { width: 16px; height: 16px; }
@media (max-width: 700px) {
  .v-snav__top .v-snav__inner { gap: 14px; padding: 6px 0; font-size: .76rem; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .v-snav__top .v-snav__inner::-webkit-scrollbar { display: none; }
  .v-snav__arrow { display: none; }
}

/* =====================================================================
   VOLTA+ MEMBERSHIP BANNER (estilo Amazon Prime)
   ===================================================================== */
.v-prime { background: linear-gradient(120deg, #0b1426 0%, #1a2745 45%, #0b1426 100%); color: #fff; border-radius: var(--r); padding: 22px 30px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 24px; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.v-prime::before { content: ""; position: absolute; right: -8%; top: -120%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 153, 0, .22), transparent 65%); pointer-events: none; }
.v-prime::after { content: ""; position: absolute; left: -6%; bottom: -120%; width: 36%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(31, 182, 201, .18), transparent 65%); pointer-events: none; }
.v-prime__logo { display: flex; align-items: center; gap: 6px; font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; z-index: 1; }
.v-prime__logo b span { color: var(--cart); }
.v-prime__bolt { font-size: 1.6rem; filter: drop-shadow(0 0 8px rgba(255, 153, 0, .6)); }
.v-prime__txt { z-index: 1; }
.v-prime__txt h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.v-prime__txt p { font-size: .82rem; color: rgba(255, 255, 255, .72); margin-top: 4px; }
.v-prime__perks { display: flex; gap: 10px; flex-wrap: wrap; z-index: 1; }
.v-prime__perks span { font-size: .8rem; padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 7px; background: rgba(255, 255, 255, .04); white-space: nowrap; }
.v-prime .v-btn { z-index: 1; }
@media (max-width: 980px) { .v-prime { grid-template-columns: 1fr; gap: 14px; } .v-prime__perks { gap: 8px; } }
@media (max-width: 560px) { .v-prime__perks { display: none; } }

/* =====================================================================
   LIGHTNING DEALS (carrusel de ofertas relámpago con countdown por producto)
   ===================================================================== */
.v-ldealwrap { display: flex; align-items: flex-start; gap: 14px; overflow-x: auto; padding: 4px 2px 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
.v-ldealwrap::-webkit-scrollbar { height: 8px; }
.v-ldealwrap::-webkit-scrollbar-thumb { background: #c8cdd0; border-radius: 20px; }
.v-ldeal { flex: 0 0 232px; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r); padding: 12px; display: flex; flex-direction: column; gap: 8px; scroll-snap-align: start; transition: box-shadow .2s, border-color .2s; }
.v-ldeal:hover { box-shadow: var(--shadow-hover); border-color: var(--border); }
.v-ldeal__media { position: relative; aspect-ratio: 1; background: #fff; border-radius: 8px; padding: 8px; overflow: hidden; }
.v-ldeal__media .v-render { width: 100%; height: 100%; object-fit: contain; }
.v-ldeal__off { position: absolute; top: 8px; left: 8px; background: var(--deal); color: #fff; font-weight: 800; font-size: .76rem; padding: 4px 8px; border-radius: 6px; box-shadow: 0 4px 12px rgba(204, 12, 57, .35); }
.v-ldeal__bolt { position: absolute; top: 8px; right: 8px; background: rgba(15, 17, 17, .85); color: #ffb800; font-size: .68rem; font-weight: 700; padding: 3px 7px; border-radius: 5px; letter-spacing: .03em; }
.v-ldeal__lbl { font-size: .8rem; color: var(--ink); height: 2.4em; overflow: hidden; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.v-ldeal__price-row { display: flex; align-items: baseline; gap: 8px; }
.v-ldeal__price { font-size: 1.25rem; font-weight: 800; color: var(--price); }
.v-ldeal__old { font-size: .78rem; color: var(--ink3); text-decoration: line-through; }
.v-ldeal__claim { height: 6px; border-radius: 20px; background: #ffe9b8; overflow: hidden; }
.v-ldeal__claim i { display: block; height: 100%; background: linear-gradient(90deg, var(--cart), var(--deal)); border-radius: 20px; transition: width 1s ease; }
.v-ldeal__meta { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: var(--ink2); }
.v-ldeal__meta b { color: var(--deal); font-weight: 800; font-variant-numeric: tabular-nums; background: #fff3f5; padding: 2px 6px; border-radius: 4px; }
.v-ldeal__btn { margin-top: 2px; }
