/* ==========================================================================
   FSTORE PERÚ - TIENDA VIRTUAL E-COMMERCE PROFESIONAL (LIGHT THEME)
   Inspirado en Plaza Vea, Falabella, Mercado Libre, Codashop Light y Apple Store
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Rajdhani:wght@600;700;800&display=swap');

:root {
    --color-bg-base: #0b0f19;
    --color-bg-surface: #131b2e;
    --color-bg-card: #161f36;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.18);
    
    --color-text-title: #f8fafc;
    --color-text-body: #cbd5e1;
    --color-text-muted: #94a3b8;
    --color-text-light: #64748b;
    
    --color-primary: #0284c7;
    --color-primary-dark: #0369a1;
    --color-primary-light: rgba(56, 189, 248, 0.15);
    
    --color-accent-amber: #f59e0b;
    --color-accent-gold: #fbbf24;
    --color-accent-red: #ef4444;
    --color-accent-green: #10b981;
    --color-accent-green-dark: #34d399;
    
    --font-heading: 'Rajdhani', 'Outfit', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(2, 132, 199, 0.25);
}

/* Base Reset & Full Screen Layout */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: clip !important;
    width: 100% !important;
}

body {
    background-color: #0b0f19;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(2, 132, 199, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   CONTENEDOR FLUIDO AL 98% (PANTALLA COMPLETA SIN FRANJAS VACÍAS)
   ========================================================================== */
.container, .main-container, .wrapper, .container-fluid,
.announcement-container, .nav-container, .hero-slider-section,
.trust-pillars-section, .category-pills-bar, .catalog-main-section,
.how-it-works-section, .payment-methods-section, .testimonials-section,
.faq-section, .store-footer-container {
    width: 98% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin: 0 auto !important;
}

/* ==========================================================================
   1. BARRA SUPERIOR DE CONFIANZA & ATENCIÓN OFICIAL
   ========================================================================== */
.top-announcement-bar {
    background: #0f172a;
    color: #f8fafc;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}

.announcement-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
}

.announcement-left,
.announcement-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-weight: 500;
}

.announcement-item strong {
    color: #ffffff;
    font-weight: 700;
}

.announcement-item .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.announcement-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.announcement-link:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .announcement-right {
        display: none;
    }
    .announcement-container {
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   2. HEADER PRINCIPAL DE TIENDA VIRTUAL (BLANCO PURO GLASS)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 94px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
}

/* Logo Oficial */
.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar-brand-img {
    height: 84px;
    max-height: 88px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.02) contrast(1.06);
    transition: filter 0.3s ease;
}

.navbar-brand:hover .navbar-brand-img {
    filter: brightness(1.05) contrast(1.1);
}

/* Buscador E-Commerce Central */
.navbar-search-card {
    position: relative;
    flex: 1;
    max-width: 520px;
    height: 48px;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    padding: 0 1.2rem;
    transition: all 0.25s ease;
}

.navbar-search-card:focus-within {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12), 0 4px 14px rgba(0, 0, 0, 0.06);
}

.navbar-search-icon {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.navbar-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-title);
    font-family: inherit;
}

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

.home-search-clear {
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 4px;
    display: none;
}

.home-search-clear:hover {
    color: var(--color-text-title);
}

.home-search-kbd {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-muted);
    background: #e2e8f0;
    padding: 3px 7px;
    border-radius: 5px;
    border: 1px solid #cbd5e1;
    white-space: nowrap;
}

/* Enlaces y Acciones a la Derecha */
.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.nav-main-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.55rem 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-item-link:hover {
    color: var(--color-primary);
    background: #f1f5f9;
}

.nav-item-link.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
    border: 1px solid #bae6fd;
}

.nav-divider {
    width: 1px;
    height: 32px;
    background: var(--color-border);
}

.nav-currency-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    padding: 0 0.85rem;
    height: 44px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-body);
    user-select: none;
    box-shadow: var(--shadow-sm);
}

.btn-nav-vip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 0 1.25rem;
    height: 44px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
    transition: all 0.22s ease;
}

.btn-nav-vip:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #075985 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
    color: #ffffff;
}

.btn-nav-user {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--color-text-title);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0 1.15rem;
    height: 44px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.btn-nav-user:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 1200px) {
    .nav-main-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 76px;
    }
    .navbar-brand-img {
        height: 58px;
    }
    .navbar-search-card,
    .nav-currency-pill {
        display: none;
    }
    .btn-nav-vip,
    .btn-nav-user {
        height: 38px;
        padding: 0 0.85rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   3. HERO BANNER PROMOCIONAL (CAROUSEL DE OFERTAS)
   ========================================================================== */
.hero-slider-section {
    width: 98% !important;
    max-width: 100% !important;
    margin: 20px auto 16px auto !important;
    padding: 0 24px !important;
}

.hero-slider-container {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: 420px !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
}

.hero-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 50px;
    color: #ffffff;
}

.hero-slide-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.hero-badge-neon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
}

.hero-badge-cyan {
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-slide-title span {
    color: #38bdf8;
}

.hero-slide-desc {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 22px;
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-accent-amber) 0%, var(--color-accent-gold) 100%);
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    transition: all 0.25s ease;
}

