:root {
    /* Gaming/tech kleurenschema - consistent met index.html */
    --gaming-orange: #FF6B35;
    --gaming-orange-dark: #E55A2B;
    --gaming-blue: #1E40AF;
    --gaming-blue-dark: #1E3A8A;
    --neon-purple: #8B5CF6;
    --neon-cyan: #06B6D4;
    --dark-bg: #0F172A;
    --card-bg: #1E293B;
    --card-border: #334155;
    --light-text: #F1F5F9;
    --gray-text: #94A3B8;
}

html {
    overflow-y: scroll;
}

/* Prevent navbar icon layout shift during font loading */
.navbar .bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding-top: 76px; /* Ruimte voor fixed navbar */
}

/* Gaming thema classes - consistent met index.html */
.bg-gaming { background-color: var(--gaming-blue) !important; }
.text-gaming { color: var(--gaming-orange) !important; }
.text-gaming-blue { color: var(--gaming-blue) !important; }
.text-gaming-orange { color: var(--gaming-orange) !important; }
.text-neon { color: var(--neon-purple) !important; }
.bg-card { background-color: var(--card-bg) !important; }
.bg-dark-bg { background-color: var(--dark-bg) !important; }
.border-gaming { border-color: var(--card-border) !important; }
.text-gray-300 { color: #cbd5e1; }
.text-gray-400 { color: var(--gray-text); }

.btn-primary {
    background-color: var(--gaming-orange);
    border-color: var(--gaming-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--gaming-orange-dark);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--card-border);
    color: var(--light-text);
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--gaming-orange);
    color: var(--light-text);
}

/* Navbar login/account button */
.btn-login-nav {
    background: linear-gradient(135deg, var(--gaming-orange), var(--gaming-orange-dark));
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}
.btn-login-nav:hover {
    background: linear-gradient(135deg, var(--gaming-orange-dark), var(--gaming-orange));
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}
.btn-login-nav.dropdown-toggle {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--gaming-orange) !important;
    min-width: 80px;
    text-align: center;
}
.btn-login-nav.dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.25);
    color: white !important;
}

/* Gaming logo styling */
.logo-gaming {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation - gaming style */
.navbar {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.nav-link {
    color: var(--gray-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    position: relative;
}
.nav-link.nav-link-compact {
    padding: 0.5rem 0.45rem !important;
    font-size: 0.85rem;
}
@media (min-width: 1400px) {
    .nav-link.nav-link-compact {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.9rem;
    }
}
.nav-link:hover, .nav-link.active {
    color: var(--light-text) !important;
}
.nav-link.active::after {
    content: none;
}
.nav-slider {
    position: absolute;
    bottom: 12px;
    height: 3px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    border-radius: 2px;
    transition: left 0.3s ease, width 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Hero Section voor gaming muizen */
.hero-mice {
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        var(--dark-bg);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* RGB strip effect - consistent met index.html */
.hero-mice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--gaming-orange),
        var(--neon-purple),
        var(--neon-cyan),
        var(--gaming-orange));
    z-index: 5;
    view-transition-name: rgb-strip;
}

/* Gaming badge */
.gaming-badge {
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple)) !important;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Product cards - gaming style (aangepast van index.html) */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    overflow: hidden;
    height: 100%;
    border-radius: 16px;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.product-card:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.product-badge.hot {
    background: linear-gradient(135deg, var(--gaming-orange), #FF8C42);
    color: white;
}
.product-badge.new {
    background: linear-gradient(135deg, var(--neon-purple), #A78BFA);
    color: white;
}
.product-badge.stock {
    background: linear-gradient(135deg, var(--neon-cyan), #22D3EE);
    color: #0F172A;
}

.product-img-container {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(45deg, #1E293B, #334155);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img {
    transform: scale(1.1);
}

/* Mouse specs styling */
.spec-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
}

/* Filter section */
.filter-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.filter-header {
    border-bottom: 2px solid var(--card-border);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.form-check-input:checked {
    background-color: var(--gaming-orange);
    border-color: var(--gaming-orange);
}

.form-range::-webkit-slider-thumb {
    background-color: var(--gaming-orange);
}

.form-range::-moz-range-thumb {
    background-color: var(--gaming-orange);
}

/* Compare section */
.compare-table {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
}

.compare-header {
    background: linear-gradient(135deg, var(--gaming-blue), var(--neon-purple));
    color: white;
    padding: 20px;
}

/* Footer - consistent met index.html */
.footer-gaming {
    background-color: var(--card-bg);
    border-top: 1px solid var(--card-border);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem !important;
    }
    .hero-mice {
        padding: 60px 0 30px;
    }
    .product-img-container {
        height: 180px;
    }
}

/* Custom scrollbar - consistent met index.html */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gaming-orange), var(--neon-purple));
    border-radius: 5px;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gaming tag */
.gaming-tag {
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple)) !important;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Cart Notification Styles */
.cart-notification {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Button transition effects */
.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

/* Cart badge styling */
.cart-badge {
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple)) !important;
}

