/* =============================================================
   V2 — Lencería Heidi Mayorista
   Paleta de marca (del logo): violeta #41076E + fucsia #E91E75
   + naranja #FA721A de acento cálido, sobre blanco/rosa suave.
   Toda regla anidada bajo .v2-body para no contaminar el sitio /.
   ============================================================= */

.v2-body {
    /* Variables semánticas. Los nombres red/yellow se conservan por
       estabilidad del diff; alojan violeta (primary) y fucsia (accent). */
    --v2-red: #41076E;          /* Primary (botones, header) — violeta del logo */
    --v2-red-dark: #2E0550;     /* Hover de primary */
    --v2-yellow: #E91E75;       /* Accent (precios, badges) — fucsia del logo */
    --v2-yellow-dark: #C0135C;
    --v2-orange: #FA721A;       /* Acento cálido (detalles, hovers puntuales) */
    --v2-black: #2A0D45;
    --v2-bg: #ffffff;
    --v2-bg-soft: #FBF6FA;
    --v2-bg-image: #F7F0F6;     /* Placeholder para imágenes */
    --v2-border: #EFE3ED;
    --v2-text: #2E2233;
    --v2-text-soft: #6E5F76;
    --v2-text-faint: #A395AB;
    --v2-shadow: 0 2px 8px rgba(0,0,0,.06);
    --v2-shadow-md: 0 6px 18px rgba(0,0,0,.10);
    --v2-radius: 4px;
    --v2-radius-lg: 8px;

    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--v2-bg);
    color: var(--v2-text);
    font-size: 14px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

/* RESETS V2 — solo aplicados a contenedores V2 (shell + secciones nativas).
   Antes los resets eran globales (.v2-body *) y rompían el contenido legacy
   del checkout/mi-cuenta/blog que se carga dentro del shell V2 cuando
   loadLegacyCss=true. */
.v2-body .v2-header *,
.v2-body .v2-footer *,
.v2-body .v2-cart-drawer *,
.v2-body .v2-megamenu *,
.v2-body .v2-section *,
.v2-body .v2-listing-section *,
.v2-body .v2-detail-section *,
.v2-body .v2-cart-page *,
.v2-body .v2-empty-page *,
.v2-body .v2-cat-banner *,
.v2-body .v2-top-strip *,
.v2-body .v2-toast,
.v2-body .v2-header *::before,
.v2-body .v2-footer *::before,
.v2-body .v2-cart-drawer *::before { box-sizing: border-box; }

.v2-body .v2-header a,
.v2-body .v2-footer a,
.v2-body .v2-cart-drawer a,
.v2-body .v2-megamenu a,
.v2-body .v2-section a,
.v2-body .v2-listing-section a,
.v2-body .v2-detail-section a,
.v2-body .v2-cart-page a,
.v2-body .v2-cat-banner a,
.v2-body .v2-breadcrumbs a {
    color: var(--v2-text);
    text-decoration: none;
}
.v2-body .v2-breadcrumbs a { color: var(--v2-text-soft); }
.v2-body .v2-breadcrumbs a:hover { color: var(--v2-black); text-decoration: none; }
.v2-body .v2-section a:hover,
.v2-body .v2-listing-section a:hover,
.v2-body .v2-detail-section a:hover,
.v2-body .v2-cart-page a:hover { color: var(--v2-yellow); }

/* === Repintar el contenido legacy con paleta Lencería Heidi ===
   En las páginas que cargan el CSS legacy (checkout, mi-cuenta, blog, estáticas),
   redefinimos las variables CSS legacy dentro del shell V2. Como el legacy usa
   var(--color-verde) en cientos de lugares, esto repinta todo automáticamente
   sin reescribir selectores. */
.v2-body {
    --color-verde: #41076E;
    --color-verde-oscuro: #2E0550;
    --color-verde-claro: #7B3FA8;
    --color-success: #41076E;
    --color-terracota: #E91E75;
    --color-terracota-claro: #F864A8;
    --color-terracota-oscuro: #C0135C;
    --color-beige: #FFFFFF;
    --color-beige-dark: #F0E2EC;
    --color-beige-light: #FBF6FA;
    --color-info: #7B3FA8;
    --color-texto: #2E2233;
    --color-texto-claro: #6E5F76;
    --color-texto-muted: #A395AB;
    --color-black: #2A0D45;
}

/* === Override defensivo contra el legacy CSS (frontend/main.css) que se carga
   junto al V2 en checkout/mi-cuenta/blog/static. El legacy tiene reglas globales
   `a { color: var(--color-verde) }` y `a:hover { color: oscuro }` sin .v2-body
   que pisaban el header V2. Las invalido con !important sólo en el shell V2. */
.v2-body .v2-header a,
.v2-body .v2-header a:hover,
.v2-body .v2-footer a,
.v2-body .v2-footer a:hover,
.v2-body .v2-cart-drawer a,
.v2-body .v2-megamenu a,
.v2-body .v2-megamenu a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

/* Imágenes responsivas — solo dentro de contenedores V2 */
.v2-body .v2-section img,
.v2-body .v2-listing-section img,
.v2-body .v2-detail-section img,
.v2-body .v2-cart-page img,
.v2-body .v2-cart-drawer img,
.v2-body .v2-megamenu img,
.v2-body .v2-cat-grid img,
.v2-body .v2-grid img,
.v2-body .v2-header img,
.v2-body .v2-footer img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings V2: solo dentro de secciones V2, NO en h1-h4 globales del legacy */
.v2-body .v2-section h1, .v2-body .v2-section h2, .v2-body .v2-section h3, .v2-body .v2-section h4,
.v2-body .v2-listing-section h1, .v2-body .v2-listing-section h2, .v2-body .v2-listing-section h3,
.v2-body .v2-detail-section h1, .v2-body .v2-detail-section h2, .v2-body .v2-detail-section h3,
.v2-body .v2-cart-page h1, .v2-body .v2-cart-page h2, .v2-body .v2-cart-page h3,
.v2-body .v2-cart-drawer h3, .v2-body .v2-cart-drawer h4,
.v2-body .v2-megamenu h4,
.v2-body .v2-empty-page h1, .v2-body .v2-empty-page h3 {
    font-family: inherit;
    letter-spacing: 0;
    margin: 0 0 .5em;
    line-height: 1.2;
    color: var(--v2-black);
    font-weight: 800;
}
/* h4 del footer V2 (titulos de columnas) */
.v2-body .v2-footer .v2-footer-title {
    font-family: inherit;
    margin: 0 0 12px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
}

/* Reset de botones V2: solo botones del shell/componentes V2.
   Los <button> del checkout/legacy mantienen sus estilos Bootstrap. */
.v2-body .v2-btn,
.v2-body .v2-btn-add-mini,
.v2-body .v2-icon-btn,
.v2-body .v2-qty-btn,
.v2-body .v2-drawer-close,
.v2-body .v2-drawer-item-remove,
.v2-body .v2-detail-wishlist,
.v2-body .v2-cart-remove,
.v2-body .v2-nav-mega-trigger,
.v2-body .v2-search button,
.v2-body .v2-page-btn,
.v2-body .v2-filter-chip,
.v2-body .v2-detail-thumb-v {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Inputs V2: search bar, qty steppers, filtros, sort */
.v2-body .v2-search input,
.v2-body .v2-qty-input,
.v2-body .v2-cart-qty-input,
.v2-body .v2-sort-select {
    font-family: inherit;
    font-size: inherit;
}

/* ============== Container ============== */
.v2-body .v2-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============== Top strip (shipping promise) ============== */
.v2-body .v2-top-strip {
    background: var(--v2-black);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .02em;
}
.v2-body .v2-ticker {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: v2-ticker 35s linear infinite;
    width: max-content;
}
@keyframes v2-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============== Header (estilo SHEIN: 2 rows) ============== */
.v2-body .v2-header {
    background: var(--v2-bg);
    border-bottom: 1px solid var(--v2-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.v2-body .v2-header-row1 {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 12px 16px;
    max-width: 1440px;
    margin: 0 auto;
}
.v2-body .v2-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Logo más grande tipo SHEIN. Imagen hasta 56px (antes 32) y texto 36px (antes 24) */
.v2-body .v2-logo-img { max-height: 56px; }
.v2-body .v2-logo-text {
    font-size: 36px;
    font-weight: 900;
    color: var(--v2-black);
    letter-spacing: -.02em;
    line-height: 1;
}
@media (max-width: 540px) {
    .v2-body .v2-logo-img { max-height: 40px; }
    .v2-body .v2-logo-text { font-size: 26px; }
}

.v2-body .v2-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #CBA6DE;
    border-radius: 999px;
    padding: 2px 2px 2px 16px;
    transition: border-color .3s ease, box-shadow .3s ease;
    max-width: 520px;
    width: 100%;
    justify-self: stretch;
    height: 38px;
}
.v2-body .v2-search:focus-within {
    border-color: #9B59C7;
    box-shadow: 0 0 0 3px rgba(123, 63, 168, .10);
}
.v2-body .v2-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 4px 8px;
    font-size: 13px;
    height: 100%;
}
.v2-body .v2-search input::placeholder { color: var(--v2-text-soft); }
.v2-body .v2-search button {
    background: var(--v2-black);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .12s ease;
}
.v2-body .v2-search button:hover { background: var(--v2-red-dark); }
.v2-body .v2-search button svg { display: block; }

.v2-body .v2-header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.v2-body .v2-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-black);
    border-radius: 50%;
    transition: background .12s ease;
}
.v2-body .v2-icon-btn:hover { background: var(--v2-bg-soft); color: var(--v2-yellow); }
.v2-body .v2-cart-btn { padding: 0; }
.v2-body .v2-cart-count {
    background: var(--v2-yellow);
    color: #fff;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    right: 2px;
    border: 2px solid #fff;
    line-height: 1;
}

/* ============== Nav (categorías horizontales tipo SHEIN) ============== */
.v2-body .v2-nav {
    background: var(--v2-bg);
    border-bottom: 1px solid var(--v2-border);
}
.v2-body .v2-nav-list {
    list-style: none;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 1440px;
    /* sin -webkit-overflow-scrolling:touch — el momentum ya es default en iOS 13+
       y esa propiedad hacía que Safari recortara el megamenú */
    scrollbar-width: none;
}
.v2-body .v2-nav-list::-webkit-scrollbar { display: none; }
.v2-body .v2-nav-list > li.v2-nav-divider {
    width: 1px;
    height: 18px;
    background: var(--v2-border);
    margin: 0 8px;
    flex-shrink: 0;
}
.v2-body .v2-nav-list a {
    display: inline-block;
    padding: 12px 14px;
    color: var(--v2-text) !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    border-radius: 8px;
    transition: background .3s ease, color .3s ease, transform .25s ease;
    white-space: nowrap;
    text-decoration: none !important;
}
.v2-body .v2-nav-list a:hover { transform: translateY(-1px); }
.v2-body .v2-nav-list a:hover {
    background: #F8EFF7;
    color: #41076E !important;
}
/* Active: solo se distingue por peso, NO por fondo gris (sin "Inicio" siempre gris) */
.v2-body .v2-nav-list a.is-active {
    background: transparent;
    color: #41076E !important;
    font-weight: 700;
}
.v2-body .v2-nav-list a.is-active:hover {
    background: #F8EFF7;
}
/* Sin acentos rojos en el nav: incluso "🔥 Ofertas" queda en color normal */
.v2-body .v2-nav-hot { color: var(--v2-text) !important; font-weight: 500 !important; }
.v2-body .v2-nav-wa { color: #25D366 !important; font-weight: 700 !important; }

/* Mega-menu trigger (Categorías ▾) — mismo comportamiento que el resto del nav */
.v2-body .v2-nav-mega-wrap {
    position: static;
}
.v2-body .v2-nav-mega-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 14px;
    background: transparent;
    color: var(--v2-black);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .12s ease;
}
.v2-body .v2-nav-mega-wrap.is-open-click .v2-nav-mega-trigger {
    background: #F8EFF7;
    color: #41076E;
}
@media (hover: hover) {
    .v2-body .v2-nav-mega-trigger:hover,
    .v2-body .v2-nav-mega-wrap:hover .v2-nav-mega-trigger {
        background: #F8EFF7;
        color: #41076E;
    }
}

