/** Shopify CDN: Minification failed

Line 1037:0 Unexpected "}"

**/
/* =========================================
   1. ESTILOS BASE Y RESET
   ========================================= */
img {
    max-width: 100%;
    height: auto;
}

.sephi-product-container {
    /* MÓVIL: 0 arriba, 15px lados, 16px abajo */
    padding: 0 15px 16px;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0 auto;
}

.sephi-media-wrapper {
    width: 100%;
    margin-bottom: 0;
}

/* =========================================
   2. GRID LAYOUT (ESCRITORIO UI/UX OPTIMIZADO)
   ========================================= */
.sephi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

/* ESCRITORIO (>1200px) */
@media(min-width: 1200px) {
    .sephi-product-container {
        padding-top: 100px !important;
        padding-left: 352px !important;
        padding-right: 352px !important;
        padding-bottom: 32px !important;
    }

    .sephi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        /* Espacio lateral amplio */
        align-items: start;
    }

    .sephi-info-wrapper {
        position: sticky;
        top: 40px;
        padding-top: 20px;
        /* Alineación vertical izquierda */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* TABLET (768px - 1199px) */
@media(min-width: 768px) and (max-width: 1199px) {
    .sephi-product-container {
        padding: 0 40px 20px;
    }

    .sephi-grid {
        grid-template-columns: 55% 40%;
        gap: 30px;
    }
}

/* =========================================
   3. ESTILOS DE TEXTO E INFO
   ========================================= */

/* A. MARCA (14px Bold) */
.sephi-vendor {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 5px;
    color: #000;
    display: block;
}

.sephi-vendor a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.sephi-vendor a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* B. TÍTULO (16px Normal) */
.sephi-title {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0 0 10px;
    line-height: 1.4;
    color: #000;
}

/* C. SKU */
.sephi-sku-container {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* D. STOCK MESSAGE (CORREGIDO: Sin huecos vacíos) */
.sephi-stock-message {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    /* Por defecto 0 margen */
}

.sephi-stock-message:not(:empty) {
    /* Solo si tiene texto aplicamos margen */
    margin-bottom: 15px;
    margin-top: 5px;
}

.stock-urgent {
    color: #ce1141;
    text-transform: uppercase;
    font-weight: 700;
    animation: pulse-red 2s infinite;
    display: block;
}

.stock-low {
    color: #2e7d32;
    font-weight: 500;
    display: block;
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/* E. REVIEWS */
.sephi-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* F. PRECIO (16px Bold) */
.sephi-price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000;
    margin-bottom: 0;
}

.price-item.compare {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-size: 0.9em;
    font-weight: 400;
}

/* G. DESCRIPCIÓN (Separación visual elegante) */
.sephi-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    padding-bottom: 25px;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6;
    color: #333;
}

.rte p {
    margin-bottom: 10px;
}

/* =========================================
   4. GALERÍA (1000px CONTAIN)
   ========================================= */
.sephi-gallery-wrapper {
    display: flex;
    gap: 20px;
    position: relative;
}

.sephi-main-media-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    background: #ffffff;
    border: 1px solid #f9f9f9;
}

.sephi-main-media-item {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    /* Configuración 1:1 exacta y centrada */
    box-sizing: border-box !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 1000px;
    /* Límite real */
    margin: 0 auto;
    padding: 0 !important;
}

.sephi-main-media-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* Nunca cortar la imagen */
    display: block;
}

/* DOTS (Estilo Moderno / Max 5) */
.sephi-gallery-dots {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 8px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    height: 12px;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    background-color: #bbb;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-dot.active {
    background-color: #000;
    width: 8px;
    height: 8px;
}

/* FLECHAS */
.sephi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    color: #999;
    opacity: 0;
    transition: all 0.3s ease;
}

.sephi-main-media-wrapper:hover .sephi-arrow {
    opacity: 1;
}

.prev-arrow {
    left: 5px;
}

.next-arrow {
    right: 5px;
}

.sephi-arrow svg {
    width: 40px;
    height: 40px;
    stroke-width: 1px;
}

.sephi-arrow:hover {
    color: #000;
}

/* Thumbnails (PC) */
@media (min-width: 768px) {
    .sephi-gallery-wrapper {
        position: sticky;
        top: 40px;
    }

    .sephi-thumbnails-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 70px;
        max-height: 600px;
        overflow-y: auto;
    }

    .sephi-thumbnail-item.is-active {
        border-bottom: 2px solid #000;
        opacity: 1;
    }

    .sephi-thumbnail-item {
        opacity: 0.5;
        cursor: pointer;
    }

    .hide-scrollbar::-webkit-scrollbar,
    .sephi-thumbnails-container::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================
   5. VARIANTES Y BOTÓN (CONTENEDOR)
   ========================================= */
.sephi-action-box {
    margin-top: 10px;
    width: 100%;
}

/* =========================================
   6. VARIANTES (BOTONES + SELECTOR + AGOTADOS)
   ========================================= */