/* Cart badge - override Bootstrap and force visibility */
.badge.cart-badge-nav {
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple)) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 20px !important;
    height: 20px !important;
    padding: 0.25em 0.4em !important;
    line-height: 1.2 !important;
}

.badge.cart-badge-nav.cart-badge-empty {
    display: none !important;
}

.cart-count {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

/* NIEUWE CREATIEVE HERO SECTION - aangepast voor "Gaming support" */
.hero-creative {
    background:
        linear-gradient(135deg,
            rgba(30, 64, 175, 0.95) 0%,
            rgba(15, 23, 42, 0.95) 50%,
            rgba(139, 92, 246, 0.85) 100%),
        url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Gaming highlight strip */
.hero-highlight-strip {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,
        transparent,
        var(--gaming-orange),
        var(--neon-purple),
        var(--neon-cyan),
        transparent);
    margin-bottom: 40px;
    border-radius: 2px;
}

/* Creatieve hero content */
.hero-badge-creative {
    display: inline-block;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin-bottom: 30px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-title-creative {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 25px rgba(255, 107, 53, 0.35));
    background: linear-gradient(135deg, #FF6B35 0%, #FF8F5E 30%, #C76ADB 60%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    background: rgba(15, 23, 42, 0.45);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

/* Hero stats grid - VERBETERD voor "Gaming support" */
.hero-stats-creative {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .hero-stats-creative {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.stat-card-creative {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    opacity: 0.7;
}

.stat-card-creative:hover {
    transform: translateY(-10px);
    border-color: var(--gaming-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-icon-creative {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-icon-creative i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value-creative {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label-creative {
    font-size: 0.82rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding: 0 3px;
}

/* Speciale styling voor "Gaming support" */
.stat-card-creative:last-child .stat-label-creative {
    word-break: break-word;
    white-space: normal;
}

/* Hero CTA buttons */
.hero-cta-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gaming-orange), var(--gaming-orange-dark));
    border: none;
    color: white;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gaming-orange);
    transform: translateY(-5px);
    color: white;
}

/* Category cards */
.category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

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

.category-icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-bg {
    border-color: var(--gaming-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(139, 92, 246, 0.2));
}

.category-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
}

.category-description {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.category-arrow {
    color: var(--gaming-orange);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(10px);
}

/* Feature cards */
.feature-card {
    padding: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gaming-orange);
}

/* Stats / features section */
.feature-box {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--gaming-orange);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gaming-orange);
    margin-bottom: 15px;
}

/* Section titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    border-radius: 2px;
}

/* Loading states */
.skeleton {
    background: linear-gradient(90deg, var(--card-bg) 25%, var(--card-border) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

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

/* Toast notifications */
.toast {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    color: var(--light-text);
}

.toast-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
    color: var(--light-text);
}

/* Form controls */
.form-control, .form-select {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    color: var(--light-text);
}

.form-control:focus, .form-select:focus {
    background-color: var(--card-bg);
    border-color: var(--gaming-orange);
    color: var(--light-text);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
    color: var(--gray-text);
}

/* Badges */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-text);
}

.breadcrumb-item a {
    color: var(--gaming-orange);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--light-text);
}

