/* ===== Variables Premium y Reset ===== */
:root {
    /* Paleta HSL Ultra-Profunda (Sleek Dark Mode) */
    --color-bg-dark: hsl(226, 45%, 7%);
    --color-bg-medium: hsl(222, 47%, 11%);
    --color-bg-light: hsl(220, 35%, 16%);
    --color-bg-card: hsl(220, 39%, 14%);
    
    /* Acentos Neón Premium */
    --color-accent-primary: hsl(212, 100%, 65%);   /* Azul Eléctrico */
    --color-accent-secondary: hsl(252, 100%, 68%); /* Púrpura Neón */
    --color-accent-pink: hsl(340, 100%, 71%);      /* Rosa Viva */
    --color-accent-cyan: hsl(190, 100%, 50%);      /* Cian Brillante */
    --color-accent-gold: hsl(45, 100%, 50%);       /* Oro Ciberpunk */
    
    /* Tipografía Moderna */
    --color-text-primary: hsl(220, 100%, 95%);
    --color-text-secondary: hsl(220, 20%, 74%);
    --color-text-muted: hsl(220, 20%, 50%);
    
    /* Gradientes Dinámicos */
    --gradient-primary: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-accent-pink) 0%, var(--color-accent-cyan) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(226, 45%, 5%) 0%, hsl(252, 50%, 15%) 50%, hsl(226, 45%, 5%) 100%);
    --gradient-glass: linear-gradient(135deg, hsla(220, 100%, 95%, 0.05), hsla(220, 100%, 95%, 0.01));
    
    /* Fuentes y Animaciones */
    --font-display: 'Orbitron', 'Cinzel', serif;
    --font-body: 'Inter', 'Raleway', sans-serif;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bouncy: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Sombras Elevadas y Cristalismo */
    --shadow-glow: 0 8px 32px hsla(212, 100%, 65%, 0.4);
    --shadow-card: 0 20px 40px hsla(0, 0%, 0%, 0.6);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --border-glass: 1px solid hsla(220, 100%, 95%, 0.1);
}

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

/* ===== Accesibilidad - Screen Reader Only ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content link para navegación por teclado (Accesibilidad) */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--color-accent-primary);
    color: var(--color-bg-dark);
    padding: 10px 20px;
    z-index: 10001; /* Por encima de la cabecera */
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(74, 158, 255, 0.4);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skip-to-content:focus {
    transform: translateY(100px);
    outline: none;
}

/* Focus visible para navegación por teclado */
:focus-visible {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(226, 45%, 7%, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: var(--border-glass);
    box-shadow: var(--shadow-glass);
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Alineación a los extremos */
    gap: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.brand-logo-img {
    height: 55px; 
    width: 55px; /* Enforced 1:1 ratio for perfect circle */
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 12px rgba(74, 158, 255, 0.4));
    position: relative;
    transform-origin: center;
    border: 2px solid rgba(74, 158, 255, 0.4);
    background: var(--color-bg-card); /* Fallback background for transparency */
}

.brand-logo-img:hover {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 0 25px rgba(74, 158, 255, 0.8)) drop-shadow(0 0 45px rgba(124, 92, 255, 0.6));
    border-color: rgba(74, 158, 255, 0.8);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.3) inset;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: var(--gradient-glass);
    border: var(--border-glass);
    box-shadow: inset 0 0 20px hsla(212, 100%, 65%, 0.05);
    border-radius: 50px;
    padding: 0.3rem 0.6rem;
    transition: all var(--transition-smooth);
}

