:root {
    --neon: #00ff9c;
    --dark: #0b0b0b;
    --dark-soft: #141414;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0b0b0b;
    color: white;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overscroll-behavior: none;
}

button {
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    background: none;
}

/* Tipografía especial para títulos principales */
h1, h2, .hero-text h1, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}


/* =========================
   MODAL +18
   ========================= */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-box {
    background: rgba(15,15,15,0.92);
    padding: 30px 16px;
    max-width: 460px;
    border-radius: 18px;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.85),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.age-logo {
    width: 300px;
    max-width: 100%;
    margin-bottom: 10px;
    height: 200px;

    -webkit-mask-image: radial-gradient(
        circle,
        black 50%,
        rgba(0,0,0,0.6) 70%,
        transparent 90%
    );
    mask-image: radial-gradient(
        circle,
        black 55%,
        rgba(0,0,0,0.6) 70%,
        transparent 90%
    );

    filter: drop-shadow(0 0 40px rgba(0, 255, 157, 0.244));
}

.age-box h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.85;
}

.age-box p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

.age-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.age-buttons button {
    flex: 1;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#confirm-age {
    background: #00ff9c;
    color: #000;
}

#confirm-age:hover {
    background: #00e68a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,255,156,0.4);
}

.exit {
    background: #333;
    color: #fff;
}

.exit:hover {
    background: #444;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--neon);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Botón "Más" en navbar desktop - Estilo minimalista */
.more-btn {
    background: none;
    border: none;
    padding: 0;
    color: white;
    font-size: 0.9rem;
    opacity: 0.85;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.more-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width 0.3s ease;
}

.more-btn:hover {
    opacity: 1;
    color: var(--neon);
}

.more-btn:hover::after {
    width: 100%;
}

.more-btn i {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: -2px;
}

.menu-btn {
    display: none;
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-btn:hover {
    background: rgba(255,255,255,0.15);
}

.menu-text {
    display: inline-block;
}

.carrito {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.2s ease;
}

.carrito:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,255,156,0.6));
}
.nav-logo {
    width: 150px;
    height: 60px;
    object-fit: contain;
}

.cart-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    transform: scale(1.1);
}

/* Carrito móvil visible solo en móvil */
.cart-mobile {
    display: none;
}

/* Carrito desktop visible solo en desktop */
.cart-desktop {
    display: block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon);
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,255,156,0.5);
}

.cart-badge.hidden {
    display: none;
}

/* =========================
   HERO SPLIT
   ========================= */
.hero-split {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 40px 80px;
    gap: 60px;
    margin: 0 auto;
    max-width: 1600px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff 0%, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    /* Sombra sutil para profundidad */
    filter: drop-shadow(0 4px 20px rgba(0, 255, 156, 0.15));
}

.hero-text p {
    margin-top: 24px;
    color: rgba(181, 255, 223, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--neon) 0%, #00cc7a 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.3),
        0 0 30px rgba(0,255,156,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    letter-spacing: 0.3px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.4),
        0 0 45px rgba(0,255,156,0.6);
    background: linear-gradient(135deg, var(--neon) 0%, #00e68a 100%);
}

.hero-btn:active {
    transform: translateY(-1px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    /* Máscara de fade premium */
    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%
        ),
        linear-gradient(to bottom,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%
        );
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
    mask-image:
        linear-gradient(to right,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%
        ),
        linear-gradient(to bottom,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%
        );
    /* Sombra para profundidad */
    filter: drop-shadow(0 20px 60px rgba(0, 255, 156, 0.15));
    transition: all 0.4s ease;
}

.hero-image img:hover {
    filter: drop-shadow(0 25px 70px rgba(0, 255, 156, 0.25));
    transform: scale(1.02);
}


/* =========================
   ICONOS DE REDES SOCIALES
   ========================= */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--neon);
    background: rgba(0,255,156,0.1);
    box-shadow: 0 5px 25px rgba(0,255,156,0.3);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* =========================
   PRODUCTS
   ========================= */
.products-section {
    padding: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Filtros de categoría */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    /* Sombra sutil base */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Overlay sutil en hover */
.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,156,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-btn:hover::before {
    opacity: 1;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,255,156,0.3);
    color: #00ff9c;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.3),
        0 0 20px rgba(0,255,156,0.15);
}

/* Ícono del filtro */
.filter-btn .filter-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover .filter-icon {
    transform: scale(1.15);
}

/* Estado activo - Premium */
.filter-btn.active {
    background: linear-gradient(135deg, #00ff9c 0%, #00cc7a 100%);
    border-color: #00ff9c;
    color: #000;
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.4),
        0 0 25px rgba(0,255,156,0.4);
    transform: translateY(-2px);
}

.filter-btn.active::before {
    opacity: 0;
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, #00ff9c 0%, #00e68a 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.5),
        0 0 30px rgba(0,255,156,0.5);
}

.filter-btn.active .filter-icon {
    transform: scale(1.1);
}

/* Grid de productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Card de producto */

/* ========================================
   PRODUCT CARDS PREMIUM - APPLE/NIKE STYLE
   ======================================== */

/* ================================
   CARD PREMIUM - ESTRUCTURA BASE
   ================================ */
.product-card-premium {
    /* Fondo sólido con gradiente sutil - IGUAL A REFERENCIA */
    background: linear-gradient(180deg, #111, #0c0c0c);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Borde casi invisible */
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Overlay verde sutil al hover - IGUAL A REFERENCIA */
.product-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,156,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card-premium:hover::before {
    opacity: 1;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 255, 156, 0.35);
}

/* Badge premium */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.product-badge.nuevo,
.product-badge.new {
    background: linear-gradient(135deg, #00ff9c, #00cc7a);
    color: #000;
}

.product-badge.destacado,
.product-badge.bestseller {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #000;
    animation: badgePulse 2s infinite;
}

.product-badge.oferta,
.product-badge.sale {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 20px rgba(255,215,0,0.5); }
}

/* ================================
   CONTENEDOR DE IMAGEN
   ================================ */
.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Fondo casi imperceptible - no crea "caja" visual */
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 20px;  /* Reducido de 30px */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    /* SIN border-radius - la card principal lo maneja */
}

.product-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0,255,156,0.04) 0%,  /* Reducido de 0.08 */
        transparent 60%            /* Reducido de 70% */
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-premium:hover .product-image-container::before {
    opacity: 1;
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding removido - ya existe en el padre */
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Filtros mínimos - imagen natural */
    filter: drop-shadow(0 8px 20px rgba(0, 255, 156, 0.12));
    position: relative;
    z-index: 1;
}

.product-card-premium:hover .product-img {
    transform: scale(1.05);  /* Reducido de 1.08 */
    filter: drop-shadow(0 12px 30px rgba(0, 255, 156, 0.25));
}

/* ================================
   CONTENIDO DE LA CARD
   ================================ */
.product-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.product-card-premium:hover .product-title {
    color: #00ff9c;
}

.product-category {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   FOOTER DE LA CARD
   ================================ */
.product-footer-premium {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price-premium {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00ff9c;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0,255,156,0.3);
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price-original {
    font-size: 0.95rem;
    font-weight: 500;
    color: #888;
    text-decoration: line-through;
    opacity: 0.75;
}

.product-price-old {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    font-weight: 500;
}

/* ================================
   STOCK BADGE
   ================================ */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 8px 0;
    transition: all 0.3s ease;
}

.stock-badge i {
    font-size: 0.85rem;
}

/* En Stock - Verde */
.stock-available {
    background: rgba(0, 255, 156, 0.15);
    color: #00ff9c;
    border: 1px solid rgba(0, 255, 156, 0.3);
}

/* Pocas Unidades - Naranja/Amarillo */
.stock-low {
    background: rgba(255, 165, 0, 0.15);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
    animation: pulse-low 2s ease-in-out infinite;
}

@keyframes pulse-low {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 8px 2px rgba(255, 165, 0, 0.2);
    }
}

/* Agotado - Rojo */
.stock-out {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
    opacity: 0.8;
}

/* ================================
   ACCIONES (BOTONES)
   ================================ */
.product-actions-premium {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: auto; /* ← ancla los botones al fondo, alineando todas las cards del row */
}

.btn-view-premium {
    flex: 1;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-view-premium:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(0,255,156,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,255,156,0.2);
}

.btn-cart-premium {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00ff9c, #00cc7a);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,255,156,0.3);
}

.btn-cart-premium:hover {
    background: linear-gradient(135deg, #00ff9c, #00e68a);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,255,156,0.5);
}

.btn-cart-premium:active {
    transform: translateY(0) scale(1);
}

/* ================================
   OVERLAY AL HOVER (OPCIONAL)
   ================================ */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.9) 100%
    );
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 30px;
    width: 100%;
    max-width: 280px;
}

.overlay-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.overlay-view {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.overlay-view:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.overlay-cart {
    background: linear-gradient(135deg, #00ff9c, #00cc7a);
    color: #000;
    box-shadow: 0 6px 20px rgba(0,255,156,0.4);
}

.overlay-cart:hover {
    background: linear-gradient(135deg, #00ff9c, #00e68a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,255,156,0.6);
}

.overlay-btn i {
    font-size: 1.1rem;
}

/* ================================
   ANIMACIÓN DE ENTRADA
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-premium {
    animation: fadeInUp 0.6s ease backwards;
}

.product-card-premium:nth-child(1) { animation-delay: 0.05s; }
.product-card-premium:nth-child(2) { animation-delay: 0.1s; }
.product-card-premium:nth-child(3) { animation-delay: 0.15s; }
.product-card-premium:nth-child(4) { animation-delay: 0.2s; }
.product-card-premium:nth-child(5) { animation-delay: 0.25s; }
.product-card-premium:nth-child(6) { animation-delay: 0.3s; }
.product-card-premium:nth-child(7) { animation-delay: 0.35s; }
.product-card-premium:nth-child(8) { animation-delay: 0.4s; }

/* ================================
   RESPONSIVE - TABLET
   ================================ */
@media (min-width: 769px) and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 30px;
    }

    .product-content {
        padding: 16px;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-price-premium {
        font-size: 1.25rem;
    }
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 6px; /* Ajustado para mejor balance */
    }
}

    .product-card-premium {
        border-radius: 16px;
        border-width: 1.5px;
    }

    .product-badge {
        top: 8px;
        right: 8px;
        padding: 6px 12px;
        font-size: 0.6rem;
    }

    .product-image-container {
        padding: 16px;
    }

    .product-content {
        padding: 12px;
        gap: 10px;
    }

    .product-title {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .product-category {
        font-size: 0.65rem;
    }

    .product-price-premium {
        font-size: 1.05rem;
    }

    .product-price-old {
        font-size: 0.8rem;
    }

    .product-footer-premium {
        gap: 8px;
    }

    /* Stock badge más compacto en mobile */
    .stock-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
        margin: 4px 0;
    }

    .stock-badge i {
        font-size: 0.7rem;
    }

    /* Botones compactos en mobile */
    .product-actions-premium {
        gap: 6px;
    }

    .btn-view-premium {
        height: 34px;
        font-size: 0.75rem;
        border-radius: 8px;
        padding: 0 10px;
    }

    .btn-view-premium span {
        display: none;
    }

    .btn-cart-premium {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    /* Especificaciones más compactas y bonitas */
    .product-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        margin-top: 8px;
        font-size: 0.7rem;
    }

    .product-specs .spec {
        padding: 4px 8px;
        background: rgba(0, 255, 156, 0.08);
        border-radius: 8px;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 255, 156, 0.15);
        white-space: nowrap;
    }

    /* Overlay más simple en mobile */
    .overlay-actions {
        padding: 0 20px;
        gap: 10px;
    }

    .overlay-btn {
        height: 44px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
}