/* Pagination */
.pagination .page-link {
    background-color: var(--card-bg);
    border-color: var(--card-border);
    color: var(--light-text);
}

.pagination .page-link:hover {
    background-color: var(--gaming-orange);
    border-color: var(--gaming-orange);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--gaming-orange);
    border-color: var(--gaming-orange);
}

/* Dropdown */
.dropdown-menu {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
}

.dropdown-item {
    color: var(--light-text);
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--gaming-orange);
}

/* Modal */
.modal-content {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
}

.modal-header {
    border-bottom-color: var(--card-border);
}

.modal-footer {
    border-top-color: var(--card-border);
}

.modal-title {
    color: var(--light-text);
}

/* Tables */
.table {
    color: var(--light-text);
}

.table-dark {
    --bs-table-bg: var(--card-bg);
    --bs-table-border-color: var(--card-border);
}

/* Alerts */
.alert {
    border: 2px solid;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    border-color: #0dcaf0;
    color: #0dcaf0;
}

/* ============================================
   GAMING DECORATIES - Verwijder dit blok om
   alle decoraties in één keer te verwijderen
   ============================================ */

/* Floating gaming particles */
.gaming-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

.particle-dot {
    width: 4px;
    height: 4px;
    background: var(--gaming-orange);
    box-shadow: 0 0 6px var(--gaming-orange);
}

.particle-square {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
}

.particle-diamond {
    width: 5px;
    height: 5px;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    transform: rotate(45deg);
    border-radius: 1px;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100%) translateX(0);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(50px);
    }
}

/* Crosshair decoratie */
.gaming-crosshair {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
    opacity: 0.12;
}

.gaming-crosshair::before,
.gaming-crosshair::after {
    content: '';
    position: absolute;
    background: var(--gaming-orange);
}

.gaming-crosshair::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.gaming-crosshair::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

/* Hexagon grid patroon */
.hex-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23FF6B35' fill-opacity='1'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Gaming controller SVG decoratie */
.gaming-deco-controller {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    animation: floatSlow 8s ease-in-out infinite;
}

.gaming-deco-controller svg {
    width: 120px;
    height: 120px;
    fill: none;
    stroke: var(--gaming-orange);
    stroke-width: 1.5;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* D-pad decoratie */
.gaming-deco-dpad {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    opacity: 0.08;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.gaming-deco-dpad::before,
.gaming-deco-dpad::after {
    content: '';
    position: absolute;
    background: var(--neon-purple);
    border-radius: 3px;
}

.gaming-deco-dpad::before {
    top: 0;
    left: 33%;
    width: 34%;
    height: 100%;
}

.gaming-deco-dpad::after {
    top: 33%;
    left: 0;
    width: 100%;
    height: 34%;
}

/* Cirkel-pulse decoratie */
.gaming-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--gaming-orange);
    pointer-events: none;
    animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        opacity: 0.06;
        transform: scale(1);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.15);
    }
}

/* Neon lijn accenten */
.neon-line {
    position: absolute;
    height: 1px;
    pointer-events: none;
    opacity: 0.15;
}

.neon-line-orange {
    background: linear-gradient(90deg, transparent, var(--gaming-orange), transparent);
    box-shadow: 0 0 8px var(--gaming-orange);
}

.neon-line-purple {
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    box-shadow: 0 0 8px var(--neon-purple);
}

.neon-line-cyan {
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* Section divider met gaming motief */
.gaming-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaming-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.3) 20%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(6, 182, 212, 0.3) 80%,
        transparent 100%);
}