.nav-menu:has(.search-input:focus) {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.2);
    background: rgba(20, 30, 50, 0.8);
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--color-text-secondary);
    background: transparent;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nav-link:hover, .dropdown:hover .nav-link {
    color: var(--color-text-primary);
    background: rgba(74, 158, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(74, 158, 255, 0.05);
    text-shadow: 0 0 8px rgba(74, 158, 255, 0.4);
    transform: none;
}

/* ===== Dropdown Menu ===== */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity var(--transition-bouncy), transform var(--transition-bouncy);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    background: hsla(222, 47%, 11%, 0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    min-width: 240px;
    border: var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    z-index: 1001;
    overflow: hidden;
    padding: 0.5rem 0;
    margin-top: 10px;
}

.dropdown-content.active,
.user-dropdown.active {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.user-dropdown.active {
    transform: translateX(0) translateY(0) !important;
}

/* Invisible bridge to prevent hover loss */
.dropdown-content::after, .user-dropdown::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* Arrow for dropdown */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(16, 24, 41, 0.98);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    border-left: 1px solid rgba(74, 158, 255, 0.2);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    transition: visibility 0s linear 0s, opacity var(--transition-bouncy), transform var(--transition-bouncy);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.drop-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.drop-nsfw { color: #f43f5e; }
.drop-anime { color: #a855f7; }
.drop-scifi { color: #3b82f6; }
.drop-superheroes { color: #ef4444; }
.drop-videojuegos { color: #22c55e; }
.drop-artistas { color: #eab308; }

.dropdown-item:hover {
    background: rgba(74, 158, 255, 0.1);
    color: var(--color-accent-primary);
    border-left-color: var(--color-accent-primary);
    padding-left: 1.8rem;
}

.user-dropdown {
    left: auto !important;
    right: -25px !important;
    transform: translateX(0) translateY(-10px) !important;
}

.dropdown:hover .user-dropdown {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
    transition: visibility 0s, opacity 0.3s ease, transform 0.3s ease !important; /* Forces instant open regardless of base stay-open delay */
}

.user-dropdown::before {
    left: auto !important;
    right: 55px !important; /* Move pointer right to match new box overlap */
    transform: rotate(45deg) !important;
}

.user-dropdown-item {
    width: 100%;
    box-sizing: border-box;
    border-left: 3px solid transparent !important;
    transition: all 0.3s ease;
}

.user-dropdown-item:hover {
    padding-left: 1.5rem !important; /* Slight satisfying indent */
    border-left-color: var(--color-accent-primary) !important;
    background: rgba(74, 158, 255, 0.15) !important;
}

.logout-item:hover, .dropdown-item.logout-item:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
    border-left-color: #ef4444 !important;
    box-shadow: inset 0 0 15px rgba(239, 68, 68, 0.1);
}

.drop-artistas { color: #eab308; }

.search-bar {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0.4rem 0.5rem 0.4rem 1rem;
    border: none;
    border-left: 1px solid rgba(74, 158, 255, 0.2);
    flex: 1;
    max-width: 300px;
    margin: 0 0 0 0.5rem;
    transition: all var(--transition-smooth);
}

.search-bar:focus-within {
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: none;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    width: 100%;
    font-size: 0.9rem;
}

.search-input::placeholder {
    color: var(--color-text-muted);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent-primary);
}

.cart-btn {
    position: relative;
    background: var(--color-bg-light);
    border: 2px solid var(--color-accent-primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(124, 92, 255, 0.2);
}

.cart-btn svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent-primary);
    transition: transform 0.3s ease;
}

.cart-btn:hover {
    background: var(--color-accent-primary);
    box-shadow: 0 0 20px var(--color-accent-primary), 0 0 40px rgba(124, 92, 255, 0.4);
    transform: translateY(-2px);
}

.cart-btn:hover svg {
    color: var(--color-bg-dark);
    transform: scale(1.1);
}

/* Efecto de "Bump" al añadir */
.cart-btn.cart-bump {
    animation: cartBump 0.5s ease-out;
}

@keyframes cartBump {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); box-shadow: 0 0 30px var(--color-accent-primary); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff0055, #ff4757);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-dark);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
    z-index: 5;
}

/* Ajuste de Posicionamiento en Header */
.header-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart {
    margin-left: 0;
}

.auth-buttons, .user-menu {
    margin-left: 0;
}

/* Header Actions - Contenedor Unificado a la Derecha */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    margin-left: auto !important;
    flex-direction: row !important; /* Asegurar orden horizontal natural */
}

/* Reset de margen y control de orden absoluto para todos los hijos directos */
.header-actions > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    display: flex; /* Permitir que JS controle la visibilidad con display: none */
    align-items: center !important;
}

.header-actions .wishlist { 
    display: none !important; 
}

.header-actions .cart { order: 1 !important; }
.header-actions .auth-buttons, 
.header-actions .user-menu { order: 2 !important; }

/* Separación y Estilo de Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 0.5rem; /* Pegados */
    align-items: center;
    margin-left: 1rem;
}

.auth-btn {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(74, 158, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    cursor: pointer;
}

.auth-btn:hover {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.2);
    transform: translateY(-2px);
}

/* Control de visibilidad por clase en el Body - BLINDAJE v16.3.15 */
body.user-logged-in #auth-buttons {
    display: none !important;
}
body.user-logged-in #user-menu {
    display: flex !important;
}

body.user-logged-out #auth-buttons {
    display: flex !important;
}
body.user-logged-out #user-menu {
    display: none !important;
}

/* Wishlist Button in Header */
.wishlist-btn {
    position: relative !important;
    background: var(--color-bg-light);
    border: 2px solid #ef4444;
    border-radius: 50%;
    width: 42px; /* Ajustado para consistencia con botones de 48px pero más compacto */
    height: 42px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.wishlist-btn svg {
    width: 22px;
    height: 22px;
    color: #ef4444;
}

.wishlist-btn:hover {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.wishlist-btn:hover svg {
    color: white;
}

.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist Button on Product Cards */
.product-card .wishlist-add-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10, 10, 20, 0.8);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-card:hover .wishlist-add-btn {
    opacity: 1;
}

.product-card .wishlist-add-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.product-card .wishlist-add-btn:hover {
    background: rgba(239, 68, 68, 0.9);
}

.product-card .wishlist-add-btn:hover svg,
.product-card .wishlist-add-btn.active svg {
    color: white;
    fill: #ef4444;
}

.product-card .wishlist-add-btn.active {
    background: rgba(239, 68, 68, 0.9);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-accent-primary);
    transition: all var(--transition-smooth);
}

