/* =============================================================
   V2 Components — estilo SHEIN: cards limpias, ratio 3:4, sin shadow
   ============================================================= */

/* ============== Product Card ============== */
.v2-body .v2-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .15s ease;
}
.v2-body .v2-card:hover { transform: translateY(-2px); }
.v2-body .v2-card-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--v2-bg-image);
    display: block;
    border-radius: var(--v2-radius);
}
.v2-body .v2-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.v2-body .v2-card:hover .v2-card-media img { transform: scale(1.05); }
.v2-body .v2-card-noimg {
    width: 100%;
    height: 100%;
    background: var(--v2-bg-image);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--v2-text-faint);
    letter-spacing: .04em;
    font-size: 12px;
}

/* ============== Badges (estilo SHEIN: chip pequeño esquina) ============== */
.v2-body .v2-badge-oferta {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--v2-yellow);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 2px;
    z-index: 2;
    letter-spacing: .02em;
}
.v2-body .v2-badge-big {
    font-size: 28px;
    padding: 8px 16px;
    border-radius: 4px;
}
.v2-body .v2-badge-nuevo {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--v2-black);
    color: #fff;
    padding: 3px 7px;
    border-radius: 2px;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: .12em;
    z-index: 2;
}
.v2-body .v2-badge-agotado {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.85);
    color: var(--v2-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: .12em;
    font-weight: 800;
    z-index: 3;
    text-transform: uppercase;
}

/* Wishlist heart en hover */
.v2-body .v2-card-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity .15s ease;
    z-index: 2;
}
.v2-body .v2-card:hover .v2-card-wishlist { opacity: 1; }

/* ============== Card body (estilo SHEIN) ============== */
.v2-body .v2-card-body {
    padding: 8px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.v2-body .v2-card-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--v2-text-faint);
    font-weight: 600;
    margin-bottom: -2px;
}
.v2-body .v2-card-title {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.35;
    color: var(--v2-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}
.v2-body .v2-card-title a { color: var(--v2-text); }
.v2-body .v2-card-title a:hover { color: var(--v2-yellow); }

.v2-body .v2-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 2px;
}
.v2-body .v2-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.4;
}
.v2-body .v2-chip-discount {
    background: #FFE5E9;
    color: var(--v2-yellow);
}
.v2-body .v2-chip-warn {
    background: #FFF3E0;
    color: #E55D14;
}
.v2-body .v2-chip-pack {
    background: var(--v2-bg-soft);
    color: var(--v2-text);
    border: 1px solid var(--v2-border);
}

.v2-body .v2-card-pricerow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 4px;
}
.v2-body .v2-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.v2-body .v2-price-now {
    font-size: 17px;
    font-weight: 900;
    color: var(--v2-black);
    line-height: 1;
}
.v2-body .v2-price-was {
    font-size: 11px;
    color: var(--v2-text-faint);
    text-decoration: line-through;
}

/* Social proof "🔥 60+ vendidos" en cards: más visible, color cálido */
.v2-body .v2-card-sold {
    font-size: 12px;
    color: #B85C00;
    font-weight: 700;
    line-height: 1;
    margin-top: -2px;
    letter-spacing: .01em;
}
/* En el detail page va aún más prominente */
.v2-body .v2-detail-sold {
    font-size: 14px;
    color: #B85C00;
    font-weight: 800;
    background: #FFF3E0;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #FFD9A8;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Botón "+" mini (estilo SHEIN: pill con ícono carrito a la derecha del precio) */
.v2-body .v2-btn-add-mini {
    background: #fff;
    border: 1px solid var(--v2-black);
    color: var(--v2-black);
    width: 32px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .12s ease, color .12s ease;
}
.v2-body .v2-btn-add-mini:hover {
    background: var(--v2-black);
    color: #fff;
}
.v2-body .v2-btn-add-mini svg { display: block; }

/* ============== Mini-tabla de packs (cards) ============== */
.v2-body .v2-pack-table {
    background: #FFF0F2;
    color: var(--v2-yellow);
    border: 1px solid #FFD9DD;
    border-radius: var(--v2-radius);
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}
.v2-body .v2-pack-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}
.v2-body .v2-pack-label { font-weight: 800; letter-spacing: .02em; }
.v2-body .v2-pack-price { font-weight: 800; }