/* ============== Mega-menu (overlay tipo SHEIN) ============== */
.v2-body .v2-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--v2-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
    max-height: calc(100vh - 110px);
    overflow: hidden;
    /* Cerrado: oculto pero sin transform (evita repaint que causa flicker) */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, visibility 0s .15s;
}
/* Abierto vía .is-open-click (desktop) o .is-open-touch (iOS/Android: el JS
   mueve el menú a <body> y lo posiciona fijo, porque dentro del <ul> con
   scroll horizontal iOS Safari lo recortaba y no se veía) */
.v2-body .v2-nav-mega-wrap.is-open-click .v2-megamenu,
.v2-body .v2-megamenu.is-open-touch {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .15s ease, visibility 0s 0s;
}
/* …y vía :hover SOLO donde hay puntero real (en touch el hover pegajoso
   dejaba el menú trabado o lo abría sin poder cerrarlo) */
@media (hover: hover) {
    .v2-body .v2-nav-mega-wrap:hover .v2-megamenu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: opacity .15s ease, visibility 0s 0s;
    }
}
/* Bridge invisible entre trigger y menu para evitar el gap del border */
.v2-body .v2-nav-mega-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 8px;
    background: transparent;
}

.v2-body .v2-megamenu-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    max-width: 1440px;
    margin: 0 auto;
    height: 560px;
    max-height: calc(100vh - 110px);
}

/* Sidebar de categorías padre — EXACTO como SHEIN:
   - bg gris muy claro
   - item activo: bg blanco (más claro que el sidebar, no oscuro)
   - texto negro siempre, sin negrita
   - flecha tenue siempre visible
   - sin rojo, sin border-left, sin underline */
.v2-body .v2-megamenu-sidebar {
    background: #FAFAFA;
    overflow-y: auto;
    padding: 0;
    border-right: 1px solid var(--v2-border);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.v2-body .v2-megamenu-sidebar::-webkit-scrollbar { width: 6px; }
.v2-body .v2-megamenu-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

.v2-body .v2-megamenu-cat {
    position: relative;            /* ancla para la flecha absolute */
    display: flex;
    align-items: center;
    padding: 11px 36px 11px 16px;  /* padding-right grande para que el texto no choque con la flecha */
    color: #222 !important;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none !important;
    transition: background .1s ease;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 1.3;
}
/* Flecha en columna fija a la DERECHA del sidebar, igual que SHEIN: */
.v2-body .v2-megamenu-cat svg {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #BBB;
    opacity: 1;
    transition: color .1s ease;
}
/* Hover y active: solo cambia el fondo a blanco. Sin color, sin negrita, sin border. */
.v2-body .v2-megamenu-cat:hover,
.v2-body .v2-megamenu-cat.is-active {
    background: #fff;
    color: #222 !important;
    font-weight: 400;
}
.v2-body .v2-megamenu-cat:hover svg,
.v2-body .v2-megamenu-cat.is-active svg {
    color: #888;
}

/* Panel principal */
.v2-body .v2-megamenu-panels {
    background: #fff;
    overflow-y: auto;
    padding: 24px 32px;
}
.v2-body .v2-megamenu-panels::-webkit-scrollbar { width: 8px; }
.v2-body .v2-megamenu-panels::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.v2-body .v2-megamenu-panel {
    display: none;
    flex-direction: column;
    gap: 24px;
}
.v2-body .v2-megamenu-panel.is-active { display: flex; }

.v2-body .v2-megamenu-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v2-body .v2-megamenu-title-link {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    color: inherit !important;
    text-decoration: none !important;
}
.v2-body .v2-megamenu-title-arrow {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: .03em;
    white-space: nowrap;
}
.v2-body .v2-megamenu-title-link:hover .v2-megamenu-title-arrow { color: var(--v2-text); }
.v2-body .v2-megamenu-title {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.v2-body .v2-megamenu-title-hot {
    color: #555;
}

/* Tiles redondos estilo SHEIN */
.v2-body .v2-megamenu-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 12px;
}
/* Los tiles son <a> dentro de .v2-nav-list: la regla genérica del nav
   (.v2-nav-list a) les mete nowrap/inline-block/padding y corta los nombres.
   Estas reglas más específicas la pisan para que el label haga wrap a 2 líneas. */
.v2-body .v2-nav-list .v2-megamenu-tile {
    display: flex;
    white-space: normal;
    padding: 4px;
}
.v2-body .v2-nav-list .v2-megamenu-tile-label {
    display: -webkit-box;
    white-space: normal;
    overflow-wrap: break-word;
}
.v2-body .v2-megamenu-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 4px;
    border-radius: var(--v2-radius);
}
.v2-body .v2-megamenu-tile-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
/* Solo cuando hover: el círculo se agranda y aparece una sombra suave (degradada).
   Sin fondo gris ni halo extra alrededor. */
.v2-body .v2-megamenu-tile:hover .v2-megamenu-tile-img {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.06);
}
.v2-body .v2-megamenu-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-megamenu-tile-noimg {
    width: 100%;
    height: 100%;
    background: var(--v2-bg-image);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    user-select: none;
}
.v2-body .v2-megamenu-tile-label {
    font-size: 12px;
    line-height: 1.25;
    color: var(--v2-text);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}
/* Texto siempre negro como SHEIN — el feedback visual va en el círculo */
.v2-body .v2-megamenu-tile:hover .v2-megamenu-tile-label { color: var(--v2-text); }

@media (max-width: 900px) {
    /* Móvil: el overlay entero scrollea (antes overflow:hidden cortaba el
       contenido y las categorías de abajo quedaban invisibles) */
    .v2-body .v2-megamenu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 200px);
    }
    .v2-body .v2-megamenu-inner {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }
    /* Sidebar de rubros como fila de chips deslizable */
    .v2-body .v2-megamenu-sidebar {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--v2-border);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .v2-body .v2-megamenu-sidebar::-webkit-scrollbar { display: none; }
    .v2-body .v2-megamenu-cat {
        width: auto;
        white-space: nowrap;
        padding: 11px 14px;
    }
    .v2-body .v2-megamenu-cat svg { display: none; }
    .v2-body .v2-megamenu-panels {
        overflow-y: visible;
        padding: 16px;
    }
}

/* ============== Slider de banners del home (admin → Banners) ============== */
.v2-body .v2-banner-slider { position: relative; overflow: hidden; background: #111; }
.v2-body .v2-banner-slide {
    display: none; position: relative; width: 100%; height: 420px; color: inherit;
}
.v2-body .v2-banner-slide.is-active { display: block; }
.v2-body .v2-banner-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-body .v2-banner-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff; display: flex; flex-direction: column; gap: 2px;
}
.v2-body .v2-banner-caption strong { font-size: 24px; font-weight: 800; }
.v2-body .v2-banner-caption em { font-style: normal; font-size: 14px; opacity: .9; }
.v2-body .v2-banner-dots {
    position: absolute; bottom: 12px; right: 16px; display: flex; gap: 6px; z-index: 2;
}
.v2-body .v2-banner-dots button {
    width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.45); padding: 0;
}
.v2-body .v2-banner-dots button.is-active { background: #fff; }
@media (max-width: 640px) {
    .v2-body .v2-banner-slide { height: 240px; }
    .v2-body .v2-banner-caption strong { font-size: 17px; }
}

/* ============== Hero ============== */
.v2-body .v2-hero {
    background: var(--v2-black);
    color: #fff;
    padding: 56px 0;
    overflow: hidden;
    position: relative;
}
.v2-body .v2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 30%, rgba(230,0,35,.18) 0, transparent 45%);
    pointer-events: none;
}
.v2-body .v2-hero-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.v2-body .v2-hero-tagline {
    display: inline-block;
    background: var(--v2-yellow);
    color: #fff;
    padding: 5px 14px;
    border-radius: 2px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.v2-body .v2-hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 16px;
    letter-spacing: -.01em;
}
.v2-body .v2-hero-accent {
    color: var(--v2-yellow);
}
.v2-body .v2-hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    max-width: 560px;
}
.v2-body .v2-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.v2-body .v2-hero-stack {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.v2-body .v2-hero-burst {
    width: 150px;
    height: 150px;
    background: var(--v2-yellow);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 16px 40px rgba(230,0,35,.4);
    transform: rotate(-6deg);
}
.v2-body .v2-hero-burst-2 {
    background: #fff;
    color: var(--v2-black);
    transform: rotate(4deg);
    width: 120px;
    height: 120px;
    margin-top: 36px;
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.v2-body .v2-burst-label { font-size: 11px; }
.v2-body .v2-burst-percent {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

/* ============== Strip de beneficios (estilo SHEIN: blanco con bordes) ============== */
.v2-body .v2-strip {
    background: var(--v2-bg);
    color: var(--v2-text);
    padding: 24px 0;
    border-bottom: 1px solid var(--v2-border);
}
.v2-body .v2-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.v2-body .v2-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--v2-text);
    border-right: 1px solid var(--v2-border);
    padding-right: 16px;
}
.v2-body .v2-strip-item:last-child { border-right: none; }
.v2-body .v2-strip-icon { font-size: 28px; }
.v2-body .v2-strip-text { font-size: 13px; line-height: 1.3; color: var(--v2-text-soft); }
.v2-body .v2-strip-text strong {
    color: var(--v2-black);
    font-size: 13px;
    letter-spacing: .02em;
    font-weight: 800;
    display: block;
}

/* ============== Sections ============== */
.v2-body .v2-section {
    padding: 40px 0;
}
.v2-body .v2-section-yellow {
    background: var(--v2-bg-soft);
}
.v2-body .v2-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.v2-body h1.v2-section-title,
.v2-body h2.v2-section-title {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .02em;
}
.v2-body h2.v2-section-title-xl { font-size: clamp(26px, 3vw, 36px); }
.v2-body .v2-section-sub {
    background: var(--v2-yellow);
    color: #fff;
    padding: 4px 10px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .06em;
    border-radius: 2px;
    text-transform: uppercase;
}
.v2-body .v2-section-link {
    color: var(--v2-text);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .02em;
    border-bottom: 1px solid var(--v2-text);
}
.v2-body .v2-section-link:hover { color: var(--v2-yellow); border-color: var(--v2-yellow); }

/* ============== Grid de productos (denso, estilo SHEIN) ==============
   Columnas FIJAS por corte (6/4/3/2): todas dividen a 12 y 24, así las
   secciones del home (12 ítems) y el listado (24 por página) siempre
   cierran en filas completas, sin huérfanos ni huecos. */
.v2-body .v2-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px 16px;
}
@media (max-width: 1400px) {
    .v2-body .v2-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1000px) {
    .v2-body .v2-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .v2-body .v2-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
}