/* ================================
   MOBILE GRANDE (max-width: 768px)
   Una columna premium
   ================================ */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; /* ✨ UNA SOLA COLUMNA */
        gap: 20px;
        padding: 0 16px;
        max-width: 500px; /* Límite de ancho para pantallas muy anchas */
        margin: 0 auto;
    }

    .product-card-premium {
        border-radius: 20px;
        border-width: 1.5px;
        /* Altura mínima para mantener proporción premium */
        min-height: 420px;
    }

    /* Imagen más grande y protagonista */
    .product-image-container {
        padding: 30px;
        aspect-ratio: 1 / 1;
    }

    .product-img {
        width: 100%;
        height: 100%;
    }

    /* Badges más visibles */
    .product-badge {
        top: 16px;
        right: 16px;
        padding: 8px 16px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Botón favorito más grande */
    .btn-favorite {
        top: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Contenido espacioso */
    .product-content {
        padding: 20px;
        gap: 14px;
    }

    /* Título grande y legible */
    .product-title {
        font-size: 1.1rem;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: -0.3px;
    }

    /* Especificaciones destacadas */
    .product-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 8px 0;
    }

    .product-specs .spec {
        padding: 6px 14px;
        background: rgba(0, 255, 156, 0.1);
        border-radius: 20px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 255, 156, 0.2);
        font-weight: 500;
        white-space: nowrap;
    }

    /* Precio prominente */
    .product-price-premium {
        font-size: 1.5rem;
        font-weight: 800;
        margin: 4px 0;
    }

    /* Stock badge visible */
    .stock-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin: 8px 0;
        border-radius: 10px;
    }

    .stock-badge i {
        font-size: 0.85rem;
        margin-right: 6px;
    }

    /* Botones de acción grandes y táctiles */
    .product-actions-premium {
        gap: 12px;
        margin-top: auto;
    }

    .btn-view-premium {
        height: 48px;
        font-size: 0.9rem;
        border-radius: 12px;
        padding: 0 20px;
        font-weight: 600;
        flex: 1;
    }

    /* Mostrar texto completo en mobile */
    .btn-view-premium span {
        display: inline;
    }

    .btn-cart-premium {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    /* Footer con mejor spacing */
    .product-footer-premium {
        gap: 12px;
    }

    /* Animaciones más suaves en mobile */
    .product-card-premium {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.3s ease;
    }

    /* Hover/Active más sutil en mobile */
    .product-card-premium:active {
        transform: scale(0.98);
    }
}

/* ================================
   MOBILE PEQUEÑO (max-width: 480px)
   Ajustes finos para pantallas muy pequeñas
   ================================ */
