/* ================= 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(0, 102, 255, 0.4); 
    
    --text-main: #f5f2ec;
    --text-muted: #888888;
    
    --main-color: #0066FF; 
    --main-gradient: linear-gradient(135deg, #0066FF 0%, #00CCFF 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: 'Inter', 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(--main-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--main-gradient); }

/* ================= 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 pulseBlue { 0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 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(--main-gradient); color: #fff; 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; font-family: 'Inter', sans-serif;}
.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: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-main); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.logo span { color: var(--main-color); font-style: normal; font-weight: 800; }
.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); font-family: 'Inter', sans-serif;}
.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: 'Inter', 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; font-family: 'Inter', sans-serif;}
.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(--main-color); }

/* ================= 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; }
.blue-particle { position: absolute; background: radial-gradient(circle, #fff 0%, var(--main-color) 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: 'Poppins', sans-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: 800; }
.hero h1 span { background: var(--main-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; font-weight: 800;}
.hero h1 span::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--main-color); 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: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 800; 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: 'Poppins', sans-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: 800;}
.cat-count { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--main-color); 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(--main-color); 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(--main-color); color: #fff; }

/* 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: 'Inter', 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); font-family: 'Inter', sans-serif;}
.card-brand { font-family: 'Inter', 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: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; 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: 'Poppins', sans-serif; color: var(--main-color); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.5px;}

/* ================= BOTONES AZULES (TEXTO BLANCO PURO BLINDADO) ================= */
.btn-usfans { 
    display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; 
    background: var(--main-gradient) !important; color: #ffffff !important; 
    -webkit-text-fill-color: #ffffff !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: 'Inter', sans-serif;
}
.btn-usfans:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3); }

.tracking-btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--main-gradient) !important; border: none; border-radius: 12px; padding: 0 25px; height: 50px;
    color: #ffffff !important; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; 
    cursor: pointer; transition: all 0.3s ease; 
    font-family: 'Inter', sans-serif;
    -webkit-text-fill-color: #ffffff !important; 
}
.tracking-btn:hover { filter: brightness(1.1); transform: scale(1.02); }

.btn-usfans *, .tracking-btn * { color: #ffffff !important; -webkit-text-fill-color: #ffffff !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: 'Poppins', sans-serif; font-size: 2.5rem; color: var(--text-main); margin-bottom: 0.2rem; font-weight: 800;}
.usfans-tag { font-family: 'Inter', sans-serif; font-size: 0.7rem; background: var(--main-gradient); color: #fff; 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; font-family: 'Inter', sans-serif;}

/* 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: 'Inter', sans-serif; font-size: 0.85rem;}
.search-box input:focus { border-color: var(--main-color); 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(--main-color); 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(0, 102, 255, 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: 'Inter', 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(--main-color); cursor: pointer; margin-top: -6px; box-shadow: 0 0 10px rgba(0, 102, 255, 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: 'Inter', sans-serif; font-size: 0.85rem;}
.filter-select:hover { border-color: var(--main-color); }
.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: 'Inter', sans-serif; font-size: 0.85rem;}
.currency-toggle button.active { background: var(--main-color); color: #fff; font-weight: 700; border-color: var(--main-color); }
.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, rgba(0, 102, 255, 0.1) 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 rgba(0, 102, 255, 0.4); color: var(--main-color); 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(--main-color); color: #fff; transform: translateY(-5px); }

/* TEMPORIZADOR VIP FOMO */
.vip-timer-box { display: inline-flex; gap: 20px; margin-top: 2rem; background: rgba(0, 102, 255, 0.05); border: 1px solid rgba(0, 102, 255, 0.4); padding: 15px 30px; border-radius: 12px; backdrop-filter: blur(10px); }
.time-unit { display: flex; flex-direction: column; align-items: center; }
.time-val { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 3rem; color: var(--main-color); line-height: 1; }
.time-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-family: 'Inter', sans-serif;}

/* ================= SOPORTE PREMIUM & FAQ ================= */
.support-hero { padding: 10rem 2rem 6rem; text-align: center; background: radial-gradient(circle at center, rgba(0, 102, 255, 0.1) 0%, #050404 80%); border-bottom: 1px solid var(--border-light); }
.support-hero h1 { font-family: 'Poppins', sans-serif; font-size: 5rem; margin-bottom: 1.5rem; line-height: 1.1; font-weight: 800;}
.support-hero h1 span { background: var(--main-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(--main-color); box-shadow: 0 0 25px rgba(0, 102, 255, 0.15); transform: translateY(-2px); }
.tracking-input { flex-grow: 1; background: transparent; border: none; padding: 18px 25px; color: #fff; font-family: 'Inter', monospace; font-size: 1rem; outline: none; letter-spacing: 1px; }
.tracking-input::placeholder { font-family: 'Inter', 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(--main-color); transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(0, 102, 255, 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(--main-gradient); border-color: transparent; transform: rotateY(180deg); }
.support-icon { font-size: 2rem; color: var(--main-color); transition: 0.4s; }
.support-card:hover .support-icon { color: #fff; transform: rotateY(-180deg); }
.support-card h3 { color: var(--text-main); font-family: 'Poppins', sans-serif; font-size: 2rem; margin: 0; font-weight: 800;}
.support-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; max-width: 280px; font-family: 'Inter', sans-serif;}
.action-link { margin-top: auto; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--main-color); border-bottom: 1px solid transparent; padding-bottom: 4px; font-family: 'Inter', sans-serif;}
.support-card:hover .action-link { border-color: var(--main-color); }

.process-section { padding: 2rem 2rem 6rem; max-width: 1200px; margin: 0 auto; font-family: 'Inter', sans-serif;}
.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(--main-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 1.5rem; font-size: 1.2rem; color: var(--main-color); box-shadow: 0 0 0 5px var(--bg-deep); transition: var(--transition-smooth); }
.step-item:hover .step-icon { background: var(--main-gradient); color: #fff; transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 102, 255, 0.4); }
.step-title { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: 800;}
.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; font-family: 'Inter', sans-serif;}
.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(--main-color); }
.status-term { color: var(--main-color); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; display: block; font-family: 'Inter', 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; font-family: 'Inter', sans-serif;}
.faq-title { text-align: center; margin-bottom: 4rem; font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 800;}
.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: 'Inter', 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(--main-color); }
.faq-item.active .faq-header h4 { color: var(--main-color); }
.faq-item.active .faq-icon { transform: rotate(135deg); color: var(--main-color); }
.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(--main-color); 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: 'Inter', sans-serif;}
.notif-email { font-family: 'Inter', monospace; font-weight: 700; color: var(--text-main); }
.notif-location { font-weight: 600; color: var(--main-color); }
.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: 'Inter', sans-serif;}
.notif-desc strong { color: var(--main-color); font-weight: normal; font-family: 'Poppins', sans-serif; font-size: 1.2rem; letter-spacing: 0.5px;}
.notif-footer { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-family: 'Inter', 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; font-family: 'Inter', sans-serif;}
.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(--main-color); margin-bottom: 1rem; }
.trust-item h4 { font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: 0.5rem; color: var(--text-main); font-weight: 800;}
.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: 'Poppins', sans-serif; font-size: 2.8rem; color: var(--text-muted); letter-spacing: 1px; font-weight: 800;}
.footer-logo span { color: var(--main-color); font-style: normal; font-weight: 800;}
.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: #fff; background: var(--main-gradient); border-color: transparent; transform: scale(1.1); }
.site-footer p { color: #444; font-size: 0.8rem; font-family: 'Inter', sans-serif; letter-spacing: 1px; }
.footer-seo-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 780px;
}
.footer-seo-links a {
    color: rgba(255, 255, 255, 0.66);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
    border-radius: 8px;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}