/* Destacados: cards más grandes que el resto, la foto es protagonista */
.v2-body .v2-grid--featured {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 20px;
}
@media (max-width: 1200px) {
    .v2-body .v2-grid--featured { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .v2-body .v2-grid--featured { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
}

/* ============== Categorías (estilo SHEIN: círculos + label debajo) ==============
   Uso flex en vez de grid para que cuando hay pocas categorías se centren
   automáticamente (auto-fill grid mantiene tracks vacíos). */
.v2-body .v2-cat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 12px;
}
.v2-body .v2-cat-tile { width: 130px; }
.v2-body .v2-cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: var(--v2-text);
}
.v2-body .v2-cat-tile:hover { color: var(--v2-text); }
.v2-body .v2-cat-circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--v2-bg-image);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease;
}
.v2-body .v2-cat-tile:hover .v2-cat-circle {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.06);
}
.v2-body .v2-cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-cat-circle-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.v2-body .v2-cat-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--v2-text);
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* SHEIN no cambia el color del texto en hover. El feedback visual va en el círculo. */
.v2-body .v2-cat-tile:hover .v2-cat-label { color: var(--v2-text); }

@media (max-width: 540px) {
    .v2-body .v2-cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px 8px; }
    .v2-body .v2-cat-circle { width: 84px; height: 84px; }
}

/* ============== CTA band ============== */
.v2-body .v2-cta-band {
    background: var(--v2-black);
    color: #fff;
    padding: 36px 0;
}
.v2-body .v2-cta-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}
.v2-body .v2-cta-title {
    color: #fff;
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.v2-body .v2-cta-sub {
    color: rgba(255,255,255,.75);
    margin: 0;
    font-size: 14px;
}

/* ============== Botones ============== */
.v2-body .v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 13px;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.v2-body .v2-btn-xl {
    font-size: 14px;
    padding: 14px 32px;
}
/* !important porque los resets scoped (.v2-body .v2-cart-page a) tienen mayor
   specificity que .v2-body .v2-btn-primary y pisaban el color blanco. */
.v2-body .v2-btn-primary,
.v2-body .v2-cart-page .v2-btn-primary,
.v2-body .v2-cart-drawer .v2-btn-primary,
.v2-body .v2-section .v2-btn-primary,
.v2-body .v2-detail-section .v2-btn-primary {
    background: var(--v2-black) !important;
    color: #fff !important;
}
.v2-body .v2-btn-primary:hover,
.v2-body .v2-cart-page .v2-btn-primary:hover,
.v2-body .v2-cart-drawer .v2-btn-primary:hover,
.v2-body .v2-section .v2-btn-primary:hover,
.v2-body .v2-detail-section .v2-btn-primary:hover { background: var(--v2-red-dark) !important; color: #fff !important; }
/* Outline negro por default (funciona sobre fondo claro). Override a blanco
   solo sobre el hero (que es negro). */
.v2-body .v2-btn-ghost {
    background: transparent;
    color: var(--v2-black);
    border-color: var(--v2-black);
}
.v2-body .v2-btn-ghost:hover { background: var(--v2-black); color: #fff; }
/* Override en cart/drawer/section por specificity de los resets de <a> */
.v2-body .v2-cart-page .v2-btn-ghost,
.v2-body .v2-cart-drawer .v2-btn-ghost,
.v2-body .v2-section .v2-btn-ghost,
.v2-body .v2-detail-section .v2-btn-ghost {
    background: transparent !important;
    color: var(--v2-black) !important;
    border-color: var(--v2-black) !important;
}
.v2-body .v2-cart-page .v2-btn-ghost:hover,
.v2-body .v2-cart-drawer .v2-btn-ghost:hover,
.v2-body .v2-section .v2-btn-ghost:hover,
.v2-body .v2-detail-section .v2-btn-ghost:hover {
    background: var(--v2-black) !important;
    color: #fff !important;
}
.v2-body .v2-hero .v2-btn-ghost {
    color: #fff !important;
    border-color: #fff !important;
}
.v2-body .v2-hero .v2-btn-ghost:hover { background: #fff !important; color: var(--v2-black) !important; }
.v2-body .v2-btn-disabled {
    background: var(--v2-bg-soft);
    color: var(--v2-text-faint);
    cursor: not-allowed;
}
/* ============== Footer ============== */
.v2-body .v2-footer {
    background: var(--v2-black);
    color: #ccc;
    padding: 48px 0 16px;
    margin-top: 48px;
}
.v2-body .v2-footer a { color: #ccc; }
.v2-body .v2-footer a:hover { color: #fff; }
.v2-body .v2-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}
.v2-body .v2-footer-title {
    color: #fff;
    font-size: 13px;
    letter-spacing: .12em;
    margin: 0 0 12px;
    text-transform: uppercase;
    font-weight: 800;
}
.v2-body .v2-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}
.v2-body .v2-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    font-size: 12px;
    color: #777;
}

.v2-body .v2-footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 12px;
}
.v2-body .v2-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .12s ease, color .12s ease;
}
.v2-body .v2-footer-social a:hover {
    background: var(--v2-yellow);
    color: #fff;
}
.v2-body .v2-footer-newsletter {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
    margin: 8px 0 0;
}
.v2-body .v2-footer-newsletter a { color: var(--v2-yellow); }

.v2-body .v2-newsletter-form { display: block; position: relative; }
.v2-body .v2-newsletter-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    padding: 4px 4px 4px 14px;
    transition: border-color .12s ease;
}
.v2-body .v2-newsletter-row:focus-within { border-color: rgba(255,255,255,.4); }
.v2-body .v2-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    padding: 6px 8px 6px 0;
    outline: none;
    min-width: 0;
}
.v2-body .v2-newsletter-input::placeholder { color: #888; }
.v2-body .v2-newsletter-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--v2-yellow);
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .12s ease;
}
.v2-body .v2-newsletter-btn:hover { background: #fff; color: var(--v2-yellow); }
.v2-body .v2-newsletter-btn:disabled { opacity: .5; cursor: wait; }
.v2-body .v2-newsletter-msg {
    font-size: 12px;
    margin-top: 8px;
    color: #aaa;
    min-height: 1em;
}
.v2-body .v2-newsletter-msg.is-ok { color: #82E0AA; }
.v2-body .v2-newsletter-msg.is-error { color: #FF8C8C; }

/* ============== Listing layout (sidebar + main) ============== */
.v2-body .v2-listing-section { padding: 16px 0 48px; }
.v2-body .v2-listing-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
}
.v2-body .v2-sidebar {
    position: sticky;
    top: 110px;
    background: var(--v2-bg);
}
.v2-body .v2-sidebar-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--v2-black);
    font-weight: 800;
}
.v2-body .v2-sidebar-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--v2-border);
    font-size: 13px;
}
.v2-body .v2-sidebar-total-label {
    color: var(--v2-text-soft);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .04em;
}
.v2-body .v2-sidebar-total-num {
    color: var(--v2-text-soft);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
}
.v2-body .v2-filter-group {
    border-bottom: 1px solid var(--v2-border);
    padding: 12px 0;
}
.v2-body .v2-filter-group summary {
    list-style: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.v2-body .v2-filter-group summary::-webkit-details-marker { display: none; }
.v2-body .v2-filter-group summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.v2-body .v2-filter-group[open] summary::after { content: "−"; }
.v2-body .v2-filter-list {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-body .v2-filter-link {
    display: flex;
    justify-content: space-between;
    padding: 6px 8px;
    font-size: 12px;
    color: var(--v2-text);
    border-radius: var(--v2-radius);
    transition: background .12s ease;
}
.v2-body .v2-filter-link:hover { background: var(--v2-bg-soft); color: var(--v2-yellow); }
/* Categoría activa en el sidebar de /categoria/{slug} */
.v2-body .v2-filter-link.is-active {
    background: var(--v2-black);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
}
.v2-body .v2-filter-link.is-active:hover { background: var(--v2-black); color: #fff; }
.v2-body .v2-filter-link.is-active .v2-filter-count { color: #ccc; }
.v2-body .v2-filter-count {
    color: var(--v2-text-faint);
    font-size: 11px;
}
.v2-body .v2-filter-chip {
    display: block;
    padding: 6px 12px;
    border: 1px solid var(--v2-border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--v2-text);
    margin-bottom: 4px;
    transition: border-color .12s ease, background .12s ease;
}
.v2-body .v2-filter-chip:hover { border-color: var(--v2-black); }
.v2-body .v2-filter-chip.is-active {
    background: var(--v2-black);
    color: #fff;
    border-color: var(--v2-black);
    font-weight: 700;
}
.v2-body .v2-filter-help {
    font-size: 12px;
    color: var(--v2-text-soft);
    line-height: 1.5;
    padding: 4px 0;
}
.v2-body .v2-filter-help strong { color: var(--v2-yellow); }

/* Toolbar arriba del grid (h1 + sort) */
.v2-body .v2-listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.v2-body h1.v2-listing-h1 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .02em;
}
.v2-body .v2-listing-tools {
    display: flex;
    align-items: center;
    gap: 16px;
}
.v2-body .v2-sort-form {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--v2-text-soft);
}
.v2-body .v2-sort-label { color: var(--v2-text-soft); }
.v2-body .v2-sort-select {
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 6px 28px 6px 12px;
    font-size: 13px;
    background: #fff
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23000' d='M0 0l5 6 5-6z'/></svg>")
        no-repeat right 10px center;
    appearance: none;
    color: var(--v2-text);
    cursor: pointer;
    font-weight: 600;
}
.v2-body .v2-sort-select:focus { outline: none; border-color: var(--v2-black); }

/* Listing-head viejo (mantengo por compatibilidad con cart/category sin sidebar) */
.v2-body .v2-listing-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-body .v2-listing-count {
    font-weight: 600;
    color: var(--v2-text-soft);
    font-size: 13px;
}
.v2-body .v2-empty {
    text-align: center;
    padding: 64px 16px;
    color: var(--v2-text-soft);
}
.v2-body .v2-empty h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--v2-black);
}
.v2-body .v2-empty-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.v2-body .v2-empty-msg {
    text-align: center;
    font-size: 16px;
    color: var(--v2-text-soft);
    margin-bottom: 0;
}
.v2-body .v2-empty-page {
    padding: 80px 0;
    text-align: center;
}
.v2-body .v2-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.v2-body .v2-page-btn {
    background: var(--v2-bg);
    color: var(--v2-black) !important;
    border: 1px solid var(--v2-border);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}
.v2-body .v2-page-btn:hover {
    background: var(--v2-black);
    color: #fff !important;
    border-color: var(--v2-black);
}
.v2-body .v2-page-info {
    font-weight: 700;
    color: var(--v2-text-soft);
    font-size: 13px;
}

/* ============== Breadcrumbs ============== */
.v2-body .v2-breadcrumbs {
    font-size: 12px;
    color: var(--v2-text-soft);
    margin-bottom: 12px;
}
.v2-body .v2-breadcrumbs a:hover { color: var(--v2-black); }