@media (max-width: 480px) {
    .products-grid {
        gap: 16px;
        padding: 0 12px;
    }

    .product-card-premium {
        border-radius: 18px;
        min-height: 400px;
    }

    .product-image-container {
        padding: 24px;
    }

    .product-content {
        padding: 16px;
        gap: 12px;
    }

    .product-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .product-specs .spec {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .product-price-premium {
        font-size: 1.3rem;
    }

    .btn-view-premium {
        height: 44px;
        font-size: 0.85rem;
        padding: 0 16px;
    }

    .btn-cart-premium {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ================================
   MOBILE MUY PEQUEÑO (max-width: 375px)
   iPhone SE, etc.
   ================================ */
@media (max-width: 375px) {
    .products-grid {
        padding: 0 10px;
        gap: 14px;
    }

    .product-card-premium {
        min-height: 380px;
    }

    .product-content {
        padding: 14px;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-price-premium {
        font-size: 1.2rem;
    }
}

/* ================================
   SECCIONES EN MOBILE (Modo "Todos")
   ================================ */
@media (max-width: 768px) {
    .products-section-group {
        margin-bottom: 40px;
    }

    .section-category-title {
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .section-category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .section-category-name {
        font-size: 1.2rem;
    }

    .section-category-count {
        font-size: 0.85rem;
    }

    /* Grid de la sección también single-column */
    .products-section-group .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .products-section-group {
        margin-bottom: 32px;
    }

    .section-category-title {
        padding: 0 12px;
        margin-bottom: 14px;
    }

    .section-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-category-name {
        font-size: 1.1rem;
    }

    .section-category-count {
        font-size: 0.8rem;
    }

    .products-section-group .products-grid {
        gap: 16px;
        padding: 0 12px;
    }
}

/* ================================
   OPTIMIZACIONES DE PERFORMANCE
   ================================ */
@media (max-width: 768px) {
    /* Reducir animaciones en mobile para mejor performance */
    @media (prefers-reduced-motion: reduce) {
        .product-card-premium,
        .product-img,
        .btn-view-premium,
        .btn-cart-premium {
            transition: none !important;
            animation: none !important;
        }
    }

    /* Optimizar scroll */
    .products-grid {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Mejorar tap target (Apple HIG recomienda mínimo 44x44) */
    .btn-view-premium,
    .btn-cart-premium,
    .btn-favorite {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ================================
   MEJORAS VISUALES PREMIUM
   ================================ */
@media (max-width: 768px) {
    /* Sombras más sutiles en mobile */
    .product-card-premium {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    .product-card-premium:active {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }

    /* Bordes más suaves */
    .product-card-premium::before {
        border-radius: 20px;
    }

    /* Imagen con mejor contraste — sin neon en reposo */
    .product-img {
        filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
    }

    /* Texto con mejor legibilidad */
    .product-title {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Precio: sin glow verde en reposo (se activa en :active via lowkey-fix-final.css) */
    .product-price-premium {
        text-shadow: none;
    }
}

/* ================================
   FIX PARA NOTCH Y SAFE AREAS
   ================================ */
@media (max-width: 768px) {
    .products-grid {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

@media (max-width: 480px) {
    .products-grid {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
}

/* ================================
   ESTADOS ESPECIALES
   ================================ */

/* Producto sin stock */
.product-card-premium.out-of-stock {
    opacity: 0.6;
    pointer-events: none;
}

.product-card-premium.out-of-stock::after {
    content: 'AGOTADO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,0,0,0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
}

/* Producto en preventa */
.product-card-premium.pre-order .btn-cart-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

/* ================================
   MEJORAS DE ACCESIBILIDAD
   ================================ */
.product-card-premium:focus-within {
    outline: 2px solid #00ff9c;
    outline-offset: 4px;
}

.btn-view-premium:focus,
.btn-cart-premium:focus,
.overlay-btn:focus {
    outline: 2px solid #00ff9c;
    outline-offset: 2px;
}

/* ================================
   DARK MODE EXTRA
   ================================ */
@media (prefers-color-scheme: dark) {
    .product-card-premium {
        background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    }
}

/* ================================
   OPTIMIZACIÓN DE RENDIMIENTO
   ================================ */
.product-card-premium {
    will-change: transform;
    contain: layout style paint;
}

.product-img {
    will-change: transform;
}


/* =========================
   MODAL CARRITO - BASE
   ========================= */
.cart-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: flex-end;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    display: flex;
    opacity: 1;
}

.cart-content {
    width: 100%;
    max-width: 450px;
    /* Fondo premium con gradiente */
    background: linear-gradient(180deg, #111, #0c0c0c);
    height: 100vh;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    /* Borde sutil */
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    /* Sombra premium */
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Overlay verde sutil */
.cart-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,156,0.03) 0%, transparent 100%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.cart-modal.active .cart-content {
    transform: translateX(0);
}

.cart-header {
    padding: 28px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

.cart-header h2 {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neon);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 156, 0.3);
}

.close-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: #ff4444;
    color: #ff4444;
    transform: rotate(90deg) scale(1.1);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Scrollbar personalizado */
.cart-body::-webkit-scrollbar {
    width: 6px;
}

.cart-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.cart-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 156, 0.3);
    border-radius: 3px;
}

.cart-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 156, 0.5);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 24px;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 5rem;
    opacity: 0.3;
    color: var(--neon);
    filter: drop-shadow(0 0 30px rgba(0, 255, 156, 0.2));
}

.empty-cart p {
    font-size: 1.15rem;
    color: #999;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ================================
   CARDS DE PRODUCTO - DESKTOP
   ================================ */
.cart-product-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(15,15,15,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
}

/* Overlay verde sutil */
.cart-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,156,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
    pointer-events: none;
}

.cart-product-card:hover::before {
    opacity: 1;
}

.cart-product-card:hover {
    background: linear-gradient(145deg, rgba(25,25,25,0.98), rgba(18,18,18,1));
    border-color: rgba(0,255,156,0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.4),
        0 0 20px rgba(0,255,156,0.12);
}

.cart-product-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,255,156,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0,255,156,0.05);
}

.cart-product-card:hover .cart-product-image {
    border-color: rgba(0,255,156,0.25);
    box-shadow: 
        inset 0 0 25px rgba(0,255,156,0.08),
        0 0 15px rgba(0,255,156,0.1);
}

.cart-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,255,156,0.1));
    transition: filter 0.3s ease;
}

.cart-product-card:hover .cart-product-image img {
    filter: drop-shadow(0 6px 15px rgba(0,255,156,0.2));
}

.cart-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.cart-product-name {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

.cart-product-price {
    color: #00ff9c;
    font-weight: 700;
    font-size: 1rem;
}

.cart-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Controles de cantidad */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.cart-product-card:hover .cart-quantity-controls {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,255,156,0.15);
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(0,255,156,0.15);
    border: 1.5px solid rgba(0,255,156,0.35);
    color: #00ff9c;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,255,156,0.15);
}

.cart-qty-btn:hover {
    background: rgba(0,255,156,0.25);
    border-color: rgba(0,255,156,0.5);
    transform: scale(1.12);
    box-shadow: 
        0 3px 12px rgba(0,255,156,0.25),
        0 0 15px rgba(0,255,156,0.2);
}

.cart-qty-btn:active {
    transform: scale(1.05);
}

.cart-qty-number {
    color: white;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
    font-size: 0.95rem;
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255,0,0,0.12);
    border: 1.5px solid rgba(255,0,0,0.25);
    color: #ff5555;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,0,0,0.15);
}

.cart-remove-btn:hover {
    background: rgba(255,0,0,0.2);
    border-color: rgba(255,0,0,0.4);
    color: #ff4444;
    transform: scale(1.12);
    box-shadow: 
        0 3px 12px rgba(255,0,0,0.25),
        0 0 15px rgba(255,0,0,0.2);
}

.cart-remove-btn:active {
    transform: scale(1.05);
}

/* Footer del carrito */
.cart-footer {
    padding: 28px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Fondo con gradiente */
    background: linear-gradient(180deg, rgba(10,10,10,0.95), rgba(5,5,5,0.98));
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding: 16px 0;
}

.cart-total span:first-child {
    color: #aaa;
    font-weight: 500;
    font-size: 1.1rem;
}

.total-amount {
    color: var(--neon);
    font-weight: 800;
    font-size: 2rem;
    text-shadow: 0 0 25px rgba(0, 255, 156, 0.6);
    letter-spacing: -0.5px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00ff9c, #00e68a);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 
        0 4px 16px rgba(0,255,156,0.4),
        0 2px 8px rgba(0,255,156,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn i {
    font-size: 1.1rem;
}

.checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(0,255,156,0.5),
        0 3px 12px rgba(0,255,156,0.4);
    background: linear-gradient(135deg, #00e68a, #00cc7a);
}

.checkout-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(0,255,156,0.4),
        0 1px 6px rgba(0,255,156,0.3);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 16px rgba(0,255,156,0.2);
}

/* Botón vaciar carrito */
.cart-actions-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.clear-cart-btn {
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.25);
    color: #ff6666;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255,0,0,0.15);
}

.clear-cart-btn:hover {
    background: rgba(255,0,0,0.18);
    border-color: rgba(255,0,0,0.4);
    color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(255,0,0,0.25),
        0 0 20px rgba(255,0,0,0.2);
}

.clear-cart-btn i {
    font-size: 0.85rem;
}

/* Notificación de producto agregado */
.cart-notification {
    position: fixed;
    top: 80px;
    right: -300px;
    background: linear-gradient(135deg, rgba(0,255,156,0.95), rgba(0,220,140,0.95));
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 5px 30px rgba(0,255,156,0.4);
    z-index: 10000;
    transition: right 0.3s ease;
}

.cart-notification.show {
    right: 20px;
}

.cart-notification i {
    font-size: 1.2rem;
}


/* ======================================
   CARRITO MOBILE PREMIUM - APPLE STYLE
   ====================================== */
@media (max-width: 768px) {
    
    /* Modal tipo bottom sheet */
    .cart-modal {
        align-items: flex-end;
        justify-content: center;
    }

    .cart-content {
        width: 100%;
        height: 95vh;
        max-width: 100%;
        background: #0a0a0a;
        border-radius: 26px 26px 0 0;
        padding: 0;
        transform: translateY(100%);
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .cart-modal.active .cart-content {
        transform: translateY(0);
    }

    /* Header mobile */
    .cart-header {
        padding: 20px 20px 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        position: sticky;
        top: 0;
        background: #0a0a0a;
        z-index: 10;
    }

    .cart-header h2 {
        font-size: 1.3rem;
    }

    .close-cart {
        width: 36px;
        height: 36px;
    }

    /* Body scrolleable */
    .cart-body {
        flex: 1;
        overflow-y: auto;
        padding: 20px 16px;
        padding-bottom: 30px;
    }

    /* Botón vaciar - más compacto */
    .cart-actions-header {
        margin-bottom: 12px;
    }

    .clear-cart-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        width: auto;
        align-self: flex-end;
    }

    /* ===============================
       PRODUCT CARD MOBILE PREMIUM
       =============================== */
    .cart-product-card {
        display: flex;
        flex-direction: column;
        background: linear-gradient(145deg, #141414, #0f0f0f);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 0;
        margin-bottom: 16px;
        overflow: hidden;
        box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        position: relative;
    }
    
    .cart-product-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,255,156,0.03) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .cart-product-card:hover {
        background: linear-gradient(145deg, #161616, #101010);
        border-color: rgba(0,255,156,0.2);
        box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    }
    
    .cart-product-card:hover::before {
        opacity: 1;
    }

    /* Imagen GRANDE arriba - protagonista */
    .cart-product-image {
        width: 100%;
        height: 200px;
        max-width: 100%;
        min-width: auto;
        background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
        border-radius: 0;
        border-bottom: 1px solid rgba(0,255,156,0.08);
        padding: 20px;
        margin: 0;
        box-shadow: inset 0 0 30px rgba(0,255,156,0.03);
    }

    .cart-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 6px 15px rgba(0,255,156,0.12));
    }

    /* Detalles del producto */
    .cart-product-details {
        padding: 16px 16px 12px 16px;
        gap: 8px;
    }

    .cart-product-name {
        font-size: 1.05rem;
        font-weight: 600;
        color: #ffffff;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.3;
        margin: 0;
    }

    .cart-product-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: #00ff9c;
        text-shadow: 0 0 10px rgba(0,255,156,0.3);
    }

    /* Acciones - layout horizontal optimizado */
    .cart-product-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px 16px 16px;
        flex-wrap: nowrap;
    }

    /* Controles de cantidad - más grandes */
    .cart-quantity-controls {
        flex: 1;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 24px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 50px;
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
    }

    .cart-qty-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: rgba(0,255,156,0.18);
        border: 2px solid rgba(0,255,156,0.35);
        font-size: 1rem;
        font-weight: 700;
        flex-shrink: 0;
        box-shadow: 0 3px 10px rgba(0,255,156,0.2);
    }

    .cart-qty-btn:active {
        transform: scale(0.92);
        background: rgba(0,255,156,0.3);
        box-shadow: 
            0 2px 8px rgba(0,255,156,0.3),
            0 0 20px rgba(0,255,156,0.25);
    }

    .cart-qty-number {
        font-size: 1.15rem;
        font-weight: 700;
        color: white;
        min-width: 32px;
    }

    /* Botón eliminar - más grande */
    .cart-remove-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: rgba(255,0,0,0.15);
        border: 2px solid rgba(255,0,0,0.25);
        font-size: 1.05rem;
        flex-shrink: 0;
        box-shadow: 0 3px 10px rgba(255,0,0,0.2);
    }

    .cart-remove-btn:active {
        transform: scale(0.92);
        background: rgba(255,0,0,0.28);
        box-shadow: 
            0 2px 8px rgba(255,0,0,0.3),
            0 0 20px rgba(255,0,0,0.25);
    }

    /* Footer fijo */
    .cart-footer {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 16px 16px 24px 16px;
        background: linear-gradient(
            to top,
            #0a0a0a 85%,
            rgba(10,10,10,0.95) 95%,
            transparent
        );
        position: sticky;
        bottom: 0;
        z-index: 10;
    }

    .cart-total {
        margin-bottom: 16px;
        font-size: 1.1rem;
    }

    .total-amount {
        font-size: 1.6rem;
    }

    /* Botón checkout */
    .checkout-btn {
        padding: 18px;
        border-radius: 18px;
        font-size: 1.05rem;
        font-weight: 700;
        min-height: 56px;
    }

    /* Estado vacío */
    .empty-cart {
        padding: 40px 20px;
    }

    .empty-cart i {
        font-size: 3.5rem;
    }

    .empty-cart p {
        font-size: 1rem;
    }

    /* Notificación mobile */
    .cart-notification {
        top: auto;
        bottom: 100px;
        right: 50%;
        transform: translateX(50%) translateY(100px);
        max-width: calc(100% - 40px);
        border-radius: 16px;
        padding: 12px 20px;
    }

    .cart-notification.show {
        right: 50%;
        transform: translateX(50%) translateY(0);
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 360px) {
    .cart-product-image {
        height: 160px;
    }

    .cart-qty-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .cart-remove-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
}



/* =========================
   FOOTER PROFESIONAL
   ========================= */
/* ========================================
   FOOTER PREMIUM - ESTILO PRODUCT CARDS
   Reemplaza el CSS del footer actual (líneas 2114-2247)
   ======================================== */

/* ===== CONTENEDOR PRINCIPAL ===== */
.footer {
    /* Gradiente oscuro igual a las product cards */
    background: linear-gradient(180deg, #111, #0c0c0c);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 40px 30px;
    position: relative;
    overflow: hidden;
}

/* Overlay sutil verde (igual a las cards) */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 255, 156, 0.3) 50%,
        transparent 100%
    );
}

/* Fondo decorativo sutil */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(0, 255, 156, 0.03) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* ===== CONTENIDO DEL FOOTER ===== */
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* ===== COLUMNAS ===== */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Logo premium */
.footer-logo {
    width: 160px;
    margin-bottom: 20px;
    filter: 
        brightness(1.1)
        drop-shadow(0 4px 15px rgba(0, 255, 156, 0.15));
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: 
        brightness(1.2)
        drop-shadow(0 4px 20px rgba(0, 255, 156, 0.25));
}

/* Descripción */
.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Títulos de sección */
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

/* Línea decorativa bajo el título */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon), transparent);
    border-radius: 2px;
}

/* ===== ENLACES ===== */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    position: relative;
}

/* Efecto hover en enlaces */
.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--neon);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--neon);
    padding-left: 15px;
}

/* ===== CONTACTO ===== */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 156, 0.2);
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--neon);
    font-size: 1.1rem;
    width: 24px;
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.15);
}

/* ===== REDES SOCIALES ===== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* Fondo igual a las product cards */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Overlay verde al hover (igual a las cards) */
.footer-social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 156, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 156, 0.35);
    color: var(--neon);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 156, 0.2);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.15);
}

.footer-warning i {
    color: #ffa500;
    font-size: 1rem;
}


/* ========================================
   RESPONSIVE - FOOTER
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 30px 25px;
    }

    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 50px 24px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-column {
        /* Centrar todo en mobile */
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-warning {
        justify-content: center;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .footer {
        padding: 40px 16px 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 25px;
        margin-top: 30px;
    }

    .footer-bottom p,
    .footer-warning {
        font-size: 0.8rem;
    }
}

