:root {
  --background: #070707;
  --surface: #111111;
  --surface-light: #1b1b1b;
  --primary: #ffcc00;
  --primary-hover: #ffdb4d;
  --secondary: #e10600;
  --secondary-hover: #ff2b24;
  --text: #ffffff;
  --text-muted: #bdbdbd;
  --border: #2a2a2a;
  --success: #22c55e;
  --warning: #f59e0b;
  --gradient-main: linear-gradient(135deg, #ffcc00 0%, #ff8a00 100%);
  --gradient-dark: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  --shadow-primary: 0 0 25px rgba(255, 204, 0, 0.35);
  --shadow-red: 0 0 25px rgba(225, 6, 0, 0.35);
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding-bottom: 80px;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
    padding: 0 15px; /* Iets minder padding op mobiel voor meer ruimte voor producten */
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .container {
        padding: 0 40px;
    }
}

.header {
    padding: 15px 20px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(7, 7, 7, 0.25); /* Nog iets meer doorzichtig (was 0.4) */
    backdrop-filter: blur(15px); /* Iets meer blur voor chique effect */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px;
    filter: drop-shadow(var(--shadow-primary));
}

@media (min-width: 1025px) {
    .logo img { height: 75px; }
    .header { padding: 12px 40px; }
}

.desktop-nav { display: none; }

@media (min-width: 1025px) {
    .desktop-nav {
        display: flex;
        gap: 30px;
        font-weight: bold;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .desktop-nav a:hover { color: var(--primary); }
}

.hero-full {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.85)), url('../img/nieuwe hero pc.png');
    background-size: cover;
    background-position: center 35%; /* Iets meer omhoog voor betere bus-focus op desktop */
    padding: 120px 20px 60px 20px;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Zorg dat er geen margin is */
}

@media (max-width: 768px) {
    .hero-full {
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.85)), url('../img/hero mobiel new.png');
        height: 100vh;
        background-position: center center;
        background-size: cover;
        padding: 100px 15px 40px 15px;
    }
}
    
    .hero-full h1 span:nth-child(2) {
    }
    
    .hero-full h1 span:nth-child(3) {
    }
    
    .hero-full p {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .hero-full .btn-primary {
        width: 100% !important;
        max-width: 280px;
    }
}

@media (min-width: 1025px) {
    .hero-full {
        height: calc(100vh - 95px);
    }
}

.category-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 15px;
    background: var(--background);
    position: relative; /* Niet meer sticky */
    z-index: 900;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 600px) {
    .category-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .category-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px 20px;
    }
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.cat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    background: var(--surface);
    border-radius: 50px;
    white-space: nowrap;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    color: var(--text);
    text-decoration: none;
}

@media (min-width: 1025px) {
    .cat-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

.cat-item i {
    color: var(--primary);
    font-size: 1rem;
}

.cat-item.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 700;
}

.cat-item.active i {
    color: #000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0;
}

@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1025px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; } }
@media (min-width: 1440px) { .product-grid { grid-template-columns: repeat(5, 1fr); } }

.product-card {
    background: var(--surface);
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

@media (min-width: 1025px) { .product-card { padding: 25px; } }

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-image {
    height: 120px;
    background: var(--surface-light);
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

@media (min-width: 1025px) { .product-image { height: 180px; font-size: 3.5rem; } }

.product-card h3 { font-size: 0.95rem; margin: 0 0 10px 0; }
@media (min-width: 1025px) { .product-card h3 { font-size: 1.1rem; } }

.product-card .price {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: auto;
}

.btn-primary {
    background: var(--gradient-main);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.btn-primary:active { transform: scale(0.95); }

.mobile-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--surface);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    z-index: 1000;
}

@media (min-width: 1025px) { 
    .mobile-nav { display: none; } 
    body { padding-bottom: 0; }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    flex: 1;
    transition: 0.3s;
}

.nav-item i { font-size: 1.4rem; margin-bottom: 4px; }
.nav-item:hover, .nav-item.active { color: var(--primary); }

.cart-icon, .cart-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-icon i, .cart-wrapper i {
    font-size: 1.5rem;
    color: var(--text);
    position: relative;
}

.cart-count {
    background: var(--secondary);
    color: #fff;
    font-size: 0.6rem;
    padding: 0;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -8px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    text-align: center;
    border: 2px solid var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 5;
}

@media (max-width: 1024px) {
    .mobile-nav .cart-count {
        border-color: var(--surface);
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
}
.modal-content {
    background-color: var(--surface);
    margin: 100px auto;
    padding: 40px;
    border: 1px solid var(--border);
    width: 90%;
    max-width: 450px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-primary);
}
