/* ================= FUENTES PERSONALIZADAS ================= */
@font-face {
    font-family: 'Brunson';
    src: url('Brunson.otf') format('opentype'), 
         url('Brunson.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MADE Tommy';
    src: url('MADETommy.otf') format('opentype'),
         url('MADETommy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ================= VARIABLES DE COLOR GLOBALES ================= */
:root {
    --bg-deep: #050404;
    --bg-surface: #0a0a0a;
    --bg-card: #141110; 
    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(255, 225, 0, 0.4); 
    
    --text-main: #f5f2ec;
    --text-muted: #888888;
    
    --gold-dark: #ccb400; 
    --gold-base: #FFE100; 
    --gold-light: #ffea4d; 
    --gold-gradient: linear-gradient(135deg, #ccb400 0%, #FFE100 50%, #ffea4d 100%);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(15, 15, 15, 0.85);
}

/* ================= MODO OLED (NUEVO) ================= */
body.oled-mode {
    --bg-deep: #000000;
    --bg-surface: #000000;
    --bg-card: #050505;
}

/* ================= RESET Y BASE ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--bg-deep); 
    color: var(--text-main); 
    font-family: 'MADE Tommy', 'Montserrat', sans-serif; 
    line-height: 1.6; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
    letter-spacing: 0.2px;
    transition: background-color 0.5s ease; /* Transición suave para Modo OLED */
}
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-base); }

/* ================= ANIMACIONES ================= */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulseRed { 0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(255, 59, 48, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); } }
@keyframes floatUp { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 20% { opacity: 0.8; } 100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; } }
@keyframes pulseGold { 0% { box-shadow: 0 0 0 0 rgba(255, 225, 0, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 225, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 225, 0, 0); } }
@keyframes skeletonLoading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } /* NUEVO SKELETON */

.animate-up { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
body.splash-locked .animate-up { animation-play-state: paused !important; } 

.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }

/* ================= CINTA DE ANUNCIOS ================= */
.top-marquee { background: var(--gold-gradient); color: #000; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; padding: 8px 0; overflow: hidden; position: fixed; top: 0; width: 100%; z-index: 10000; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 35s linear infinite; }
.marquee-content span { margin-right: 50px; }

/* ================= HEADER ================= */
header { position: fixed; top: 34px; width: 100%; height: 75px; background: rgba(5, 4, 4, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 9999; display: flex; justify-content: space-between; align-items: center; padding: 0 4rem; animation: fadeInDown 0.6s ease forwards; }
.logo { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: normal; letter-spacing: 2px; text-transform: uppercase; color: var(--text-main); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.logo span { color: var(--gold-base); font-style: italic; font-weight: normal; }
.nav-menu { display: flex; list-style: none; height: 100%; }
.nav-item { position: relative; display: flex; align-items: center; padding: 0 1.5rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition-smooth); cursor: pointer; color: var(--text-muted); }
.nav-item:hover, .nav-item a:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.header-actions { display: flex; align-items: center; gap: 1.5rem; }
.lang-switcher { display: flex; border: 1px solid var(--border-light); border-radius: 4px; overflow: hidden; }
.lang-btn { background: transparent; border: none; padding: 5px 10px; color: var(--text-muted); font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'MADE Tommy', sans-serif;}
.lang-btn:hover { color: var(--text-main); }
.lang-btn.active { background: var(--text-main); color: #000; font-weight: 700;}
.live-indicator { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: var(--text-main); background: rgba(255, 255, 255, 0.05); padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); letter-spacing: 1px;}
.live-dot { width: 8px; height: 8px; background-color: #ff3b30; border-radius: 50%; animation: pulseRed 2s infinite; }
.header-social { display: flex; gap: 1rem; font-size: 1.1rem; color: var(--text-muted); }
.header-social a:hover { color: var(--gold-base); }

/* ================= HERO & LANDING ================= */
.hero { position: relative; padding: 14rem 2rem 8rem; text-align: center; background: #000; overflow: hidden; border-bottom: 1px solid var(--border-light); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, #050404 100%); z-index: 1; }
.particles-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; overflow: hidden; pointer-events: none; }
.gold-particle { position: absolute; background: radial-gradient(circle, #fff 0%, var(--gold-base) 40%, transparent 80%); border-radius: 50%; opacity: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 3; max-width: 900px; margin: 0 auto; }
.hero h1 { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 5rem; margin-bottom: 1.5rem; line-height: 1.1; text-shadow: 0 10px 30px rgba(0,0,0,0.8); font-weight: normal; }
.hero h1 span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; font-weight: normal;}
.hero h1 span::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--gold-base); filter: blur(40px); opacity: 0.15; z-index: -1; }
.hero p { font-size: 1.1rem; color: #ddd; margin-bottom: 3rem; text-shadow: 0 2px 5px rgba(0,0,0,0.8); font-weight: 400; letter-spacing: 0.5px;}

/* ================= GRID DE CATEGORÍAS (INICIO) ================= */
.categories-section { padding: 5rem 4rem; max-width: 1600px; margin: 0 auto; }
.section-title-center { text-align: center; margin-bottom: 4rem; }
.section-title-center h2 { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: normal; margin-bottom: 0.5rem; color: var(--text-main); }
.section-title-center p { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; font-weight: 600; letter-spacing: 3px;}

.category-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; width: 100%; }
.cat-card { position: relative; aspect-ratio: 4 / 5; background: #000; overflow: hidden; display: block; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; }
.cat-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease; filter: grayscale(50%) brightness(0.5); }
.cat-card:hover .cat-bg { transform: scale(1.08); filter: grayscale(0%) brightness(0.85); }
.cat-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 3rem 2.5rem 2rem; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, transparent 100%); z-index: 10; display: flex; flex-direction: column; gap: 0.3rem; transition: padding-bottom 0.4s ease; }
.cat-card:hover .cat-content { padding-bottom: 2.5rem; }
.cat-title { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--text-main); line-height: 1.1; text-shadow: 0 4px 15px rgba(0,0,0,0.8); font-weight: normal;}
.cat-count { font-family: 'MADE Tommy', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--gold-base); text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 8px; opacity: 0.7; transition: opacity 0.3s; }
.cat-card:hover .cat-count { opacity: 1; }

/* ================= GRID DE PRODUCTOS ================= */
.catalog-section, .trending-section { padding: 5rem 4rem; max-width: 1600px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 2rem; width: 100%; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition-smooth); position: relative; }
.product-card:hover { border-color: var(--gold-base); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); }

/* NUEVO SKELETON LOADER (CARGA FANTASMA) */
.skeleton { background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%); background-size: 200% 100%; animation: skeletonLoading 1.5s infinite; border: none !important; }