/* ============== Responsive ============== */
@media (max-width: 900px) {
    .v2-body .v2-header-inner {
        grid-template-columns: auto auto;
        grid-template-areas: "logo cart" "search search";
        gap: 12px;
    }
    .v2-body .v2-logo { grid-area: logo; }
    .v2-body .v2-cart-btn { grid-area: cart; }
    .v2-body .v2-search { grid-area: search; max-width: none; }
    .v2-body .v2-hero-inner { grid-template-columns: 1fr; }
    .v2-body .v2-hero-stack { justify-content: flex-start; }
    .v2-body .v2-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-body .v2-strip-item:nth-child(2) { border-right: none; }
    .v2-body .v2-cta-band-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 900px) {
    .v2-body .v2-listing-layout { grid-template-columns: 1fr; }
    .v2-body .v2-sidebar { position: static; }
}

@media (max-width: 540px) {
    .v2-body .v2-grid { grid-template-columns: repeat(2, 1fr); gap: 8px 6px; }
    .v2-body .v2-section { padding: 28px 0; }
    .v2-body .v2-hero { padding: 32px 0; }
    .v2-body .v2-strip-grid { grid-template-columns: 1fr; }
    .v2-body .v2-strip-item { border-right: none; padding-right: 0; }
    .v2-body .v2-footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
    .v2-body .v2-header-row1 {
        grid-template-columns: auto auto;
        grid-template-areas: "logo icons" "search search";
        gap: 10px;
    }
    .v2-body .v2-logo { grid-area: logo; }
    .v2-body .v2-header-icons { grid-area: icons; }
    .v2-body .v2-search { grid-area: search; max-width: none; }
}

/* ============== Dropdown del buscador en vivo ============== */
.v2-body .v2-search { position: relative; }
.v2-body .v2-search-dd {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .14);
    z-index: 12000;
    overflow: hidden;
    max-height: 480px;
    overflow-y: auto;
}
.v2-body .v2-search-dd-count {
    padding: 10px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}
.v2-body .v2-search-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    color: var(--v2-text) !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f6f6f6;
    transition: background .1s ease;
}
.v2-body .v2-search-dd-item:hover { background: #f7f7f7; }
.v2-body .v2-search-dd-item img,
.v2-body .v2-search-dd-noimg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: cover;
    background: #f2f3f5;
    border: 1px solid #eee;
}
.v2-body .v2-search-dd-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.v2-body .v2-search-dd-nombre {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.v2-body .v2-search-dd-precio { font-size: 13px; font-weight: 800; }
.v2-body .v2-search-dd-footer {
    display: block;
    padding: 11px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-black) !important;
    background: #fafafa;
    text-decoration: none !important;
}
.v2-body .v2-search-dd-footer:hover { background: #f0f0f0; }
.v2-body .v2-search-dd-empty {
    padding: 18px 16px;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* ============== Burbuja de WhatsApp ============== */
.v2-body .v2-wa-bubble {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
    transition: transform .18s ease, background .18s ease;
    /* Brillo suave que respira: se ilumina y apaga despacio, siempre verde */
    animation: v2-wa-glow 3.4s ease-in-out infinite;
}
.v2-body .v2-wa-bubble:hover {
    transform: scale(1.09);
    background: #1FBE5A;
}
.v2-body .v2-wa-bubble svg { display: block; }
@keyframes v2-wa-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, .22), 0 0 0 0 rgba(37, 211, 102, .45); }
    50%      { box-shadow: 0 4px 14px rgba(0, 0, 0, .22), 0 0 0 13px rgba(37, 211, 102, 0); }
}
@media (max-width: 640px) {
    .v2-body .v2-wa-bubble { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
    .v2-body .v2-wa-bubble { animation: none; }
}

/* Con el chat de soporte activo, WhatsApp se corre a la izquierda para no pisarse */
.v2-body .v2-wa-bubble.is-left { right: auto; left: 22px; }
@media (max-width: 640px) {
    .v2-body .v2-wa-bubble.is-left { left: 14px; }
}

/* =============================================================
   CAPA LENCERÍA HEIDI — elegancia y delicadeza
   Tipografía editorial, aire, transiciones suaves.
   (Va al final: pisa con la misma especificidad a lo anterior.)
   ============================================================= */

/* ---- Header: logo protagonista, buscador a la derecha ---- */
.v2-body .v2-header-row1 {
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.v2-body .v2-search {
    justify-self: end;
    width: min(380px, 100%);
}
.v2-body .v2-icon-btn {
    transition: transform .25s ease, color .25s ease;
}
.v2-body .v2-icon-btn:hover {
    transform: translateY(-2px);
    color: var(--v2-yellow);
}

/* ---- Franja superior: degradé de marca ---- */
.v2-body .v2-top-strip {
    background: linear-gradient(90deg, #2A0D45, #41076E 45%, #6A1690 80%, #8E1877);
    letter-spacing: .06em;
}

/* ---- Nav: subrayado delicado en hover ---- */
.v2-body .v2-nav-list a {
    position: relative;
    transition: color .25s ease;
}
.v2-body .v2-nav-list a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-yellow), var(--v2-orange));
    border-radius: 2px;
    transition: left .3s ease, right .3s ease;
}
.v2-body .v2-nav-list a:hover::after,
.v2-body .v2-nav-list a.is-active::after { left: 0; right: 0; }

/* ---- Secciones: más aire, títulos editoriales ---- */
.v2-body .v2-section { padding: 44px 0; }
.v2-body .v2-section-head { margin-bottom: 26px; align-items: flex-end; }
.v2-body h1.v2-section-title,
.v2-body h2.v2-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: .005em;
    line-height: 1.1;
    text-transform: none;
    color: var(--v2-black);
    position: relative;
    padding: 0;
    display: block;
    background: none;
}
/* Etiqueta fina arriba del título (data-kicker="…"): mayúsculas chicas, espaciadas, en fucsia */
.v2-body h1.v2-section-title::before,
.v2-body h2.v2-section-title::before {
    content: attr(data-kicker);
    display: block;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--v2-yellow);
    margin-bottom: 8px;
}
.v2-body h1.v2-section-title:not([data-kicker])::before,
.v2-body h2.v2-section-title:not([data-kicker])::before { display: none; }
.v2-body h1.v2-section-title::after, .v2-body h2.v2-section-title::after { content: none; }
.v2-body .v2-section-sub {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: .01em;
    color: var(--v2-text-soft);
    background: none;
    padding: 0 0 4px;
    border-radius: 0;
}
.v2-body .v2-section-link {
    border-bottom-color: #E9D5E6;
    font-weight: 600;
    text-transform: none;
    letter-spacing: .03em;
}

/* ---- Botón con degradado y pulso constante (Ver todas las marcas) ---- */
.v2-body .v2-btn-glow,
.v2-body .v2-section .v2-btn-glow {
    position: relative; overflow: hidden;
    background: linear-gradient(115deg, #E91E75 0%, #C2189A 55%, #8E24AA 100%) !important;
    background-repeat: no-repeat !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 8px 22px rgba(233,30,117,.32);
    animation: v2-glow-pulse 2.4s ease-in-out infinite;
}
.v2-body .v2-btn-glow::after {
    /* Brillo que barre el botón cada tanto */
    content: ''; position: absolute; top: -40%; bottom: -40%; width: 38%; left: -60%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-18deg);
    animation: v2-glow-sweep 3.2s ease-in-out infinite;
}
.v2-body .v2-btn-glow:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(233,30,117,.42); }
@keyframes v2-glow-pulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(233,30,117,.32), 0 0 0 0 rgba(233,30,117,.45); }
    60%      { box-shadow: 0 8px 22px rgba(233,30,117,.32), 0 0 0 12px rgba(233,30,117,0); }
}
@keyframes v2-glow-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes v2-glow-sweep { 0%, 55% { left: -60%; } 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .v2-body .v2-btn-glow, .v2-body .v2-btn-glow::after { animation: none; } }

/* ---- Categorías: círculos con anillo de marca ---- */
.v2-body .v2-cat-tile { width: 150px; }
.v2-body .v2-cat-circle {
    transition: transform .35s cubic-bezier(.22,.9,.36,1), box-shadow .35s ease;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px #EFDDEC;
}
.v2-body .v2-cat-tile:hover .v2-cat-circle {
    transform: scale(1.06);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--v2-yellow), 0 12px 26px rgba(65,7,110,.16);
}
.v2-body .v2-cat-label { transition: color .25s ease; }
.v2-body .v2-cat-tile:hover .v2-cat-label { color: var(--v2-yellow); }

/* ---- Detalle de producto: galería con marco suave ---- */
.v2-body .v2-detail-main-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #F2E6F0;
}
.v2-body .v2-detail-main-img img { transition: transform .8s cubic-bezier(.22,.9,.36,1); }
.v2-body .v2-detail-main-img:hover img { transform: scale(1.04); }
.v2-body .v2-detail-thumb-v {
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease, opacity .25s ease;
    opacity: .8;
}
.v2-body .v2-detail-thumb-v:hover,
.v2-body .v2-detail-thumb-v.is-active { opacity: 1; }

/* ---- Aparición suave al scrollear (activada por JS con .v2-anim) ---- */
.v2-anim .v2-card,
.v2-anim .v2-cat-tile,
.v2-anim .v2-section-head {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.36,1);
}
.v2-anim .v2-card.is-in,
.v2-anim .v2-cat-tile.is-in,
.v2-anim .v2-section-head.is-in {
    opacity: 1;
    transform: none;
}
/* El hover de la card necesita transform propio una vez visible */
.v2-anim .v2-card.is-in { transition: opacity .7s ease, transform .35s cubic-bezier(.22,.9,.36,1), box-shadow .35s ease, border-color .35s ease; }
.v2-anim .v2-card.is-in:hover { transform: translateY(-6px); }

@media (prefers-reduced-motion: reduce) {
    .v2-anim .v2-card,
    .v2-anim .v2-cat-tile,
    .v2-anim .v2-section-head { opacity: 1; transform: none; transition: none; }
}

/* ---- Título del listado: mismo estilo editorial que las secciones ---- */
.v2-body h1.v2-listing-h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-transform: none;
    font-weight: 600;
    font-size: clamp(26px, 2.8vw, 34px);
    letter-spacing: .005em;
    color: var(--v2-black);
    position: relative;
    padding-bottom: 0;
}
.v2-body h1.v2-listing-h1::after { content: none; }


/* ---- Buscador: destello que lo recorre cada ~7 segundos ---- */
.v2-body .v2-search {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
}
.v2-body .v2-search::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 45%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(233, 30, 117, .18) 45%, rgba(255, 255, 255, .55) 50%, rgba(250, 114, 26, .14) 55%, transparent);
    transform: skewX(-18deg);
    animation: v2-search-shine 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes v2-search-shine {
    0%   { left: -70%; }
    16%  { left: 140%; }
    100% { left: 140%; }
}
@media (prefers-reduced-motion: reduce) {
    .v2-body .v2-search::after { animation: none; display: none; }
}


/* ---- Card hover: velo delicado + invitación a entrar ---- */
.v2-body .v2-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(65, 7, 110, .26), rgba(65, 7, 110, 0) 45%);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
    z-index: 1;
}
.v2-body .v2-card:hover .v2-card-media::after { opacity: 1; }
.v2-body .v2-card-media::before {
    content: 'Ver detalle';
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translate(-50%, 14px);
    background: rgba(255, 255, 255, .94);
    color: #41076E;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(65, 7, 110, .20);
    opacity: 0;
    transition: opacity .35s ease, transform .5s cubic-bezier(.22,.9,.36,1);
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
}
.v2-body .v2-card:hover .v2-card-media::before {
    opacity: 1;
    transform: translate(-50%, 0);
}
@media (hover: none) {
    .v2-body .v2-card-media::before,
    .v2-body .v2-card-media::after { display: none; }
}