/* ========================================
   FOOTER - MEJORAS PREMIUM OPCIONALES
   (Solo si quieres efectos extra)
   ======================================== */

/* ===== ANIMACIÓN DE ENTRADA ===== */
.footer-column {
    animation: fadeInUp 0.6s ease-out backwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== EFECTO PARTÍCULAS EN EL FONDO ===== */
.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 156, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 156, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: particlesMove 20s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ===== EFECTO GLOW EN TÍTULO AL HOVER ===== */
.footer-title {
    transition: all 0.3s ease;
}

.footer-title:hover {
    color: var(--neon);
    text-shadow: 0 0 20px rgba(0, 255, 156, 0.3);
}

/* ===== EFECTO RIPPLE EN ICONOS SOCIALES ===== */
.footer-social-icon {
    position: relative;
    overflow: hidden;
}

.footer-social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 156, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-social-icon:active::after {
    width: 100px;
    height: 100px;
}

/* ===== CONTADOR ANIMADO (si tienes stats) ===== */
.footer-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-stat {
    text-align: center;
}

.footer-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon);
    text-shadow: 0 0 20px rgba(0, 255, 156, 0.3);
    margin-bottom: 8px;
}

.footer-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NEWSLETTER (si quieres agregar) ===== */
.footer-newsletter {
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(0, 255, 156, 0.1);
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--neon), #00cc7a);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 156, 0.3);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: rgba(0, 255, 156, 0.15);
    border-color: var(--neon);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 156, 0.2);
}

/* ===== BADGES DE PAGO/SEGURIDAD (si quieres agregar) ===== */
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 156, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-badge i {
    color: var(--neon);
    font-size: 1rem;
}

/* ===== DESACTIVAR ANIMACIONES EN MOBILE ===== */
@media (max-width: 768px) {
    .footer-column {
        animation: none;
    }

    .footer::before {
        animation: none;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-stat-number {
        font-size: 2rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .footer-column,
    .footer::before,
    .footer-social-icon::after {
        animation: none !important;
    }
}
/* =========================
   BOTÓN FLOTANTE WHATSAPP
   ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-left {
        gap: 15px;
        flex: 1;
    }
    
    .nav-logo {
        width: 120px;
        height: 50px;
    }
    
    /* Mostrar carrito móvil, ocultar desktop */
    .cart-mobile {
        display: block;
    }
    
    .cart-desktop {
        display: none;
    }

    .menu-btn {
        display: block;
    }
    
    .nav-right {
        gap: 0;
    }

    .nav-links {
        display: none;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 20px 40px;
        gap: 30px;
        max-width: 100%;
        min-height: 90vh; /* CLAVE: casi toda la pantalla */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        align-items: center;
    }

    .hero-text h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        letter-spacing: -1.5px;
    }
    
    .hero-text p {
        max-width: 100%;
        font-size: 1.05rem;
        margin-top: 20px;
    }
    
    .hero-btn {
        margin-top: 32px;
        align-self: center;
    }

    .hero-image {
        flex: 1; /* Tomar todo el espacio disponible */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        max-width: 85vw; /* 85% del ancho de la pantalla */
        max-height: 50vh; /* Máximo 50% de la altura */
        width: auto;
        height: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .product-card {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .product-image {
        height: 240px;
        border-radius: 16px 16px 0 0;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 1.4rem;
        margin: 12px 0;
    }
    
    .product-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .category-filters {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .filter-btn .filter-icon {
        font-size: 0.85rem;
    }

    /* Filtros adicionales en mobile */
    .additional-filters {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .filter-group {
        min-width: 100%;
    }

    .custom-select {
        font-size: 0.85rem;
        padding: 10px 12px;
        padding-right: 35px;
    }

    .search-box {
        min-width: 100%;
    }

    .search-box input {
        font-size: 0.85rem;
        padding: 10px 40px 10px 12px;
    }

    .clear-filters-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .results-count {
        font-size: 0.9rem;
        margin: 15px 0;
    }

    /* Carrito responsive */
    .cart-content {
        max-width: 100%;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        margin: 0 auto;
    }

    .cart-item-controls {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
        margin-top: 20px;
        line-height: 1.6;
    }
    
    .hero-btn {
        margin-top: 28px;
        padding: 14px 32px;
        font-size: 0.95rem;
    }
    
    .hero-image img {
        max-width: 320px;
    }
}

/* Responsive para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-split {
        padding: 80px 40px 50px;
        gap: 50px;
    }
    
    .navbar {
        padding: 0 30px;
    }
}

/* Responsive para móviles pequeños */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 3rem;
        line-height: 1.15;
        letter-spacing: -1px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-top: 16px;
    }
    
    .hero-btn {
        margin-top: 24px;
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .nav-logo {
        width: 100px;
        height: 45px;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .add-to-cart {
        font-size: 0.9rem;
        padding: 12px;
    }
}

body.modal-open {
    overflow: hidden;
    height: 100vh;
}

/* =========================
   MENÚ MÓVIL ESTILO TESLA
   ========================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10001; /* 🔥 más alto que TODO */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}




/* Fondo con dos imágenes lado a lado (estilo Tesla) */
.mobile-menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 0;
}

.mobile-menu-bg-left,
.mobile-menu-bg-right {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.mobile-menu-bg-left {
    background-image: url('../assets/home.png');
    background-color: #1a1a1a;
}

.mobile-menu-bg-right {
    background-image: url('../assets/producto6.png');
    background-color: #1a1a1a;
}

/* Overlay oscuro sobre las imágenes */
.mobile-menu-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.mobile-menu-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    padding: 40px 0 30px;
}

.mobile-logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.3));
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.close-menu:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-link {
    color: white;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    letter-spacing: 0.5px;
}

.mobile-link:hover {
    background: rgba(0,255,156,0.15);
    border-color: var(--neon);
    color: var(--neon);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,255,156,0.2);
}

/* =========================
   SUB-FILTROS
/* =========================
   SUB-FILTROS
   ========================= */
.sub-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.sub-filter-btn {
    padding: 10px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: relative;
}

.sub-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,156,0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.sub-filter-btn:hover::before {
    opacity: 1;
}

.sub-filter-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,255,156,0.25);
    color: rgba(255,255,255,0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 3px 10px rgba(0,0,0,0.25),
        0 0 15px rgba(0,255,156,0.1);
}

.sub-filter-btn.active {
    background: rgba(0,255,156,0.15);
    border-color: rgba(0,255,156,0.5);
    color: #00ff9c;
    font-weight: 600;
    box-shadow: 
        0 3px 12px rgba(0,0,0,0.3),
        0 0 20px rgba(0,255,156,0.2);
    transform: translateY(-2px);
}

.sub-filter-btn.active::before {
    opacity: 0;
}

.sub-filter-btn.active:hover {
    border-color: #00ff9c;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.35),
        0 0 25px rgba(0,255,156,0.3);
}

/* =========================
   FILTROS ADICIONALES
   ========================= */
.filters-container {
    margin-bottom: 50px;
}

.additional-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-group {
    min-width: 200px;
}

.custom-select {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff9c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-select:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,255,156,0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.3),
        0 0 15px rgba(0,255,156,0.1);
}

.custom-select:focus {
    outline: none;
    background: rgba(255,255,255,0.08);
    border-color: #00ff9c;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.35),
        0 0 20px rgba(0,255,156,0.25);
    transform: translateY(-2px);
}

/* Cuando el select tiene valor activo (no "all") */
.custom-select:not([value="all"]):focus,
.custom-select.active {
    background: rgba(0,255,156,0.08);
    border-color: rgba(0,255,156,0.5);
    color: #00ff9c;
}

.custom-select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

/* =========================
   BUSCADOR
   ========================= */
.search-box {
    position: relative;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.search-box input:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(0,255,156,0.2);
}

.search-box input:focus {
    outline: none;
    background: rgba(255,255,255,0.08);
    border-color: #00ff9c;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.35),
        0 0 20px rgba(0,255,156,0.25);
    transform: translateY(-2px);
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.search-box i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0,255,156,0.6);
    pointer-events: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.search-box input:focus ~ i {
    color: #00ff9c;
}


/* =========================
   NO PRODUCTOS
   ========================= */
.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.no-products i {
    font-size: 4rem;
    opacity: 0.3;
}

.no-products p {
    font-size: 1.1rem;
}

/* =========================
   STOCK WARNING
   ========================= */
.stock-warning {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255,165,0,0.2);
    color: #ffa500;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,165,0,0.3);
}

/* =========================
   INFO SECTION
   ========================= */
/* ========================================
   INFO SECTION PREMIUM - ESTILO PRODUCT CARDS
   ======================================== */

.info-section {
    padding: 100px 60px;
    background: transparent;
    position: relative;
}