.gaming-divider-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gaming-divider-icon i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glowing corners op secties */
.glow-corners {
    position: relative;
}

.glow-corners::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 80px;
    height: 80px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-left: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px 0 0 0;
    pointer-events: none;
    z-index: 1;
}

.glow-corners::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    border-right: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 0 0 16px 0;
    pointer-events: none;
    z-index: 1;
}

/* Animated gradient border voor featured sectie */
.gradient-border-animated {
    position: relative;
}

.gradient-border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple), var(--neon-cyan));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    border-radius: 2px;
}

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

/* Button/ABXY decoratie */
.gaming-buttons-deco {
    position: absolute;
    width: 50px;
    height: 50px;
    pointer-events: none;
    opacity: 0.08;
    animation: floatSlow 12s ease-in-out infinite;
}

.gaming-btn-circle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
}

.gaming-btn-circle:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); border-color: var(--neon-cyan); }
.gaming-btn-circle:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); border-color: var(--gaming-orange); }
.gaming-btn-circle:nth-child(3) { top: 50%; left: 0; transform: translateY(-50%); border-color: var(--neon-purple); }
.gaming-btn-circle:nth-child(4) { top: 50%; right: 0; transform: translateY(-50%); border-color: #22C55E; }

/* Scanline effect (subtiel) */
.scanline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* Verberg decoraties op kleine schermen voor performance */
@media (max-width: 768px) {
    .gaming-particles,
    .gaming-crosshair,
    .gaming-deco-controller,
    .gaming-deco-dpad,
    .gaming-pulse-ring,
    .gaming-buttons-deco,
    .scanline-overlay,
    .neon-line {
        display: none;
    }
}

/* === AMBIENT SIDE GLOWS - Zachte kleurglows langs de randen === */
.ambient-glow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    animation: ambientPulse 10s ease-in-out infinite;
}

/* Oranje glow - linksboven */
.ambient-glow-left-top {
    width: 350px;
    height: 350px;
    background: var(--gaming-orange);
    left: -150px;
    top: 10%;
    animation-delay: 0s;
}

/* Paars glow - rechts midden */
.ambient-glow-right-mid {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    right: -180px;
    top: 40%;
    animation-delay: 3s;
}

/* Cyan glow - linksonder */
.ambient-glow-left-bottom {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    left: -130px;
    bottom: 15%;
    animation-delay: 6s;
}

/* Oranje/paars glow - rechtsboven */
.ambient-glow-right-top {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    right: -140px;
    top: 5%;
    animation-delay: 8s;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.03; transform: scale(1); }
    50% { opacity: 0.08; transform: scale(1.15); }
}

/* Verberg ambient glows op mobiel */
@media (max-width: 991px) {
    .ambient-glow-wrapper {
        display: none;
    }
}

/* --- Pagina-specifieke decoraties --- */

/* Circuit board lijnen (categorie pagina's) */
.gaming-circuit-line {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
}

.gaming-circuit-line svg {
    width: 100%;
    height: 100%;
    stroke: var(--neon-cyan);
    stroke-width: 1;
    fill: none;
}

/* Muis SVG silhouet (categorie pagina's) */
.gaming-deco-mouse {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    animation: floatSlow 9s ease-in-out infinite;
}

.gaming-deco-mouse svg {
    width: 80px;
    height: 120px;
    fill: none;
    stroke: var(--neon-cyan);
    stroke-width: 1.5;
}

/* Monitor SVG silhouet */
.gaming-deco-monitor {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    animation: floatSlow 11s ease-in-out infinite reverse;
}

.gaming-deco-monitor svg {
    width: 100px;
    height: 80px;
    fill: none;
    stroke: var(--neon-purple);
    stroke-width: 1.5;
}

/* Bliksem decoratie (aanbiedingen) */
.gaming-deco-lightning {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
    animation: flickerBolt 3s ease-in-out infinite;
}

.gaming-deco-lightning svg {
    width: 40px;
    height: 80px;
    fill: none;
    stroke: #EAB308;
    stroke-width: 2;
}