/* Detail page: btn-add full-size (estilo SHEIN "AÑADIR A LA BOLSA") */
.v2-body .v2-detail-actions .v2-btn-add {
    background: var(--v2-black);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    flex: 1;
    min-width: 220px;
    transition: background .12s ease;
}
.v2-body .v2-detail-actions .v2-btn-add:hover { background: var(--v2-red-dark); }

/* ============== Detail page (estilo SHEIN) ============== */
.v2-body .v2-detail-section { padding: 16px 0 48px; }
.v2-body .v2-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    margin-top: 8px;
    align-items: start;
}
.v2-body .v2-detail-media {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: start;
    position: sticky;
    top: 110px;
}
.v2-body .v2-detail-thumbs-vert {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.v2-body .v2-detail-thumb-v {
    border: 1px solid var(--v2-border);
    background: #fff;
    padding: 0;
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
    border-radius: var(--v2-radius);
    transition: border-color .15s ease;
    cursor: pointer;
}
.v2-body .v2-detail-thumb-v img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-detail-thumb-v:hover,
.v2-body .v2-detail-thumb-v.is-active { border-color: var(--v2-black); border-width: 2px; }

.v2-body .v2-detail-main-img {
    background: var(--v2-bg-image);
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
}
.v2-body .v2-detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: object-position .12s linear;
}
/* Botón zoom flotante sobre la imagen principal */
.v2-body .v2-detail-zoom-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: transform .15s ease, background .15s ease;
    z-index: 2;
}
.v2-body .v2-detail-zoom-btn:hover {
    background: #fff;
    transform: scale(1.06);
}

/* ============== LIGHTBOX ============== */
.v2-body .v2-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.v2-body .v2-lightbox.is-open { display: flex; }
.v2-body .v2-lightbox-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
}
.v2-body .v2-lightbox-stage img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform .15s ease-out;
    will-change: transform;
}
.v2-body .v2-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.v2-body .v2-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.v2-body .v2-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.v2-body .v2-lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.v2-body .v2-lightbox-prev { left: 22px; }
.v2-body .v2-lightbox-next { right: 22px; }
.v2-body .v2-lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 13px;
    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    border-radius: 999px;
}
@media (max-width: 700px) {
    .v2-body .v2-lightbox-nav { width: 42px; height: 42px; font-size: 28px; }
    .v2-body .v2-lightbox-prev { left: 8px; }
    .v2-body .v2-lightbox-next { right: 8px; }
    .v2-body .v2-lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 24px; }
}
/* Badge "CURVE / -X%" estilo SHEIN en imagen */
.v2-body .v2-detail-curve {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--v2-yellow);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .04em;
    box-shadow: 0 4px 12px rgba(230,0,35,.3);
}

.v2-body .v2-detail-info { display: flex; flex-direction: column; gap: 12px; }
.v2-body .v2-detail-title {
    font-size: clamp(16px, 1.6vw, 18px);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    color: var(--v2-black);
}
.v2-body .v2-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--v2-text-faint);
}
.v2-body .v2-detail-sku {
    font-size: 12px;
    color: var(--v2-text-faint);
    letter-spacing: .02em;
}

/* Bloque precio */
.v2-body .v2-detail-price-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}
.v2-body .v2-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.v2-body .v2-price-now-big {
    font-size: clamp(28px, 3.6vw, 36px);
    color: var(--v2-yellow);
    line-height: 1;
    font-weight: 800;
}
.v2-body .v2-price-was-big {
    font-size: 14px;
    color: var(--v2-text-faint);
    text-decoration: line-through;
}
.v2-body .v2-chip-discount-big {
    background: #FFE5E9;
    color: var(--v2-yellow);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}
.v2-body .v2-detail-urgent {
    background: #FFF3E0;
    color: #E55D14;
    padding: 6px 12px;
    border-radius: var(--v2-radius);
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
    border: 1px solid #FFD9A8;
}
.v2-body .v2-price-list-tag {
    background: var(--v2-yellow);
    color: #fff;
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Chips de descuento mayorista */
.v2-body .v2-detail-deal-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.v2-body .v2-deal-chip {
    background: var(--v2-black);
    color: #fff;
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

/* Best seller tag */
.v2-body .v2-detail-bestseller {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #FFF8DC 0%, #FFE7C2 100%);
    border: 1px solid #FFD78C;
    color: #8B5A00;
    padding: 8px 12px;
    border-radius: var(--v2-radius);
    font-size: 12px;
    font-weight: 700;
}
.v2-body .v2-bestseller-icon { font-size: 16px; }

.v2-body .v2-detail-hr {
    border: none;
    border-top: 1px solid var(--v2-border);
    margin: 4px 0;
}

/* Cantidad */
.v2-body .v2-detail-qty-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v2-body .v2-detail-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-black);
}
.v2-body .v2-detail-help {
    font-size: 12px;
    color: var(--v2-text-soft);
    text-decoration: underline;
    font-weight: 500;
}
.v2-body .v2-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.v2-body .v2-stock-info {
    font-size: 12px;
    color: var(--v2-text-soft);
}