/* ---- Logo compuesto: ícono + texto real (Raleway/Montserrat) ----
   El texto es HTML para poder animarlo; proporciones calcadas del logo
   original (Heidi 110px de referencia, acá escalado al header). */
.v2-body .v2-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.v2-body .v2-logo-icon { display: block; width: auto; }
.v2-body .v2-logo-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.v2-body .logo-lenceria {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-indent: 0.32em; /* compensa el tracking del último caracter */
    color: #421078;
    text-transform: uppercase;
}
.v2-body .logo-heidi {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 58px;
    letter-spacing: -0.04em;
    background: linear-gradient(
        90deg,
        #4A087C 0%,
        #A20A91 22%,
        #F50072 48%,
        #FF4050 70%,
        #FF790D 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 250% 100%;
    background-position: 0% 0;
    animation: v2-logo-flow 4.5s ease-in-out infinite alternate;
    margin: 1px 0 3px;
}
/* El degradé "respira": fluye suavemente hacia el naranja y vuelve */
@keyframes v2-logo-flow {
    0%   { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}
.v2-body .logo-mayorista {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.30em;
    text-indent: 0.30em;
    color: #421078;
    text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
    .v2-body .logo-heidi { animation: none; }
}
@media (max-width: 760px) {
    .v2-body .v2-logo-icon { height: 56px !important; }
    .v2-body .logo-heidi { font-size: 34px; }
    .v2-body .logo-lenceria { font-size: 8px; }
    .v2-body .logo-mayorista { font-size: 7px; }
}

/* ---- Menú móvil (drawer) ---- */
.v2-body .v2-burger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #41076E;
    transition: background .25s ease;
}
.v2-body .v2-burger:active { background: #F8EFF7; }

.v2-drawer-scrim {
    position: fixed;
    inset: 0;
    background: rgba(42, 13, 69, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 998;
}
.v2-drawer-scrim.is-open { opacity: 1; pointer-events: auto; }

.v2-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(330px, 88vw);
    background: #fff;
    z-index: 999;
    transform: translateX(-102%);
    transition: transform .35s cubic-bezier(.22,.9,.36,1);
    box-shadow: 0 0 60px rgba(42, 13, 69, .25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 32px;
}
.v2-mobile-drawer.is-open { transform: translateX(0); }
body.v2-drawer-locked { overflow: hidden; }

.v2-mdrawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(90deg, #2A0D45, #41076E 60%, #6A1690);
    color: #fff;
}
.v2-mdrawer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    letter-spacing: .02em;
}
.v2-mdrawer-brand strong { font-weight: 700; }
.v2-mdrawer-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}
.v2-mdrawer-nav { padding: 10px 8px; border-bottom: 1px solid #F2E6F0; }
.v2-mdrawer-nav a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    color: #2E2233;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}
.v2-mdrawer-nav a:active,
.v2-mdrawer-nav a.is-active { background: #F8EFF7; color: #41076E; }

.v2-mdrawer-sec { padding: 12px 8px 4px; border-bottom: 1px solid #F2E6F0; }
.v2-mdrawer-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    color: #2A0D45;
    margin: 4px 12px 8px;
    padding-bottom: 8px;
    position: relative;
}
.v2-mdrawer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #E91E75, #FA721A);
}
.v2-mdrawer-link,
.v2-mdrawer-acc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    color: #2E2233;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    list-style: none;
    transition: background .25s ease, color .25s ease;
}
.v2-mdrawer-acc summary::-webkit-details-marker { display: none; }
.v2-mdrawer-link:active,
.v2-mdrawer-acc summary:active { background: #F8EFF7; color: #41076E; }
.v2-mdrawer-chev { transition: transform .3s ease; color: #A395AB; }
.v2-mdrawer-acc[open] .v2-mdrawer-chev { transform: rotate(180deg); color: #E91E75; }
.v2-mdrawer-acc[open] summary { color: #41076E; font-weight: 600; }
.v2-mdrawer-subs { padding: 2px 0 6px 16px; }
.v2-mdrawer-subs a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #6E5F76;
    font-size: 13.5px;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}
.v2-mdrawer-subs a:active { background: #F8EFF7; color: #E91E75; }
.v2-mdrawer-vertodo { color: #E91E75 !important; font-weight: 600; }

/* En móvil: burger visible, tira de nav de escritorio OCULTA,
   y el header se reorganiza: burger + logo + iconos arriba, buscador abajo */
@media (max-width: 760px) {
    .v2-body .v2-burger { display: inline-flex; }
    .v2-body .v2-nav { display: none; }
    .v2-body .v2-header-row1 {
        grid-template-columns: auto auto 1fr;
        grid-template-areas: "burger logo icons" "search search search";
        gap: 10px;
    }
    .v2-body .v2-burger { grid-area: burger; }
    .v2-body .v2-logo { grid-area: logo; }
    .v2-body .v2-header-icons { grid-area: icons; justify-self: end; }
    .v2-body .v2-search { grid-area: search; max-width: none; justify-self: stretch; }
}

/* ---- Banners por posición (Home-Categorías, Video, Sidebar, Footer) ---- */
.v2-body .v2-section-banners { padding: 10px 0 34px; }
.v2-body .v2-banner-strip { display: grid; grid-template-columns: 1fr; gap: 18px; }
.v2-body .v2-banner-strip.is-multi { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
    .v2-body .v2-banner-strip.is-multi { grid-template-columns: 1fr; }
}
.v2-body .v2-banner-tile-b {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(65, 7, 110, .10);
    transition: transform .35s cubic-bezier(.22,.9,.36,1), box-shadow .35s ease;
}
.v2-body .v2-banner-tile-b:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(65,7,110,.16); }
.v2-body .v2-banner-tile-b img { width: 100%; height: auto; display: block; }

.v2-body .v2-section-video { padding: 10px 0 34px; }
.v2-body .v2-video-band {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(65, 7, 110, .14);
}
.v2-body .v2-video-band video { width: 100%; display: block; }
.v2-body .v2-video-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 24px 18px;
    background: linear-gradient(to top, rgba(42,13,69,.75), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
}
.v2-body .v2-video-caption strong { font-size: 22px; font-weight: 700; }
.v2-body .v2-video-caption em { font-style: normal; opacity: .85; font-size: 14px; }

.v2-body .v2-side-banner {
    display: block;
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(65, 7, 110, .10);
    transition: transform .3s ease;
}
.v2-body .v2-side-banner:hover { transform: translateY(-3px); }
.v2-body .v2-side-banner img { width: 100%; height: auto; display: block; }

.v2-body .v2-footer-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 0 auto 26px;
    padding-top: 6px;
}

/* ============== Menú "Marcas" (dropdown con logos, alfabético) ============== */
.v2-body .v2-marcasmenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--v2-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, visibility 0s .15s;
}
@media (hover: hover) {
    .v2-body .v2-marcas-wrap:hover .v2-marcasmenu,
    .v2-body .v2-marcas-wrap:focus-within .v2-marcasmenu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: opacity .15s ease, visibility 0s 0s;
    }
}
.v2-body .v2-marcasmenu-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 28px 18px;
}
.v2-body .v2-marcasmenu-head {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 0 8px 10px; margin-bottom: 8px; border-bottom: 1px solid var(--v2-border);
    font-size: 12px; color: var(--v2-text-soft); font-weight: 600; letter-spacing: .02em;
}
.v2-body .v2-marcasmenu-all { color: var(--v2-yellow); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.v2-body .v2-marcasmenu-all:hover { color: var(--v2-red); }
/* Listado alfabético compacto en columnas (se lee de arriba a abajo y sigue en la columna siguiente) */
.v2-body .v2-marcasmenu-grid {
    display: block;
    column-width: 200px;
    column-gap: 18px;
}
/* Especificidad alta: .v2-nav-list a (links de la barra) fuerza inline-block y pisaba el flex */
.v2-body .v2-nav-list .v2-marcasmenu .v2-marca-card,
.v2-body .v2-marca-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-align: left;
    break-inside: avoid;
    transition: background .12s ease, border-color .12s ease;
}
.v2-body .v2-nav-list .v2-marcasmenu .v2-marca-card:hover,
.v2-body .v2-marca-card:hover {
    background: #F8EFF7;
    border-color: var(--v2-border);
}
.v2-body .v2-nav-list .v2-marcasmenu .v2-marca-card::after { content: none; }
.v2-body .v2-marca-logo {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--v2-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.v2-body .v2-marca-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-marca-ini {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: #41076E;
    background: #F8EFF7;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-body .v2-marca-nombre {
    font-size: 13px;
    font-weight: 500;
    color: var(--v2-text);
    line-height: 1.25;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Drawer móvil: marcas con logo chico */
.v2-body .v2-mdrawer-marca {
    display: flex;
    align-items: center;
    gap: 10px;
}
.v2-body .v2-mdrawer-marca-logo,
.v2-body .v2-mdrawer-marca-ini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--v2-border);
    background: #fff;
    object-fit: contain;
    flex: 0 0 auto;
}
.v2-body .v2-mdrawer-marca-ini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #41076E;
    background: #F8EFF7;
}

/* Heros de páginas legacy (contacto, envíos): texto siempre blanco sobre el
   fondo violeta — los h1 globales del theme los pisaban con violeta oscuro */
.v2-body .contact-hero-title, .v2-body .contact-hero-subtitle, .v2-body .contact-hero-label,
.v2-body .shipping-hero-title, .v2-body .shipping-hero-subtitle, .v2-body .shipping-hero-label {
    color: #fff !important;
}