.info-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== INFO CARD PREMIUM ===== */
.info-card {
    /* Fondo igual a product cards */
    background: linear-gradient(180deg, #111, #0c0c0c);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    
    /* Sombra sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay verde en hover (igual a product cards) */
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 156, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    border-color: rgba(0, 255, 156, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 255, 156, 0.1);
}

/* ===== ÍCONO CON BACKGROUND ===== */
.info-card i {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(0, 255, 156, 0.1);
    border: 2px solid rgba(0, 255, 156, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--neon);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.info-card:hover i {
    background: rgba(0, 255, 156, 0.15);
    border-color: rgba(0, 255, 156, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 255, 156, 0.3);
}

/* ===== TÍTULO ===== */
.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.info-card:hover h3 {
    letter-spacing: 1px;
}

/* ===== DESCRIPCIÓN ===== */
.info-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.info-card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

/* =========================
   NOTIFICACIONES
   ========================= */
.notification {
    position: fixed;
    top: 80px;
    right: -400px;
    background: linear-gradient(135deg, var(--neon), #00cc7a);
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,255,156,0.4);
    transition: right 0.3s ease;
    max-width: 350px;
}

.notification.show {
    right: 20px;
}

/* =========================
   RESPONSIVE ADICIONAL
   ========================= */
@media (max-width: 768px) {
    .filters-header {
        padding: 0 16px;
    }
    
    .category-filters {
        gap: 10px;
        padding: 0 16px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .sub-filters {
        gap: 8px;
        padding: 0 16px;
    }
    
    .sub-filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .additional-filters {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
        gap: 12px;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .custom-select,
    .search-box input {
        padding: 12px 18px;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-section {
        padding: 60px 16px;
    }
    
    .info-card {
        padding: 40px 30px;
    }
    
    .info-card i {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .info-card h3 {
        font-size: 1.35rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .desktop {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .filter-btn .filter-icon {
        font-size: 0.9rem;
    }
    
    .sub-filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}



@media (max-width: 768px) {
    .product-image {
        height: 180px;
    }
}

.add-to-cart::after {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.add-to-cart:hover::after {
    transform: translateX(4px);
}

.product-card:hover .add-to-cart {
    box-shadow: 0 8px 30px rgba(0,255,156,0.6);
}

.legal-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0b0b0b, #060606);
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.legal-box h4 {
    color: var(--neon);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.legal-box p {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-page {
    background: #0b0b0b;
    color: #e5e5e5;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.legal-wrapper h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--neon);
}

.legal-content h2 {
    font-size: 1.2rem;
    margin-top: 35px;
    margin-bottom: 10px;
    color: #fff;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
}


/* =========================
   CARRUSEL MARCAS LIMPIO
   ========================= */

.brands-carousel {
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
    margin-top: -60px;
}

.brands-sprite {
    width: 200%;
    height: 300px;
    background-image: url("../assets/brands.png");
    background-repeat: repeat-x;
    background-size: auto 300px;
    background-position: center;
    animation: brandsScroll 32s linear infinite;
}

@keyframes brandsScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .brands-sprite {
        height: 160px;
        background-size: auto 160px;
        animation-duration: 24s;
    }
}

.brands-inner {
    max-width: 1100px;   /* 👈 controla lo angosto */
    margin: 0 auto;
    overflow: hidden;

    /* FADE LATERAL SIN FONDO */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
}

.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.product-modal.active {
    display: flex;
}

.product-modal-content {
    /* Fondo premium con gradiente - IGUAL A LAS CARDS */
    background: linear-gradient(180deg, #111, #0c0c0c);
    width: 90%;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;   /* mobile: OK */
    position: relative;
    /* Borde sutil */
    border: 1px solid rgba(255, 255, 255, 0.04);
    /* Sombra premium */
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 255, 156, 0.1);
}

/* Overlay verde sutil (opcional - igual a las cards) */
.product-modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,255,156,0.05) 0%, transparent 100%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

/* BOTÓN CERRAR (X) - AGREGADO */
.close-product-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-product-modal:hover {
    background: var(--neon);
    color: #000;
    border-color: var(--neon);
    transform: rotate(90deg);
}

/* Contenedor de imagen premium */
.modal-image {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    min-height: 280px;
}

.modal-image img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 255, 156, 0.15));
    position: relative;
    z-index: 1;
}

.modal-info {
    padding: 24px;
    position: relative;
    z-index: 1;
}

/* Título del producto */
.modal-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* Precio (ya existente, solo mejoramos) */
.modal-price {
    color: var(--neon);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 12px 0;
    text-shadow: 0 0 20px rgba(0, 255, 156, 0.3);
    letter-spacing: -0.5px;
}

/* Descripción del producto */
.modal-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 20px;
}

.modal-price {
    color: var(--neon);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 10px 0;
}

.modal-add-cart {
    width: 100%;
    margin: 20px 0 0;
    padding: 16px;
    background: linear-gradient(135deg, #00ff9c, #00cc7a);
    color: #000;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 156, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    display: block;
}

.modal-add-cart:hover {
    background: linear-gradient(135deg, #00ff9c, #00e68a);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 156, 0.5);
}

.modal-add-cart:active {
    transform: translateY(0);
}

.modal-add-cart:hover {
    background: #00e68a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,255,156,0.4);
}

/* Modal responsive en mobile */
/* Modal responsive en mobile */
@media (max-width: 768px) {
    .product-modal-content {
        width: 95%;
        max-width: 500px;
        border-radius: 20px;
    }

    .close-product-modal {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .modal-image {
        padding: 24px;
        min-height: 240px;
    }

    .modal-image img {
        height: 220px;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-info h2 {
        font-size: 1.3rem;
    }

    .modal-price {
        font-size: 1.3rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }

    .modal-add-cart {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
        padding: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-modal-content {
        width: 90%;
        border-radius: 16px;
    }

    .modal-image {
        padding: 20px;
        min-height: 200px;
    }

    .modal-image img {
        height: 180px;
    }

    .modal-info {
        padding: 18px;
    }

    .modal-info h2 {
        font-size: 1.2rem;
    }

    .modal-price {
        font-size: 1.2rem;
    }

    .modal-description {
        font-size: 0.85rem;
    }

    .modal-add-cart {
        width: calc(100% - 36px);
        margin: 0 18px 18px;
    }
}

/* =========================
   PRODUCTS GRID FINAL (FIX)
========================= */


/* =========================
   PRODUCT CARD (UNIFICADA)
========================= */

.product-card {
    background: linear-gradient(180deg, #111, #0c0c0c);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
}

/* Imagen */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #000;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Info */
.product-info {
    padding: 14px;
}

.product-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon);
}

/* =========================
   ACTIONS
========================= */

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.product-actions button {
    height: 36px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
}

/* Ver */
.view-btn {
    flex: 1;
    background: rgba(255,255,255,0.08);
    color: white;
}

.view-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* Carrito en productos */
.product-actions .cart-btn {
    width: 40px;
    background: var(--neon);
    color: #000;
    font-size: 18px;
}

.product-actions .cart-btn:hover {
    background: #00e68a;
}

/* =========================
   MOBILE TUNING
========================= */

@media (max-width: 480px) {
    .product-info h3 {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .product-actions button {
        height: 34px;
        font-size: 0.8rem;
    }
}

/* =========================
   FIX DEFINITIVO MENÚ MÓVIL
   ========================= */

.mobile-menu {
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: auto;
}

/* Asegura overlay visible */
.mobile-menu-background::after {
    z-index: 0;
}

/* Contenido siempre arriba */
.mobile-menu-content {
    z-index: 2;
}

/* Botón cerrar siempre clickeable */
.close-menu {
    z-index: 3;
}

/* === FIX MENU MOVIL (NO ROMPE NADA) === */

.mobile-menu {
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: auto;
}


/* ============================= */
/* CARRITO MOBILE - FIX VISUAL   */
/* ============================= */

@media (max-width: 768px) {

  /* El fondo del modal */
.cart-modal {
    align-items: flex-end;
}

  /* Contenedor del carrito */
.cart-content {
    width: 100%;
    max-width: 100%;
    height: 90vh;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

  /* Cuando el carrito está abierto */
.cart-modal.active .cart-content {
    transform: translateY(0);
}

  /* Cada producto */
.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

  /* Footer fijo abajo */
.cart-footer {
    position: sticky;
    bottom: 0;
    background: #0b0b0b;
    padding: 12px;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}
}


@media (max-width: 768px) {

    .cart-modal {
        align-items: flex-end;
    }

    .cart-content {
        width: 100%;
        height: 92vh;
        background: #0d0d0d;
        border-radius: 22px 22px 0 0;
        padding: 20px;
        overflow-y: auto;
    }

    /* Cada producto ahora es una CARD */
    .cart-item {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 14px;
        background: #151515;
        border-radius: 16px;
        padding: 14px;
        margin-bottom: 14px;
    }

    /* Imagen GRANDE y protagonista */
    .cart-item img {
        width: 90px;
        height: 90px;
        border-radius: 12px;
        object-fit: cover;
    }

    /* Info del producto */
    .cart-item-details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cart-item-title {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        line-height: 1.2;
    }

    .cart-item-price {
        font-size: 0.95rem;
        color: #aaa;
    }

    /* Footer fijo PRO */
    .cart-footer {
        position: sticky;
        bottom: 0;
        background: linear-gradient(to top, #0d0d0d 70%, transparent);
        padding: 16px 0;
    }

    .checkout-btn {
        width: 100%;
        padding: 18px;
        border-radius: 14px;
        font-size: 1.1rem;
        font-weight: 600;
    }
}


/* ================================
   CARRITO MOBILE – DISEÑO PRO
   ================================ */
@media (max-width: 768px) {

    /* Modal tipo bottom sheet */
    .cart-modal {
        align-items: flex-end;
        justify-content: center;
    }

    .cart-content {
        width: 100%;
        height: 94vh;
        background: #0b0b0b;
        border-radius: 24px 24px 0 0;
        padding: 16px;
        display: flex;
        flex-direction: column;
    }

    /* Contenido scrolleable */
    .cart-body {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 20px;
    }

    /* Card de producto */
    #cart-items > div:not(.empty-cart) {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 14px;
        background: #141414;
        border-radius: 18px;
        padding: 14px;
        margin-bottom: 16px;
    }

    /* Imagen del producto */
    #cart-items img {
        width: 100px;
        height: 100px;
        border-radius: 14px;
        object-fit: cover;
    }

    /* Textos */
    #cart-items h3,
    #cart-items h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.2;
        color: #ffffff;
    }

    #cart-items p {
        margin: 0;
        font-size: 0.9rem;
        color: #aaaaaa;
    }

    /* Footer fijo */
    .cart-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 14px;
        background: linear-gradient(
            to top,
            #0b0b0b 80%,
            transparent
        );
    }

    /* Botón checkout */
    .checkout-btn {
        width: 100%;
        padding: 18px;
        border-radius: 16px;
        font-size: 1.1rem;
        font-weight: 600;
    }
}


/* ======================================
   CARRITO MOBILE – CARDS PREMIUM
   ====================================== */
@media (max-width: 768px) {

    /* Modal estilo bottom sheet */
    .cart-modal {
        align-items: flex-end;
        justify-content: center;
    }

    .cart-content {
        width: 100%;
        height: 95vh;
        background: #0a0a0a;
        border-radius: 26px 26px 0 0;
        padding: 16px;
        display: flex;
        flex-direction: column;
    }

    /* Body scrolleable */
    .cart-body {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 30px;
    }

    /* ===============================
       PRODUCT CARD (FORZADO)
       =============================== */
    #cart-items > div:not(.empty-cart) {
        display: flex;
        flex-direction: column;
        background: #141414;
        border-radius: 20px;
        padding: 16px;
        margin-bottom: 20px;
    }

    /* Imagen GRANDE arriba */
    #cart-items > div:not(.empty-cart) img {
        width: 100%;
        height: 180px;
        border-radius: 16px;
        object-fit: cover;
        margin-bottom: 12px;
    }

    /* Textos */
    #cart-items h3,
    #cart-items h4 {
        margin: 0 0 6px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: #ffffff;
    }

    #cart-items p {
        margin: 0 0 10px 0;
        font-size: 0.95rem;
        color: #b5b5b5;
    }

    /* Precio destacado */
    #cart-items span,
    #cart-items strong {
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
    }

    /* Botones dentro del item */
    #cart-items button {
        background: #1f1f1f;
        border: none;
        color: #ffffff;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 0.9rem;
        margin-top: 6px;
    }

    /* Footer */
    .cart-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 16px;
        background: linear-gradient(
            to top,
            #0a0a0a 80%,
            transparent
        );
    }

    /* Checkout */
    .checkout-btn {
        width: 100%;
        padding: 18px;
        border-radius: 18px;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

/* Prevenir scroll en iOS cuando modal está abierto */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mejor animación de cierre */
.product-modal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   FILTROS - HEADER (NUEVO)
========================= */
/* =========================
   HEADER DE FILTROS
   ========================= */
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.clear-filters-btn {
    padding: 8px 20px;
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.2);
    border-radius: 20px;
    color: #ff6666;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.clear-filters-btn:hover {
    background: rgba(255,0,0,0.15);
    border-color: rgba(255,0,0,0.4);
    color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 
        0 3px 10px rgba(0,0,0,0.25),
        0 0 15px rgba(255,0,0,0.2);
}

.clear-filters-btn i {
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 768px) {
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .results-count {
        font-size: 0.9rem;
    }

    .clear-filters-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}


/* =========================
   SUBCATEGORÍAS (NUEVO)
========================= */

.sub-filters {
    display: none; /* Oculto por defecto */
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 255, 156, 0.03);
    border: 1px solid rgba(0, 255, 156, 0.1);
    border-radius: 12px;
    animation: slideDown 0.3s ease;
}

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

