/* ========================================
   ShopHack - Gaming Key Store
   Custom Styles & Animations
   ======================================== */

/* CSS Variables */
:root {
    --neon-cyan: #00f0ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-green: #22c55e;
    --dark-bg: #0a0e1a;
    --dark-card: #111827;
    --dark-card-hover: #1a2332;
    --dark-surface: #0f1629;
    --dark-border: #1e293b;
    --gradient-main: linear-gradient(135deg, #00f0ff, #a855f7);
    --gradient-button: linear-gradient(135deg, #a855f7, #ec4899);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #ef4444);
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.1);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 40px rgba(168, 85, 247, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-alt: 'Space Grotesk', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: #e2e8f0;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
}

/* ====== ANIMATIONS ====== */

/* Neon Glow Pulse */
@keyframes neonPulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.1);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.5), 0 0 80px rgba(0, 240, 255, 0.2);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(0, 240, 255, 0.3);
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    }

    50% {
        border-color: rgba(0, 240, 255, 0.6);
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rgbBorder {
    0% {
        border-color: #00f0ff;
    }

    33% {
        border-color: #a855f7;
    }

    66% {
        border-color: #ec4899;
    }

    100% {
        border-color: #00f0ff;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.9);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) translateX(15px) scale(1.05);
        opacity: 0.5;
    }
}

/* ====== UTILITY CLASSES ====== */

.font-gaming {
    font-family: var(--font-heading);
}

.font-alt {
    font-family: var(--font-alt);
}

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

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

.neon-text {
    animation: neonPulse 2s ease-in-out infinite;
}

.glow-cyan {
    box-shadow: var(--glow-cyan);
}

.glow-purple {
    box-shadow: var(--glow-purple);
}

/* Background Grid Pattern */
.bg-grid {
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Particles Background */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
    opacity: 0.4;
}

.particle:nth-child(2n) {
    background: var(--neon-purple);
    animation-duration: 8s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(3n) {
    background: var(--neon-pink);
    animation-duration: 10s;
    width: 4px;
    height: 4px;
    opacity: 0.3;
}

/* ====== NAVBAR ====== */

.navbar {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(0, 240, 255, 0.2);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    position: relative;
    color: #94a3b8;
    text-decoration: none;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Search Bar */
.search-bar {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: #e2e8f0;
    font-family: var(--font-body);
}

.search-bar input::placeholder {
    color: #64748b;
}

/* ====== HERO SECTION ====== */

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-alt);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    letter-spacing: 1px;
}

/* Hero Style 2 — Centered */
.hero-centered {
    text-align: center;
    justify-content: center;
}

.hero-title-lg {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
}

/* Hero Style 3 — Image Background */
.hero-bg-image {
    position: relative;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.7) 50%, rgba(10,14,26,0.85) 100%);
    z-index: 1;
}

.hero-title-xl {
    font-size: clamp(2rem, 5.5vw, 4rem);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ====== BUTTONS ====== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-main);
    background-size: 200% 200%;
    color: #0a0e1a;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(168, 85, 247, 0.2);
    animation: gradientShift 3s ease infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-button);
    background-size: 200% 200%;
    color: white;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    animation: gradientShift 3s ease infinite;
}

/* ====== GAME CARDS ====== */

.game-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.1);
}

.game-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.game-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--dark-card), transparent);
    pointer-events: none;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 1px;
}

.card-platform {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    gap: 6px;
}

.card-platform span {
    padding: 4px 8px;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-family: var(--font-alt);
    font-size: 1.125rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-price .current {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.card-price .original {
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: line-through;
}

/* ====== STATS SECTION ====== */

.stat-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-4px);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-alt);
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* ====== CATEGORY CARDS ====== */

.category-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: var(--dark-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 85, 247, 0.1);
}

.category-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.category-card:hover .icon {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.1);
}

.category-card .name {
    font-family: var(--font-alt);
    font-size: 1.125rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.5px;
}

.category-card .count {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* ====== FLASH DEAL ====== */

.flash-deal-card {
    background: var(--dark-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.flash-deal-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(239, 68, 68, 0.1);
    transform: translateY(-4px);
}

.countdown {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.countdown-item {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 48px;
}

.countdown-item .number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
}

.countdown-item .label {
    font-size: 0.625rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: 700;
}

/* ====== SECTION STYLING ====== */

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* ====== NEWSLETTER ====== */

.newsletter-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 240, 255, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
}

.newsletter-input {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    color: #e2e8f0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

/* ====== FOOTER ====== */

.footer {
    background: linear-gradient(180deg, var(--dark-bg), #050810);
    border-top: 1px solid rgba(0, 240, 255, 0.08);
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--neon-cyan);
    transform: translateX(4px);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: #94a3b8;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.15);
}

/* ====== SCROLL ANIMATIONS ====== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

/* ====== MOBILE MENU (Bottom Sheet) ====== */

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(10, 14, 26, 0.99));
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 24px 24px 0 0;
    padding: 0 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 85vh;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 12px auto 20px;
}

.mobile-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 8px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.15);
}

.mobile-nav-item.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.25);
}

.mobile-nav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
}

.mobile-nav-label {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    letter-spacing: 0.5px;
}

.mobile-nav-item.active .mobile-nav-label {
    color: var(--neon-cyan);
}

.mobile-menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    margin: 16px 0;
}

/* ====== PRODUCT PAGE ====== */

.product-gallery {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
}

.requirements-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.requirements-table th,
.requirements-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--dark-border);
}

.requirements-table th {
    color: var(--neon-cyan);
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.requirements-table td {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ====== CART PAGE ====== */

.cart-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-summary {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

/* ====== AUTH PAGES ====== */

.auth-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 440px;
    width: 100%;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
}

.auth-input {
    width: 100%;
    background: rgba(15, 22, 41, 0.8);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    color: #e2e8f0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

/* ====== FILTER SIDEBAR ====== */

.filter-sidebar {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-label {
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 1rem;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

/* Custom checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.custom-checkbox:hover {
    color: #e2e8f0;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #475569;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked {
    background: var(--gradient-main);
    border-color: var(--neon-cyan);
}

.custom-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0e1a;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Price range slider */
.price-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--dark-border);
    border-radius: 2px;
    outline: none;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-main);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* ====== PAGINATION ====== */

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: #94a3b8;
}

.pagination a:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.pagination .active {
    background: var(--gradient-main);
    color: #0a0e1a;
    font-weight: 700;
    border: none;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}