@keyframes flickerBolt {
    0%, 100% { opacity: 0.08; }
    20% { opacity: 0.15; }
    22% { opacity: 0.04; }
    24% { opacity: 0.12; }
    50% { opacity: 0.06; }
    80% { opacity: 0.1; }
}

/* Sparkle/ster deeltjes (aanbiedingen) */
.gaming-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}

.gaming-sparkle::before,
.gaming-sparkle::after {
    content: '';
    position: absolute;
    background: #EAB308;
}

.gaming-sparkle::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    border-radius: 1px;
}

.gaming-sparkle::after {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    border-radius: 1px;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.3; transform: scale(1.3) rotate(45deg); }
}

/* Prijs-tag decoratie (aanbiedingen) */
.gaming-deco-tag {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    animation: floatSlow 10s ease-in-out infinite;
}

.gaming-deco-tag svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: var(--gaming-orange);
    stroke-width: 1.5;
}

/* Chat bubble (contact pagina) */
.gaming-deco-chat {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    animation: floatSlow 8s ease-in-out infinite;
}

.gaming-deco-chat svg {
    width: 60px;
    height: 50px;
    fill: none;
    stroke: var(--neon-cyan);
    stroke-width: 1.5;
}

/* Signaal golven (contact pagina) */
.gaming-signal-wave {
    position: absolute;
    pointer-events: none;
    width: 60px;
    height: 60px;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    opacity: 0;
    animation: signalWave 3s ease-out infinite;
}

@keyframes signalWave {
    0% { opacity: 0.15; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(2); }
}

/* Coin/cirkel deeltjes (winkelwagen) */
.gaming-deco-coin {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gaming-orange);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
    animation: floatSlow 7s ease-in-out infinite;
}

.gaming-deco-coin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 8px;
    background: var(--gaming-orange);
    border-radius: 1px;
}

/* Lock/sleutel decoratie (login) */
.gaming-deco-lock {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    animation: floatSlow 12s ease-in-out infinite;
}

.gaming-deco-lock svg {
    width: 50px;
    height: 60px;
    fill: none;
    stroke: var(--gaming-orange);
    stroke-width: 1.5;
}

/* Pixel grid patroon (login) */
.pixel-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Keyboard toets decoratie (login) */
.gaming-deco-key {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    pointer-events: none;
    opacity: 0.08;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--neon-purple);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    animation: floatSlow 14s ease-in-out infinite;
}

/* Verberg pagina-specifieke decoraties op mobiel */
@media (max-width: 768px) {
    .gaming-circuit-line,
    .gaming-deco-mouse,
    .gaming-deco-monitor,
    .gaming-deco-lightning,
    .gaming-sparkle,
    .gaming-deco-tag,
    .gaming-deco-chat,
    .gaming-signal-wave,
    .gaming-deco-coin,
    .gaming-deco-lock,
    .pixel-grid-bg,
    .gaming-deco-key {
        display: none;
    }
}

/* ============================================
   EINDE GAMING DECORATIES
   ============================================ */

/* ============================================
   SEARCH MODAL STYLES
   ============================================ */
.search-result-item:hover {
    background: rgba(255, 107, 53, 0.08) !important;
}

#searchResults::-webkit-scrollbar {
    width: 6px;
}
#searchResults::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 3px;
}
#searchResults::-webkit-scrollbar-track {
    background: transparent;
}

/* ============================================
   BORDER UTILITY FOR GAMING ORANGE
   ============================================ */
.border-gaming-orange {
    border-color: var(--gaming-orange) !important;
}

/* ============================================
   SOCIAL LINKS HOVER
   ============================================ */