.sub-filter-btn {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sub-filter-btn:hover {
    background: rgba(0, 255, 156, 0.1);
    border-color: rgba(0, 255, 156, 0.3);
    color: var(--neon);
    transform: translateY(-2px);
}

.sub-filter-btn.active {
    background: var(--neon);
    border-color: var(--neon);
    color: #000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .results-count {
        font-size: 0.9rem;
    }

    .clear-filters-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .sub-filters {
        padding: 12px;
    }

    .sub-filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sub-filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   PRODUCT BADGES
========================= */

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.product-badge {
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
    background: #111;
    text-transform: uppercase;
    letter-spacing: .4px;
    width: fit-content;
}

/* Colores específicos */
.product-badge.bestseller {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.product-badge.new {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #0b2e13;
}

/* -------- BADGE DESCUENTO -------- */
.product-badge-discount {
    position: absolute;
    top: 60px;
    right: 12px;
    z-index: 10;
    background: linear-gradient(135deg, #ff0844, #ef4444);
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 5px 11px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(239,68,68,0.55);
    animation: discountPulse 2.5s ease-in-out infinite;
}

@keyframes discountPulse {
    0%   { box-shadow: 0 3px 12px rgba(239,68,68,0.55); transform: scale(1); }
    50%  { box-shadow: 0 4px 20px rgba(239,68,68,0.85); transform: scale(1.07); }
    100% { box-shadow: 0 3px 12px rgba(239,68,68,0.55); transform: scale(1); }
}

@media (max-width: 768px) {
    .product-badge-discount {
        top: 54px;
        right: 10px;
        font-size: 0.76rem;
        padding: 4px 9px;
    }
}

/* -------- CEPA TAG en card -------- */
.spec.cepa-tag {
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* -------- SABOR TAG en modal -------- */
.modal-sabor-tag {
    background: rgba(0,255,156,0.1);
    border: 1px solid rgba(0,255,156,0.3);
    color: #00ff9c;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
}


/* =========================
   PRODUCT BADGES (FIX REAL)
========================= */

.product-card-premium {
    position: relative;
}

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.product-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .4px;
    background: #111;
    color: #fff;
    line-height: 1;
}

/* COLORES */
.product-badge.bestseller {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.product-badge.new {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #083b1a;
}


/* ===== BADGE FIX OVERRIDE ===== */

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.product-badge {
    position: static !important;
}


/* =========================
   PRODUCT SPECS (CEPA / SABOR)
========================= */

.product-specs {
    margin-top: 6px;
    font-size: 12px;
    color: #9aa0a6;
    font-weight: 500;
    letter-spacing: .2px;
}

.product-specs .spec {
    text-transform: capitalize;
}

.product-specs {
    display: flex;
    gap: 6px;
    margin: 6px 0;
}

.product-specs .spec {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    text-transform: capitalize;
}

/* ================================================
   SCROLL INFINITO - LOADER Y CONTADOR
   ================================================ */

/* Loader de carga infinita */
.infinite-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 15px;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0,255,156,0.1);
    border-top-color: var(--neon);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contador de productos */
.product-counter {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 25px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    animation: fadeInUp 0.3s ease-out;
    transition: all 0.3s ease;
}

.product-counter strong {
    color: var(--neon);
    font-weight: 700;
}

/* Animación de entrada suave */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .infinite-loader {
        padding: 30px 15px;
    }
    
    .loader-spinner {
        width: 35px;
        height: 35px;
    }
    
    .loader-text {
        font-size: 0.85rem;
    }
    
    .product-counter {
        font-size: 0.85rem;
        padding: 10px 16px;
        margin: 20px auto 15px;
    }
}

@media (max-width: 480px) {
    .product-counter {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .loader-spinner {
        width: 30px;
        height: 30px;
    }
}

/* =========================
   CARRITO – ESTILO MATTELS
========================= */

.cart-item-pro {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 14px 10px;
    margin-bottom: 14px;
    background: transparent;
    border: none;
    border-radius: 0;
}

/* IMAGEN – MÁS GRANDE Y LIMPIA */
.cart-item-pro-image {
    width: 110px !important;
    height: 110px !important;
    background: none;
    padding: 0;
}

.cart-item-pro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CONTENIDO */
.cart-item-pro-content {
    flex: 1;
}

/* NOMBRE */
.cart-item-pro-content h3 {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #eaeaea;
    margin-bottom: 6px;
}

/* PRECIO */
.cart-item-pro-price {
    font-size: 1rem;
    font-weight: 600;
    color: #00ff9c;
    margin-bottom: 8px;
}

/* FOOTER */
.cart-item-pro-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CANTIDAD – BOTONES SILENCIOSOS */
.cart-item-pro-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    padding: 4px 10px;
    border-radius: 999px;
}

.cart-item-pro-qty button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: #cfcfcf;
    font-size: 0.9rem;
}

/* NÚMERO */
.cart-item-pro-qty span {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 14px;
    text-align: center;
}

/* ELIMINAR – ICONO SUTIL */
.remove-item-pro {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* TOTAL */
#totalAmount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff9c;
}

/* BOTÓN CHECKOUT */
#checkout-btn {
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px;
}

/* =====================================
   STOCK – SILENCIADO VISUAL
   ===================================== */

.product-stock,
.stock,
.stock-label {
    font-size: 0.65rem;
    opacity: 0.35;
    margin-top: 2px;
    order: 99;
}

/* =====================================
   STOCK – METADATA SILENCIOSA
   ===================================== */

/* Cualquier texto de stock dentro de la card */
.product-card-premium .stock,
.product-card-premium .stock-badge,
.product-card-premium .product-stock,
.product-card-premium span[class*="stock"] {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.35;
    margin-top: 4px;
    color: #ffffff;
}

/* Elimina look de badge si existía */
.product-card-premium .stock-badge {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* =====================================
   BOTÓN "VER" – EDITORIAL / SILENCIOSO
   ===================================== */

.view-btn,
.btn-view,
.product-view {
    background: none;
    border: none;
    padding: 0;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.55;
    cursor: pointer;
}

.view-btn:hover,
.btn-view:hover,
.product-view:hover {
    opacity: 0.9;
    text-decoration: underline;
}


/* =====================================
   BOTÓN "+" – ACCIÓN DISCRETA
   ===================================== */

.add-btn,
.add-to-cart-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity .2s ease, border-color .2s ease;
}

.add-btn:hover,
.add-to-cart-btn:hover {
    opacity: 1;
    border-color: rgba(255,255,255,0.6);
}
/* =====================================================
   PRODUCT CARD — TRANSPARENTE + IMAGEN FLOTANTE
   (Sensación card anterior + sistema actual)
   ===================================================== */

/* Card base: contenedor silencioso */
.product-card-premium {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: none;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover: solo profundidad, nada nuevo */
.product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.65);
}

/* Contenedor de imagen: aire real */
.product-card-premium .product-image,
.product-card-premium .image-container {
    position: relative;
    padding: 28px 28px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen flotante (CLAVE) */
.product-card-premium img {
    max-height: 240px;
    object-fit: contain;
    filter:
        drop-shadow(0 35px 55px rgba(0,0,0,0.85))
        drop-shadow(0 0 25px rgba(0,255,150,0.12));
    transition: transform .4s ease;
}

/* Micro vida, sin exagerar */
.product-card-premium:hover img {
    transform: translateY(-4px) scale(1.02);
}

/* Info baja un plano visual */
.product-card-premium .product-info,
.product-card-premium .info {
    padding: 12px 20px 20px;
}

/* Badges: existen, no compiten */
.product-card-premium .badge,
.product-card-premium .stock-badge {
    transform: scale(0.9);
    opacity: 0.85;
}

/* Precio y acciones no pisan la imagen */
.product-card-premium .price,
.product-card-premium .actions {
    margin-top: 10px;
}

/* =====================================================
   PRODUCT CARD — TRANSPARENTE + IMAGEN FLOTANTE
   (Sensación card anterior + sistema actual)
   ===================================================== */

/* Card base: contenedor silencioso */
.product-card-premium {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: none;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover: solo profundidad, nada nuevo */
.product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.65);
}

/* Contenedor de imagen: aire real */
.product-card-premium .product-image,
.product-card-premium .image-container {
    position: relative;
    padding: 28px 28px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen flotante (CLAVE) */
.product-card-premium img {
    max-height: 240px;
    object-fit: contain;
    filter:
        drop-shadow(0 35px 55px rgba(0,0,0,0.85))
        drop-shadow(0 0 25px rgba(0,255,150,0.12));
    transition: transform .4s ease;
}

/* Micro vida, sin exagerar */
.product-card-premium:hover img {
    transform: translateY(-4px) scale(1.02);
}

/* Info baja un plano visual */
.product-card-premium .product-info,
.product-card-premium .info {
    padding: 12px 20px 20px;
}

/* Badges: existen, no compiten */
.product-card-premium .badge,
.product-card-premium .stock-badge {
    transform: scale(0.9);
    opacity: 0.85;
}

/* Precio y acciones no pisan la imagen */
.product-card-premium .price,
.product-card-premium .actions {
    margin-top: 10px;
}


/* =====================================================
   PRODUCT IMAGE — AURA PREMIUM (PNG SIN FONDO)
   ===================================================== */

/* Contenedor de imagen: sin caja perceptible */
.product-card-premium .product-image,
.product-card-premium .image-container {
    position: relative;
    padding: 28px 22px 10px;
    background: none;
}

/* Aura ambiental detrás del PNG */
.product-card-premium .product-image::before,
.product-card-premium .image-container::before {
    content: "";
    position: absolute;
    inset: 10% 10% 20%;
    background: radial-gradient(
        circle,
        rgba(0,255,150,0.18),
        rgba(0,255,150,0.08),
        transparent 70%
    );
    filter: blur(35px);
    z-index: 0;
}

/* Imagen como objeto */
.product-card-premium img {
    position: relative;
    z-index: 1;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 30px 55px rgba(0,0,0,0.85));
}