/* ===== Hero Section ===== */
/* ===== Hero Slider Dinámico (v18.0) ===== */
@keyframes galaxyRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes starsTwinkle {
    0% { opacity: 0.4; }
    50% { opacity: 0.9; }
    100% { opacity: 0.4; }
}

/* Shimmer Loading Effect */
.shimmer-placeholder {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-light);
}

.shimmer-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes nebulaPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
}

/* ===== Hero Section ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 800px;
    padding-top: 90px;
    width: 100%;
    background: var(--color-bg-dark); /* Fondo HSL integrado */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* =========================================
   VIDEO DE FONDO - GALAXIA PLANETA
   ========================================= */

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.nebula-bg {
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(74, 158, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(124, 92, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 100, 0.05) 0%, transparent 50%);
    animation: nebulaDrift 30s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes nebulaDrift {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.1); }
}

#galaxy-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    opacity: 0.9;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 9, 19, 0.2) 0%, rgba(6, 9, 19, 0.3) 100%);
    z-index: 3;
    pointer-events: none;
}

   /* === CAROUSEL 3D RING LAYOUT - V2 PREMIUM === */
.hero-slider.hero-ring-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 150px;
    padding-bottom: 50px;
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Efecto de partículas eliminado - usando video de fondo */

.hero-global-intro {
    text-align: center;
    max-width: 900px;
    margin-bottom: 2.5rem;
    z-index: 40; /* Arriba del carrusel para que no se superpongan indebidamente */
    padding: 0 1rem;
    position: relative;
    flex-shrink: 0; /* Previene compresión */
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
}

.gradient-primary-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #f0f4ff;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: rgba(16, 24, 41, 0.6);
    border: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 20px rgba(74, 158, 255, 0.05);
    font-weight: 500;
}

.hero-global-action {
    margin-top: 5rem;
    position: relative;
    z-index: 5;
}

.btn-get-started {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 3.5rem !important;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--color-bg-dark) !important;
    box-shadow: 0 10px 30px hsla(212, 100%, 65%, 0.4);
    transition: all var(--transition-bouncy);
    text-decoration: none !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-get-started::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-get-started:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px hsla(212, 100%, 65%, 0.6), 0 0 20px hsla(252, 100%, 68%, 0.4);
}

.btn-get-started:hover::after {
    transform: rotate(45deg) translateX(100%);
}

#hero-slider-container.ring-centered {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 480px;
    min-height: 480px;
    flex-shrink: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
    perspective: 2000px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

#hero-slider-container.ring-centered .hero-slide {
    position: absolute;
    width: 260px;
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.1);
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(145deg, #0f1623 0%, #0a0e1a 100%);
    border: 1px solid rgba(124, 92, 255, 0.1);
    cursor: pointer;
    transform-style: preserve-3d;
}

/* Efecto de brillo en el borde */
#hero-slider-container.ring-centered .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.3), rgba(74, 158, 255, 0.1), rgba(124, 92, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#hero-slider-container.ring-centered .hero-slide.active::before {
    opacity: 1;
}

/* Reflejo de luz */
#hero-slider-container.ring-centered .hero-slide::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

#hero-slider-container.ring-centered .hero-slide:hover::after {
    transform: rotate(45deg) translateX(100%);
}

#hero-slider-container.ring-centered .hero-slide img.ring-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transform: translateZ(0); /* Force GPU acceleration and better anti-aliasing */
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.9) contrast(1.05);
}