.sephi-product-form {
    margin-top: 10px;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.option-values {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.swatch-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.swatch-visual {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: block;
    background-size: cover;
    background-position: center;
}

.swatch-item.selected .swatch-visual {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
    border-color: transparent;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* --- SELECTOR (> 4 Items) --- */
.sephi-select-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
    max-width: 450px;
    /* UI: No demasiado ancho en PC */
}

.sephi-single-option-selector {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    cursor: pointer;
    color: #000;
}

.sephi-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}

.select-chevron {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* --- AGOTADOS (#757575) --- */
.sold-out-option {
    color: #757575 !important;
}

.swatch-item.is-sold-out .swatch-label {
    color: #757575 !important;
    text-decoration: line-through;
}

.swatch-item.is-sold-out .swatch-visual {
    opacity: 0.5;
    position: relative;
}

.swatch-item.is-sold-out .swatch-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #757575;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================================
   7. BOTÓN "PILL" 
   ========================================= */
.sephi-atc-pill {
    display: flex;
    align-items: center;
    background-color: #ce1141;
    border-radius: 50px;
    height: 54px;
    width: 100%;
    max-width: 450px;
    /* UI: No demasiado ancho en PC */
    margin-top: 25px;
    transition: transform 0.2s ease, background-color 0.2s;
    box-shadow: 0 4px 10px rgba(206, 17, 65, 0.2);
    overflow: hidden;
}

.sephi-atc-pill:hover {
    transform: scale(1.01);
    background-color: #b00e36;
}

.sephi-atc-pill.disabled {
    background-color: #ccc;
    pointer-events: none;
    box-shadow: none;
}

.pill-qty-wrapper {
    position: relative;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pill-qty-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    height: 100%;
    padding-left: 15px;
    cursor: pointer;
    z-index: 2;
}

.pill-qty-select:focus {
    outline: none;
}

.pill-chevron {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    stroke: #fff;
    pointer-events: none;
    width: 10px;
}

.pill-separator {
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.3);
}

.pill-add-btn {
    flex: 1;
    background: transparent;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    cursor: pointer;
    color: #fff;
    text-align: left;
}

.btn-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    letter-spacing: -0.5px;
}

.btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

@media (min-width: 768px) {
    .btn-title {
        font-size: 1.4rem;
    }
}


/* =========================================
   8. MÓVIL: DISTRIBUCIÓN FINAL
   ========================================= */
@media (max-width: 767px) {
    .sephi-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .sephi-info-wrapper {
        display: contents;
    }

    /* Orden Visual */
    .sephi-vendor {
        order: 1;
        margin-bottom: 5px !important;
    }

    .sephi-title {
        order: 2;
        margin-bottom: 5px !important;
    }

    .sephi-sku-container {
        order: 3;
        margin-bottom: 5px !important;
    }

    .sephi-stock-message {
        order: 4;
        margin-bottom: 5px !important;
    }

    .sephi-reviews {
        order: 5;
        margin-bottom: 8px !important;
    }

    .sephi-price {
        order: 6;
        margin-bottom: 15px !important;
    }

    /* Galería Borde a Borde */
    .sephi-media-wrapper {
        order: 7;
        margin-bottom: 20px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
    }

    .sephi-thumbnails-container {
        display: none;
    }

    .sephi-main-media-container {
        overflow-x: auto;
        border: none;
    }

    .sephi-main-media-item {
        padding: 0 !important;
        aspect-ratio: 1/1 !important;
        width: 100% !important;
        flex: 0 0 100%;
    }

    .sephi-main-media-item img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .sephi-arrow {
        opacity: 1;
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
        color: #fff;
    }

    /* PADDING EXTRA PARA VARIANTES EN MÓVIL */
    .sephi-option-wrapper {
        padding-bottom: 20px !important;
    }

    /* Botón y Descripción */
    .sephi-action-box,
    .sephi-atc-pill,
    .sephi-actions {
        order: 8;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        width: 100%;
        max-width: none;
    }

    .sephi-description {
        order: 9;
        margin-top: 10px !important;
        padding-top: 15px !important;
        border-top: 1px solid #eee;
        padding-bottom: 0 !important;
    }
}

/* =========================================
   ESTILOS NUEVOS: VER TODAS & MODAL
   ========================================= */

/* 1. Botón "Ver Todas" en Sidebar */
.sephi-thumbnails-side-wrapper {
    display: none;
    /* Oculto en móvil */
}

@media (min-width: 768px) {
    .sephi-thumbnails-side-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: sticky;
        top: 40px;
        width: 70px;
        /* Ancho fijo columna */
        height: fit-content;
    }

    .sephi-thumbnails-container {
        /* Sobrescribe estilos anteriores si es necesario */
        max-height: none;
        overflow: visible;
    }

    .sephi-view-all-btn {
        background: transparent;
        border: none;
        text-decoration: underline;
        font-size: 11px;
        color: #666;
        cursor: pointer;
        padding: 5px 0;
        text-align: left;
        line-height: 1.2;
    }

    .sephi-view-all-btn:hover {
        color: #000;
    }

    /* Cursor lupa en imagen principal */
    .cursor-zoom-in {
        cursor: zoom-in;
    }
}