/* ============== Marcas (home) ============== */
.v2-body .v2-section-brands { background: linear-gradient(180deg, var(--v2-bg) 0%, var(--v2-bg-soft) 100%); }
.v2-body .v2-brands {
    /* Flex centrado: todas las filas (incluida la última) quedan centradas */
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 14px;
}
.v2-body .v2-brand {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    flex: 0 0 176px; max-width: 176px;
    text-decoration: none; color: var(--v2-text);
}
@media (max-width: 640px) { .v2-body .v2-brand { flex-basis: calc(50% - 7px); max-width: calc(50% - 7px); } }
.v2-body .v2-brand[hidden] { display: none; }
.v2-body .v2-brand-inner {
    position: relative; width: 100%; aspect-ratio: 3 / 2;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--v2-border); border-radius: 12px;
    padding: 14px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(42,13,69,.05);
    transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.v2-body .v2-brand-inner::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
    transform: translateX(-120%); transition: transform .7s ease;
}
.v2-body .v2-brand-inner img {
    max-width: 100%; max-height: 100%; object-fit: contain; display: block;
    transform: scale(.92);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.v2-body .v2-brand-noimg {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    width: 100%; height: 100%; text-align: center; transition: transform .35s ease;
}
.v2-body .v2-brand-noimg b {
    font-size: 44px; font-weight: 900; line-height: 1; letter-spacing: -.02em;
    font-family: Georgia, 'Times New Roman', serif; font-style: italic;
    background: linear-gradient(135deg, hsl(var(--h, 300), 55%, 42%), var(--v2-yellow));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v2-body .v2-brand-name {
    font-size: 12px; font-weight: 600; color: var(--v2-text-soft); letter-spacing: .02em;
    text-transform: uppercase; text-align: center; transition: color .25s ease;
}
.v2-body .v2-brand:hover .v2-brand-inner {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(65,7,110,.16);
    border-color: var(--v2-yellow);
}
.v2-body .v2-brand:hover .v2-brand-inner::after { transform: translateX(120%); }
.v2-body .v2-brand:hover .v2-brand-inner img { transform: scale(1.04); }
.v2-body .v2-brand:hover .v2-brand-noimg { transform: scale(1.06); }
.v2-body .v2-brand:hover .v2-brand-name { color: var(--v2-red); }
@media (max-width: 640px) {
    .v2-body .v2-brands { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
    .v2-body .v2-brand-inner { border-radius: 10px; padding: 10px; }
    .v2-body .v2-brand-name { font-size: 11px; }
}

/* ============== Compra mínima por marca (ficha) ============== */
@property --v2-min-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes v2-min-spin { to { --v2-min-angle: 360deg; } }
@keyframes v2-min-shine { 0% { transform: translateX(-130%) skewX(-18deg); } 55%, 100% { transform: translateX(230%) skewX(-18deg); } }
@keyframes v2-min-pop { 0% { transform: scale(.96); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.v2-body .v2-minimo {
    position: relative; margin: 14px 0 18px; padding: 2px; border-radius: 16px;
    background: conic-gradient(from var(--v2-min-angle), var(--v2-red), var(--v2-yellow), var(--v2-orange), var(--v2-yellow), var(--v2-red));
    animation: v2-min-spin 6s linear infinite, v2-min-pop .5s cubic-bezier(.2,.8,.2,1) both;
    box-shadow: 0 10px 30px rgba(233,30,117,.12);
}
.v2-body .v2-minimo-inner {
    position: relative; overflow: hidden; border-radius: 14px; padding: 16px 18px;
    background: linear-gradient(135deg, #fff 0%, #FFF3F9 60%, #FBF6FA 100%);
}
.v2-body .v2-minimo-inner::before {
    content: ""; position: absolute; top: -40%; bottom: -40%; width: 22%; left: 0; pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: v2-min-shine 5.5s ease-in-out infinite;
}
.v2-body .v2-minimo-head { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.v2-body .v2-minimo-others, .v2-body .v2-minimo-note { position: relative; z-index: 1; }
.v2-body .v2-minimo-icon {
    flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; position: relative; z-index: 1;
    background: linear-gradient(135deg, var(--v2-yellow), var(--v2-red)); color: #fff; font-size: 22px;
    box-shadow: 0 6px 16px rgba(65,7,110,.25);
}
.v2-body .v2-minimo-label {
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--v2-text-soft);
}
.v2-body .v2-minimo-amount {
    font-size: clamp(26px, 3vw, 34px); font-weight: 900; line-height: 1.05; letter-spacing: -.01em;
    background: linear-gradient(135deg, var(--v2-red), var(--v2-yellow)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.v2-body .v2-minimo-others { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 12px; }
.v2-body .v2-minimo-others-label { font-size: 12px; font-weight: 700; color: var(--v2-text-soft); margin-right: 4px; }
.v2-body .v2-minimo-chip {
    font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; text-decoration: none;
    color: var(--v2-red); background: #fff; border: 1px solid rgba(65,7,110,.18); transition: all .2s ease;
}
.v2-body .v2-minimo-chip:hover { background: var(--v2-red); color: #fff; border-color: var(--v2-red); transform: translateY(-1px); }
.v2-body .v2-minimo-note { margin: 10px 0 0; font-size: 12px; color: var(--v2-text-soft); line-height: 1.4; }
@media (prefers-reduced-motion: reduce) {
    .v2-body .v2-minimo, .v2-body .v2-minimo-inner::before { animation: none; }
}

/* ============== Envío a cotizar ============== */
.v2-body .v2-ship-quote { font-weight: 700; color: var(--v2-red); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.v2-body .v2-ship-quote-note { margin: -4px 0 10px; font-size: 12px; line-height: 1.4; color: var(--v2-text-soft); background: var(--v2-bg-soft); border-left: 3px solid var(--v2-yellow); padding: 8px 10px; border-radius: 0 6px 6px 0; }

/* ============== Newsletter: botón en el footer + lightbox ============== */
.v2-body .v2-nl-footer-text { margin: 0 0 12px; font-size: 13px; line-height: 1.45; color: #C9B9D6; }
.v2-body .v2-nl-open {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border: none; border-radius: 999px; cursor: pointer;
    font-size: 15px; font-weight: 800; letter-spacing: .02em; color: #fff;
    background: linear-gradient(135deg, var(--v2-yellow) 0%, #FF5FA2 100%); box-shadow: 0 6px 16px rgba(233,30,117,.35);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.v2-body .v2-nl-open:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(233,30,117,.45); filter: brightness(1.05); }
.v2-body.v2-nl-lock { overflow: hidden; }
.v2-body .v2-nl-modal { position: fixed; inset: 0; z-index: 1300; display: none; align-items: center; justify-content: center; padding: 16px; }
.v2-body .v2-nl-modal.is-open { display: flex; }
.v2-body .v2-nl-backdrop { position: absolute; inset: 0; background: rgba(42,13,69,.62); backdrop-filter: blur(3px); animation: v2-nl-fade .2s ease; }
@keyframes v2-nl-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes v2-nl-pop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.v2-body .v2-nl-card {
    position: relative; width: 100%; max-width: 460px; max-height: calc(100vh - 32px); overflow: auto;
    background: #fff; border-radius: 20px; padding: 28px 26px 24px; box-shadow: 0 24px 60px rgba(0,0,0,.35);
    animation: v2-nl-pop .25s cubic-bezier(.22,.9,.36,1);
}
.v2-body .v2-nl-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--v2-bg-soft); color: var(--v2-text-soft); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.v2-body .v2-nl-close:hover { background: var(--v2-border); color: var(--v2-text); }
.v2-body .v2-nl-head { text-align: center; margin-bottom: 18px; }
.v2-body .v2-nl-head-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: linear-gradient(140deg, var(--v2-yellow) 0%, var(--v2-red) 100%); box-shadow: 0 6px 14px rgba(65,7,110,.22); margin-bottom: 10px; }
.v2-body .v2-nl-head h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: var(--v2-black); }
.v2-body .v2-nl-head p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--v2-text-soft); }
.v2-body .v2-nl-form { display: flex; flex-direction: column; gap: 10px; position: relative; }
.v2-body .v2-nl-label { font-size: 13px; font-weight: 700; color: var(--v2-text); }
.v2-body .v2-nl-input { width: 100%; height: 50px; padding: 0 16px; font-size: 16px; border: 2px solid var(--v2-border); border-radius: 12px; outline: none; color: var(--v2-text); background: #fff; transition: border-color .12s ease, box-shadow .12s ease; }
.v2-body .v2-nl-input:focus { border-color: var(--v2-yellow); box-shadow: 0 0 0 4px rgba(233,30,117,.12); }
.v2-body .v2-nl-input.is-error { border-color: #D93025; background: #FFF6F6; }
.v2-body .v2-nl-captcha { margin-top: 6px; padding: 14px; border-radius: 14px; background: var(--v2-bg-soft); border: 2px dashed var(--v2-border); transition: border-color .15s ease, background .15s ease; }
.v2-body .v2-nl-captcha.is-error { border-color: #D93025; background: #FFF6F6; }
.v2-body .v2-nl-captcha-q { margin: 0 0 10px; font-size: 15px; line-height: 1.4; color: var(--v2-text); }
.v2-body .v2-nl-captcha-q strong { color: var(--v2-yellow); font-size: 17px; }
.v2-body .v2-nl-captcha-opts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.v2-body .v2-nl-opt {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 86px;
    background: #fff; border: 2px solid var(--v2-border); border-radius: 14px; cursor: pointer; color: var(--v2-text);
    font-size: 13px; font-weight: 700; transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease, background .12s ease;
}
.v2-body .v2-nl-opt svg { color: var(--v2-red); }
.v2-body .v2-nl-opt:hover { transform: translateY(-2px); border-color: rgba(233,30,117,.5); box-shadow: var(--v2-shadow-md); }
.v2-body .v2-nl-opt.is-selected { border-color: var(--v2-yellow); background: #FFF0F7; box-shadow: 0 0 0 4px rgba(233,30,117,.15); }
.v2-body .v2-nl-opt.is-selected svg { color: var(--v2-yellow); }
.v2-body .v2-nl-submit { margin-top: 6px; height: 52px; border: none; border-radius: 12px; cursor: pointer; font-size: 17px; font-weight: 800; color: #fff; background: var(--v2-red); transition: background .12s ease, transform .12s ease; }
.v2-body .v2-nl-submit:hover { background: var(--v2-red-dark); transform: translateY(-1px); }
.v2-body .v2-nl-submit:disabled { opacity: .6; cursor: wait; }
.v2-body .v2-nl-form .v2-newsletter-msg { margin-top: 2px; font-size: 14px; text-align: center; min-height: 1.2em; color: var(--v2-text-soft); }
.v2-body .v2-nl-form .v2-newsletter-msg.is-error { color: #D93025; font-weight: 700; }
.v2-body .v2-nl-form .v2-newsletter-msg.is-ok { color: #1E8E3E; }
.v2-body .v2-nl-done { text-align: center; padding: 8px 0 0; }
.v2-body .v2-nl-done-icon { display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 50%; color: #fff; background: #1E8E3E; box-shadow: 0 8px 18px rgba(30,142,62,.3); margin-bottom: 12px; animation: v2-nl-pop .35s cubic-bezier(.22,.9,.36,1); }
.v2-body .v2-nl-done h3 { margin: 0 0 6px; font-size: 24px; font-weight: 800; color: var(--v2-black); }
.v2-body .v2-nl-done p { margin: 0 0 16px; font-size: 15px; color: var(--v2-text-soft); }
.v2-body .v2-nl-done .v2-nl-submit { width: 100%; }
@media (max-width: 520px) {
    .v2-body .v2-nl-modal { padding: 0; align-items: flex-end; }
    .v2-body .v2-nl-card { max-width: none; border-radius: 20px 20px 0 0; padding: 24px 18px 22px; max-height: 92vh; }
    .v2-body .v2-nl-opt { min-height: 78px; }
}

/* ============== Beneficios (tira con íconos, home) ============== */
.v2-body .v2-benefits { background: var(--v2-bg); border-bottom: 1px solid var(--v2-border); }
.v2-body .v2-benefits-list {
    list-style: none; margin: 0; padding: 14px 0;
    display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px;
}
.v2-body .v2-benefit { animation: v2-benefit-in .5s ease both; animation-delay: calc(var(--i, 0) * 70ms); }
@keyframes v2-benefit-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.v2-body .v2-benefit-inner {
    display: flex; align-items: center; gap: 12px; height: 100%;
    padding: 12px 14px; border-radius: 12px; text-decoration: none; color: var(--v2-text);
    background: linear-gradient(135deg, #FFF7FB 0%, #FBF3F9 100%); border: 1px solid var(--v2-border);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.v2-benefit-inner:hover { transform: translateY(-3px); box-shadow: var(--v2-shadow-md); border-color: rgba(233,30,117,.35); }
.v2-body .v2-benefit-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    color: #fff; background: linear-gradient(140deg, var(--v2-yellow) 0%, var(--v2-red) 100%); box-shadow: 0 4px 10px rgba(65,7,110,.18);
    transition: transform .25s ease;
}
a.v2-benefit-inner:hover .v2-benefit-icon { transform: rotate(-8deg) scale(1.08); }
.v2-body .v2-benefit-text { font-size: 12px; font-weight: 800; letter-spacing: .04em; line-height: 1.25; text-transform: uppercase; }
@media (max-width: 1100px) { .v2-body .v2-benefits-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) {
    .v2-body .v2-benefits-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 10px 0; }
    .v2-body .v2-benefit-inner { padding: 10px; gap: 9px; }
    .v2-body .v2-benefit-icon { width: 38px; height: 38px; }
    .v2-body .v2-benefit-icon svg { width: 20px; height: 20px; }
    .v2-body .v2-benefit-text { font-size: 11px; }
    .v2-body .v2-benefit:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ============== Testimonios al azar ============== */
.v2-body .v2-testi { background: var(--v2-bg-soft); border-top: 1px solid var(--v2-border); }
.v2-body .v2-testi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.v2-body .v2-testi-card {
    position: relative; display: flex; flex-direction: column; gap: 10px;
    background: var(--v2-bg); border: 1px solid var(--v2-border); border-radius: 14px; padding: 22px 20px 18px;
    box-shadow: var(--v2-shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.v2-body .v2-testi-card:hover { transform: translateY(-3px); box-shadow: var(--v2-shadow-md); }
.v2-body .v2-testi-quote { position: absolute; top: 4px; right: 16px; font-size: 64px; line-height: 1; font-family: Georgia, serif; color: rgba(233,30,117,.14); pointer-events: none; }
.v2-body .v2-testi-stars { display: inline-flex; gap: 2px; color: #F5A524; }
.v2-body .v2-testi-text { margin: 0; font-size: 14px; line-height: 1.55; color: var(--v2-text); flex: 1; }
.v2-body .v2-testi-author { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.v2-body .v2-testi-author strong { display: block; font-size: 13px; color: var(--v2-text); }
.v2-body .v2-testi-author small { display: block; font-size: 12px; color: var(--v2-text-soft); }
.v2-body .v2-testi-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.v2-body .v2-testi-avatar-letter { display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
@media (max-width: 900px) { .v2-body .v2-testi-grid { grid-template-columns: 1fr; gap: 12px; } .v2-body .v2-testi-card { padding: 18px 16px 14px; } }

/* ============== Chat con IA (burbuja + panel) ============== */
.v2-body .v2-chat [hidden] { display: none !important; }
.v2-body .v2-chat-bubble {
    position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer; z-index: 9501;
    background: linear-gradient(140deg, var(--v2-yellow) 0%, var(--v2-red) 100%); color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.22); transition: transform .18s ease; animation: v2-chat-glow 3.4s ease-in-out infinite;
}
.v2-body .v2-chat-bubble.has-wa { bottom: 92px; }
.v2-body .v2-chat-bubble:hover { transform: scale(1.08); }
.v2-body .v2-chat.is-open .v2-chat-bubble { animation: none; }
@keyframes v2-chat-glow { 0%,100% { box-shadow: 0 4px 14px rgba(0,0,0,.22), 0 0 0 0 rgba(233,30,117,.45); } 50% { box-shadow: 0 4px 14px rgba(0,0,0,.22), 0 0 0 13px rgba(233,30,117,0); } }
.v2-body .v2-chat-unread { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: #E5484D; color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.v2-body .v2-chat-hint { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: #fff; color: var(--v2-text); font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 999px; box-shadow: var(--v2-shadow-md); white-space: nowrap; pointer-events: none; opacity: 0; animation: v2-chat-hint 12s ease 3s 1 forwards; }
@keyframes v2-chat-hint { 0% { opacity: 0; transform: translate(8px, -50%); } 8%, 80% { opacity: 1; transform: translate(0, -50%); } 100% { opacity: 0; } }
.v2-body .v2-chat.is-open .v2-chat-hint { display: none; }
.v2-body .v2-chat-panel {
    position: fixed; right: 22px; bottom: 92px; width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 120px); z-index: 9502;
    background: #fff; border-radius: 18px; box-shadow: 0 24px 60px rgba(42,13,69,.35); display: none; flex-direction: column; overflow: hidden;
    animation: v2-nl-pop .22s cubic-bezier(.22,.9,.36,1);
}
.v2-body .v2-chat-panel.is-open { display: flex; }
.v2-body .v2-chat-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: linear-gradient(135deg, var(--v2-red) 0%, #6A1B9A 100%); color: #fff; }
.v2-body .v2-chat.is-agent .v2-chat-head { background: linear-gradient(135deg, #1E8E3E 0%, #2BB673 100%); }
.v2-body .v2-chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.22); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.v2-body .v2-chat-who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.v2-body .v2-chat-who strong { font-size: 15px; line-height: 1.2; }
.v2-body .v2-chat-who small { font-size: 12px; opacity: .9; }
.v2-body .v2-chat-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.v2-body .v2-chat-close:hover { background: rgba(255,255,255,.3); }
.v2-body .v2-chat-msgs { flex: 1; overflow-y: auto; padding: 14px 12px; background: var(--v2-bg-soft); display: flex; flex-direction: column; gap: 8px; }
.v2-body .v2-chat-msg { max-width: 84%; padding: 9px 12px; border-radius: 14px; font-size: 14px; line-height: 1.45; white-space: pre-wrap; word-break: break-word; }
.v2-body .v2-chat-msg a { color: inherit; text-decoration: underline; }
.v2-body .v2-chat-msg-who { display: block; font-size: 11px; font-weight: 700; opacity: .6; margin-bottom: 2px; }
.v2-body .v2-chat-msg.is-cliente { align-self: flex-end; background: var(--v2-red); color: #fff; border-bottom-right-radius: 4px; }
.v2-body .v2-chat-msg.is-cliente .v2-chat-msg-who { opacity: .75; }
.v2-body .v2-chat-msg.is-cliente.is-pending { opacity: .7; }
.v2-body .v2-chat-msg.is-cliente.is-error { background: #B3261E; }
.v2-body .v2-chat-msg.is-bot { align-self: flex-start; background: #fff; border: 1px solid var(--v2-border); border-bottom-left-radius: 4px; }
.v2-body .v2-chat-msg.is-agente { align-self: flex-start; background: #E8F6EC; border: 1px solid #BFE5CB; border-bottom-left-radius: 4px; }
.v2-body .v2-chat-msg.is-sistema { align-self: center; background: #FFF5DB; color: #6B4A00; font-size: 13px; text-align: center; max-width: 94%; }
.v2-body .v2-chat-typing { display: flex; gap: 4px; padding: 6px 16px; background: var(--v2-bg-soft); }
.v2-body .v2-chat-typing span { width: 8px; height: 8px; border-radius: 50%; background: var(--v2-text-faint); animation: v2-chat-dot 1s infinite ease-in-out; }
.v2-body .v2-chat-typing span:nth-child(2) { animation-delay: .15s; } .v2-body .v2-chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes v2-chat-dot { 0%, 80%, 100% { transform: translateY(0); opacity: .5; } 40% { transform: translateY(-5px); opacity: 1; } }
.v2-body .v2-chat-quick { display: flex; gap: 6px; padding: 8px 12px 0; background: #fff; }
.v2-body .v2-chat-quick button { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--v2-red); background: #F5EEF9; border: 1px solid #E4D3EE; border-radius: 999px; padding: 7px 12px; cursor: pointer; }
.v2-body .v2-chat-quick button:hover { background: #ECDFF5; }
.v2-body .v2-chat-compose { display: flex; align-items: flex-end; gap: 8px; padding: 10px 12px 12px; background: #fff; }
.v2-body .v2-chat-compose textarea { flex: 1; resize: none; min-height: 44px; max-height: 110px; padding: 11px 14px; border: 2px solid var(--v2-border); border-radius: 14px; font-size: 15px; font-family: inherit; outline: none; }
.v2-body .v2-chat-compose textarea:focus { border-color: var(--v2-yellow); }
.v2-body .v2-chat-send { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--v2-red); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-body .v2-chat-send:disabled { opacity: .5; }
.v2-body .v2-chat-datos { padding: 12px 14px 14px; background: #fff; border-top: 2px dashed var(--v2-border); display: flex; flex-direction: column; gap: 8px; }
.v2-body .v2-chat-datos-title { margin: 0 0 2px; font-weight: 800; font-size: 15px; color: var(--v2-black); }
.v2-body .v2-chat-datos label { display: flex; flex-direction: column; gap: 3px; font-size: 13px; font-weight: 700; color: var(--v2-text); }
.v2-body .v2-chat-datos input { height: 42px; padding: 0 12px; border: 2px solid var(--v2-border); border-radius: 10px; font-size: 15px; font-weight: 400; outline: none; }
.v2-body .v2-chat-datos input:focus { border-color: var(--v2-yellow); }
.v2-body .v2-chat-datos-error { margin: 0; color: #D93025; font-weight: 700; font-size: 13px; }
.v2-body .v2-chat-datos-btns { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.v2-body .v2-chat-btn-primary { height: 46px; border: none; border-radius: 12px; background: var(--v2-red); color: #fff; font-size: 15px; font-weight: 800; cursor: pointer; }
.v2-body .v2-chat-btn-primary:disabled { opacity: .6; }
.v2-body .v2-chat-btn-link { background: none; border: none; color: var(--v2-text-soft); font-size: 13px; cursor: pointer; text-decoration: underline; }
@media (max-width: 520px) {
    .v2-body .v2-chat-panel { right: 0; bottom: 0; width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; border-radius: 0; }
    .v2-body .v2-chat-bubble { right: 14px; bottom: 14px; width: 52px; height: 52px; }
    .v2-body .v2-chat-bubble.has-wa { bottom: 78px; }
    .v2-body .v2-chat.is-open .v2-chat-bubble { display: none; }
    .v2-body .v2-chat-hint { display: none; }
}

/* ============== Lightbox de compras mínimas ============== */
.v2-body .v2-min-card { max-width: 520px; }
.v2-body .v2-min-icon-stop { background: linear-gradient(140deg, #E5484D 0%, #B3261E 100%) !important; }
.v2-body .v2-min-icon-warn { background: linear-gradient(140deg, #F5A524 0%, #E07B00 100%) !important; }
.v2-body .v2-min-grupo { border: 2px solid #FDE2E4; background: #FFF6F6; border-radius: 14px; padding: 14px; margin-bottom: 10px; }
.v2-body .v2-min-grupo-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; font-size: 15px; }
.v2-body .v2-min-falta { color: #B3261E; font-weight: 800; font-size: 17px; }
.v2-body .v2-min-bar { height: 10px; background: #F3DCE0; border-radius: 99px; overflow: hidden; margin: 8px 0 6px; }
.v2-body .v2-min-bar > div { height: 100%; background: linear-gradient(90deg, var(--v2-yellow), #FF5FA2); border-radius: 99px; }
.v2-body .v2-min-nums { font-size: 13px; color: var(--v2-text-soft); }
.v2-body .v2-min-hermanas { font-size: 12px; color: var(--v2-text-soft); margin-top: 4px; }
.v2-body .v2-min-btn { display: block; width: 100%; text-align: center; text-decoration: none; margin-top: 10px; line-height: 46px; }
.v2-body .v2-min-link { display: block; text-align: center; width: 100%; margin-top: 6px; }
.v2-body .v2-min-omitidos { margin: 0 0 10px; padding: 10px 14px 10px 30px; background: #FFF5DB; border-radius: 10px; font-size: 14px; font-weight: 700; color: #6B4A00; }
.v2-body .v2-min-ok { margin-top: 8px; font-size: 13px; color: #1E6B34; font-weight: 700; }
.v2-body .v2-min-actions { margin-top: 12px; }
.v2-body .v2-checkout-bloqueo { border: 2px solid #E5484D; background: #FFF6F6; border-radius: 14px; padding: 18px; margin-bottom: 16px; }
.v2-body .v2-checkout-bloqueo h2 { margin: 0 0 6px; font-size: 20px; color: #B3261E; }
.v2-body .v2-checkout-bloqueo p { margin: 0 0 10px; font-size: 14px; color: var(--v2-text); line-height: 1.45; }
.v2-body .v2-checkout-omitir { border: 2px solid #F5A524; background: #FFF5DB; border-radius: 14px; padding: 14px 16px; margin-bottom: 16px; font-size: 14px; color: #6B4A00; line-height: 1.45; }
.v2-body .v2-checkout-omitir strong { color: #4a3300; }

/* ============== Progreso del mínimo (ficha + listado por grupo) ============== */
.v2-body .v2-minimo-prog { position: relative; z-index: 1; margin-top: 12px; }
.v2-body .v2-minimo-prog-row { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--v2-text); }
.v2-body .v2-minimo-prog-row strong { font-size: 16px; }
.v2-body .v2-minimo-prog-falta { color: #B3261E; font-weight: 700; }
.v2-body .v2-minimo-prog-ok { color: #1E6B34; font-weight: 800; }
.v2-body .v2-minimo-bar { height: 12px; background: rgba(65,7,110,.12); border-radius: 99px; overflow: hidden; margin-top: 8px; }
.v2-body .v2-minimo-bar > div { height: 100%; background: linear-gradient(90deg, var(--v2-yellow), #FF5FA2); border-radius: 99px; transition: width .6s cubic-bezier(.22,.9,.36,1); min-width: 0; }
.v2-body .v2-minimo-prog.is-bump { animation: v2-bump .5s ease; }
@keyframes v2-bump { 30% { transform: scale(1.02); } }
.v2-body .v2-minimo-verall { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: var(--v2-red); color: #fff; font-weight: 800; font-size: 14px; text-decoration: none; transition: transform .15s ease, background .15s ease; }
.v2-body .v2-minimo-verall:hover { background: var(--v2-red-dark); transform: translateY(-1px); }
.v2-body .v2-grupo-banner { background: linear-gradient(135deg, #FFF7FB 0%, #F5EEF9 100%); border: 2px solid #E4D3EE; border-radius: 14px; padding: 14px 16px; margin-bottom: 14px; }
.v2-body .v2-grupo-banner-head { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.v2-body .v2-grupo-banner-label { font-size: 14px; color: var(--v2-text); margin-bottom: 6px; }
.v2-body .v2-grupo-banner-marcas { display: flex; flex-wrap: wrap; gap: 5px; }
.v2-body .v2-grupo-banner-marcas .v2-minimo-chip.is-on { background: var(--v2-red); color: #fff; border-color: var(--v2-red); }
.v2-body .v2-grupo-banner-nums { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 14px; }
.v2-body .v2-grupo-banner-nums strong { font-size: 18px; }
@media (max-width: 640px) { .v2-body .v2-grupo-banner-nums { align-items: flex-start; } }
.v2-body a.v2-min-btn, .v2-body a.v2-minimo-verall, .v2-body a.v2-minimo-verall:hover, .v2-body a.v2-min-btn:hover, .v2-body button.v2-chat-btn-primary { color: #fff !important; }

/* ============== Filtros activos (marca + categoría) ============== */
.v2-body .v2-filtros-activos { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 10px 0 14px; padding: 10px 14px; background: #FFF7FB; border: 2px solid #F3D9EA; border-radius: 12px; font-size: 14px; }
.v2-body .v2-filtros-label { font-weight: 800; color: var(--v2-red); text-transform: uppercase; font-size: 12px; letter-spacing: .06em; }
.v2-body .v2-filtro-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--v2-border); border-radius: 999px; padding: 6px 8px 6px 12px; color: var(--v2-text); }
.v2-body .v2-filtro-chip b { font-weight: 700; color: var(--v2-text-soft); }
.v2-body .v2-filtro-quitar { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--v2-bg-soft); color: var(--v2-red); font-weight: 800; text-decoration: none; }
.v2-body .v2-filtro-quitar:hover { background: var(--v2-red); color: #fff; }
.v2-body .v2-filtro-ver-todo { margin-left: auto; font-weight: 700; color: var(--v2-red); text-decoration: underline; }
.v2-body .v2-filtro-hint { color: var(--v2-text-soft); font-size: 13px; }
.v2-body .v2-cat-banner .v2-filtros-activos { background: rgba(255,255,255,.85); }
@media (max-width: 640px) { .v2-body .v2-filtro-ver-todo { margin-left: 0; width: 100%; } }

/* Promociones por conjunto de marcas (carrito, checkout y ficha) */
.v2-body .v2-promo-list { display: grid; gap: 10px; margin: 0 0 14px; }
.v2-body .v2-promo { border: 1px solid #F7D9E7; background: #FDF2F7; border-radius: 12px; padding: 12px 14px; }
.v2-body .v2-promo.is-ok { border-color: #BFE3C8; background: #F0FAF3; }
.v2-body .v2-promo-ficha { margin: 14px 0; }
.v2-body .v2-promo-head { display: flex; gap: 10px; align-items: center; }
.v2-body .v2-promo-head strong { display: block; font-size: 14px; }
.v2-body .v2-promo-badge { flex: 0 0 auto; background: #E91E75; color: #fff; font-weight: 800; font-size: 14px; padding: 4px 9px; border-radius: 999px; }
.v2-body .v2-promo.is-ok .v2-promo-badge { background: #1E6B34; }
.v2-body .v2-promo-marcas { display: block; font-size: 12px; color: #6a5d74; }
.v2-body .v2-promo-txt { margin: 8px 0 0; font-size: 13px; line-height: 1.5; color: #4a4152; }
.v2-body .v2-promo-txt .v2-minimo-chip { margin: 2px 2px 2px 0; }
.v2-body .v2-promo-bar { height: 6px; background: #F3D3E1; border-radius: 999px; overflow: hidden; margin-top: 8px; }
.v2-body .v2-promo-bar div { height: 100%; background: #E91E75; border-radius: 999px; }

/* Marcas: buscador rápido (home) y página de todas las marcas */
.v2-body .v2-brand-search { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin: 0 0 22px; }
.v2-body .v2-brand-search input {
    flex: 1 1 260px; max-width: 420px; height: 46px; padding: 0 18px; border-radius: 999px; font-size: 15px; color: var(--v2-text); outline: none;
    /* Borde degradado delicado que se desplaza despacio (relleno blanco por padding-box) */
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #F2A7C8, #C98BD9, #F2A7C8, #F7C7DD, #F2A7C8) border-box;
    background-size: auto, 300% 100%;
    animation: v2-border-shift 7s linear infinite;
    box-shadow: 0 2px 10px rgba(65,7,110,.06);
    transition: box-shadow .2s;
}
.v2-body .v2-brand-search input::placeholder { color: #8E7F97; opacity: 1; }
.v2-body .v2-brand-search input:focus { box-shadow: 0 0 0 4px rgba(233,30,117,.14), 0 2px 10px rgba(65,7,110,.08); }
@keyframes v2-border-shift { 0% { background-position: 0 0, 0% 50%; } 100% { background-position: 0 0, 300% 50%; } }
@media (prefers-reduced-motion: reduce) { .v2-body .v2-brand-search input { animation: none; } }
.v2-body .v2-brand-search-count { font-size: 13px; color: var(--v2-text-soft); font-weight: 600; }
.v2-body .v2-brand-all { white-space: nowrap; }
.v2-body .v2-brand-empty { margin: 14px 0 0; color: var(--v2-text-soft); font-size: 14px; }
.v2-body .v2-brands-page .v2-brand { flex-basis: 150px; max-width: 150px; }

/* Menú Categorías: listado alfabético compacto (sin imágenes) */
.v2-body .v2-catmenu-inner { display: block; padding: 14px 28px 18px; }
.v2-body .v2-catmenu-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 0 8px 10px; margin-bottom: 8px; border-bottom: 1px solid var(--v2-border); font-size: 12px; color: var(--v2-text-soft); font-weight: 600; letter-spacing: .02em; }
.v2-body .v2-catmenu-all, .v2-body .v2-nav-list .v2-catmenu .v2-catmenu-all { color: var(--v2-yellow); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; display: inline; padding: 0; }
.v2-body .v2-catmenu-list { list-style: none; margin: 0; padding: 0; column-width: 210px; column-gap: 18px; }
.v2-body .v2-catmenu-item { break-inside: avoid; padding: 4px 8px 8px; }
.v2-body .v2-nav-list .v2-catmenu .v2-catmenu-link,
.v2-body .v2-catmenu-link { display: block; font-size: 14px; font-weight: 700; color: var(--v2-text); padding: 4px 0; border-radius: 6px; }
.v2-body .v2-nav-list .v2-catmenu .v2-catmenu-link:hover, .v2-body .v2-catmenu-link:hover { color: var(--v2-yellow); }
.v2-body .v2-catmenu-subs { list-style: none; margin: 2px 0 0; padding: 0 0 0 10px; border-left: 2px solid var(--v2-border); }
.v2-body .v2-nav-list .v2-catmenu .v2-catmenu-subs a,
.v2-body .v2-catmenu-subs a { display: block; font-size: 13px; font-weight: 500; color: var(--v2-text-soft); padding: 3px 0; }
.v2-body .v2-nav-list .v2-catmenu .v2-catmenu-subs a:hover, .v2-body .v2-catmenu-subs a:hover { color: var(--v2-yellow); }
.v2-body .v2-nav-list .v2-catmenu a::after { content: none; }

.v2-body .v2-grid > [hidden] { display: none !important; }

/* Filtros del listado en celular: desplegables compactos (la barra lateral queda para escritorio) */
.v2-body .v2-mfilters { display: none; }
@media (max-width: 900px) {
    .v2-body .v2-sidebar { display: none; }
    .v2-body .v2-mfilters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 16px; }
    .v2-body .v2-mfilter { display: flex; flex-direction: column; gap: 4px; }
    .v2-body .v2-mfilter > span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--v2-text-soft); }
    .v2-body .v2-mfilter select { width: 100%; height: 44px; padding: 0 36px 0 12px; border: 1px solid var(--v2-border); border-radius: 12px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2341076E' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 14px center; font-size: 15px; font-weight: 600; color: var(--v2-text); -webkit-appearance: none; appearance: none; }
    .v2-body .v2-mfilter select:focus { outline: none; border-color: var(--v2-yellow); box-shadow: 0 0 0 3px rgba(233,30,117,.12); }
    .v2-body .v2-mfilters .v2-mfilter:only-child, .v2-body .v2-mfilters .v2-mfilter:nth-child(3):last-child { grid-column: 1 / -1; }
}