/* CTA detail */
.v2-body .v2-detail-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.v2-body .v2-detail-wishlist {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--v2-border);
    color: var(--v2-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .12s ease, color .12s ease;
}
.v2-body .v2-detail-wishlist:hover {
    border-color: var(--v2-yellow);
    color: var(--v2-yellow);
}

.v2-body .v2-detail-points {
    margin: 0;
    font-size: 12px;
    color: var(--v2-text-soft);
}
.v2-body .v2-detail-points strong { color: var(--v2-yellow); }

/* Box de envío */
.v2-body .v2-shipping-box {
    background: var(--v2-bg-soft);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v2-body .v2-shipping-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--v2-text);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-body .v2-shipping-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
}
.v2-body .v2-shipping-icon {
    font-size: 18px;
    flex-shrink: 0;
}
.v2-body .v2-shipping-row > div { flex: 1; }
.v2-body .v2-shipping-sub {
    color: var(--v2-text-soft);
    font-size: 12px;
    margin-top: 2px;
}

/* Acordeones */
.v2-body .v2-detail-acc {
    border-top: 1px solid var(--v2-border);
    padding: 4px 0;
}
.v2-body .v2-detail-acc:first-of-type { border-top: none; }
.v2-body .v2-detail-acc summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--v2-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.v2-body .v2-detail-acc summary::-webkit-details-marker { display: none; }
.v2-body .v2-detail-acc summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
.v2-body .v2-detail-acc[open] summary::after { content: "−"; }
.v2-body .v2-detail-acc-body {
    padding: 4px 0 16px;
    font-size: 13px;
    color: var(--v2-text);
    line-height: 1.6;
}
.v2-body .v2-detail-acc-body p { margin: 0; }

/* Store card */
.v2-body .v2-store-card {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
}
.v2-body .v2-store-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--v2-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}
.v2-body .v2-store-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-body .v2-store-info strong { font-size: 13px; }
.v2-body .v2-store-meta {
    font-size: 11px;
    color: var(--v2-text-soft);
}
.v2-body .v2-btn-outline-sm {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--v2-black);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--v2-black);
}
.v2-body .v2-btn-outline-sm:hover {
    background: var(--v2-black);
    color: #fff;
}

/* Tabla full de packs */
.v2-body .v2-detail-packs {
    background: var(--v2-bg-soft);
    border-radius: var(--v2-radius-lg);
    padding: 16px;
}
.v2-body .v2-detail-packs-title {
    font-size: 14px;
    color: var(--v2-black);
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.v2-body .v2-pack-full {
    width: 100%;
    border-collapse: collapse;
}
.v2-body .v2-pack-full th,
.v2-body .v2-pack-full td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--v2-border);
    font-size: 13px;
}
.v2-body .v2-pack-full th {
    color: var(--v2-text-soft);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .08em;
    border-bottom: 2px solid var(--v2-black);
}
.v2-body .v2-pack-full tr:last-child td { border-bottom: none; }
.v2-body .v2-pack-row-current { background: rgba(0,0,0,.03); font-weight: 600; }
.v2-body .v2-pack-full tbody td:nth-child(3) { color: var(--v2-yellow); font-weight: 800; }