/* LUPA DE DETALLES (HOVER ZOOM) */
.card-img-wrapper { width: 100%; aspect-ratio: 1 / 1; background: #ffffff; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; text-decoration: none; cursor: zoom-in; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .card-img { transform: scale(1.15); }

/* SISTEMA DE FAVORITOS (WISHLIST) */
.badge-heart { position: absolute; top: 12px; right: 12px; background: rgba(12, 10, 10, 0.6); backdrop-filter: blur(4px); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.9rem; transition: var(--transition-smooth); cursor: pointer; z-index: 2; }
.badge-heart:hover { transform: scale(1.1); }
.wishlist-active { color: #ff3b30 !important; font-weight: 900; text-shadow: 0 0 10px rgba(255,59,48,0.5); }

/* BOTÓN DE COMPARTIR (COPY LINK) */
.share-icon { position: absolute; top: 12px; left: 12px; background: rgba(12, 10, 10, 0.6); backdrop-filter: blur(4px); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.9rem; cursor: pointer; z-index: 2; transition: 0.3s; }
.share-icon:hover { background: var(--gold-base); color: #000; }

/* ETIQUETAS DE LOW STOCK */
.low-stock-badge { position: absolute; bottom: 12px; left: 12px; background: rgba(255, 59, 48, 0.9); color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 0.65rem; font-weight: 800; z-index: 5; text-transform: uppercase; font-family: 'MADE Tommy', sans-serif; animation: pulseRed 2s infinite; }

.card-body { padding: 1.2rem; display: flex; flex-direction: column; flex-grow: 1; border-top: 1px solid var(--border-light); }
.card-brand { font-family: 'MADE Tommy', sans-serif; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 0.3rem;}
.card-title { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: normal; color: var(--text-main); line-height: 1.2; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.card-footer-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-price { font-family: 'MADE Tommy', sans-serif; color: var(--gold-base); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.5px;}

/* ================= BOTONES AMARILLOS (TEXTO NEGRO PURO BLINDADO) ================= */
.btn-usfans { 
    display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; 
    background: var(--gold-gradient) !important; color: #000000 !important; 
    -webkit-text-fill-color: #000000 !important; padding: 0.8rem; border-radius: 6px; font-size: 0.85rem; font-weight: 800; 
    text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-smooth); 
    border: none; cursor: pointer; text-decoration: none; font-family: 'MADE Tommy', sans-serif;
}
.btn-usfans:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 225, 0, 0.3); }

.tracking-btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--gold-gradient) !important; border: none; border-radius: 12px; padding: 0 25px; height: 50px;
    color: #000000 !important; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; 
    cursor: pointer; transition: all 0.3s ease; 
    font-family: 'MADE Tommy', sans-serif;
    -webkit-text-fill-color: #000000 !important; 
}
.tracking-btn:hover { filter: brightness(1.1); transform: scale(1.02); }