/* 2. MODAL POP-UP (Rhode Style) */
.sephi-modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* Fondo blanco puro */
    z-index: 9999;
    /* Encima de todo */
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sephi-modal.is-open {
    display: flex;
    opacity: 1;
}

.sephi-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header Modal */
.sephi-modal-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.modal-product-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.sephi-modal-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stage Principal */
.sephi-modal-main-stage {
    flex: 1;
    /* Ocupa el espacio central */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* Estilos del Modal Notify (Sephora Style) */
.sephi-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

.sephi-modal-overlay.is-open {
    display: flex;
}

.sephi-modal-content.notify-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
    /* Altura dinámica pero limitada */
    max-height: auto;
    height: auto;
}

/* Header */
.notify-modal-header {
    height: 60px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.notify-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: none;
}

.notify-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    padding: 10px;
    line-height: 1;
}

/* Body */
.notify-modal-body {
    padding: 24px;
    overflow-y: auto;
}

/* Product Preview */
.notify-product-preview {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.notify-img-wrapper {
    width: 80px;
    flex-shrink: 0;
}

.notify-thumb {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.notify-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.notify-vendor {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.notify-product-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.3;
}

.notify-variant-title {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.notify-sku-label {
    font-family: 'Poppins', sans-serif;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Radio Option Row */
.notify-option-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.notify-radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-radio-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.notify-option-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

.notify-text-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0 0 16px 30px;
    color: #333;
    line-height: 1.4;
}

/* Input & Button */
.notify-form-container {
    margin-left: 30px;
    /* Indentado para alinear con el texto */
}

.notify-input-sephora {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #999;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    outline: none;
    color: #000;
}

.notify-input-sephora:focus {
    border-color: #000;
}

.notify-input-sephora::placeholder {
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.notify-submit-btn-sephora {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    /* text-transform: uppercase; REMOVED to match "Enviar" vs "LISTO" if user changes logic */
    transition: background 0.2s;
}

.notify-submit-btn-sephora:hover {
    background: #333;
}
}

.modal-strip-item.active {
    opacity: 1;
    border-color: #000;
}

/* =========================================
   ESTILOS CARRITO (DRAWER & POPUP)
   ========================================= */

/* --- GENERAL ITEMS (Compartido PC/Móvil) --- */
.cart-popup__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity .3s ease;
}

.cart-popup__item.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.cart-popup__item-image {
    width: 65px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1;
}

.cart-popup__item-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cart-popup__item-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px;
    line-height: 1.2;
}

.cart-popup__item-variant {
    font-size: 12px;
    color: #888;
    margin: 0 0 8px;
}

.cart-popup__item-price {
    font-weight: 700;
    font-size: 14px;
}

/* Controles de cantidad */
.cart-popup__quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: fit-content;
}

.cart-popup__qty-btn {
    background: none;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 14px;
}

.cart-popup__qty-display {
    font-size: 12px;
    padding: 0 5px;
    min-width: 20px;
    text-align: center;
}

.cart-popup__remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
}

/* --- 1. DRAWER ESCRITORIO (Deslizante) --- */
.desktop-cart-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.desktop-cart-drawer.is-open {
    display: block;
}

.cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.cart-drawer__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.desktop-cart-drawer.is-open .cart-drawer__content {
    transform: translateX(0);
}

.cart-drawer__header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer__title {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.cart-drawer__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer__footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
}

.button--primary.full-width {
    width: 100%;
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* --- 2. POPUP MÓVIL (Banner Inferior) --- */
.mobile-cart-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    border-radius: 16px 16px 0 0;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.mobile-cart-popup.is-open {
    transform: translateY(0);
}

.mobile-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-cart-title {
    font-weight: 700;
    color: #067647;
}

/* Verde éxito */
.mobile-cart-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.mobile-cart-body {
    overflow-y: auto;
    margin-bottom: 10px;
}

.mobile-cart-footer {
    margin-top: auto;
}

.mobile-cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.mobile-cart-checkout-btn {
    display: block;
    width: 100%;
    background: #ce1141;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* Ocultar móvil en PC y viceversa */
@media (min-width: 768px) {
    .mobile-cart-popup {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .desktop-cart-drawer {
        display: none !important;
    }
}
/* =========================================
   ESTILOS BADGES (PROMO / SOLO WEB)
   ========================================= */
.sephi-badges-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    pointer-events: none;
}

.sephi-badge {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* =========================================
   ESTILOS PROMO DESCRIPTION BOX
   ========================================= */
.sephi-promo-desc-box {
    background-color: #f6f6f8;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    line-height: 1.4;
}