/* Selector de color (swatches circulares) */
.v2-body .v2-color-block {
    margin: 0 0 16px;
}
.v2-body .v2-color-label {
    font-size: 13px;
    color: var(--v2-text);
    margin-bottom: 8px;
    font-weight: 500;
}
.v2-body .v2-color-label strong {
    font-weight: 700;
    color: var(--v2-black);
    margin-left: 4px;
}
.v2-body .v2-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.v2-body .v2-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--v2-border);
    background: #fff;
    padding: 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .12s ease, transform .12s ease;
    font-family: inherit;
}
.v2-body .v2-color-swatch-dot {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* sutil shadow inset para que blanco/transparente se vean */
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.v2-body .v2-color-swatch.is-light .v2-color-swatch-dot {
    box-shadow: inset 0 0 0 1px var(--v2-border);
}
.v2-body .v2-color-swatch:hover {
    border-color: var(--v2-text-soft);
    transform: scale(1.05);
}
.v2-body .v2-color-swatch.is-active {
    border-color: var(--v2-black);
    border-width: 2px;
    transform: scale(1.05);
}

/* Pack picker — cards estilo "PRECIOS POR CANTIDAD" (paleta gris/negro/rojo SHEIN) */
.v2-body .v2-pack-picker {
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    padding: 14px;
    margin: 0 0 12px;
}
.v2-body .v2-pack-picker-head {
    margin-bottom: 12px;
}
.v2-body .v2-pack-picker-head strong {
    font-size: 13px;
    color: var(--v2-black);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.v2-body .v2-pack-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin: 0 0 10px;
}

/* Card: separada, con border + sombra sutil. Look limpio sin saturar de rojo. */
.v2-body .v2-pack-card {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--v2-border);
    border-radius: var(--v2-radius);
    padding: 16px 10px 14px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    min-height: 110px;
}
.v2-body .v2-pack-card:hover {
    border-color: var(--v2-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
/* Card SELECCIONADA: solo border negro grueso + chip "ELEGIDO" abajo, no fondo negro */
.v2-body .v2-pack-card.is-current {
    border-color: var(--v2-black);
    border-width: 2.5px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.v2-body .v2-pack-card.is-current::after {
    content: "✓ ELEGIDO";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v2-black);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .08em;
    white-space: nowrap;
    z-index: 4;
}

/* Cantidad arriba (ej: "3+" o "1") */
.v2-body .v2-pack-card-qty {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    color: var(--v2-black);
}

/* Label (UNIDAD / UNIDADES) */
.v2-body .v2-pack-card-label {
    font-size: 9px;
    color: var(--v2-text-soft);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
}

/* Precio + "c/u" */
.v2-body .v2-pack-card-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--v2-black);
    margin-top: 6px;
    line-height: 1.1;
}
.v2-body .v2-pack-card-price em {
    font-style: normal;
    font-size: 10px;
    font-weight: 600;
    color: var(--v2-text-soft);
    margin-left: 2px;
}
/* Precio original tachado (cuando hay oferta aplicada al pack) */
.v2-body .v2-pack-card-was {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--v2-text-soft);
    text-decoration: line-through;
    margin-bottom: 1px;
}

/* Badge -X% en esquina superior derecha — pequeño, sutil */
.v2-body .v2-pack-card-saving {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--v2-black);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 999px;
    line-height: 1.3;
    z-index: 3;
}

/* Cinta "MEJOR PRECIO" — gradiente bordó animado tipo neón */
.v2-body .v2-pack-card-best {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(90deg, #6b0014, #E60023, #c00018, #E60023, #6b0014);
    background-size: 300% 100%;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    padding: 5px 6px;
    text-align: center;
    border-radius: var(--v2-radius) var(--v2-radius) 0 0;
    z-index: 2;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(255,255,255,.35);
    animation: v2BestRibbon 3.5s linear infinite;
}
@keyframes v2BestRibbon {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
.v2-body .v2-pack-card.is-best { padding-top: 32px; }

/* Card MEJOR PRECIO — borde bordó animado + glow sutil tipo neón */
.v2-body .v2-pack-card.is-best {
    border: 1.5px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #6b0014, #E60023, #ff3855, #c00018, #6b0014) border-box;
    background-size: 100% 100%, 300% 300%;
    animation:
        v2BestBorder 3.5s ease-in-out infinite,
        v2BestGlow 2.4s ease-in-out infinite;
    box-shadow: 0 0 0 1px rgba(230,0,35,.18), 0 0 18px rgba(230,0,35,.22);
}
@keyframes v2BestBorder {
    0%   { background-position: 0% 0%, 0%   50%; }
    50%  { background-position: 0% 0%, 100% 50%; }
    100% { background-position: 0% 0%, 0%   50%; }
}
@keyframes v2BestGlow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(230,0,35,.18), 0 0 14px rgba(230,0,35,.18); }
    50%      { box-shadow: 0 0 0 1px rgba(230,0,35,.45), 0 0 26px rgba(230,0,35,.42); }
}
.v2-body .v2-pack-card.is-best:hover { transform: translateY(-2px); }