/* =====================================================
   DISOLVER CAJA + AURA VERDE SUAVE (PREMIUM)
   ===================================================== */

/* Contenedor de imagen: deja de leerse como plano */
.product-card-premium .product-image,
.product-card-premium .image-container {
    position: relative;
    padding: 30px 22px 14px;
    background: none;
    isolation: isolate;
}

/* Fade oscuro + verde detrás del producto */
.product-card-premium .product-image::before,
.product-card-premium .image-container::before {
    content: "";
    position: absolute;
    inset: -10% -10% 10%;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 255, 150, 0.22),
            rgba(0, 255, 150, 0.10),
            rgba(0, 0, 0, 0.55) 65%,
            rgba(0, 0, 0, 0.85) 100%
        );
    filter: blur(40px);
    z-index: 0;
}

/* Imagen: objeto integrado, no recortado */
.product-card-premium img {
    position: relative;
    z-index: 1;
    max-height: 240px;
    object-fit: contain;

    /* Esto es CLAVE para que el fondo blanco no "grite" */
    mix-blend-mode: normal;
    filter:
        drop-shadow(0 28px 50px rgba(0,0,0,0.85));
}


/* ========================================
   RESPONSIVE CART - MOBILE OPTIMIZADO
   ======================================== */

@media (max-width: 768px) {
    /* Modal alineado abajo */
    .cart-modal {
        align-items: flex-end;
        justify-content: center;
    }

    /* Contenedor que sube desde abajo */
    .cart-content {
        width: 100%;
        max-width: 100%;
        height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        /* Mantiene gradiente premium */
        background: linear-gradient(180deg, #111, #0c0c0c);
    }

    .cart-modal.active .cart-content {
        transform: translateY(0);
    }

    /* Header sticky */
    .cart-header {
        padding: 24px 20px;
        position: sticky;
        top: 0;
        z-index: 10;
        /* Gradiente para que se vea bien sticky */
        background: linear-gradient(180deg, #111 0%, rgba(17,17,17,0.98) 100%);
        backdrop-filter: blur(10px);
    }

    .cart-header h2 {
        font-size: 1.4rem;
    }

    .close-cart {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    /* Body scrolleable */
    .cart-body {
        padding: 16px;
        overflow-y: auto;
    }

    /* Footer sticky abajo */
    .cart-footer {
        padding: 24px 20px;
        position: sticky;
        bottom: 0;
        z-index: 10;
        /* Gradiente invertido para footer */
        background: linear-gradient(180deg, rgba(5,5,5,0.95), rgba(5,5,5,0.98));
        backdrop-filter: blur(10px);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .cart-total {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .total-amount {
        font-size: 1.8rem;
    }

    .checkout-btn {
        padding: 16px;
        font-size: 1rem;
    }

    /* Empty state */
    .empty-cart {
        padding: 60px 20px;
    }

    .empty-cart i {
        font-size: 4rem;
    }

    .empty-cart p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes para móviles pequeños */
    .cart-content {
        height: 95vh;
        border-radius: 16px 16px 0 0;
    }

    .cart-header {
        padding: 20px 16px;
    }

    .cart-header h2 {
        font-size: 1.3rem;
    }

    .close-cart {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .cart-body {
        padding: 14px;
    }

    .cart-footer {
        padding: 20px 16px;
    }

    .cart-total {
        font-size: 1rem;
    }

    .total-amount {
        font-size: 1.6rem;
    }

    .checkout-btn {
        padding: 15px;
        font-size: 0.95rem;
    }

    .empty-cart {
        padding: 50px 16px;
    }

    .empty-cart i {
        font-size: 3.5rem;
    }

    .empty-cart p {
        font-size: 1rem;
    }
}


/* ===== TOAST NOTIFICATIONS ===== */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #00ff9c, #00cc7a);
    color: #000;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(0, 255, 156, 0.5);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 80px;
        right: 15px;
        left: 15px;
        text-align: center;
        justify-content: center;
    }
}

/* ===== PRODUCTOS AGOTADOS ===== */
.product-image-container.out-of-stock {
    position: relative;
}

.product-image-container.out-of-stock::after {
    content: 'AGOTADO';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4444;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.product-image-container.out-of-stock img {
    filter: grayscale(100%) opacity(0.4);
}

.btn-cart-premium:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #333 !important;
    pointer-events: none;
}

/* ===== BOTÓN FAVORITOS ===== */
.btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-favorite:hover {
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-favorite.active {
    background: linear-gradient(135deg, #ff0844, #ffb199);
    color: #fff;
    border-color: #ff0844;
    animation: heartPop 0.3s ease;
}

.btn-favorite.active:hover {
    background: linear-gradient(135deg, #ff0844, #ff6b9d);
    transform: scale(1.15);
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .btn-favorite {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
}


/* ===== CONTADOR DE FAVORITOS ===== */
.fav-count {
    display: inline-block;
    background: linear-gradient(135deg, #ff0844, #ffb199);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 4px;
    min-width: 20px;
    text-align: center;
}

.filter-btn[data-category="favorites"].active .fav-count {
    background: #000;
}

/* ========================================
   AURA VERDE PERMANENTE EN IMÁGENES
   ======================================== */

/* Contenedor de imagen */
.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* ✨ AURA VERDE SUTIL PERMANENTE */
.product-image-container::before {
    content: '';
    position: absolute;
    inset: -20px; /* Se extiende más allá del contenedor */
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 156, 0.15) 0%,   /* Verde neón sutil en el centro */
        rgba(0, 255, 156, 0.08) 30%,  /* Degradado medio */
        transparent 70%                /* Se desvanece suavemente */
    );
    opacity: 1; /* ✅ SIEMPRE VISIBLE */
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(8px); /* Efecto glow suave */
}

/* Al hacer hover, el aura se intensifica */
.product-card-premium:hover .product-image-container::before {
    opacity: 1.5; /* Más intenso */
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 156, 0.25) 0%,
        rgba(0, 255, 156, 0.15) 30%,
        transparent 70%
    );
}

/* Imagen del producto */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    
    /* ✨ SOMBRA VERDE PERMANENTE */
    filter: 
        drop-shadow(0 0 15px rgba(0, 255, 156, 0.3))
        drop-shadow(0 8px 20px rgba(0, 255, 156, 0.15));
}

/* Al hacer hover, la imagen y sombra se intensifican */
.product-card-premium:hover .product-img {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 0 25px rgba(0, 255, 156, 0.5))
        drop-shadow(0 12px 30px rgba(0, 255, 156, 0.3));
}

/* ========================================
   VERSIÓN EXTRA INTENSA (OPCIONAL)
   ======================================== */
/*
Si quieres un glow MÁS FUERTE, usa esto en lugar del código anterior:

.product-image-container::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 156, 0.25) 0%,
        rgba(0, 255, 156, 0.15) 30%,
        transparent 70%
    );
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(12px);
}

.product-img {
    filter: 
        drop-shadow(0 0 20px rgba(0, 255, 156, 0.4))
        drop-shadow(0 0 40px rgba(0, 255, 156, 0.2))
        drop-shadow(0 8px 20px rgba(0, 255, 156, 0.15));
}
*/

/* ========================================
   PARA IMÁGENES CON FONDO BLANCO
   ======================================== */
/* Si tus imágenes temporales tienen fondo blanco, esto lo oculta: */

.product-img {
    /* Mezcla el blanco con el fondo oscuro */
    mix-blend-mode: screen;
    /* O usa esto para hacerlo más sutil: */
    /* mix-blend-mode: lighten; */
}

/* Si el mix-blend-mode afecta demasiado las imágenes PNG sin fondo,
   puedes aplicarlo solo a imágenes específicas agregando una clase */

/* Ejemplo de uso selectivo: */
.product-img.has-white-bg {
    mix-blend-mode: screen;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .product-image-container {
        padding: 15px;
    }
    
    .product-image-container::before {
        inset: -15px;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        padding: 12px;
    }
    
    .product-image-container::before {
        inset: -12px;
    }
}

/* ========================================
   AGE VERIFICATION PREMIUM - SPLIT SCREEN
   Agregar al final de style.css
   ======================================== */

/* ===== CONTENEDOR PRINCIPAL ===== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    background: #0a0a0a;
    overflow: hidden;
}

/* ===== LADO IZQUIERDO: IMAGEN ===== */
.age-gate-left {
    display: none; /* Oculto en móvil */
    position: relative;
    width: 50%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.age-gate-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1);
}

.age-gate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.2) 40%,
        transparent 100%
    );
    z-index: 1;
}

.age-gate-branding {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 4rem;
}

/* Logo superior izquierdo */
.age-gate-logo-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.age-gate-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.age-gate-brand {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: white;
}

/* Tagline inferior */
.age-gate-tagline {
    max-width: 28rem;
}

.age-gate-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(0, 255, 156, 0.6);
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-gate-headline {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.age-gate-italic {
    font-style: italic;
}

.age-gate-line {
    width: 3rem;
    height: 1px;
    background: var(--neon);
}

/* ===== LADO DERECHO: FORMULARIO ===== */
.age-gate-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 2rem 1.5rem;
    position: relative;
    overflow-y: auto;
}

.age-gate-form-container {
    width: 100%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Logo móvil (solo visible en mobile) */
.age-gate-logo-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Header */
.age-gate-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.age-gate-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 255, 156, 0.7);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.age-gate-badge i {
    font-size: 0.875rem;
}

.age-gate-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #fff;
}

.age-gate-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 26rem;
}

/* Formulario */
.age-gate-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Selectores de fecha */
.age-gate-date-selectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.age-gate-select-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.age-gate-select-group label {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.age-gate-select-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem;
    color: white;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' opacity='0.4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

.age-gate-select-group select:focus {
    outline: none;
    border-color: var(--neon);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 255, 156, 0.1);
}

.age-gate-select-group select option {
    background: #1a1a1a;
    color: white;
}