.footer-seo-links a:hover {
    color: #fff;
    border-color: rgba(0, 162, 255, 0.55);
    background: rgba(0, 102, 255, 0.16);
}

/* ================= 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(0, 102, 255, 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(0, 102, 255, 0.4); color: var(--main-color); padding: 18px 50px; font-family: 'Inter', 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(0, 102, 255, 0.2), transparent); transition: all 0.6s ease; }
.enter-trigger-btn:hover::before { left: 100%; }
.enter-trigger-btn:hover { background: rgba(0, 102, 255, 0.1); border-color: var(--main-color); color: #FFF; box-shadow: 0 0 30px rgba(0, 102, 255, 0.5); transform: translateY(-2px); }

.click-instruction { font-family: 'Inter', 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(--main-color); color: #fff; background: var(--main-gradient); box-shadow: 0 0 20px rgba(0, 102, 255, 0.4); transform: translateY(-3px); }

.skip-btn { position: fixed; bottom: 40px; right: 40px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(0, 102, 255, 0.3); color: var(--text-main); padding: 10px 20px; font-family: 'Inter', 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(--main-color); color: var(--main-color); }

/* ================= 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; }
    .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; }
    /* ================= HEADER / NAVBAR UNIVERSAL PREMIUM ================= */
header { position: fixed; top: 0; left: 0; width: 100%; height: 85px; background: rgba(5, 4, 4, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 99990; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; padding: 0 40px; box-sizing: border-box; }

.logo a { font-family: 'Poppins', sans-serif; font-size: 2.2rem; color: #fff; text-decoration: none; display: flex; align-items: center; letter-spacing: 1px; font-weight: 800;}
.logo span { color: var(--main-color); font-style: normal; margin-left: 5px; }

.nav-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-item a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; font-family: 'Inter', sans-serif;}
.nav-item a:hover { color: var(--main-color); }

.header-actions { display: flex; align-items: center; gap: 15px; }

.btn-panel-user { background: var(--main-color); color: #fff; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2); transition: 0.3s; font-family: 'Inter', sans-serif;}
.btn-panel-user:hover { background: #fff; color: #000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4); }

.lang-switcher-box { display: flex; gap: 4px; background: rgba(0,0,0,0.6); padding: 5px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); align-items: center; }
.lang-btn-custom { background: transparent; border: none; color: rgba(255,255,255,0.4); padding: 6px 12px; font-weight: 800; font-size: 0.8rem; cursor: pointer; border-radius: 6px; transition: all 0.3s ease; font-family: 'Inter', sans-serif;}
.lang-btn-custom:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-btn-custom.active { background: #fff; color: #000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.live-indicator { background: rgba(255, 255, 255, 0.05); padding: 8px 15px; border-radius: 20px; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: bold; border: 1px solid rgba(255, 255, 255, 0.1); font-family: 'Inter', sans-serif;}
.live-dot { width: 8px; height: 8px; background-color: #ff3b30; border-radius: 50%; box-shadow: 0 0 10px #ff3b30; animation: pulse 2s infinite; }

@media (max-width: 1000px) {
    header { padding: 0 20px; }
    .nav-menu { display: none; } /* Ocultamos el menú normal en móviles para no solapar */
}
/* ===================================================================== */
/* ================= ADAPTACIÓN MÓVIL PREMIUM (APP STYLE) ============== */
/* ===================================================================== */

/* Botón Hamburguesa (Oculto en PC) */
.mobile-menu-btn { display: none; background: transparent; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; z-index: 100000; transition: transform 0.3s ease, color 0.3s ease; }
.mobile-menu-btn.active { color: var(--main-color); transform: rotate(90deg); }

/* Contenedor de acciones en móvil */
.mobile-actions-container { display: none; flex-direction: column; align-items: center; gap: 20px; margin-top: 20px; width: 100%; padding: 0 40px; box-sizing: border-box; }
.mobile-actions-container .btn-panel-user { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

@media (max-width: 1000px) {
    /* Cabecera */
    header { padding: 0 20px !important; justify-content: space-between !important; display: flex !important; height: 75px !important; }
    .header-actions { display: none !important; } /* Ocultamos botones desktop */
    
    .mobile-menu-btn { display: block !important; }

    /* Menú Desplegable Hamburguesa */
    .nav-menu { position: fixed !important; top: 75px !important; left: -100% !important; width: 100% !important; height: calc(100vh - 75px) !important; background: rgba(5,4,4,0.98) !important; backdrop-filter: blur(25px) !important; -webkit-backdrop-filter: blur(25px) !important; flex-direction: column !important; align-items: center !important; justify-content: flex-start !important; padding-top: 40px !important; gap: 25px !important; transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; display: flex !important; margin: 0 !important; z-index: 99990 !important; overflow-y: auto;}
    .nav-menu.open { left: 0 !important; }
    .nav-item a { font-size: 1.3rem !important; }
    
    .mobile-actions-container { display: flex !important; }

    /* Grid de Productos (2 columnas en móvil) */
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; padding: 10px !important; }
    .card-img-wrapper { height: 160px !important; }
    .card-title { font-size: 0.85rem !important; white-space: normal !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .card-price { font-size: 1.1rem !important; }
    .btn-usfans { font-size: 0.75rem !important; padding: 8px !important; }

    /* Filtros y Buscador */
    .controls-wrapper { padding: 15px !important; margin-top: 80px !important; }
    .filters-bar { flex-direction: column !important; gap: 10px !important; }
    .search-box, .filter-select { width: 100% !important; }

    /* Foro Móvil */
    .forum-container { grid-template-columns: 1fr !important; padding: 15px !important; margin-top: 90px !important; gap: 20px !important;}
    .post-card { flex-direction: column !important; border-radius: 12px !important; }
    .post-votes { width: 100% !important; flex-direction: row !important; justify-content: space-around !important; padding: 10px !important; border-right: none !important; border-top: 1px solid rgba(255,255,255,0.05) !important; order: 2 !important; }
    .post-content-area { padding: 15px !important; order: 1 !important; }
    .post-main-body { flex-direction: column-reverse !important; gap: 15px !important; }
    .post-thumb { width: 100% !important; height: 200px !important; margin-left: 0 !important; margin-top: 10px !important;}
    .post-footer { flex-wrap: wrap !important; gap: 10px !important; }
    .forum-sidebar { position: static !important; order: -1 !important; margin-bottom: 20px !important;}

    /* Modales y Paneles Móvil */
    .gc-auth-box, .gc-create-box { padding: 30px 20px !important; border-radius: 20px !important; width: 95% !important; }
    .side-panel { width: 100% !important; max-width: 100% !important; }
    .review-modal-box { flex-direction: column !important; max-height: 90vh !important; border-radius: 16px !important; overflow-y: auto !important; }
    .review-left { padding: 20px !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
    .review-right { padding: 20px !important; overflow-y: visible !important; max-height: none !important; }
    
    /* Textos Generales */
    .catalog-hero h1 { font-size: 2.8rem !important; }
    .title-area h2 { font-size: 1.8rem !important; }
}
/* ================= OCULTAR NOTIFICACIONES EN MÓVIL (GLOBAL) ================= */
@media (max-width: 1000px) {
    #fake-sales-notification, 
    .sales-notification { 
        display: none !important; 
        opacity: 0 !important; 
        visibility: hidden !important; 
        pointer-events: none !important; 
    }
}

/* ================= FETE FINDS PRO VISUAL SYSTEM ================= */
:root {
    --pro-bg: #05070a;
    --pro-bg-soft: #080b10;
    --pro-surface: rgba(13, 17, 24, 0.88);
    --pro-surface-solid: #0d1118;
    --pro-border: rgba(255, 255, 255, 0.11);
    --pro-border-strong: rgba(0, 153, 255, 0.34);
    --pro-text: #f7f9fc;
    --pro-muted: rgba(247, 249, 252, 0.64);
    --pro-accent: #0078ff;
    --pro-accent-2: #14c8ff;
    --pro-success: #24c67a;
    --pro-warning: #f3b23c;
    --pro-danger: #ff4d4f;
    --pro-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    --pro-shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.32);
}

html {
    background: var(--pro-bg);
}

body {
    background:
        linear-gradient(180deg, #060a10 0%, #05070a 42%, #030406 100%) !important;
    color: var(--pro-text) !important;
    letter-spacing: 0 !important;
}

body::selection {
    background: rgba(0, 120, 255, 0.45);
    color: #fff;
}

.top-marquee {
    background: linear-gradient(90deg, #005be8 0%, #008cff 46%, #14c8ff 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 10px 32px rgba(0, 56, 140, 0.28) !important;
}

header,
header#main-header {
    background: rgba(5, 8, 13, 0.84) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38) !important;
}

.logo,
.logo a,
.footer-logo {
    letter-spacing: 0 !important;
}

.nav-menu {
    gap: clamp(12px, 1.35vw, 26px) !important;
}

.nav-item,
.nav-item a {
    color: rgba(247, 249, 252, 0.68) !important;
    letter-spacing: 0.02em !important;
}

.nav-item a {
    position: relative;
    border-radius: 8px;
}

.nav-item a:hover,
.nav-item a.active,
.nav-link-dynamic.active {
    color: #fff !important;
}

.nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: linear-gradient(90deg, var(--pro-accent), var(--pro-accent-2));
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item a:hover::after,
.nav-item a.active::after,
.nav-link-dynamic.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.lang-switcher-box,
.lang-switcher,
.currency-toggle,
.currency-selector,
.currency-selector-header {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.lang-btn-custom.active,
.lang-btn.active,
.currency-btn.active,
.currency-toggle button.active {
    background: #fff !important;
    color: #05070a !important;
}

.btn-panel-user,
.btn-usfans,
.btn-usfans-promo,
.gc-btn-main,
.tracking-btn,
.discrete-promo,
.btn-supplier,
.btn-action,
.btn-add,
.tab-btn,
.card-primary-btn,
.card-secondary-btn,
.card-view-qc,
.pagination button {
    border-radius: 8px !important;
}

.btn-panel-user,
.btn-usfans,
.gc-btn-main,
.tracking-btn,
.btn-export,
.tab-btn.active,
.card-primary-btn {
    background: linear-gradient(135deg, #006bff 0%, #00b8ff 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 110, 255, 0.24) !important;
}

.btn-panel-user:hover,
.btn-usfans:hover,
.gc-btn-main:hover,
.tracking-btn:hover,
.btn-export:hover:not(:disabled),
.card-primary-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 38px rgba(0, 120, 255, 0.32) !important;
}

.hero,
.catalog-hero,
.support-hero,
.supplier-hero,
.vip-hero,
.worldcup-hero {
    background:
        linear-gradient(180deg, rgba(8, 13, 22, 0.98) 0%, rgba(5, 7, 10, 0.96) 100%) !important;
    border-bottom: 1px solid var(--pro-border) !important;
}

.hero-home {
    background: #05070a !important;
}

.hero-home::before {
    filter: saturate(1.04) contrast(1.03);
}

.hero-kicker,
.catalog-loader-kicker,
.usfans-tag,
.cat-count,
.card-brand,
.trusted-label,
.feed-header,
.stat-info h4,
.tier-header p,
.support-card p,
.faq-body p {
    letter-spacing: 0.04em !important;
}

.categories-section,
.catalog-section,
.trending-section,
.support-grid,
.supplier-section,
.forum-container,
.trust-grid,
.faq-section-premium,
.process-section {
    width: min(100% - 64px, 1480px) !important;
}

.categories-section,
.catalog-section,
.trending-section,
.supplier-section,
.faq-section-premium,
.process-section {
    margin-left: auto !important;
    margin-right: auto !important;
}

.controls-wrapper,
.toolbar,
.admin-tabs,
.advanced-filters,
.catalog-loader-panel,
.gc-auth-box,
.side-panel,
.review-modal-box,
.modal-box,
.login-wrapper,
.forum-sidebar,
.feed-box,
.tracking-box,
.ranking-card {
    background: var(--pro-surface) !important;
    border: 1px solid var(--pro-border) !important;
    box-shadow: var(--pro-shadow) !important;
}

.controls-wrapper,
.toolbar,
.admin-tabs,
.advanced-filters {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cat-card,
.product-card,
.support-card,
.supplier-card,
.faq-item,
.post-card,
.stat-card,
.radar-card,
.ps-item,
.review-item,
.hero-stat,
.trust-item {
    background: linear-gradient(180deg, rgba(18, 23, 32, 0.96) 0%, rgba(9, 12, 18, 0.96) 100%) !important;
    border: 1px solid var(--pro-border) !important;
    border-radius: 10px !important;
    box-shadow: var(--pro-shadow-soft) !important;
}

.cat-card:hover,
.product-card:hover,
.support-card:hover,
.supplier-card:hover,
.post-card:hover,
.stat-card:hover,
.ps-item:hover {
    border-color: var(--pro-border-strong) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 120, 255, 0.16) !important;
}

.cat-bg,
.card-img,
.card-img-wrapper img,
.td-img,
.review-img,
.ps-img {
    background: #eef2f7;
}

.card-img-wrapper {
    background: #f2f5f9 !important;
}

.card-body,
.review-right,
.sp-body {
    background: linear-gradient(180deg, rgba(13, 17, 24, 0.98) 0%, rgba(8, 10, 15, 0.98) 100%) !important;
}

.card-title,
.prod-title-modal,
.post-title,
.supplier-header h3,
.sidebar-header,
.section-title-center h2,
.tier-header h2 {
    color: #fff !important;
}

.card-brand,
.review-text,
.post-meta,
.feed-meta,
.site-footer p,
.footer-logo,
.support-card p,
.tier-header p {
    color: var(--pro-muted) !important;
}

.card-price,
.ps-price,
.prod-brand-modal,
.support-icon,
.trust-item i,
.stat-icon,
.feed-time {
    color: var(--pro-accent-2) !important;
}

.vendor-badge,
.premium-vendor-badge,
.summer-pick-badge,
.low-stock-badge {
    border-radius: 7px !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
}

.search-box input,
.search-admin input,
.search-vendor input,
.filter-select,
.price-input,
.gc-input,
.login-input,
.inline-edit-input,
.form-group input,
.form-group select,
.form-group textarea,
textarea {
    background: rgba(3, 5, 8, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

.search-box input:focus,
.search-admin input:focus,
.search-vendor input:focus,
.filter-select:focus,
.price-input:focus,
.gc-input:focus,
.login-input:focus,
.inline-edit-input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
textarea:focus {
    border-color: rgba(20, 200, 255, 0.62) !important;
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.table-container {
    background: rgba(8, 11, 16, 0.95) !important;
    border: 1px solid var(--pro-border) !important;
    border-radius: 10px !important;
    box-shadow: var(--pro-shadow) !important;
}

th {
    background: #0b1018 !important;
    color: rgba(247, 249, 252, 0.62) !important;
    border-bottom: 1px solid rgba(0, 153, 255, 0.22) !important;
}

td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.045) !important;
}

tr:hover td {
    background: rgba(0, 120, 255, 0.045) !important;
}

.site-footer {
    background: #040609 !important;
    border-top: 1px solid var(--pro-border) !important;
}

.footer-social-links a,
.social-btn,
.share-icon,
.badge-heart,
.close-modal,
.gc-close-btn,
.sp-close-banner,
.close-public-modal-btn,
.action-icons i {
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#scroll-to-top {
    border-radius: 50% !important;
    box-shadow: 0 16px 34px rgba(0, 120, 255, 0.34) !important;
}

@media (min-width: 1001px) {
    .product-grid {
        gap: clamp(16px, 1.5vw, 24px) !important;
    }

    .product-card {
        min-height: 100%;
    }

    .card-body {
        min-height: 210px;
    }
}

@media (max-width: 1000px) {
    .nav-menu {
        background: rgba(5, 8, 13, 0.98) !important;
        border-left: 1px solid var(--pro-border) !important;
    }

    .nav-menu-overlay.open {
        background: rgba(0, 0, 0, 0.72) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .categories-section,
    .catalog-section,
    .trending-section,
    .support-grid,
    .supplier-section,
    .forum-container,
    .trust-grid,
    .faq-section-premium,
    .process-section {
        width: 100% !important;
    }
}

@media (max-width: 760px) {
    body {
        background: #05070a !important;
    }

    header,
    header#main-header {
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.54) !important;
    }

    .logo a {
        font-size: 1.45rem !important;
    }

    .hero h1,
    .catalog-hero h1,
    .support-hero h1,
    .supplier-hero h1,
    .vip-hero h1 {
        font-size: clamp(2.1rem, 11vw, 3.1rem) !important;
        line-height: 1.02 !important;
    }

    .controls-wrapper,
    .toolbar,
    .advanced-filters {
        border-radius: 10px !important;
        padding: 12px !important;
    }

    .filters-bar,
    .toolbar {
        gap: 8px !important;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .product-card {
        border-radius: 9px !important;
        min-width: 0 !important;
    }

    .card-body {
        padding: 10px !important;
        min-height: 176px !important;
    }

    .card-title {
        font-size: 0.85rem !important;
        line-height: 1.32 !important;
    }

    .card-price {
        font-size: 1.08rem !important;
    }

    .btn-usfans,
    .gc-btn-main,
    .card-primary-btn,
    .card-secondary-btn,
    .card-view-qc {
        min-height: 38px !important;
        font-size: 0.76rem !important;
        padding: 9px 10px !important;
    }

    .table-container {
        border-radius: 10px !important;
    }

    .modal-box,
    .gc-auth-box,
    .review-modal-box,
    .side-panel {
        border-radius: 12px !important;
    }
}

/* ================= VISUAL POLISH GLOBAL ================= */
@media (min-width: 1001px) {
    body { background: #050607; }
    header, header#main-header {
        background: rgba(5, 7, 10, 0.82) !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        box-shadow: 0 10px 34px rgba(0,0,0,0.34);
    }
    .nav-item a, .nav-item {
        letter-spacing: 0.5px;
    }
    .nav-item a {
        border-radius: 8px;
        padding: 8px 0;
    }
    .btn-panel-user, .discrete-promo, .gc-btn-main, .btn-usfans, .tracking-btn {
        border-radius: 8px !important;
    }
    .categories-section, .catalog-section, .trending-section, .support-grid, .trust-grid {
        width: min(100% - 64px, 1480px);
    }
    .category-showcase {
        gap: 18px;
    }
    .cat-card, .product-card, .support-card, .faq-item, .tracking-box {
        border-color: rgba(255,255,255,0.09);
        box-shadow: 0 18px 50px rgba(0,0,0,0.32);
    }
    .product-card {
        border-radius: 10px;
        background: linear-gradient(180deg, #101115 0%, #08090c 100%);
    }
    .product-card:hover, .cat-card:hover, .support-card:hover {
        box-shadow: 0 24px 60px rgba(0,0,0,0.46), 0 0 0 1px rgba(0,102,255,0.22);
    }
    .card-img-wrapper {
        background: #f5f7fb;
    }
    .site-footer {
        background: #050607;
    }
}

@media (max-width: 1000px) {
    header, header#main-header {
        box-shadow: 0 10px 28px rgba(0,0,0,0.42);
    }
    .categories-section, .catalog-section, .trending-section, .support-grid {
        width: 100%;
    }
    .cat-card, .product-card {
        border-radius: 10px;
    }
}
}

/* ================= FETE FINDS PRO VISUAL SYSTEM ACTIVE ================= */
:root {
    --pro-bg: #05070a;
    --pro-surface: rgba(13, 17, 24, 0.9);
    --pro-border: rgba(255, 255, 255, 0.11);
    --pro-border-strong: rgba(0, 153, 255, 0.34);
    --pro-text: #f7f9fc;
    --pro-muted: rgba(247, 249, 252, 0.64);
    --pro-accent: #0078ff;
    --pro-accent-2: #14c8ff;
    --pro-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    --pro-shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.32);
}

html,
body {
    background: linear-gradient(180deg, #060a10 0%, #05070a 42%, #030406 100%) !important;
    color: var(--pro-text) !important;
    letter-spacing: 0 !important;
}

.top-marquee {
    background: linear-gradient(90deg, #005be8 0%, #008cff 46%, #14c8ff 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 10px 32px rgba(0, 56, 140, 0.28) !important;
}

header,
header#main-header {
    background: rgba(5, 8, 13, 0.84) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.38) !important;
}

.logo,
.logo a,
.footer-logo {
    letter-spacing: 0 !important;
}

.nav-menu {
    gap: clamp(12px, 1.35vw, 26px) !important;
}

.nav-item,
.nav-item a {
    color: rgba(247, 249, 252, 0.68) !important;
    letter-spacing: 0.02em !important;
}

.nav-item a {
    position: relative;
    border-radius: 8px;
}

.nav-item a:hover,
.nav-item a.active,
.nav-link-dynamic.active {
    color: #fff !important;
}

.nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: linear-gradient(90deg, var(--pro-accent), var(--pro-accent-2));
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item a:hover::after,
.nav-item a.active::after,
.nav-link-dynamic.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.lang-switcher-box,
.lang-switcher,
.currency-toggle,
.currency-selector,
.currency-selector-header {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.lang-btn-custom.active,
.lang-btn.active,
.currency-btn.active,
.currency-toggle button.active {
    background: #fff !important;
    color: #05070a !important;
}

.btn-panel-user,
.btn-usfans,
.btn-usfans-promo,
.gc-btn-main,
.tracking-btn,
.discrete-promo,
.btn-supplier,
.btn-action,
.btn-add,
.tab-btn,
.card-primary-btn,
.card-secondary-btn,
.card-view-qc,
.pagination button {
    border-radius: 8px !important;
}

.btn-panel-user,
.btn-usfans,
.gc-btn-main,
.tracking-btn,
.btn-export,
.tab-btn.active,
.card-primary-btn {
    background: linear-gradient(135deg, #006bff 0%, #00b8ff 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 110, 255, 0.24) !important;
}

.btn-panel-user:hover,
.btn-usfans:hover,
.gc-btn-main:hover,
.tracking-btn:hover,
.btn-export:hover:not(:disabled),
.card-primary-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 38px rgba(0, 120, 255, 0.32) !important;
}

.hero,
.catalog-hero,
.support-hero,
.supplier-hero,
.vip-hero,
.worldcup-hero {
    background: linear-gradient(180deg, rgba(8, 13, 22, 0.98) 0%, rgba(5, 7, 10, 0.96) 100%) !important;
    border-bottom: 1px solid var(--pro-border) !important;
}

.hero-home {
    background: #05070a !important;
}

.hero-home::before {
    filter: saturate(1.04) contrast(1.03);
}

.categories-section,
.catalog-section,
.trending-section,
.support-grid,
.supplier-section,
.forum-container,
.trust-grid,
.faq-section-premium,
.process-section {
    width: min(100% - 64px, 1480px) !important;
}

.categories-section,
.catalog-section,
.trending-section,
.supplier-section,
.faq-section-premium,
.process-section {
    margin-left: auto !important;
    margin-right: auto !important;
}

.controls-wrapper,
.toolbar,
.admin-tabs,
.advanced-filters,
.catalog-loader-panel,
.gc-auth-box,
.side-panel,
.review-modal-box,
.modal-box,
.login-wrapper,
.forum-sidebar,
.feed-box,
.tracking-box,
.ranking-card {
    background: var(--pro-surface) !important;
    border: 1px solid var(--pro-border) !important;
    box-shadow: var(--pro-shadow) !important;
}

.controls-wrapper,
.toolbar,
.admin-tabs,
.advanced-filters {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cat-card,
.product-card,
.support-card,
.supplier-card,
.faq-item,
.post-card,
.stat-card,
.radar-card,
.ps-item,
.review-item,
.hero-stat,
.trust-item {
    background: linear-gradient(180deg, rgba(18, 23, 32, 0.96) 0%, rgba(9, 12, 18, 0.96) 100%) !important;
    border: 1px solid var(--pro-border) !important;
    border-radius: 10px !important;
    box-shadow: var(--pro-shadow-soft) !important;
}

.cat-card:hover,
.product-card:hover,
.support-card:hover,
.supplier-card:hover,
.post-card:hover,
.stat-card:hover,
.ps-item:hover {
    border-color: var(--pro-border-strong) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 120, 255, 0.16) !important;
}

.card-img-wrapper {
    background: #f2f5f9 !important;
}

.card-body,
.review-right,
.sp-body {
    background: linear-gradient(180deg, rgba(13, 17, 24, 0.98) 0%, rgba(8, 10, 15, 0.98) 100%) !important;
}

.card-title,
.prod-title-modal,
.post-title,
.supplier-header h3,
.sidebar-header,
.section-title-center h2,
.tier-header h2 {
    color: #fff !important;
}

.card-brand,
.review-text,
.post-meta,
.feed-meta,
.site-footer p,
.footer-logo,
.support-card p,
.tier-header p {
    color: var(--pro-muted) !important;
}

.card-price,
.ps-price,
.prod-brand-modal,
.support-icon,
.trust-item i,
.stat-icon,
.feed-time {
    color: var(--pro-accent-2) !important;
}

.vendor-badge,
.premium-vendor-badge,
.summer-pick-badge,
.low-stock-badge {
    border-radius: 7px !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
}

.search-box input,
.search-admin input,
.search-vendor input,
.filter-select,
.price-input,
.gc-input,
.login-input,
.inline-edit-input,
.form-group input,
.form-group select,
.form-group textarea,
textarea {
    background: rgba(3, 5, 8, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

.search-box input:focus,
.search-admin input:focus,
.search-vendor input:focus,
.filter-select:focus,
.price-input:focus,
.gc-input:focus,
.login-input:focus,
.inline-edit-input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
textarea:focus {
    border-color: rgba(20, 200, 255, 0.62) !important;
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.table-container {
    background: rgba(8, 11, 16, 0.95) !important;
    border: 1px solid var(--pro-border) !important;
    border-radius: 10px !important;
    box-shadow: var(--pro-shadow) !important;
}

th {
    background: #0b1018 !important;
    color: rgba(247, 249, 252, 0.62) !important;
    border-bottom: 1px solid rgba(0, 153, 255, 0.22) !important;
}

td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.045) !important;
}

tr:hover td {
    background: rgba(0, 120, 255, 0.045) !important;
}

.site-footer {
    background: #040609 !important;
    border-top: 1px solid var(--pro-border) !important;
}

.footer-social-links a,
.social-btn,
.share-icon,
.badge-heart,
.close-modal,
.gc-close-btn,
.sp-close-banner,
.close-public-modal-btn,
.action-icons i {
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#scroll-to-top {
    border-radius: 50% !important;
    box-shadow: 0 16px 34px rgba(0, 120, 255, 0.34) !important;
}

@media (min-width: 1001px) {
    .product-grid {
        gap: clamp(16px, 1.5vw, 24px) !important;
    }

    .card-body {
        min-height: 210px;
    }
}

@media (max-width: 1000px) {
    .nav-menu {
        background: rgba(5, 8, 13, 0.98) !important;
        border-left: 1px solid var(--pro-border) !important;
    }

    .nav-menu-overlay.open {
        background: rgba(0, 0, 0, 0.72) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .categories-section,
    .catalog-section,
    .trending-section,
    .support-grid,
    .supplier-section,
    .forum-container,
    .trust-grid,
    .faq-section-premium,
    .process-section {
        width: 100% !important;
    }
}

@media (max-width: 760px) {
    header,
    header#main-header {
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.54) !important;
    }

    .logo a {
        font-size: 1.45rem !important;
    }

    .hero h1,
    .catalog-hero h1,
    .support-hero h1,
    .supplier-hero h1,
    .vip-hero h1 {
        font-size: clamp(2.1rem, 11vw, 3.1rem) !important;
        line-height: 1.02 !important;
    }

    .controls-wrapper,
    .toolbar,
    .advanced-filters {
        border-radius: 10px !important;
        padding: 12px !important;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .card-body {
        padding: 10px !important;
        min-height: 176px !important;
    }

    .card-title {
        font-size: 0.85rem !important;
        line-height: 1.32 !important;
    }

    .card-price {
        font-size: 1.08rem !important;
    }

    .btn-usfans,
    .gc-btn-main,
    .card-primary-btn,
    .card-secondary-btn,
    .card-view-qc {
        min-height: 38px !important;
        font-size: 0.76rem !important;
        padding: 9px 10px !important;
    }
}

/* ================= FETE FINDS FINISHING LAYER ================= */
::selection {
    background: rgba(0, 162, 255, 0.38);
    color: #fff;
}

body {
    background:
        linear-gradient(180deg, #05070a 0%, #070a0f 46%, #05070a 100%) !important;
}

header,
header#main-header {
    background: rgba(4, 7, 12, 0.86) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.44) !important;
}

.top-marquee {
    background: linear-gradient(90deg, #005bff 0%, #00a6ff 48%, #16b86d 100%) !important;
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.22);
}

.logo a,
.footer-logo {
    letter-spacing: 0 !important;
}

.nav-item a {
    position: relative;
}

.nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00a2ff, #18c37e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.nav-item a:hover::after,
.nav-item a.active::after {
    transform: scaleX(1);
}

.section-title-center h2,
.supplier-title,
.support-hero h1,
.catalog-hero h1,
.worldcup-hero h1,
.vip-hero h1 {
    letter-spacing: 0 !important;
}

.section-title-center p,
.catalog-hero p,
.supplier-hero p,
.support-hero p,
.worldcup-hero p,
.vip-hero p {
    color: rgba(247, 249, 252, 0.72) !important;
}

.cat-card,
.supplier-card,
.support-card,
.post-card,
.faq-item,
.trust-item,
.ranking-card,
.review-item {
    border-radius: 8px !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.cat-card,
.support-card,
.supplier-card,
.post-card,
.trust-item {
    position: relative;
    overflow: hidden;
}

.cat-card::after,
.support-card::after,
.supplier-card::after,
.post-card::after,
.trust-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), transparent 44%, rgba(0,0,0,0.18));
    pointer-events: none;
    opacity: 0.72;
}

.cat-card > *,
.support-card > *,
.supplier-card > *,
.post-card > *,
.trust-item > * {
    position: relative;
    z-index: 1;
}

#scroll-to-top {
    border: 1px solid rgba(255,255,255,0.16) !important;
    box-shadow: 0 16px 34px rgba(0, 102, 255, 0.28) !important;
}

input,
select,
textarea,
.filter-select,
.gc-input,
.price-input {
    border-color: rgba(255,255,255,0.12) !important;
}

input:focus,
select:focus,
textarea:focus,
.filter-select:focus,
.gc-input:focus,
.price-input:focus {
    border-color: rgba(0, 162, 255, 0.74) !important;
    box-shadow: 0 0 0 3px rgba(0, 162, 255, 0.14) !important;
}

.hero-home .hero-link-row .btn-usfans:not(.btn-worldcup) {
    background: linear-gradient(135deg, #f7f9fc 0%, #dcecff 100%) !important;
    color: #05070a !important;
    -webkit-text-fill-color: #05070a !important;
}

.hero-home .hero-link-row .btn-usfans:not(.btn-worldcup) *,
.hero-home .hero-link-row .btn-usfans:not(.btn-worldcup) i,
.hero-home .hero-link-row .btn-usfans:not(.btn-worldcup) span {
    color: #05070a !important;
    -webkit-text-fill-color: #05070a !important;
    background: transparent !important;
}

.hero-home .hero-link-row .btn-worldcup {
    background: linear-gradient(135deg, #0f7a4d 0%, #20c778 100%) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.hero-home .hero-link-row .btn-worldcup *,
.hero-home .hero-link-row .btn-worldcup i,
.hero-home .hero-link-row .btn-worldcup span {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: transparent !important;
}

/* Compact global header so the top navigation fits without zooming out. */
header#main-header {
    gap: clamp(10px, 1.4vw, 22px) !important;
    padding-left: clamp(14px, 2vw, 28px) !important;
    padding-right: clamp(14px, 2vw, 28px) !important;
}

header#main-header .logo,
.logo {
    flex: 0 0 auto !important;
    min-width: clamp(185px, 14vw, 315px) !important;
}

header#main-header .logo a,
.logo a {
    font-size: clamp(1.5rem, 1.85vw, 1.95rem) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.nav-menu {
    gap: clamp(9px, 1.2vw, 18px) !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.nav-item a,
.nav-item {
    font-size: clamp(0.68rem, 0.76vw, 0.82rem) !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
}

header#main-header .nav-menu .nav-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header-actions {
    gap: 8px !important;
    min-width: max-content !important;
}

.lang-btn-custom {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

@media (min-width: 1500px) {
    header#main-header .logo,
    .logo {
        min-width: clamp(285px, 15vw, 330px) !important;
    }
}

@media (max-width: 1180px) {
    header#main-header .logo,
    .logo {
        min-width: 0 !important;
    }
}