.hero-slide-cta:hover {
    background: linear-gradient(135deg, #fbbf24 0%, var(--color-accent-amber) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.6);
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    color: var(--color-text-title);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.slider-arrow-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-prev { left: 16px; }
.slider-arrow-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 28px;
    background: var(--color-accent-amber);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 320px;
    }
    .hero-slide-content {
        padding: 0 24px;
    }
    .hero-slide-title {
        font-size: 1.85rem;
    }
    .hero-slide-desc {
        font-size: 0.92rem;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   4. PILARES DE CONFIANZA RETAIL (4 CARDS E-COMMERCE)
   ========================================================================== */
.trust-pillars-section {
    width: 100%;
    max-width: 1600px;
    margin: 16px auto 28px auto;
    padding: 0 24px;
}

.trust-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pillar-card {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(56, 189, 248, 0.3);
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon-cyan { background: rgba(0, 242, 254, 0.1) !important; color: #00f2fe !important; border: 1px solid rgba(0, 242, 254, 0.3) !important; box-shadow: 0 0 15px rgba(0, 242, 254, 0.2) !important; }
.pillar-icon-emerald { background: rgba(16, 185, 129, 0.1) !important; color: #10b981 !important; border: 1px solid rgba(16, 185, 129, 0.3) !important; box-shadow: 0 0 15px rgba(16, 185, 129, 0.2) !important; }
.pillar-icon-gold { background: rgba(245, 158, 11, 0.1) !important; color: #fbbf24 !important; border: 1px solid rgba(245, 158, 11, 0.3) !important; box-shadow: 0 0 15px rgba(245, 158, 11, 0.2) !important; }
.pillar-icon-purple { background: rgba(168, 85, 247, 0.1) !important; color: #c084fc !important; border: 1px solid rgba(168, 85, 247, 0.3) !important; box-shadow: 0 0 15px rgba(168, 85, 247, 0.2) !important; }

.pillar-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-title);
    margin-bottom: 2px;
}

.pillar-info p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .trust-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .trust-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   5. BARRA DE CATEGORÍAS RÁPIDAS (PILLS BLANCOS RETAIL)
   ========================================================================== */
.category-pills-bar {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 28px auto;
    padding: 0 24px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-pills-bar::-webkit-scrollbar {
    display: none;
}

.category-pill {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-body);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 20px;
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.category-pill:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #1a253e;
    color: #ffffff;
    transform: translateY(-1px);
}

.category-pill.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   6. SECCIÓN DE PRODUCTOS / CATÁLOGO PRINCIPAL (PANTALLA COMPLETA 4 COLS)
   ========================================================================== */
.catalog-main-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 50px auto;
    padding: 0 24px;
}

.catalog-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-border);
}

.catalog-section-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 900;
    color: var(--color-text-title);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-section-title span {
    color: var(--color-primary);
}

.catalog-badge-count {
    background: #e0f2fe;
    color: var(--color-primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    display: none;
}

/* Catálogo de Productos en Formato Retail Adaptativo */
/* PC / Monitor (más de 1024px): 4 columnas fijas */
.catalog-grid,
.catalog-grid-6col,
.games-grid,
#gamesCatalogGrid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
}

/* Tablets (641px a 1024px): 3 columnas */
@media (min-width: 641px) and (max-width: 1024px) {
    .catalog-grid,
    .catalog-grid-6col,
    .games-grid,
    #gamesCatalogGrid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }
}

/* Celulares (menos de 640px): Exactamente 2 columnas estilo app */
@media (max-width: 640px) {
    .catalog-grid,
    .catalog-grid-6col,
    .games-grid,
    #gamesCatalogGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

.game-catalog-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ==========================================================================
   7. FICHA DE PRODUCTO E-COMMERCE RETAIL (.product-card)
   ========================================================================== */
.product-card,
.game-card {
    background: #161f36 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.25s ease !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35) !important;
}

.product-card:hover,
.game-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(56, 189, 248, 0.45) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(2, 132, 199, 0.2) !important;
}

/* Portada con Badges Flotantes */
.product-card-cover,
.game-card-cover {
    position: relative !important;
    width: 100% !important;
    height: 275px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    background: #0e1424 !important;
    margin-bottom: 14px !important;
}

.product-card-img,
.product-card-cover img,
.game-card-cover img {
    width: 100% !important;
    height: 275px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

.product-card:hover .product-card-img,
.game-card:hover .game-card-cover img {
    transform: scale(1.05) !important;
}

/* Badges Flotantes Superiores */
.badge-retail-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.4px;
    box-shadow: 0 3px 8px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
}

.badge-retail-delivery {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: var(--color-accent-green-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 6px;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15);
}

/* Cuerpo de la Tarjeta */
.product-card-body,
.game-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
}

.product-card-category {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
}

.product-card-title,
.game-card-title {
    font-family: var(--font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #f8fafc !important;
    line-height: 1.25 !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: 0.2px !important;
}

.product-card-rating,
.game-card-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    color: #fbbf24 !important;
    margin-bottom: 14px !important;
}

.product-card-rating .rating-divider {
    color: rgba(255, 255, 255, 0.15) !important;
}

.product-card-rating .product-card-sales {
    color: #94a3b8 !important;
    font-weight: 600 !important;
}

/* Fila de Precios */
.product-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 14px !important;
    padding-top: 12px !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.1) !important;
}