.social-links a {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.social-links a:hover {
    color: var(--gaming-orange) !important;
    transform: translateY(-2px);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* === Extra large screens (1400px+) === */
@media (min-width: 1400px) {
    .hero-creative {
        padding-top: 140px;
    }
    .hero-title-creative {
        font-size: 5rem;
    }
}

/* === Large screens (992px - 1199px) === */
@media (max-width: 1199px) {
    .hero-title-creative {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-stats-creative {
        gap: 10px;
    }
    .stat-value-creative {
        font-size: 1.4rem;
    }
    .category-card {
        padding: 30px 20px;
    }
    .category-title {
        font-size: 1.3rem;
    }
}

/* === Medium screens / Tablets (768px - 991px) === */
@media (max-width: 991px) {
    body {
        padding-top: 60px;
    }
    .hero-creative {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-title-creative {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .hero-cta-container {
        gap: 12px;
        justify-content: center;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .hero-stats-creative {
        margin-top: 40px;
    }
    .category-card {
        padding: 25px 18px;
    }
    .category-icon-bg {
        width: 65px;
        height: 65px;
    }
    .category-icon {
        font-size: 2rem;
    }
    .category-title {
        font-size: 1.2rem;
    }
    .product-img-container {
        height: 200px;
    }
    /* Navbar mobile collapse */
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid var(--card-border);
    }
    .navbar-collapse .navbar-nav {
        text-align: center;
        width: 100%;
    }
    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        border-radius: 8px;
        text-align: center;
    }
    .navbar-collapse .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
    }
    .navbar-collapse .nav-link.active::after {
        display: none;
    }
    .nav-slider {
        display: none;
    }
    .navbar-collapse .nav-item {
        margin: 0 !important;
    }
    .navbar-collapse .btn-login-nav {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

/* === Small screens / Mobile landscape (576px - 767px) === */
@media (max-width: 767px) {
    body {
        padding-top: 65px;
    }
    .hero-creative {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .hero-title-creative {
        font-size: 2.2rem;
    }
    .hero-badge-creative {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    .hero-cta-container {
        flex-direction: column;
    }
    .hero-stats-creative {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 30px;
    }
    .stat-card-creative {
        padding: 15px 10px;
        min-height: 110px;
    }
    .stat-value-creative {
        font-size: 1.3rem;
    }
    .stat-label-creative {
        font-size: 0.75rem;
    }
    .stat-icon-creative {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    /* Category cards mobile */
    .category-card {
        padding: 20px 15px;
    }
    .category-icon-bg {
        width: 55px;
        height: 55px;
    }
    .category-icon {
        font-size: 1.6rem;
    }
    .category-title {
        font-size: 1.1rem;
    }
    .category-description {
        font-size: 0.85rem;
    }
    /* Product cards mobile */
    .product-card:hover {
        transform: translateY(-5px);
    }
    .product-img-container {
        height: 160px;
    }
    .product-card .p-4 {
        padding: 0.75rem !important;
    }
    /* Section spacing */
    .section-title {
        font-size: 1.5rem !important;
    }
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    /* Footer mobile */
    .footer-gaming .row > div,
    footer .row > div {
        text-align: center;
    }
    footer .social-links {
        margin-top: 0.5rem;
    }
    /* Filter cards mobile */
    .filter-card {
        padding: 15px;
        margin-bottom: 20px;
    }
}

/* === Extra small screens / Mobile portrait (< 576px) === */
@media (max-width: 575px) {
    body {
        padding-top: 60px;
    }
    .navbar-brand div[style*="line-height"] span {
        font-size: 9px !important;
    }
    .hero-creative {
        padding-top: 70px;
    }
    .hero-title-creative {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-badge-creative {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    .hero-stats-creative {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .stat-card-creative {
        padding: 12px 8px;
        min-height: 100px;
    }
    .stat-value-creative {
        font-size: 1.1rem;
    }
    /* Cards compact */
    .category-card {
        padding: 15px;
    }
    .category-icon-bg {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    .category-icon {
        font-size: 1.3rem;
    }
    .category-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .category-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .product-img-container {
        height: 140px;
    }
    .product-card {
        border-radius: 12px;
    }
    /* Feature boxes */
    .feature-box {
        padding: 20px;
    }
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }
    /* Buttons */
    .btn-primary, .btn-outline-light {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    /* Gaming tags */
    .gaming-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    /* Modal search */
    #searchModal .modal-body {
        padding: 1rem !important;
    }
    #searchModal .form-control-lg {
        font-size: 1rem !important;
    }
    /* Display font sizes */
    .display-4, .display-5 {
        font-size: 1.8rem !important;
    }
    .fs-5 {
        font-size: 1rem !important;
    }
}

/* ============================================
   PAGE-SPECIFIC RESPONSIVE STYLES
   ============================================ */

/* --- Category Page (hero-mice) --- */
.hero-mice {
    padding-top: 30px;
}
@media (max-width: 991px) {
    .hero-mice {
        padding-top: 20px;
    }
    .hero-mice .display-3 {
        font-size: 2.2rem !important;
    }
    .hero-mice .input-group-lg .form-control {
        font-size: 1rem;
    }
    /* Filter sidebar becomes collapsible on tablet */
    .filter-card {
        position: static !important;
    }
}
@media (max-width: 767px) {
    .hero-mice .display-3 {
        font-size: 1.7rem !important;
    }
    .hero-mice .lead {
        font-size: 0.95rem;
    }
    /* Sort bar mobile */
    .col-lg-9 > .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.75rem;
    }
    .col-lg-9 > .d-flex .d-flex.align-items-center {
        width: 100%;
    }
    .col-lg-9 > .d-flex .form-select {
        width: 100% !important;
    }
    /* Product grid: 2 columns on mobile */
    .col-lg-9 .col-md-6.col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .product-card .card-body.p-4 {
        padding: 0.75rem !important;
    }
    .product-card .card-title {
        font-size: 0.85rem;
    }
    .product-card .spec-item {
        font-size: 0.8rem;
    }
}
@media (max-width: 400px) {
    .col-lg-9 .col-md-6.col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* --- Cart Page --- */
@media (max-width: 767px) {
    .cart-item-row .row {
        flex-direction: column;
    }
    .cart-item-row .col-md-2 {
        max-width: 80px;
    }
    .cart-item-row .col-md-3.text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
    .cart-item-row .input-group {
        max-width: 120px !important;
    }
    #clearCartBtn {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
}

/* --- Checkout Page --- */
.checkout-card {
    transition: border-color 0.3s ease;
}
.checkout-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
}
@media (max-width: 991px) {
    .step-indicator {
        flex-wrap: wrap;
        justify-content: center;
    }
    .step span:not(.step-number) {
        display: none;
    }
    .step-divider {
        width: 20px;
    }
}
@media (max-width: 767px) {
    .checkout-card {
        padding: 1.25rem !important;
    }
    .form-control-gaming {
        padding: 0.6rem 0.85rem;
        font-size: 0.9rem;
    }
    .order-item img {
        width: 45px;
        height: 45px;
    }
    .btn-checkout {
        font-size: 1rem;
        padding: 0.85rem;
    }
}

/* --- Contact / FAQ Page --- */
@media (max-width: 767px) {
    .faq-section {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn {
        width: 100%;
    }
}

/* --- Aanbiedingen / Deals Page --- */
@media (max-width: 767px) {
    .hero-deals .display-3 {
        font-size: 1.8rem !important;
    }
    .deal-timer {
        padding: 10px;
    }
    .timer-value {
        font-size: 1.3rem;
    }
    .timer-label {
        font-size: 0.7rem;
    }
    .sale-tag {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .flash-sale {
        padding: 20px;
    }
    .flash-sale .price-new {
        font-size: 1.4rem;
    }
    .flash-sale .col-md-4 {
        text-align: center !important;
    }
}

/* --- Dashboard Page --- */
@media (max-width: 575px) {
    .account-section {
        padding: 80px 0 40px !important;
    }
    .account-card {
        padding: 1.5rem !important;
    }
    .account-name {
        font-size: 1.2rem !important;
    }
    .account-icon {
        width: 60px !important;
        height: 60px !important;
    }
    .account-icon i {
        font-size: 1.6rem !important;
    }
}

/* --- Orders Page --- */
@media (max-width: 767px) {
    .table-responsive {
        font-size: 0.85rem;
    }
    .table th, .table td {
        padding: 0.5rem;
        white-space: nowrap;
    }
}

/* --- Login Page --- */
@media (max-width: 767px) {
    .login-container {
        padding: 0 0.5rem;
    }
    .login-card, .admin-card {
        padding: 1.5rem !important;
    }
}

/* --- Privacy Page --- */
@media (max-width: 767px) {
    .privacy-content h3 {
        font-size: 1.2rem;
    }
    .privacy-content {
        padding: 1.25rem !important;
    }
}

/* ============================================
   GLOBAL ENHANCEMENTS
   ============================================ */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Better focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--gaming-orange);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gaming-orange);
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 0.85rem;
}
.breadcrumb-item a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-item a:hover {
    color: var(--gaming-orange);
}
.breadcrumb-item.active {
    color: var(--gaming-orange);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--card-border);
}

/* Loading skeleton animation */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, var(--card-bg) 25%, rgba(255,255,255,0.05) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fade up animation for scroll */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover glow effect */
.product-card {
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

/* Gaming badge utility */
.gaming-badge {
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Feature card enhancements */
.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gaming-orange);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card .feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(139,92,246,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    border-color: var(--gaming-orange);
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(139,92,246,0.2));
}
.feature-card .feature-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Notification toast */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--card-bg);
    border: 2px solid var(--gaming-orange);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}
.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gaming-orange), var(--neon-purple));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Dropdown menu dark styling */
.dropdown-menu {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.dropdown-item {
    color: #94A3B8;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.dropdown-item:hover, .dropdown-item:focus {
    background: rgba(255, 107, 53, 0.1);
    color: white;
}
.dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444 !important;
}
.dropdown-divider {
    border-color: var(--card-border);
    margin: 0.25rem 0;
}

/* === Touch device optimizations === */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
        border-color: var(--card-border);
        box-shadow: none;
    }
    .product-card:active {
        transform: scale(0.98);
    }
    .category-card:hover {
        transform: none;
    }
    .category-card:active {
        transform: scale(0.98);
    }
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover {
        transform: none;
    }
    .stat-card-creative:hover {
        transform: none;
    }
}

/* === Wishlist Heart Button === */
.wishlist-toggle-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    font-size: 1rem;
}
.wishlist-toggle-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
    color: var(--gaming-orange);
    transform: scale(1.15);
}
.wishlist-toggle-btn.wishlisted {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}
.wishlist-toggle-btn.wishlisted:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: #EF4444;
}

/* === GDPR Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid var(--card-border);
    padding: 1.25rem 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gaming-orange), var(--neon-purple), var(--neon-cyan));
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner .cookie-text {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-banner .cookie-text a {
    color: var(--gaming-orange);
    text-decoration: underline;
}
.cookie-banner .cookie-text a:hover {
    color: #FF8C5A;
}
.cookie-banner .btn-cookie-accept {
    background: linear-gradient(135deg, var(--gaming-orange), #E55A2B);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.cookie-banner .btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.cookie-banner .btn-cookie-essential {
    background: transparent;
    border: 1px solid var(--card-border);
    color: #94A3B8;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.cookie-banner .btn-cookie-essential:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 1rem 0;
    }
    .cookie-banner .cookie-text {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    .cookie-banner .cookie-buttons {
        justify-content: center !important;
    }
}

/* === Print styles === */
@media print {
    .navbar, footer, .gaming-particles, .gaming-crosshair,
    .hex-grid-bg, .scanline-overlay, .neon-line, .cookie-banner {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
        padding-top: 0 !important;
    }
}