/* -X% badge en el best card — grande, rojo, con halo */
.v2-body .v2-pack-card.is-best .v2-pack-card-saving {
    background: #E60023;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 3px 8px;
    box-shadow: 0 0 0 2px rgba(230,0,35,.22), 0 0 10px rgba(230,0,35,.35);
}

/* Si la mejor está también seleccionada, el chip ELEGIDO conserva su estilo */
.v2-body .v2-pack-card.is-best.is-current { border-color: transparent; }

.v2-body .v2-pack-help-line {
    font-size: 11px;
    color: var(--v2-text-soft);
    margin: 8px 0 0;
    line-height: 1.4;
}

/* Mensaje incentivador — gradiente bordó "vibrando" sutil tipo neón */
.v2-body .v2-pack-incentive {
    background: linear-gradient(135deg, #1a0006, #5a0014, #2a0008, #6b0014, #1a0006);
    background-size: 300% 300%;
    color: #fff;
    border-radius: var(--v2-radius);
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    margin: 4px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
    border-left: 3px solid #E60023;
    animation: v2IncentivePulse 4.5s ease-in-out infinite;
    box-shadow: 0 0 14px rgba(230,0,35,.18);
}
@keyframes v2IncentivePulse {
    0%, 100% { background-position: 0% 50%;   box-shadow: 0 0 12px rgba(230,0,35,.14); }
    50%      { background-position: 100% 50%; box-shadow: 0 0 20px rgba(230,0,35,.32); }
}
.v2-body .v2-pack-incentive::before {
    content: "→";
    font-size: 16px;
    font-weight: 800;
    color: #ff3855;
    text-shadow: 0 0 8px rgba(230,0,35,.6);
}
/* Si ya está en el mejor precio, el mensaje cambia a verde tranquilo (sin animar) */
.v2-body .v2-pack-incentive.is-best {
    background: #1F9E47;
    border-left-color: rgba(255,255,255,.4);
    animation: none;
    box-shadow: none;
}
.v2-body .v2-pack-incentive.is-best::before { content: "✓"; color: #fff; text-shadow: none; }

/* Pulso animado en el botón cuando seleccionás un pack */
.v2-body .v2-btn-pulse {
    animation: v2BtnPulse .7s ease;
}
@keyframes v2BtnPulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(230,0,35,.5); }
    50%  { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(230,0,35,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(230,0,35,0); }
}
.v2-body .v2-pack-help {
    font-size: 12px;
    color: var(--v2-text-soft);
    margin: 8px 0 0;
}

/* Stepper */
.v2-body .v2-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: 999px;
    overflow: hidden;
}
.v2-body .v2-qty-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    font-weight: 700;
    font-size: 18px;
    color: var(--v2-black);
    transition: background .12s ease;
}
.v2-body .v2-qty-btn:hover { background: var(--v2-bg-soft); }
.v2-body .v2-qty-input {
    width: 56px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    appearance: textfield;
    -moz-appearance: textfield;
    background: transparent;
}
.v2-body .v2-qty-input::-webkit-inner-spin-button,
.v2-body .v2-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.v2-body .v2-detail-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 8px;
}
.v2-body .v2-detail-soldout {
    background: var(--v2-bg-soft);
    border: 1px solid var(--v2-border);
    padding: 14px 24px;
    font-weight: 700;
    letter-spacing: .12em;
    border-radius: 999px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    color: var(--v2-text-soft);
}

/* Descripción + dimensiones (siempre visibles, no acordeón) */
.v2-body .v2-detail-desc-section {
    border-top: 1px solid var(--v2-border);
    padding: 16px 0;
}
.v2-body .v2-detail-desc-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--v2-black);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.v2-body .v2-detail-desc-body {
    font-size: 14px;
    color: var(--v2-text);
    line-height: 1.6;
}
.v2-body .v2-detail-desc-body p { margin: 0 0 .8em; }
.v2-body .v2-detail-desc-body p:last-child { margin-bottom: 0; }
.v2-body .v2-detail-desc-body strong, .v2-body .v2-detail-desc-body b { color: var(--v2-black); font-weight: 700; }
.v2-body .v2-detail-desc-body em, .v2-body .v2-detail-desc-body i { font-style: italic; }
.v2-body .v2-detail-desc-body ul, .v2-body .v2-detail-desc-body ol {
    padding-left: 20px;
    margin: 0 0 .8em;
}
.v2-body .v2-detail-desc-body ul li, .v2-body .v2-detail-desc-body ol li { margin: .25em 0; }
.v2-body .v2-detail-desc-body br { line-height: 1.6; }

