/* ========================================
   PRIBOX NAVIDEÑO - ESTILOS COMPLETOS
   ======================================== */

:root {
    /* Colores Navideños */
    --christmas-red: #C41E3A;
    --christmas-green: #0B6623;
    --christmas-gold: #FFD700;
    --christmas-white: #FFFFFF;
    --christmas-dark-red: #8B0000;
    --christmas-dark-green: #064420;
    
    /* Colores neutrales */
    --color-dark: #1a1a1a;
    --color-gray: #6c757d;
    --color-light: #f8f9fa;
    
    /* Tipografía */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    overflow-x: hidden;
}

/* ========================================
   NAVBAR PRIBOX
   ======================================== */
#priboxNav {
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-dark-red) 100%);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

#priboxNav.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.christmas-icon {
    color: var(--christmas-gold);
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-aero {
    color: white;
}

.brand-shops {
    color: var(--christmas-gold);
    font-weight: 500;
}

.brand-pribox {
    color: white;
    font-size: 0.9rem;
    background: var(--christmas-gold);
    color: var(--christmas-red);
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-weight: 700;
    margin-left: 0.3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--christmas-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-cart {
    background: var(--christmas-gold);
    color: var(--color-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.btn-cart:hover {
    background: var(--christmas-white);
    color: var(--christmas-red);
    transform: scale(1.05);
}

.btn-cart .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
}

/* ========================================
   BANNER ENVÍO GRATIS
   ======================================== */
.free-shipping-banner {
    background: var(--christmas-gold);
    color: var(--color-dark);
    padding: 1rem 0;
    font-weight: 700;
    text-align: center;
    margin-top: 80px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.free-shipping-banner i {
    color: var(--christmas-red);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ========================================
   HERO NAVIDEÑO CON NIEVE ANIMADA
   ======================================== */
.hero-navidad {
    /*background-image: url('bonafide-portada.jpg');*/
    background-image: url('bonafide-portada-3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Contenedor de contenido con fondo semitransparente */
.hero-content-box {
    /*background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);*/
    padding: 2.5rem;
    border-radius: 20px;
    /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);*/
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* EFECTO NIEVE MEJORADO */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snow-container::before,
.snow-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px, 80px 20px;
    animation: snowfall 15s linear infinite;
}

.snow-container::after {
    animation-duration: 20s;
    animation-delay: 5s;
}

@keyframes snowfall {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--christmas-red) 0px,
        var(--christmas-red) 20px,
        var(--christmas-green) 20px,
        var(--christmas-green) 40px,
        var(--christmas-gold) 40px,
        var(--christmas-gold) 60px
    );
    animation: lights 2s linear infinite;
    z-index: 2;
}

@keyframes lights {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* BOTÓN VOLVER AL INICIO */
.btn-back-home {
    position: absolute;
    top: 120px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--christmas-red);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 10;
}

.btn-back-home:hover {
    background: var(--christmas-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-back-home i {
    font-size: 1.2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--christmas-gold);
    color: var(--color-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
    position: relative;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-title-navidad {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.hero-subtitle-navidad {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.7;
    z-index: 2;
    position: relative;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.btn-navidad-primary {
    background: var(--christmas-gold);
    color: var(--color-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-navidad-primary:hover {
    background: var(--christmas-white);
    color: var(--christmas-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
}

.btn-navidad-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-navidad-secondary:hover {
    background: white;
    color: var(--christmas-red);
    transform: translateY(-3px);
}

.hero-decoration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.decoration-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.decoration-red {
    background: var(--christmas-red);
    color: white;
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.decoration-green {
    background: var(--christmas-green);
    color: white;
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
}

.decoration-gold {
    background: var(--christmas-gold);
    color: var(--color-dark);
    bottom: 10%;
    left: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator-navidad {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator-navidad a {
    color: var(--christmas-gold);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   SECCIÓN DE BENEFICIOS Y LOGOS
   ======================================== */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, white 0%, var(--color-light) 100%);
}

.section-title-christmas {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--christmas-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* SECCIÓN DE LOGOS PROFESIONAL */
.logos-section {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 15px;
    height: 120px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.logo-container:hover {
    background: white;
    border-color: var(--christmas-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.logo-container:hover .logo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========================================
   PRODUCTOS - DISEÑO UNIFICADO
   ======================================== */
.products-section {
    padding: 5rem 0;
    background: white;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* BADGES DE CATEGORÍAS */
.product-badge-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}
.badge-premium {
    background: #4432cd;
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

.badge-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.badge-select {
    background: #8B0000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}


.badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.badge-platinum {
    background: linear-gradient(135deg, #000000 0%, #faf4f4 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}

.badge-titanium {
    background: linear-gradient(135deg, #E5E4E2 0%, #B0B0B0 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}
.badge-black {
    background:#000000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}

.badge-black-limited {
    background:#000000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}

.badge-diamond {
    background: linear-gradient(135deg, #B9F2FF 0%, #00BFFF 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(185, 242, 255, 0.4);
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFD700 100%);
    color: rgb(12, 12, 12);
    box-shadow: 0 4px 15px rgba(235, 234, 230, 0.5);
}

.badge-vip.bestseller {
    animation: pulse 2s ease-in-out infinite;
}

/* IMAGEN DEL PRODUCTO */
.product-image-display {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image-display img {
    transform: scale(1.1);
}

/* INFO DEL PRODUCTO */
.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--christmas-red);
    margin-bottom: 1rem;
}

/* PRECIOS */
.product-pricing {
    margin-bottom: 1rem;
}

.price-regular-small {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--christmas-green);
    line-height: 1;
}

.price-iva {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
}

.badge-preventa-small {
    display: inline-block;
    background: var(--christmas-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.product-description {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-features-preview {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features-preview li {
    padding: 0.5rem 0;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.product-features-preview i {
    color: var(--christmas-green);
    font-size: 1rem;
    flex-shrink: 0;
}

/* BOTONES DE PRODUCTO */
.btn-view-details {
    background: transparent;
    border: 2px solid var(--christmas-red);
    color: var(--christmas-red);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
}

.btn-view-details:hover {
    background: var(--christmas-red);
    color: white;
}

.btn-add-to-cart-direct {
    background: var(--christmas-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
}

.btn-add-to-cart-direct:hover {
    background: var(--christmas-dark-green);
    transform: scale(1.05);
}

/* ========================================
   CTA FINAL
   ======================================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-dark-green) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-final-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-final-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-final-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold-large {
    background: var(--christmas-gold);
    color: var(--color-dark);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-gold-large:hover {
    background: white;
    color: var(--christmas-red);
    transform: translateY(-3px);
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-pribox {
    background: var(--color-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--christmas-gold);
}

.brand-pribox-footer {
    font-size: 0.9rem;
    background: var(--christmas-gold);
    color: var(--christmas-red);
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--christmas-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--christmas-gold);
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--christmas-gold);
    font-size: 1.2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--christmas-gold);
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links-footer a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--christmas-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-inline a:hover {
    color: var(--christmas-gold);
}

/* ========================================
   WHATSAPP FLOTANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: floatWhatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   MODAL CARRITO
   ======================================== */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-dark-red) 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 700;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--christmas-red);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--christmas-green);
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn-quantity {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--christmas-red);
    background: white;
    color: var(--christmas-red);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quantity:hover {
    background: var(--christmas-red);
    color: white;
}

.quantity-display {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.btn-remove-item {
    background: var(--christmas-red);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-left: auto;
}

.btn-remove-item:hover {
    background: var(--christmas-dark-red);
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--color-gray);
}

.empty-cart i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ========================================
   UTILIDADES
   ======================================== */
.text-christmas-red {
    color: var(--christmas-red) !important;
}

.text-christmas-green {
    color: var(--christmas-green) !important;
}

.text-christmas-gold {
    color: var(--christmas-gold) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-title-navidad {
        font-size: 2.8rem;
    }
    
    .hero-subtitle-navidad {
        font-size: 1.2rem;
    }
    
    .hero-content-box {
        padding: 2rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title-christmas {
        font-size: 2.2rem;
    }
    
    /* Ajuste del banner de envío gratis para tablets */
    .free-shipping-banner {
        font-size: 0.95rem;
        padding: 0.9rem 0;
    }
    
    .free-shipping-banner i {
        font-size: 1.1rem;
    }
    
    .btn-back-home {
        top: 100px;
        right: 20px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-back-home span {
        display: none;
    }
    
    .btn-back-home i {
        margin: 0;
    }
}

@media (max-width: 768px) {
    /* Ajustes Hero Navidad para móviles */
    .hero-title-navidad {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-navidad {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content-box {
        padding: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    /* Ajuste del banner de envío gratis para móviles */
    .free-shipping-banner {
        font-size: 0.85rem;
        padding: 0.8rem 0;
        line-height: 1.4;
    }
    
    .free-shipping-banner i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
    
    .free-shipping-banner strong {
        display: inline;
    }
    
    .section-title-christmas {
        font-size: 1.8rem;
    }
    
    .cta-final-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-final-buttons {
        flex-direction: column;
    }
    
    .btn-navidad-primary,
    .btn-navidad-secondary,
    .btn-gold-large,
    .btn-whatsapp-large {
        width: 100%;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-back-home {
        padding: 0.5rem 1rem;
    }
    
    .decoration-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    /* Ajustes Hero Navidad para móviles pequeños */
    .hero-title-navidad {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-navidad {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-content-box {
        padding: 1.2rem;
    }
    
    /* Ajuste del banner de envío gratis para móviles pequeños */
    .free-shipping-banner {
        font-size: 0.75rem;
        padding: 0.7rem 0;
    }
    
    .free-shipping-banner .row > div {
        font-size: 0.75rem;
    }
    
    .free-shipping-banner i {
        font-size: 0.9rem;
        margin-right: 0.25rem;
    }
    
    .logo-container {
        height: 100px;
        padding: 1rem;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .product-image-display {
        height: 250px;
    }
}