/* Checkbox recordar */
.age-gate-remember {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.age-gate-remember input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.age-gate-remember input[type="checkbox"]:checked {
    background: var(--neon);
    border-color: var(--neon);
}

.age-gate-remember input[type="checkbox"]:checked::after {
    content: '✓';
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
}

.age-gate-remember label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
}

/* Botón submit */
.age-gate-submit {
    width: 100%;
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    font-weight: 500;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.age-gate-submit:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 156, 0.3);
}

.age-gate-submit:active {
    transform: translateY(0);
}

.age-gate-submit i {
    font-size: 0.875rem;
}

/* Footer legal */
.age-gate-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.age-gate-legal {
    text-align: center;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    font-weight: 300;
}

.age-gate-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.age-gate-legal a:hover {
    color: var(--neon);
    text-decoration-color: var(--neon);
}

.age-gate-languages {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.age-gate-languages button {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.age-gate-languages button:hover {
    color: var(--neon);
}

/* Marca de agua */
.age-gate-watermark {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    user-select: none;
}

/* ===== RESPONSIVE ===== */

/* Tablet y Desktop */
@media (min-width: 1024px) {
    .age-gate-left {
        display: block;
    }

    .age-gate-logo-mobile {
        display: none;
    }

    .age-gate-right {
        width: 50%;
        padding: 3rem;
    }

    .age-gate-watermark {
        bottom: 3rem;
        right: 3rem;
    }
}

/* Mobile pequeño */
@media (max-width: 640px) {
    .age-gate-right {
        padding: 1.5rem 1rem;
    }

    .age-gate-form-container {
        gap: 2rem;
    }

    .age-gate-title {
        font-size: 1.75rem;
    }

    .age-gate-description {
        font-size: 0.8125rem;
    }

    .age-gate-watermark {
        bottom: 2rem;
        right: 2rem;
        font-size: 4rem;
    }

    .age-gate-date-selectors {
        gap: 0.5rem;
    }

    .age-gate-select-group select {
        font-size: 0.8125rem;
        padding: 0.625rem;
    }
}

/* Ocultar cuando está verificado */
.age-gate.verified {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* ========================================
   HERO SECTION - RESPONSIVE PREMIUM
   Agregar al FINAL de style.css (después del age verification)
   ======================================== */

/* ===== TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .hero-split {
        padding: 40px 40px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 420px;
    }
}

/* ===== MOBILE LANDSCAPE & TABLET PEQUEÑO (481px - 768px) ===== */
@media (max-width: 768px) {
    .hero-split {
        /* Cambiar de grid a stack vertical */
        grid-template-columns: 1fr;
        padding: 30px 24px;
        gap: 30px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-text {
        /* Centrar texto en mobile */
        align-items: center;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        letter-spacing: -1.5px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        margin-top: 16px;
    }

    .hero-btn {
        margin-top: 28px;
        padding: 14px 32px;
        font-size: 0.9rem;
        /* Centrar botón en mobile */
        align-self: center;
        /* Mejor área de touch */
        min-height: 48px;
    }

    /* Redes sociales centradas */
    .social-icons {
        justify-content: center;
        margin-top: 28px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Imagen más pequeña en mobile */
    .hero-image {
        order: -1; /* Mover imagen arriba del texto */
        padding: 20px 0;
    }

    .hero-image img {
        max-width: 340px;
    }
}

/* ===== MOBILE PEQUEÑO (<481px) ===== */
@media (max-width: 480px) {
    .hero-split {
        padding: 24px 16px;
        gap: 24px;
        padding-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 2.75rem;
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-top: 14px;
        padding: 0 10px;
    }

    .hero-btn {
        margin-top: 24px;
        padding: 13px 28px;
        font-size: 0.85rem;
        border-radius: 25px;
        /* Touch optimizado */
        min-height: 46px;
    }

    /* Redes sociales más compactas */
    .social-icons {
        gap: 12px;
        margin-top: 24px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Imagen optimizada para mobile pequeño */
    .hero-image {
        padding: 16px 0;
    }

    .hero-image img {
        max-width: 280px;
    }
}

/* ===== MOBILE EXTRA PEQUEÑO (<360px) ===== */
@media (max-width: 360px) {
    .hero-split {
        padding: 20px 12px;
        padding-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text p {
        font-size: 0.8125rem;
        padding: 0 5px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .hero-image img {
        max-width: 240px;
    }
}


/* ========================================
   BRANDS CAROUSEL - RESPONSIVE
   (Si lo tienes, agregar esto también)
   ======================================== */
@media (max-width: 768px) {
    .brands-carousel {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .brands-carousel {
        padding: 25px 0;
    }
}


/* ========================================
   HERO SECTION - MEJORAS PREMIUM OPCIONALES
   (Solo si quieres añadir micro-interacciones extra)
   ======================================== */

/* ===== ANIMACIÓN DE ENTRADA SUAVE ===== */
.hero-text h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.hero-text p {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-btn {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.social-icons {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-image {
    animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== EFECTO GLOW EN H1 AL HOVER ===== */
.hero-text h1 {
    cursor: default;
    transition: filter 0.4s ease;
}

.hero-text h1:hover {
    filter: 
        drop-shadow(0 4px 20px rgba(0, 255, 156, 0.15))
        drop-shadow(0 0 40px rgba(0, 255, 156, 0.2));
}

/* ===== BOTÓN CON EFECTO RIPPLE ===== */
.hero-btn {
    position: relative;
    overflow: hidden;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:active::after {
    width: 300px;
    height: 300px;
}

/* ===== ICONOS SOCIALES CON ROTACIÓN SUTIL ===== */
.social-icon {
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 0.3;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== EFECTO PARALLAX SUTIL EN LA IMAGEN ===== */
/* (Requiere un pequeño script JS que te puedo dar si quieres) */
.hero-image img {
    transition: transform 0.3s ease-out;
}

/* Esto lo activa el JS al mover el mouse */
.hero-image.parallax-active img {
    transform: translate(var(--mouse-x), var(--mouse-y)) scale(1.02);
}

/* ===== RESPLANDOR PULSANTE EN EL BOTÓN ===== */
@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(0,0,0,0.3),
            0 0 30px rgba(0,255,156,0.4);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(0,0,0,0.3),
            0 0 40px rgba(0,255,156,0.6);
    }
}

.hero-btn {
    animation: buttonGlow 3s ease-in-out infinite;
}

.hero-btn:hover {
    animation: none; /* Desactiva el pulso al hacer hover */
}

/* ===== CURSOR PERSONALIZADO EN ELEMENTOS INTERACTIVOS ===== */
.hero-btn,
.social-icon {
    cursor: pointer;
}

.hero-text h1 {
    cursor: default;
}

/* ===== DESACTIVAR ANIMACIONES EN MOBILE PARA MEJOR PERFORMANCE ===== */
@media (max-width: 768px) {
    .hero-text h1,
    .hero-text p,
    .hero-btn,
    .social-icons,
    .hero-image {
        animation: none;
    }

    .hero-btn {
        animation: none;
    }

    .social-icon::before {
        display: none;
    }
}

/* ===== ACCESSIBILITY: REDUCIR MOVIMIENTO SI EL USUARIO LO PREFIERE ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-text h1,
    .hero-text p,
    .hero-btn,
    .social-icons,
    .hero-image {
        animation: none !important;
    }

    .hero-btn {
        animation: none !important;
    }

    .social-icon:hover::before {
        animation: none !important;
    }
}

/* ========================================
   PRODUCTOS POR SECCIÓN - CSS
   Agregar al FINAL de css/style.css
   ======================================== */

/* ===== CONTENEDOR DE SECCIÓN ===== */
.products-section-group {
    margin-bottom: 60px;
    width: 100%;
}

.products-section-group:last-child {
    margin-bottom: 0;
}

/* ===== TÍTULO DE SECCIÓN ===== */
.section-category-title {
    /* Alineado con product cards */
    background: linear-gradient(180deg, #111, #0c0c0c);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px 32px;
    margin: 0 0 30px 0; /* Sin margen lateral */
    position: relative;
    overflow: hidden;
    
    display: flex;
    align-items: center;
    gap: 16px;
    
    /* Sombra sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay verde sutil (igual que cards) */
.section-category-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 156, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-category-title:hover::before {
    opacity: 1;
}

.section-category-title:hover {
    border-color: rgba(0, 255, 156, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ===== ÍCONO DE CATEGORÍA ===== */
.section-category-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 255, 156, 0.1);
    border: 1px solid rgba(0, 255, 156, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.section-category-title:hover .section-category-icon {
    background: rgba(0, 255, 156, 0.15);
    border-color: rgba(0, 255, 156, 0.4);
    transform: scale(1.05);
}

/* ===== TEXTO DEL TÍTULO ===== */
.section-category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ===== CONTADOR DE PRODUCTOS ===== */
.section-category-count {
    margin-left: auto;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.section-category-title:hover .section-category-count {
    background: rgba(0, 255, 156, 0.08);
    border-color: rgba(0, 255, 156, 0.2);
    color: var(--neon);
}

/* ===== GRID DE PRODUCTOS (se mantiene igual) ===== */
.products-section-group .products-grid {
    /* Hereda los estilos del grid principal */
}


/* ========================================
   RESPONSIVE - SECCIONES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section-category-title {
        margin: 0 0 25px 0;
        padding: 20px 28px;
    }

    .section-category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .section-category-name {
        font-size: 1.6rem;
    }

    .products-section-group {
        margin-bottom: 50px;
    }
    
    /* Info Section Tablet */
    .info-section {
        padding: 80px 40px;
    }
    
    .info-content {
        gap: 25px;
    }
    
    .info-card {
        padding: 45px 35px;
    }
    
    .info-card i {
        width: 75px;
        height: 75px;
        font-size: 2.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-category-title {
        margin: 0 0 20px 0;
        padding: 18px 20px;
        border-radius: 14px;
    }

    .section-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .section-category-name {
        font-size: 1.4rem;
    }

    .section-category-count {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .products-section-group {
        margin-bottom: 40px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .section-category-title {
        margin: 0 0 16px 0;
        padding: 16px 16px;
        border-radius: 12px;
        gap: 12px;
    }

    .section-category-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .section-category-name {
        font-size: 1.2rem;
    }

    .section-category-count {
        display: none; /* Ocultar en mobile pequeño para ahorrar espacio */
    }

    .products-section-group {
        margin-bottom: 35px;
    }
    
    /* Info Section Mobile Pequeño */
    .info-section {
        padding: 50px 10px;
    }
    
    .info-content {
        gap: 20px;
    }
    
    .info-card {
        padding: 35px 25px;
        border-radius: 16px;
    }
    
    .info-card i {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 20px;
        border-radius: 14px;
    }
    
    .info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
}