.price-old {
    font-size: 0.88rem !important;
    color: #64748b !important;
    text-decoration: line-through !important;
    font-weight: 600 !important;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-label {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
}

.price-amount,
.game-card-price-val {
    font-family: var(--font-heading) !important;
    font-size: 1.45rem !important;
    font-weight: 900 !important;
    color: #fbbf24 !important;
    letter-spacing: 0.3px !important;
}

/* Botón de Compra Ancho [⚡ RECARGAR AHORA] */
.btn-retail-recharge {
    width: 100% !important;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
    font-size: 0.98rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.4px !important;
    padding: 12px 0 !important;
    border-radius: 9px !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.45) !important;
    transition: all 0.22s ease !important;
    display: block !important;
}

.product-card:hover .btn-retail-recharge,
.game-card:hover .btn-retail-recharge {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 22px rgba(234, 88, 12, 0.65) !important;
    transform: translateY(-2px) !important;
}

/* Sin Coincidencias */
.no-search-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    margin: 30px auto;
}

.no-search-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.no-search-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-title);
    margin-bottom: 6px;
}

.no-search-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.btn-reset-search {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================================================================
   8. CÓMO COMPRAR EN 3 PASOS (EXPERIENCIA E-COMMERCE CONFIABLE)
   ========================================================================== */
.how-it-works-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.section-headline {
    text-align: center;
    margin-bottom: 35px;
}

.section-headline h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text-title);
    margin-bottom: 8px;
}

.section-headline h3 span {
    color: var(--color-primary);
}

.section-headline p {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.95rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.35);
}

.step-icon {
    font-size: 2.4rem;
    margin: 10px 0 16px 0;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-title);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   9. MEDIOS DE PAGO AUTORIZADOS EN PERÚ
   ========================================================================== */
.payment-methods-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.payment-banner {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.payment-banner-info h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--color-text-title);
    margin-bottom: 4px;
}

.payment-banner-info p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.payment-logos-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pay-badge-pro {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--color-text-title);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pay-badge-yape { border-color: #8b5cf6; color: #7c3aed; background: #faf5ff; }
.pay-badge-plin { border-color: #06b6d4; color: #0284c7; background: #ecfeff; }
.pay-badge-bcp  { border-color: #f59e0b; color: #b45309; background: #fffbeb; }

/* ==========================================================================
   10. TESTIMONIOS REALES (PRUEBA SOCIAL GAMER)
   ========================================================================== */
.testimonials-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: var(--color-accent-amber);
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.author-meta h5 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--color-text-title);
}

.author-meta span {
    font-size: 0.78rem;
    color: var(--color-accent-green-dark);
    font-weight: 700;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   11. PREGUNTAS FRECUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 70px auto;
    padding: 0 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--color-text-title);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 800px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   12. FOOTER OFICIAL COMPLETO (SLATE 900 DE CONTRASTE ELEGANTE)
   ========================================================================== */
.store-footer-premium {
    background: #0f172a;
    color: #f8fafc;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1e293b;
    margin-top: auto;
}

.store-footer-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.store-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1100px) {
    .store-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .store-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.footer-col-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.footer-brand-p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.footer-links-list li {
    margin-bottom: 9px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #38bdf8;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 9px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.22s ease;
}

.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.store-footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

.store-footer-disclaimer {
    font-size: 0.78rem;
    color: #64748b;
    max-width: 650px;
    line-height: 1.4;
}

/* ==========================================================================
   13. BOTÓN FLOTANTE DE WHATSAPP: SOLO ÍCONO CIRCULAR ULTRA ELEGANTE
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 99999;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.whatsapp-icon-inner {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-status-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border: 2px solid #0b0f19;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

.whatsapp-pulse {
    position: absolute;
    inset: -3px;
    border-radius: 50% !important;
    border: 2px solid rgba(37, 211, 102, 0.7) !important;
    animation: waIconPulseAnim 2.2s infinite ease-out !important;
    pointer-events: none;
}

@keyframes waIconPulseAnim {
    0% { transform: scale(0.92); opacity: 0.95; }
    65% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.floating-whatsapp-btn:hover {
    transform: translateY(-4px);
}

.floating-whatsapp-btn:hover .whatsapp-icon-inner {
    transform: scale(1.08);
    box-shadow: 
        0 14px 34px rgba(37, 211, 102, 0.65),
        0 0 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2dd4bf 0%, #16a34a 100%) !important;
    border-color: rgba(255, 255, 255, 0.6);
}

.whatsapp-tooltip-pill {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
    letter-spacing: 0.2px;
}

.whatsapp-tooltip-pill::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(15, 23, 42, 0.95);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip-pill {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon-inner {
        width: 50px;
        height: 50px;
    }
    .whatsapp-tooltip-pill {
        display: none !important;
    }
}