.v2-body .v2-detail-dims {
    width: 100%;
    border-collapse: collapse;
}
.v2-body .v2-detail-dims th,
.v2-body .v2-detail-dims td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid var(--v2-border);
    font-size: 14px;
}
.v2-body .v2-detail-dims tr:last-child th,
.v2-body .v2-detail-dims tr:last-child td { border-bottom: none; }
.v2-body .v2-detail-dims th {
    color: var(--v2-text-soft);
    font-weight: 600;
    width: 40%;
}
.v2-body .v2-detail-dims td {
    color: var(--v2-black);
    font-weight: 700;
}
.v2-body .v2-detail-dims-note {
    font-size: 12px;
    color: var(--v2-text-soft);
    font-style: italic;
    margin: 8px 0 0;
}

.v2-body .v2-cat-banner {
    background: var(--v2-bg-soft);
    padding: 28px 0 20px;
    border-bottom: 1px solid var(--v2-border);
}
.v2-body .v2-cat-desc {
    color: var(--v2-text-soft);
    margin: 8px 0;
    max-width: 720px;
    font-size: 14px;
}

/* ============== Cart ============== */
.v2-body .v2-cart-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}
.v2-body .v2-cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.v2-body .v2-cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto auto;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--v2-border);
    padding: 16px 0;
}
.v2-body .v2-cart-item:first-child { padding-top: 0; }
.v2-body .v2-cart-item-img {
    width: 96px;
    height: 128px;
    overflow: hidden;
    border-radius: var(--v2-radius);
    background: var(--v2-bg-image);
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-body .v2-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-cart-item-title {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}
.v2-body .v2-cart-item-title a { color: var(--v2-black); }
.v2-body .v2-cart-item-title a:hover { color: var(--v2-yellow); }
.v2-body .v2-cart-item-variant {
    font-size: 12px;
    color: var(--v2-text-soft);
    margin-top: 2px;
}
.v2-body .v2-cart-item-price {
    margin-top: 6px;
    font-weight: 800;
    color: var(--v2-yellow);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.v2-body .v2-cart-item-price-was {
    color: var(--v2-text-soft);
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
}
.v2-body .v2-cart-item-price-now {
    color: var(--v2-yellow);
    font-weight: 800;
}
.v2-body .v2-cart-item-oferta-tag {
    background: var(--v2-yellow);
    color: #fff;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 2px;
    letter-spacing: .04em;
    font-weight: 800;
}
.v2-body .v2-cart-item-pack-tag {
    background: var(--v2-black);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: .04em;
    font-weight: 800;
}
.v2-body .v2-cart-item-hint {
    background: #FFF0F2;
    color: var(--v2-yellow);
    padding: 4px 8px;
    margin-top: 6px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}
.v2-body .v2-cart-item-qty {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.v2-body .v2-cart-remove {
    background: transparent;
    color: var(--v2-text-faint);
    font-size: 11px;
    text-decoration: underline;
}
.v2-body .v2-cart-remove:hover { color: var(--v2-yellow); }
.v2-body .v2-cart-item-subtotal {
    font-size: 18px;
    color: var(--v2-black);
    min-width: 100px;
    text-align: right;
    font-weight: 800;
}

.v2-body .v2-cart-summary {
    background: var(--v2-bg-soft);
    color: var(--v2-text);
    padding: 20px;
    border-radius: var(--v2-radius-lg);
    position: sticky;
    top: 96px;
    border: 1px solid var(--v2-border);
}
.v2-body .v2-cart-summary-title {
    color: var(--v2-black);
    font-size: 14px;
    margin: 0 0 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
}
.v2-body .v2-cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--v2-border);
    font-size: 13px;
    color: var(--v2-text);
}
.v2-body .v2-cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    font-size: 16px;
    color: var(--v2-black);
    font-weight: 800;
    margin: 8px 0 4px;
    border-top: 2px solid var(--v2-black);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.v2-body .v2-cart-summary-total span:last-child {
    color: var(--v2-yellow);
    font-size: 22px;
}
.v2-body .v2-cart-checkout {
    width: 100%;
    margin-top: 12px;
}

/* Wrapper del CTA cuando hay envío gratis: chip verde encima del botón */
.v2-body .v2-cart-checkout-wrap {
    position: relative;
    margin-top: 24px;  /* extra space para el chip que sale por arriba */
}
.v2-body .v2-cart-checkout-wrap .v2-cart-checkout {
    margin-top: 0;
}
.v2-body .v2-cart-checkout-freeship {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1F9E47;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: .04em;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    white-space: nowrap;
    z-index: 1;
}

/* Fila "Tarifa de envío: GRATIS" con valor en verde */
.v2-body .v2-cart-summary-row-free .v2-free-text {
    color: #1F9E47;
    font-weight: 800;
    letter-spacing: .04em;
}
.v2-body .v2-cart-continue {
    display: block;
    text-align: center;
    color: var(--v2-text-soft);
    margin-top: 12px;
    font-size: 13px;
    text-decoration: underline;
}
.v2-body .v2-cart-continue:hover { color: var(--v2-black); }
.v2-body .v2-cart-note {
    margin-top: 16px;
    font-size: 12px;
    background: #fff;
    border: 1px solid var(--v2-border);
    padding: 10px 12px;
    border-radius: var(--v2-radius);
    color: var(--v2-text-soft);
    line-height: 1.4;
}
.v2-body .v2-cart-note strong { color: var(--v2-yellow); }

/* ============== Cart drawer (estilo SHEIN, slide derecha) ============== */
.v2-body .v2-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility 0s .2s;
    z-index: 998;
}
.v2-body .v2-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .2s ease, visibility 0s 0s;
}