/* Efecto de zoom suave en hover */
#hero-slider-container.ring-centered .hero-slide:hover img.ring-img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.ring-info {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 3rem 1.25rem 1.25rem 1.25rem;
    background: linear-gradient(to top, 
        rgba(6, 9, 19, 0.98) 0%, 
        rgba(6, 9, 19, 0.85) 40%, 
        rgba(6, 9, 19, 0.4) 70%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ring-info h3 { 
    font-size: 1rem; 
    color: white; 
    margin: 0 0 0.4rem 0; 
    font-family: 'Orbitron', sans-serif; 
    text-align: center; 
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.ring-info .ring-price { 
    background: linear-gradient(135deg, #4a9eff, #7c5cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; 
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
}

#hero-slider-container.ring-centered .hero-slide.active:hover img.ring-img {
    transform: scale(1.05);
}

#hero-slider-container.ring-centered .hero-slide.active:hover .ring-info {
    bottom: 0;
}

/* === ACTIVE STATE - Premium V2 === */
#hero-slider-container.ring-centered .hero-slide.active {
    opacity: 1;
    transform: translateZ(50px) translateY(0) rotateY(0deg) scale(1.25);
    z-index: 20;
    pointer-events: auto;
    border-color: rgba(124, 92, 255, 0.4);
    box-shadow: 
        0 35px 70px rgba(0,0,0,0.7),
        0 0 50px rgba(124, 92, 255, 0.25),
        0 0 100px rgba(124, 92, 255, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    width: 300px;
    height: 420px;
    animation: cardActivate 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardActivate {
    0% { 
        filter: brightness(0.8);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    50% {
        filter: brightness(1.15);
    }
    100% { 
        filter: brightness(1);
        box-shadow: 
            0 35px 70px rgba(0,0,0,0.7),
            0 0 50px rgba(124, 92, 255, 0.25),
            0 0 100px rgba(124, 92, 255, 0.1);
    }
}

/* === SIDE CARDS - Premium V2 === */
/* Nivel 1 - Cercanas */
#hero-slider-container.ring-centered .hero-slide.prev-1 { 
    opacity: 0.9; 
    transform: translateX(-340px) translateZ(60px) rotateY(25deg) scale(0.95); 
    z-index: 15; 
    pointer-events: auto;
    filter: brightness(0.85);
}
#hero-slider-container.ring-centered .hero-slide.next-1 { 
    opacity: 0.9; 
    transform: translateX(340px) translateZ(60px) rotateY(-25deg) scale(0.95); 
    z-index: 15; 
    pointer-events: auto;
    filter: brightness(0.85);
}

/* Nivel 2 - Medias */
#hero-slider-container.ring-centered .hero-slide.prev-2 { 
    opacity: 0.65; 
    transform: translateX(-600px) translateZ(-120px) rotateY(40deg) scale(0.88); 
    z-index: 10; 
    pointer-events: auto;
    filter: brightness(0.7) blur(1px);
}
#hero-slider-container.ring-centered .hero-slide.next-2 { 
    opacity: 0.65; 
    transform: translateX(600px) translateZ(-120px) rotateY(-40deg) scale(0.88); 
    z-index: 10; 
    pointer-events: auto;
    filter: brightness(0.7) blur(1px);
}

/* Nivel 3 - Lejanas */
#hero-slider-container.ring-centered .hero-slide.prev-3 { 
    opacity: 0.35; 
    transform: translateX(-820px) translateZ(-300px) rotateY(50deg) scale(0.8); 
    z-index: 5; 
    pointer-events: auto;
    filter: brightness(0.5) blur(2px);
}
#hero-slider-container.ring-centered .hero-slide.next-3 { 
    opacity: 0.35; 
    transform: translateX(820px) translateZ(-300px) rotateY(-50deg) scale(0.8); 
    z-index: 5; 
    pointer-events: auto;
    filter: brightness(0.5) blur(2px);
}

/* Hover en tarjetas laterales */
#hero-slider-container.ring-centered .hero-slide.prev-1:hover,
#hero-slider-container.ring-centered .hero-slide.next-1:hover {
    opacity: 1;
    filter: brightness(0.95);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(124, 92, 255, 0.15);
}

/* Responsividad general para Mobile */
@media (max-width: 1000px) {
    #hero-slider-container.ring-centered .hero-slide.prev-3,
    #hero-slider-container.ring-centered .hero-slide.next-3 { opacity: 0; visibility: hidden; }
    #hero-slider-container.ring-centered .hero-slide.prev-2 { transform: translateX(-300px) translateZ(-100px) rotateY(35deg); }
    #hero-slider-container.ring-centered .hero-slide.next-2 { transform: translateX(300px) translateZ(-100px) rotateY(-35deg); }
    #hero-slider-container.ring-centered .hero-slide.prev-1 { transform: translateX(-160px) translateZ(50px) rotateY(25deg); }
    #hero-slider-container.ring-centered .hero-slide.next-1 { transform: translateX(160px) translateZ(50px) rotateY(-25deg); }
}

@media (max-width: 700px) {
    #hero-slider-container.ring-centered .hero-slide.prev-2,
    #hero-slider-container.ring-centered .hero-slide.next-2 { opacity: 0; visibility: hidden; }
    #hero-slider-container.ring-centered .hero-slide.active { width: 220px; height: 320px; }
    #hero-slider-container.ring-centered .hero-slide.prev-1 { transform: translateX(-120px) translateZ(-50px) rotateY(25deg); }
    #hero-slider-container.ring-centered .hero-slide.next-1 { transform: translateX(120px) translateZ(-50px) rotateY(-25deg); }
    .hero-main-title { font-size: 2rem; }
}


.hero-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 50;
    padding: 0.75rem 1.25rem;
    background: rgba(6, 9, 19, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(124, 92, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4a9eff, #7c5cff);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.hero-dot.active {
    background: transparent;
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-dot.active::before {
    opacity: 1;
}

.hero-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-text-secondary);
}