.btn-usfans *, .tracking-btn * { color: #000000 !important; -webkit-text-fill-color: #000000 !important; background: transparent !important; }

/* ================= BARRA DE FILTROS Y CONTROLES ================= */
/* FILTROS ANCLADOS (Sticky Sidebar para PC y Sticky Top para móvil) */
.controls-wrapper { position: sticky; top: 110px; z-index: 90; background: rgba(20, 20, 20, 0.8); backdrop-filter: blur(15px); border: 1px solid var(--border-light); padding: 1.5rem 2rem; border-radius: 12px; margin-bottom: 3rem; display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.title-area h2 { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--text-main); margin-bottom: 0.2rem; font-weight: normal;}
.usfans-tag { font-family: 'MADE Tommy', sans-serif; font-size: 0.7rem; background: var(--gold-gradient); color: #000; padding: 3px 8px; border-radius: 4px; font-weight: 700; vertical-align: middle; margin-left: 10px; text-transform: uppercase; letter-spacing: 1px;}
.filters-bar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* BUSCADOR PREDICTIVO CON MINIATURAS */
.search-box { position: relative; min-width: 250px; }
.search-box input { width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--border-light); padding: 10px 15px 10px 40px; border-radius: 6px; color: #fff; outline: none; transition: 0.3s; font-family: 'MADE Tommy', sans-serif; font-size: 0.85rem;}
.search-box input:focus { border-color: var(--gold-base); background: rgba(0,0,0,0.5); }
.search-box i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.predictive-box { position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 8px; margin-top: 5px; z-index: 100; max-height: 300px; overflow-y: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.predictive-item { display: flex; align-items: center; gap: 10px; padding: 10px; border-bottom: 1px solid var(--border-light); cursor: pointer; transition: 0.2s; color: #fff; text-decoration: none; }
.predictive-item:hover { background: rgba(255,225,0,0.1); }
.predictive-img { width: 40px; height: 40px; border-radius: 4px; object-fit: cover; }

/* DESLIZADOR DE PRECIOS (RANGO) */
.price-slider-wrapper { display: flex; flex-direction: column; gap: 2px; min-width: 150px; padding: 0 10px;}
.price-slider-wrapper label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; font-family: 'MADE Tommy', sans-serif;}
input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 16px; width: 16px; border-radius: 50%; background: var(--gold-base); cursor: pointer; margin-top: -6px; box-shadow: 0 0 10px rgba(255,225,0,0.5); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; background: var(--border-light); border-radius: 2px; cursor: pointer; }

.filter-select { background: #000; color: var(--text-main); border: 1px solid var(--border-light); padding: 10px 15px; border-radius: 6px; cursor: pointer; outline: none; font-family: 'MADE Tommy', sans-serif; font-size: 0.85rem;}
.filter-select:hover { border-color: var(--gold-base); }
.currency-toggle button { background: transparent; border: 1px solid var(--border-light); color: var(--text-muted); padding: 8px 12px; cursor: pointer; transition: 0.3s; font-family: 'MADE Tommy', sans-serif; font-size: 0.85rem;}
.currency-toggle button.active { background: var(--gold-base); color: #000; font-weight: 700; border-color: var(--gold-base); }
.currency-toggle button:first-child { border-radius: 6px 0 0 6px; }
.currency-toggle button:last-child { border-radius: 0 6px 6px 0; border-left: none; }
.catalog-hero { padding: 10rem 2rem 4rem; text-align: center; background: radial-gradient(circle at center, #1a1613 0%, #050404 80%); border-bottom: 1px solid var(--border-light); }

/* PRODUCTOS RECIENTEMENTE VISTOS */
.recent-section { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border-light); }
.recent-grid { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-behavior: smooth; }
.recent-grid::-webkit-scrollbar { height: 6px; }
.recent-grid .product-card { min-width: 200px; max-width: 250px; flex-shrink: 0; }

/* BOTÓN VOLVER ARRIBA */
#scroll-to-top { position: fixed; bottom: 95px; right: 30px; background: rgba(20,20,20,0.8); border: 1px solid var(--border-gold); color: var(--gold-base); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 9999; backdrop-filter: blur(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
#scroll-to-top.visible { opacity: 1; visibility: visible; }
#scroll-to-top:hover { background: var(--gold-base); color: #000; transform: translateY(-5px); }

/* TEMPORIZADOR VIP FOMO */
.vip-timer-box { display: inline-flex; gap: 20px; margin-top: 2rem; background: rgba(255,225,0,0.05); border: 1px solid var(--border-gold); padding: 15px 30px; border-radius: 12px; backdrop-filter: blur(10px); }
.time-unit { display: flex; flex-direction: column; align-items: center; }
.time-val { font-family: 'Brunson', serif; font-size: 3rem; color: var(--gold-base); line-height: 1; }
.time-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-family: 'MADE Tommy', sans-serif;}

/* ================= SOPORTE PREMIUM & FAQ ================= */
.support-hero { padding: 10rem 2rem 6rem; text-align: center; background: radial-gradient(circle at center, #1a1613 0%, #050404 80%); border-bottom: 1px solid var(--border-light); }
.support-hero h1 { font-family: 'Brunson', 'Cormorant Garamond', serif; font-size: 5rem; margin-bottom: 1.5rem; line-height: 1.1; font-weight: normal;}
.support-hero h1 span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.tracking-container { max-width: 650px; margin: 0 auto; position: relative; z-index: 10; }
.tracking-box { display: flex; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-light); border-radius: 16px; padding: 8px; backdrop-filter: blur(10px); transition: var(--transition-smooth); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.tracking-box:focus-within { border-color: var(--gold-base); box-shadow: 0 0 25px rgba(255, 225, 0, 0.15); transform: translateY(-2px); }
.tracking-input { flex-grow: 1; background: transparent; border: none; padding: 18px 25px; color: #fff; font-family: 'MADE Tommy', monospace; font-size: 1rem; outline: none; letter-spacing: 1px; }
.tracking-input::placeholder { font-family: 'MADE Tommy', sans-serif; color: rgba(255,255,255,0.3); }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1400px; margin: -3rem auto 6rem; padding: 0 3rem; position: relative; z-index: 20; }
.support-card { background: linear-gradient(145deg, #121010 0%, #0a0a0a 100%); border: 1px solid var(--border-light); border-radius: 20px; padding: 3rem 2rem; text-align: center; transition: var(--transition-smooth); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.support-card:hover { border-color: var(--gold-base); transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255, 225, 0, 0.2); }
.support-icon-wrapper { width: 80px; height: 80px; background: rgba(255,255,255,0.03); border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 1px solid var(--border-light); margin-bottom: 0.5rem; transition: 0.4s; }
.support-card:hover .support-icon-wrapper { background: var(--gold-gradient); border-color: transparent; transform: rotateY(180deg); }
.support-icon { font-size: 2rem; color: var(--gold-base); transition: 0.4s; }
.support-card:hover .support-icon { color: var(--bg-deep); transform: rotateY(-180deg); }
.support-card h3 { color: var(--text-main); font-family: 'Brunson', serif; font-size: 2rem; margin: 0; font-weight: normal;}
.support-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; max-width: 280px; }
.action-link { margin-top: auto; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-base); border-bottom: 1px solid transparent; padding-bottom: 4px; font-family: 'MADE Tommy', sans-serif;}
.support-card:hover .action-link { border-color: var(--gold-base); }

.process-section { padding: 2rem 2rem 6rem; max-width: 1200px; margin: 0 auto; }
.process-steps { display: flex; justify-content: space-between; position: relative; margin-top: 3rem; }
.process-steps::before { content: ''; position: absolute; top: 30px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
.step-item { position: relative; z-index: 1; text-align: center; flex: 1; padding: 0 10px; }
.step-icon { width: 60px; height: 60px; background: var(--bg-card); border: 1px solid var(--gold-dark); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 1.5rem; font-size: 1.2rem; color: var(--gold-base); box-shadow: 0 0 0 5px var(--bg-deep); transition: var(--transition-smooth); }
.step-item:hover .step-icon { background: var(--gold-gradient); color: var(--bg-deep); transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 225, 0, 0.4); }
.step-title { color: #fff; font-family: 'Brunson', serif; font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: normal;}
.step-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

.glossary-section { max-width: 1000px; margin: 0 auto 6rem; padding: 0 2rem; }
.glossary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.status-card { background: rgba(255,255,255,0.03); border-left: 3px solid var(--border-light); padding: 1.5rem; border-radius: 0 8px 8px 0; transition: 0.3s; }
.status-card:hover { background: rgba(255,255,255,0.06); border-left-color: var(--gold-base); }
.status-term { color: var(--gold-base); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; font-family: 'MADE Tommy', sans-serif;}
.status-def { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

.faq-section-premium { max-width: 1000px; margin: 0 auto 8rem; padding: 0 2rem; }
.faq-title { text-align: center; margin-bottom: 4rem; font-family: 'Brunson', serif; font-size: 3.5rem; font-weight: normal;}
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-light); margin-bottom: 1rem; border-radius: 8px; overflow: hidden; transition: 0.3s; }
.faq-item:hover { border-color: rgba(255,255,255,0.2); }
.faq-header { padding: 1.8rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: transparent; }
.faq-header h4 { font-size: 1.1rem; font-weight: 600; color: var(--text-main); margin: 0; font-family: 'MADE Tommy', sans-serif;}
.faq-icon { color: var(--text-muted); font-size: 0.9rem; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); background: rgba(0,0,0,0.2); }
.faq-body p { padding: 0 2rem 2rem; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.faq-item.active { border-color: var(--gold-dark); }
.faq-item.active .faq-header h4 { color: var(--gold-base); }
.faq-item.active .faq-icon { transform: rotate(135deg); color: var(--gold-base); }
.faq-item.active .faq-body { max-height: 300px; }

/* ================= NOTIFICACIONES ================= */
.sales-notification { position: fixed; bottom: 30px; left: 30px; width: auto; max-width: 380px; z-index: 999999; transform: translateX(-150%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.sales-notification.active { transform: translateX(0); }
.notification-content { background: rgba(18, 18, 18, 0.85); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); border-left: 3px solid var(--gold-base); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 16px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); position: relative; overflow: hidden; }
.sales-notification:hover .notification-content { background: rgba(25, 25, 25, 0.95); border-color: rgba(255, 255, 255, 0.15); }
.notif-img-wrapper { width: 75px; height: 75px; border-radius: 8px; overflow: hidden; flex-shrink: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); }
.notif-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sales-notification:hover .notif-img-wrapper img { transform: scale(1.15); }
.notif-text { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.notif-title { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 4px; line-height: 1.2; font-family: 'MADE Tommy', sans-serif;}
.notif-email { font-family: 'MADE Tommy', monospace; font-weight: 700; color: var(--text-main); }
.notif-location { font-weight: 600; color: var(--gold-base); }
.notif-desc { font-size: 0.85rem; color: #fff; line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-family: 'MADE Tommy', sans-serif;}
.notif-desc strong { color: var(--gold-base); font-weight: normal; font-family: 'Brunson', serif; font-size: 1.2rem; letter-spacing: 0.5px;}
.notif-footer { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-family: 'MADE Tommy', sans-serif;}
.verified-badge { background: rgba(46, 204, 113, 0.15); color: #2ecc71; padding: 2px 6px; border-radius: 4px; font-weight: 700; font-size: 0.6rem; text-transform: uppercase; display: flex; align-items: center; gap: 4px; border: 1px solid rgba(46, 204, 113, 0.3); }
.notif-time { color: #888; font-size: 0.7rem;}
.notif-close { position: absolute; top: 5px; right: 5px; background: transparent; border: none; color: var(--text-muted); width: 20px; height: 20px; cursor: pointer; opacity: 0; transition: 0.2s; font-size: 1.2rem; line-height: 0; display: flex; align-items: center; justify-content: center; }
.sales-notification:hover .notif-close { opacity: 0.5; }
.notif-close:hover { opacity: 1; color: #fff; }

/* ================= TRUST BAR ================= */
.trust-section { border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: var(--bg-surface); padding: 4rem 2rem; }
.trust-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust-item i { font-size: 2rem; color: var(--gold-base); margin-bottom: 1rem; }
.trust-item h4 { font-family: 'Brunson', serif; font-size: 2rem; margin-bottom: 0.5rem; color: var(--text-main); font-weight: normal;}
.trust-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* ================= FOOTER ================= */
.site-footer { background: #050404; border-top: 1px solid var(--border-light); padding: 4rem 2rem; text-align: center; }
.footer-simple { display: flex; flex-direction: column; align-items: center; gap: 2rem; max-width: 800px; margin: 0 auto; }
.footer-logo { font-family: 'Brunson', serif; font-size: 2.8rem; color: var(--text-muted); letter-spacing: 1px; font-weight: normal;}
.footer-logo span { color: var(--gold-dark); font-style: italic; font-weight: normal;}
.footer-social-links { display: flex; gap: 2.5rem; font-size: 1.3rem; margin: 1rem 0; }
.footer-social-links a { color: var(--text-muted); transition: all 0.3s; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.footer-social-links a:hover { color: var(--bg-deep); background: var(--gold-gradient); border-color: transparent; transform: scale(1.1); }
.site-footer p { color: #444; font-size: 0.8rem; font-family: 'MADE Tommy', sans-serif; letter-spacing: 1px; }

/* ================= BOTÓN FLOTANTE CHAT ================= */
.floating-chat-btn { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: var(--gold-gradient); color: #000 !important; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: 0 10px 30px rgba(255, 225, 0, 0.4); z-index: 10000; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); animation: pulseGold 3s infinite; cursor: pointer; }
.floating-chat-btn:hover { transform: scale(1.1) rotate(5deg); }

/* ================= PANTALLA DE BIENVENIDA (ENTRY SCREEN) ================= */
#bg-video { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; object-fit: cover; z-index: -3; transform: translateZ(0); will-change: transform; backface-visibility: hidden; }
#video-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0); transition: background 2s ease; z-index: -1; pointer-events: none; }
.store-active #video-overlay { background: rgba(0, 0, 0, 0.85); }
#enter-screen { position: fixed; inset: 0; background: radial-gradient(circle at center, rgba(10,10,10,0.92) 0%, rgba(0,0,0,1) 100%); z-index: 999999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 1.5s ease, visibility 1.5s; }
#particle-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.main-banner { width: 100%; max-width: 550px; height: auto; margin-bottom: 40px; z-index: 1; filter: drop-shadow(0 0 20px rgba(255, 225, 0, 0.2)); transition: transform 0.6s ease; border-radius: 12px; }
.main-banner:hover { transform: scale(1.02); }

.enter-trigger-btn { background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(10px); border: 1px solid rgba(255, 225, 0, 0.4); color: var(--gold-base); padding: 18px 50px; font-family: 'MADE Tommy', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; cursor: pointer; transition: all 0.5s ease; position: relative; overflow: hidden; z-index: 1; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); }
.enter-trigger-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 225, 0, 0.2), transparent); transition: all 0.6s ease; }
.enter-trigger-btn:hover::before { left: 100%; }
.enter-trigger-btn:hover { background: rgba(255, 225, 0, 0.1); border-color: var(--gold-base); color: #FFF; box-shadow: 0 0 30px rgba(255, 225, 0, 0.5); transform: translateY(-2px); }

.click-instruction { font-family: 'MADE Tommy', sans-serif; font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 4px; text-transform: uppercase; margin-top: 25px; z-index: 1; }
.social-links { display: flex; gap: 25px; margin-top: 40px; z-index: 1; }
.social-btn { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.6); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.4s ease; }
.social-btn svg { width: 22px; height: 22px; fill: currentColor; }
.social-btn:hover { border-color: var(--gold-base); color: var(--bg-deep); background: var(--gold-gradient); box-shadow: 0 0 20px rgba(255, 225, 0, 0.4); transform: translateY(-3px); }

.skip-btn { position: fixed; bottom: 40px; right: 40px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 225, 0, 0.3); color: var(--text-main); padding: 10px 20px; font-family: 'MADE Tommy', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
.skip-btn:hover { border-color: var(--gold-base); color: var(--gold-base); }

/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
    header { top: 34px; padding: 0 1.5rem; }
    .hero { padding: 10rem 1.5rem 4rem; }
    .support-hero h1 { font-size: 3.5rem; }
    .support-grid { grid-template-columns: 1fr; margin-top: 2rem; padding: 0 1.5rem; }
    .tracking-container { width: 90%; }
    .categories-section { padding: 4rem 1.5rem; }
    .category-showcase { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
    .sales-notification { bottom: 20px; left: 20px; right: 20px; width: auto; max-width: none; }
    .live-indicator { display: none; }
    .floating-chat-btn { bottom: 85px; right: 20px; width: 50px; height: 50px; font-size: 1.2rem; }
    .process-steps { flex-direction: column; gap: 2rem; }
    .process-steps::before { width: 2px; height: 100%; left: 30px; top: 0; }
    .step-item { display: flex; text-align: left; align-items: flex-start; gap: 1.5rem; }
    .step-icon { margin: 0; }
    .glossary-grid { grid-template-columns: 1fr; }
    .main-banner { max-width: 85%; }
    .skip-btn { bottom: 20px; right: 20px; padding: 8px 12px; font-size: 0.6rem; }
    
    .controls-wrapper { position: static; flex-direction: column; align-items: stretch; }
    .recent-grid .product-card { min-width: 160px; }
}