.v2-body .v2-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 100vw;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .25s cubic-bezier(.2,.7,.2,1);
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.v2-body .v2-cart-drawer.is-open {
    transform: translateX(0);
}

.v2-body .v2-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--v2-border);
    flex-shrink: 0;
}
.v2-body .v2-drawer-title {
    margin: 0;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--v2-black);
}
.v2-body .v2-drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--v2-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .12s ease;
}
.v2-body .v2-drawer-close:hover { background: var(--v2-bg-soft); }

.v2-body .v2-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.v2-body .v2-drawer-empty {
    text-align: center;
    padding: 48px 24px;
}
.v2-body .v2-drawer-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.v2-body .v2-drawer-empty h4 {
    font-size: 16px;
    margin: 0 0 8px;
}
.v2-body .v2-drawer-empty p {
    color: var(--v2-text-soft);
    font-size: 13px;
    margin: 0 0 20px;
}

.v2-body .v2-drawer-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.v2-body .v2-drawer-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--v2-border);
    align-items: flex-start;
}
.v2-body .v2-drawer-item-img {
    width: 80px;
    height: 100px;
    overflow: hidden;
    border-radius: var(--v2-radius);
    background: var(--v2-bg-image);
    position: relative;
    display: block;
}
.v2-body .v2-drawer-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-drawer-item-lowstock {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,107,26,.92);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    padding: 3px 4px;
    letter-spacing: .04em;
}

.v2-body .v2-drawer-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.v2-body .v2-drawer-item-title {
    font-size: 13px;
    color: var(--v2-black);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}
.v2-body .v2-drawer-item-variant {
    font-size: 11px;
    color: var(--v2-text-soft);
    background: var(--v2-bg-soft);
    padding: 2px 6px;
    border-radius: 2px;
    align-self: flex-start;
}
.v2-body .v2-drawer-item-hint {
    background: #FFE5E9;
    color: var(--v2-yellow);
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    align-self: flex-start;
}
.v2-body .v2-drawer-item-pricerow {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    margin-top: auto;
}
.v2-body .v2-drawer-item-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v2-body .v2-drawer-item-now {
    font-size: 14px;
    font-weight: 800;
    color: var(--v2-yellow);
    line-height: 1;
}
.v2-body .v2-drawer-item-was {
    font-size: 11px;
    color: var(--v2-text-faint);
    text-decoration: line-through;
}
.v2-body .v2-drawer-item-disc {
    font-size: 10px;
    color: var(--v2-yellow);
    font-weight: 700;
}