.hero-loading-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 40px rgba(74, 158, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(74, 158, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-accent-primary);
}

.btn-secondary:hover {
    background: var(--color-accent-primary);
    color: var(--color-bg-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--color-accent-primary);
    border-bottom: 3px solid var(--color-accent-primary);
    transform: rotate(45deg);
}

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

/* ===== Sections ===== */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Premium Section ===== */
.section-premium {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(74, 158, 255, 0.1);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(124, 92, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ===== Categories Section ===== */
.section-categories {
    background: var(--color-bg-medium);
    position: relative;
}

.section-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
}

.category-card[data-category="heroes"] .category-bg {
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a7a 100%);
}

.category-card[data-category="criaturas"] .category-bg {
    background: linear-gradient(135deg, #2a1a3a 0%, #4a2a6a 100%);
}

.category-card[data-category="villanos"] .category-bg {
    background: linear-gradient(135deg, #3a1a2a 0%, #5a2a3a 100%);
}

.category-card[data-category="dioramas"] .category-bg {
    background: linear-gradient(135deg, #1a3a3a 0%, #2a5a5a 100%);
}

.category-card[data-category="anime"] .category-bg {
    background: linear-gradient(135deg, #3a2a1a 0%, #5a3a2a 100%);
}

.category-card[data-category="scifi"] .category-bg {
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a5a 100%);
}

.category-card[data-category="escenarios"] .category-bg {
    background: linear-gradient(135deg, #2a2a1a 0%, #4a4a2a 100%);
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.category-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ===== Products Section - Poster-Style v15.0 ===== */
.section-products {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
    padding: 6rem 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: hsla(220, 39%, 14%, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid hsla(220, 100%, 95%, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    will-change: transform, box-shadow, background-color;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px hsla(212, 100%, 65%, 0.25);
    border-color: hsla(212, 100%, 65%, 0.4);
    background: hsla(220, 39%, 14%, 0.75);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3; /* Formato Póster Vertical Premium */
    overflow: hidden;
    background: radial-gradient(circle at center, hsla(220, 30%, 15%, 1) 0%, #060913 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    image-rendering: -webkit-optimize-contrast;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mostrar imagen completa sin recortes */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

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

/* Badge Premium con Glassmorphism */
.product-badge, .premium-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: hsla(222, 47%, 11%, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 5;
    border: 1px solid hsla(220, 100%, 95%, 0.15);
    text-transform: uppercase;
}

/* NSFW Badge Especial */
.nsfw-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: hsla(350, 100%, 45%, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 5;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.product-content {
    padding: 1.5rem 1rem 1.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 9, 19, 0.6) 100%);
}

.product-meta {
    margin-bottom: 0.6rem;
}

.product-category-cap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: hsla(212, 100%, 65%, 0.85);
    text-transform: uppercase;
    background: hsla(212, 100%, 65%, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid hsla(212, 100%, 65%, 0.2);
}

.product-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.product-artist {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: hsla(220, 20%, 74%, 0.8);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid hsla(220, 100%, 95%, 0.05);
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-old {
    font-size: 0.8rem;
    color: hsla(220, 20%, 50%, 0.8);
    text-decoration: line-through;
    font-family: 'Inter', sans-serif;
    margin-bottom: -2px;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-accent-primary);
    text-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
    background: rgba(74, 158, 255, 0.12);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(74, 158, 255, 0.25);
    display: inline-block;
}

.btn-add-cart {
    background: hsla(212, 100%, 65%, 0.1);
    border: 1px solid hsla(212, 100%, 65%, 0.2);
    color: hsla(212, 100%, 65%, 0.9);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background: hsla(212, 100%, 65%, 0.9);
    color: #060913;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 20px hsla(212, 100%, 65%, 0.4);
    border-color: transparent;
}


/* ===== More Products Section ===== */
.section-more {
    background: var(--color-bg-dark);
    padding: 4rem 2rem;
}

.more-products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-primary) var(--color-bg-light);
}

.more-products-scroll::-webkit-scrollbar {
    height: 8px;
}

.more-products-scroll::-webkit-scrollbar-track {
    background: var(--color-bg-light);
    border-radius: 4px;
}

.more-products-scroll::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 4px;
}

.mini-product-card {
    flex: 0 0 180px;
    background: var(--color-bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(74, 158, 255, 0.1);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.mini-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.mini-product-name {
    display: block;
    padding: 0.9rem;
    font-size: 0.85rem;
    color: var(--color-text-primary);
    text-align: center;
    font-weight: 500;
}

/* ===== Offers Section ===== */
.section-offers {
    background: linear-gradient(180deg, var(--color-bg-medium) 0%, var(--color-bg-dark) 100%);
    position: relative;
}

.section-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.offers-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.offer-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all var(--transition-smooth);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b9d, #ff4757);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.offer-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-bg-medium), var(--color-bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-model {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    opacity: 0.8;
}

.placeholder-model.dragon {
    background: linear-gradient(135deg, #ff6b9d, #4a9eff);
    animation: pulse 3s infinite;
}

.placeholder-model.knight {
    background: linear-gradient(135deg, #4a9eff, #7c5cff);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: pulse 3s infinite 0.5s;
}

.placeholder-model.castle {
    background: linear-gradient(135deg, #7c5cff, #ff6b9d);
    animation: pulse 3s infinite 1s;
}

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

.offer-info {
    padding: 1.5rem;
}

.offer-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-old {
    color: var(--color-text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-new {
    font-family: var(--font-display);
    font-size: 1.6rem;
    background: linear-gradient(135deg, #4a9eff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-offer {
    width: 100%;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-offer:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

/* ===== Pricing Section ===== */
.section-pricing {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
    position: relative;
}

.section-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-text {
    max-width: 500px;
}

.pricing-features {
    list-style: none;
    margin-top: 2rem;
}

.pricing-features li {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-primary);
    font-weight: 700;
}

.pricing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.treasure-chest {
    position: relative;
    width: 280px;
    height: 220px;
}

.chest-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a7a 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(74, 158, 255, 0.3);
}

.chest-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.5) 0%, transparent 70%);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.coins {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.coin {
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: floatCoin 3s ease-in-out infinite;
}

.coin-1 {
    left: -25px;
    animation-delay: 0s;
}

.coin-2 {
    left: 0;
    animation-delay: 0.3s;
}

.coin-3 {
    left: 25px;
    animation-delay: 0.6s;
}

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

/* ===== Trust Section ===== */
.section-trust {
    background: linear-gradient(180deg, var(--color-bg-medium) 0%, var(--color-bg-dark) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-card);
    border-radius: 20px;
    border: 1px solid rgba(74, 158, 255, 0.1);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    border-color: rgba(74, 158, 255, 0.3);
    transform: translateY(-5px);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(124, 92, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary);
}

.trust-icon svg {
    width: 35px;
    height: 35px;
}

.trust-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ===== Footer ===== */
.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(74, 158, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center; /* Centrado del boton de red social */
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 65px;    /* Aumento de tamaño */
    height: 65px;   /* Aumento de tamaño */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: 2px solid rgba(74, 158, 255, 0.4);
    border-radius: 50%;
    color: var(--color-accent-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.2); /* Brillo base */
}

.social-link svg {
    width: 32px; /* Icono más grande */
    height: 32px;
}

.social-link:hover {
    background: var(--color-accent-primary);
    color: var(--color-bg-dark);
    transform: scale(1.15) translateY(-5px); /* Efecto salto incrementado */
    box-shadow: 0 15px 30px rgba(74, 158, 255, 0.5); /* Brillo extra hover */
}

.footer-links h4 {
    font-family: var(--font-display);
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 158, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-contact {
    margin-top: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.modal-content {
    background: var(--color-bg-card);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(74, 158, 255, 0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-accent-primary);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image {
    height: 400px;
    background: linear-gradient(135deg, var(--color-bg-medium), var(--color-bg-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.modal-details p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-secondary);
}

/* ===== Notification Premium ===== */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(13, 21, 38, 0.95), rgba(23, 33, 58, 0.95));
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: white;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 158, 255, 0.1),
        0 0 40px rgba(74, 158, 255, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    max-width: 450px;
    backdrop-filter: blur(20px);
    animation: notificationSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
               notificationSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) 3.6s forwards;
}

.notification-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a9eff, #7c5cff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.notification-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.notification-message {
    font-size: 0.85rem;
    color: #a8b5cf;
    line-height: 1.4;
}

.notification-close {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #5a6a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Tipos de notificación */
.notification.success .notification-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.notification.error .notification-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.notification.warning .notification-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.notification.info .notification-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

@keyframes notificationSlideIn {
    from { 
        transform: translateX(120%) scale(0.9); 
        opacity: 0;
    }
    to { 
        transform: translateX(0) scale(1); 
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from { 
        transform: translateX(0) scale(1); 
        opacity: 1;
    }
    to { 
        transform: translateX(120%) scale(0.9); 
        opacity: 0;
    }
}

/* Responsive notifications */
@media (max-width: 640px) {
    .notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        min-width: auto;
        max-width: none;
        padding: 1rem 1.4rem;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .pricing-text {
        max-width: 100%;
    }

    .pricing-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .search-bar {
        order: 2;
        max-width: 100%;
        flex: 1;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .categories-grid,
    .offers-carousel,
    .trust-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 250px;
    }

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

    .footer-brand {
        max-width: 100%;
    }

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

    .treasure-chest {
        width: 200px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 1rem;
    }

    .hero {
        padding: 5rem 1rem 3rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== Auth Modal ===== */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-modal-overlay.active {
    display: flex;
}

.auth-modal {
    background: var(--color-bg-card);
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    border: 1px solid rgba(74, 158, 255, 0.2);
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.auth-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-smooth);
}

.auth-close:hover {
    color: var(--color-accent-primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.auth-tab {
    flex: 1;
    padding: 0.8rem;
    background: var(--color-bg-light);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 10px;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.auth-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--color-bg-light);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.2);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.auth-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-submit-btn.loading span {
    display: none;
}

.auth-submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.auth-error {
    color: #ff6b9d;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    display: none;
    text-align: center;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(74, 158, 255, 0.2);
}

.auth-divider span {
    padding: 0 1rem;
}

.social-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--color-bg-light);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.social-btn:hover {
    background: rgba(74, 158, 255, 0.1);
    border-color: var(--color-accent-primary);
}

.google-btn svg {
    flex-shrink: 0;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.auth-footer a {
    color: var(--color-accent-primary);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===== Cart Modal Premium v14.2 ===== */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    z-index: 99999;
    display: none;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(74, 158, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-modal-overlay.active {
    display: flex;
    transform: translateX(0);
}

.cart-modal {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

.cart-modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--color-accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cart-close:hover {
    background: rgba(255, 60, 120, 0.2);
    border-color: #ff3c78;
    color: #ff3c78;
    transform: rotate(90deg);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.8rem;
    scrollbar-width: none;
}

.cart-modal-body::-webkit-scrollbar {
    width: 4px;
}

.cart-modal-body::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 10px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    text-align: center;
    opacity: 0.8;
}

.cart-empty svg {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    color: var(--color-accent-primary);
    filter: drop-shadow(0 0 15px rgba(74, 158, 255, 0.4));
}

.cart-empty p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(74, 158, 255, 0.1);
    transform: scale(1.02);
}

.cart-item:hover::before {
    transform: translateX(100%);
}

.cart-item-image {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-bg-light);
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.9;
}

.cart-item-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3c78;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 60, 120, 0.4);
    text-transform: uppercase;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-category {
    font-size: 0.75rem;
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cart-item-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: white;
    margin-top: 5px;
    opacity: 0.9;
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 60, 120, 0.1);
    border: 1px solid rgba(255, 60, 120, 0.2);
    color: #ff3c78;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #ff3c78;
    color: white;
    transform: scale(1.1);
}

.cart-modal-footer {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(74, 158, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.cart-total span:first-child {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#cart-total-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.cart-clear-btn {
    padding: 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-clear-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-checkout-btn {
    flex: 1;
    padding: 0.7rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a9eff 0%, #7c5cff 100%);
    border: none;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
    0% { box-shadow: 0 0 0 0 rgba(74, 158, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 158, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 158, 255, 0); }
}


.cart-checkout-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ===== Cart Modal Premium v14.2 ===== */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    z-index: 4000;
    display: none;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(74, 158, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-modal-overlay.active {
    display: flex;
    transform: translateX(0);
}

.cart-modal {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

.cart-modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--color-accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cart-close:hover {
    background: rgba(255, 60, 120, 0.2);
    border-color: #ff3c78;
    color: #ff3c78;
    transform: rotate(90deg);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.8rem;
    scrollbar-width: none;
}

.cart-modal-body::-webkit-scrollbar {
    width: 4px;
}

.cart-modal-body::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 10px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    text-align: center;
    opacity: 0.8;
}

.cart-empty svg {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    color: var(--color-accent-primary);
    filter: drop-shadow(0 0 15px rgba(74, 158, 255, 0.4));
}

.cart-empty p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(74, 158, 255, 0.1);
    transform: scale(1.02);
}

.cart-item:hover::before {
    transform: translateX(100%);
}

.cart-item-image {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-bg-light);
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0.9;
}

.cart-item-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3c78;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 60, 120, 0.4);
    text-transform: uppercase;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-category {
    font-size: 0.75rem;
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cart-item-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: white;
    margin-top: 5px;
    opacity: 0.9;
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 60, 120, 0.1);
    border: 1px solid rgba(255, 60, 120, 0.2);
    color: #ff3c78;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #ff3c78;
    color: white;
    transform: scale(1.1);
}

.cart-modal-footer {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(74, 158, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.cart-total span:first-child {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#cart-total-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.cart-clear-btn {
    padding: 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-clear-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-checkout-btn {
    flex: 1;
    padding: 0.7rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #4a9eff 0%, #7c5cff 100%);
    border: none;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
    0% { box-shadow: 0 0 0 0 rgba(74, 158, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(74, 158, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 158, 255, 0); }
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


/* Redundancia eliminada - Gestionada en Header Actions (línea 386) */

.user-menu:hover {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-name {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    min-width: 180px;
    padding: 0.5rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0s linear 3s, opacity 0.3s ease 3s, transform 0.3s ease 3s;
}

.user-menu:hover .user-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: visibility 0s linear 0s, opacity 0.3s ease 0s, transform 0.3s ease 0s;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
}

.user-dropdown-item:hover {
    background: rgba(74, 158, 255, 0.1);
    color: var(--color-accent-primary);
}

.user-dropdown-item svg {
    width: 18px;
    height: 18px;
}

.user-dropdown-divider {
    height: 1px;
    background: rgba(74, 158, 255, 0.1);
    margin: 0.5rem 0;
}

.user-dropdown-logout {
    color: #ff6b9d !important;
}

.user-dropdown-logout:hover {
    background: rgba(255, 107, 157, 0.1) !important;
}


/* Redundancia eliminada - Gestionada en Header Actions (línea 386) */


/* Responsive Auth/Cart */
@media (max-width: 768px) {
    .cart-modal-overlay {
        width: 100%;
    }

    .auth-modal {
        padding: 1.5rem;
    }

    .user-menu {
        padding: 0.4rem 0.8rem;
    }

    .user-name {
        display: none;
    }
}
/* ============================================
   PAGINACIÓN - 20 MODELOS POR PÁGINA
   ============================================ */

.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 1rem;
}

.pagination-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #8b9bb4;
    letter-spacing: 0.5px;
}

.pagination-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    color: #4a9eff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #4a9eff, #7c5cff);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #5a6a8a;
}

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

.pagination-prev svg {
    margin-right: 0.3rem;
}

.pagination-next svg {
    margin-left: 0.3rem;
}

/* Responsive Pagination */
@media (max-width: 640px) {
    .pagination-container {
        padding: 1.5rem 0;
    }
    
    .pagination-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-btn svg {
        margin: 0;
    }
}

/* 🔓 Admin Management Actions (Quick-Admin) */
.admin-card-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.admin-action-btn {
    background: rgba(10, 14, 26, 0.85);
    border: 1px solid rgba(74, 158, 255, 0.4);
    color: #4a9eff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    padding: 0;
}

.admin-action-btn:hover {
    background: #4a9eff;
    color: #060913;
    transform: scale(1.1) translateY(-2px);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
}

.admin-action-btn.delete-btn {
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.admin-action-btn.delete-btn:hover {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.admin-action-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

/* ============================================================
   MOBILE OPTIMIZATION (v20.2 - Premium Refinement)
   ============================================================ */

@media (max-width: 991px) {
    /* --- General Touch Optimization --- */
    * { -webkit-tap-highlight-color: transparent; }
    body { font-size: 0.95rem; }

    /* --- Header & Navigation Refactor 2.0 --- */
    .header { padding: 0.5rem 0.75rem !important; }
    
    .header-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0 !important;
    }

    .logo-link {
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }

    .brand-logo-img {
        height: 38px !important;
        width: 38px !important;
    }

    /* Ocultar menú horizontal */
    .nav-menu { display: none !important; }

    /* Contenedor unido para acciones a la derecha */
    .header-actions {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.6rem !important;
        margin-left: 0 !important;
    }

    /* Botón Hamburguesa */
    .mobile-menu-btn {
        display: flex !important;
        order: 3 !important; /* Siempre a la derecha del todo */
        margin: 0 !important;
        padding: 8px !important;
        background: rgba(74, 158, 255, 0.1);
        border-radius: 8px;
    }

    .cart-btn, .translator-btn, .wishlist-btn {
        width: 36px !important;
        height: 36px !important;
        border-width: 1px !important;
    }

    .cart-btn svg, .translator-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Auth buttons en el drawer para ahorrar espacio en el header */
    .header-actions .auth-buttons {
        display: none !important; 
    }

    /* Mobile Drawer */
    .nav-menu-mobile {
        position: fixed; top: 0; left: 0; width: 280px; height: 100vh;
        background: hsla(226, 45%, 7%, 0.98); backdrop-filter: blur(30px);
        z-index: 2000; padding: 100px 1.5rem 2rem;
        display: flex; flex-direction: column; gap: 1rem;
        transform: translateX(-100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-right: 1px solid rgba(74, 158, 255, 0.2);
    }
    .nav-menu-mobile.active { transform: translateX(0); }

    /* --- Hero Slider 3D Fixes --- */
    .hero-slider {
        padding-top: 80px !important;
        min-height: 600px !important;
    }

    .hero-main-title {
        font-size: 1.8rem !important;
        padding: 0 1rem;
    }

    .hero-main-subtitle {
        font-size: 0.85rem !important;
        max-width: 90%;
        padding: 0.8rem 1.2rem !important;
    }

    #hero-slider-container.ring-centered {
        height: 320px !important;
        min-height: 320px !important;
        margin-top: 2rem !important;
    }

    #hero-slider-container.ring-centered .hero-slide {
        width: 180px !important;
        height: 250px !important;
    }

    .hero-slide .ring-info {
        padding: 1rem !important;
    }

    /* --- Grid Productos --- */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
        padding: 0 0.5rem !important;
    }

    /* --- Footer --- */
    .footer-container { flex-direction: column; text-align: center; }
}