.v2-body .v2-drawer-item-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--v2-border);
    border-radius: 999px;
    height: 26px;
    overflow: hidden;
}
.v2-body .v2-drawer-item-qty .v2-qty-btn {
    width: 26px;
    height: 26px;
    background: transparent;
    color: var(--v2-black);
    font-size: 14px;
    font-weight: 700;
}
.v2-body .v2-drawer-item-qty .v2-qty-btn:hover { background: var(--v2-bg-soft); }
.v2-body .v2-drawer-item-qty .v2-cart-qty-input {
    width: 32px;
    height: 26px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 12px;
    background: transparent;
    appearance: textfield;
    -moz-appearance: textfield;
}
.v2-body .v2-drawer-item-qty .v2-cart-qty-input::-webkit-inner-spin-button,
.v2-body .v2-drawer-item-qty .v2-cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.v2-body .v2-drawer-item-remove {
    color: var(--v2-text-faint);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .12s ease, color .12s ease;
}
.v2-body .v2-drawer-item-remove:hover {
    background: var(--v2-bg-soft);
    color: var(--v2-yellow);
}

/* Sección "Sumá más" — productos sugeridos en el drawer (estilo SHEIN) */
.v2-body .v2-drawer-suggest {
    background: var(--v2-bg-soft);
    border-bottom: 1px solid var(--v2-border);
    padding: 12px 16px 14px;
}
.v2-body .v2-drawer-suggest-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}
.v2-body .v2-drawer-suggest-head strong {
    font-size: 13px;
    color: var(--v2-yellow);
    font-weight: 800;
    letter-spacing: .02em;
}
.v2-body .v2-drawer-suggest-head span {
    font-size: 11px;
    color: var(--v2-text-soft);
}
.v2-body .v2-drawer-suggest-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.v2-body .v2-drawer-suggest-track::-webkit-scrollbar { height: 4px; }
.v2-body .v2-drawer-suggest-track::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.v2-body .v2-drawer-suggest-item {
    flex: 0 0 80px;
    width: 80px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.v2-body .v2-drawer-suggest-img {
    position: relative;
    width: 80px;
    height: 100px;
    overflow: hidden;
    border-radius: var(--v2-radius);
    background: var(--v2-bg-image);
    display: block;
}
.v2-body .v2-drawer-suggest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-body .v2-drawer-suggest-disc {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--v2-yellow);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 2px;
    line-height: 1;
}
.v2-body .v2-drawer-suggest-price {
    font-size: 12px;
    font-weight: 800;
    color: var(--v2-black);
    text-align: center;
    line-height: 1;
}
.v2-body .v2-drawer-suggest-add {
    width: 100%;
    height: 24px;
    background: var(--v2-black);
    color: #fff;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .12s ease;
}
.v2-body .v2-drawer-suggest-add:hover { background: var(--v2-yellow); color: #fff; }
.v2-body .v2-drawer-suggest-add svg { display: block; }

.v2-body .v2-drawer-foot {
    border-top: 1px solid var(--v2-border);
    padding: 16px 20px 20px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v2-body .v2-drawer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    color: var(--v2-text);
    margin-bottom: 4px;
}
.v2-body .v2-drawer-total-row strong {
    font-size: 18px;
    color: var(--v2-yellow);
    font-weight: 900;
}
.v2-body .v2-drawer-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
}

@media (max-width: 540px) {
    .v2-body .v2-cart-drawer { width: 100vw; }
}

/* ============== Toast ============== */
.v2-body .v2-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--v2-black);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--v2-radius);
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--v2-shadow-md);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform .25s ease;
}
.v2-body .v2-toast.is-show { transform: translateY(0); }
.v2-body .v2-toast-error { background: var(--v2-yellow); }

/* ============== Responsive ============== */
@media (max-width: 900px) {
    .v2-body .v2-cart-grid { grid-template-columns: 1fr; }
    .v2-body .v2-cart-summary { position: static; }
    .v2-body .v2-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .v2-body .v2-detail-media {
        grid-template-columns: 1fr;
        position: static;
    }
    .v2-body .v2-detail-thumbs-vert {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        order: 2;
    }
    .v2-body .v2-detail-thumb-v {
        width: 60px;
        flex-shrink: 0;
    }
    .v2-body .v2-detail-main-img { order: 1; }
}
@media (max-width: 540px) {
    .v2-body .v2-cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "img info"
            "qty subtotal";
    }
    .v2-body .v2-cart-item-img { grid-area: img; width: 80px; height: 106px; }
    .v2-body .v2-cart-item-info { grid-area: info; }
    .v2-body .v2-cart-item-qty { grid-area: qty; align-items: flex-start; }
    .v2-body .v2-cart-item-subtotal { grid-area: subtotal; text-align: right; align-self: center; }
}
