  /* ====== Base / Reset ====== */
    *, *::before, *::after { box-sizing: border-box; }
    :root {
      --bg: #384232;          /* page background */
      --panel: #2f372a;       /* panels/cards */
      --muted: #d9e0d0;       /* light text */
      --text: #f3f5ef;        /* main text */
      --accent: #8fae6a;      /* accent */
      --accent-2: #d2a15f;    /* secondary accent */
      --ink: #0f120c;         /* very dark */
      --radius: 16px;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      --gap: 1rem;
    }
    html, body { height: 100%; }
    body {
      margin: 0;
      font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      loading: lazy;
    }
    a { color: inherit; text-decoration: none; }
    a:focus-visible, button:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
    .container { width: min(1200px, 92vw); margin-inline: auto; }
    .btn {
      display: inline-block;
      padding: 0.7rem 1.1rem;
      border-radius: 999px;
      background: var(--accent);
      color: #0d1309;
      font-weight: 600;
      box-shadow: var(--shadow);
      transition: transform 0.2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn.secondary { background: var(--accent-2); }
    .btn.ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.25); color: var(--text); }
    .section { padding: clamp(48px, 6vw, 84px) 0; }
    h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5rem; }
    h1 { font-size: clamp(28px, 5vw, 42px); }
    h2 { font-size: clamp(22px, 3.5vw, 32px); }
    h3 { font-size: clamp(18px, 2.2vw, 22px); }
    p { margin: 0.5rem 0 1rem; color: var(--muted); }

    /* ====== Header / Nav ====== */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(47, 55, 42, 0.9);
      backdrop-filter: saturate(140%) blur(6px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.6rem 0;
    }
    .brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
    .brand .logo {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #1f251d;
      display: grid;
      place-items: center;
      font-size: 0.9rem;
    }
    .menu {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }
    .menu a {
      padding: 0.45rem 0.7rem;
      border-radius: 999px;
      transition: background 0.2s ease;
    }
    .menu a:hover { background: rgba(255, 255, 255, 0.08); }
    @media (max-width: 600px) {
      .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--panel);
        padding: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }
      .menu.active { display: flex; }
      .nav::after {
        content: "☰";
        font-size: 1.5rem;
        cursor: pointer;
      }
      .nav.active::after { content: "✕"; }
    }

    /* ====== Hero ====== */
    .hero {
      position: relative;
      min-height: 64svh;
      display: grid;
      place-items: center;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600&auto=format&fit=crop&format=webp') center/cover no-repeat;
      opacity: 0.64;
      z-index: -1;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(56, 66, 50, 0.85));
      z-index: -1;
    }
    .hero .content { padding: clamp(24px, 4vw, 48px); text-align: center; }
    .hero .actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

    /* ====== Image Strips / Galleries ====== */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 0.7rem;
      margin-top: 1rem;
    }
    .gallery img {
      height: clamp(150px, 22vw, 220px);
      width: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Background tiles with overlay labels */
    .tile {
      position: relative;
      display: block;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background-position: center;
      background-size: cover;
      box-shadow: var(--shadow);
    }
    .tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
    }
    .tile .chip {
      position: absolute;
      left: 10px;
      bottom: 10px;
      background: rgba(255, 255, 255, 0.92);
      color: #0d130c; /* Klein contrastverbetering */
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: transform 0.2s ease;
    }
    .tile:hover .chip { transform: translateY(-2px); }
   /* Nieuwe tile achtergrondafbeeldingen */
.tile--bbq { background-image: url('https://images.unsplash.com/photo-1481070555726-e2fe8357725c?q=80&w=1200&auto=format&fit=crop&format=webp'); } /* BBQ */
.tile--sauna { background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?q=80&w=1200&auto=format&fit=crop&format=webp'); } /* Sauna & Hottub */
.tile--garden { background-image: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?q=80&w=1200&auto=format&fit=crop&format=webp'); } /* Tuinsets */
.tile--garden2 { background-image: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?q=80&w=1200&auto=format&fit=crop&format=webp'); } /* Garden (tweede instantie) */
.tile--survival { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1200&auto=format&fit=crop&format=webp'); } /* Survival (overleving in natuur) */
.tile--fish { background-image: url('https://www.watersportswhiz.com/wp-content/uploads/2021/01/Depositphotos_162691514_l-2015.jpg'); } /* Fishing (vissen) */
.tile--camping { background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSElPVD8-yau4PjRs_Hcpg6_HrFJhuTQs2-Rg&s'); } /* Camping (tent in bos) */
.tile--atv { background-image: url('https://m.media-amazon.com/images/I/61rJbO11IlL.jpg'); } /* Car & ATV (terreinwagen) */

    /* ====== Feature blocks (category sections) ====== */
    .feature {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .feature .block {
      display: grid;
      gap: 1rem;
      padding: 1.25rem;
    }
    @media (min-width: 960px) {
      .feature.two-col { display: grid; grid-template-columns: 1fr 1fr; } /* Gelijkmatige verdeling */
      .feature .block { padding: clamp(20px, 2.8vw, 40px); }
    }

    /* ====== Products (Bestsellers) ====== */
    .products {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .product {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .product .body { padding: 1rem; }
    .product .title { font-weight: 600; margin-bottom: 0.2rem; }
    .product .price { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }

    /* ====== Icon Row (USP’s) ====== */
    .usps {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .usp {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.2rem;
    }
    .usp .icon {
      font-size: 1.3rem;
      background: #232a21;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 0.6rem;
    }

    /* ====== Testimonials ====== */
    .testimonials {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .quote {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1rem;
    }
    .quote .who {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-top: 0.7rem;
      color: var(--muted);
    }
    .avatar {
      inline-size: 42px;
      block-size: 42px;
      border-radius: 50%;
      background: #232a21;
    }

    /* ====== Footer ====== */
    .footer {
      background: #2b3328;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer .grid {
      display: grid;
      gap: 1.2rem;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .footer a { color: var(--muted); }
    .sub {
      padding: 0.8rem 0;
      color: #a9b49a;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.85rem;
      text-align: center;
    }

    /* ====== Helpers ====== */
    .center { text-align: center; }

    /* Nieuwe stijl voor Wellness-sectie zoals in screenshot */
    .wellness-info {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }
    .wellness-info .main-image {
      flex: 2;
      max-width: 60%;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .wellness-info .info-block {
      flex: 1;
      padding: 1rem;
      background: rgba(47, 55, 42, 0.9);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .wellness-info .info-block p {
      margin: 0.5rem 0 1.5rem;
    }
    .wellness-info .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .wellness-info .gallery img {
      height: 150px;
      object-fit: cover;
    }

/* ====== Contact Formulier en Informatie ====== */
    .contact-section {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr 1fr;
    }
    .contact-form, .contact-info {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.5rem;
    }
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-form label {
      color: var(--muted);
      font-weight: 500;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: #232a21;
      color: var(--text);
      font-size: 1rem;
    }
    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .contact-info .info-item {
      margin-bottom: 1rem;
    }
    .contact-info .info-item p {
      margin: 0.2rem 0;
    }
    .map-placeholder {
      background: #232a21;
      border-radius: 12px;
      height: 200px;
      display: grid;
      place-items: center;
      color: var(--muted);
      margin-top: 1rem;
    }
    @media (max-width: 960px) {
      .contact-section {
        grid-template-columns: 1fr;
      }
    }

 /* ====== Product Detail ====== */
    .product-detail {
      display: grid;
      gap: 2rem;
      grid-template-columns: 2fr 1fr; /* Galerij en tabs links (breder), configuratie rechts (smaller) */
    }
    .product-gallery {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .product-gallery .main-image {
      height: clamp(300px, 40vw, 600px);
      object-fit: cover;
      border-radius: var(--radius);
    }
    .product-gallery .thumbnails {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 0.5rem;
    }
    .product-gallery .thumbnails img {
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }
    .product-gallery .thumbnails img:hover {
      opacity: 0.7;
    }
    .tabs {
      margin-top: 1rem; /* Kleinere marge voor compactheid */
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .tab-headers {
      display: flex;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .tab-header {
      padding: 0.6rem 1rem; /* Smallere tabs */
      cursor: pointer;
      transition: background 0.2s ease;
      color: var(--muted);
      font-weight: 600;
      font-size: 0.9rem; /* Kleinere tekst voor smallere tabs */
    }
    .tab-header:hover {
      background: rgba(255, 255, 255, 0.05);
    }
    .tab-header.active {
      color: var(--text);
      border-bottom: 2px solid var(--accent);
    }
    .tab-content {
      padding: 1rem;
      display: none;
    }
    .tab-content.active {
      display: block;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }
    th, td {
      padding: 0.6rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      text-align: left;
      font-size: 0.9rem;
    }
    th {
      font-weight: 600;
      color: var(--text);
    }
    td {
      color: var(--muted);
    }
    .product-info {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .product-info .price {
      color: var(--muted);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .product-info .product-code {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    .product-info .availability {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .product-config form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .config-group {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .config-group label {
      color: var(--muted);
      font-weight: 500;
      font-size: 0.95rem;
    }
    .config-group select,
    .config-group input[type="checkbox"] {
      padding: 0.6rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: #232a21;
      color: var(--text);
      font-size: 0.95rem;
    }
    .config-group select:focus,
    .config-group input[type="checkbox"]:focus {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .config-group input[type="checkbox"] {
      accent-color: var(--accent);
      margin-right: 0.5rem;
    }
    .config-group .option-price {
      color: var(--muted);
      font-size: 0.85rem;
      margin-left: 0.5rem;
    }
    .total-price {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--accent-2);
      margin: 1rem 0;
    }
    .btn.add-to-cart {
      width: 100%;
      margin-top: 1rem;
    }

    @media (max-width: 960px) {
      .product-detail {
        grid-template-columns: 1fr; /* Stapelt op mobiel */
      }
      .product-gallery .main-image {
        height: clamp(200px, 40vw, 400px);
      }
      .product-gallery .thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
      }
      .product-gallery .thumbnails img {
        height: 60px;
      }
      .tab-headers {
        flex-wrap: wrap;
      }
    }

/* ====== Admin Form Stijlen ====== */
    .admin-section {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.5rem;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    label {
      color: var(--muted);
      font-weight: 500;
    }
    input[type="text"], input[type="number"], textarea, select {
      padding: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      background: #232a21;
      color: var(--text);
      font-size: 1rem;
    }
    input[type="file"] {
      padding: 0.5rem;
      background: #232a21;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: var(--text);
    }
    input[type="checkbox"] {
      accent-color: var(--accent);
      margin-right: 0.5rem;
    }
    .accessory-list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .success-message, .error-message {
      padding: 1rem;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .success-message {
      background: rgba(143, 174, 106, 0.2);
      color: var(--accent);
    }
    .error-message {
      background: rgba(210, 161, 95, 0.2);
      color: var(--accent-2);
    }

/* ====== Product Pagina Verbeteringen ====== */
.products-header {
    margin-bottom: 2rem;
    text-align: center;
}

.products-header h1 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.products-header p {
    color: var(--muted);
    max-width: 700px;
    margin-inline: auto;
}

.products-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 260px 1fr;
    align-items: start;
}

.filters-sidebar {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 40;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filters-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.filters-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.filters-close:hover {
    background: rgba(255,255,255,0.1);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0;
    cursor: pointer;
    user-select: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.filter-checkbox:hover {
    background: rgba(255,255,255,0.05);
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--muted);
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
}

.filter-checkbox input:checked ~ .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.filter-checkbox input:checked ~ .checkmark::after {
    content: "✓";
    position: absolute;
    color: #0d1309;
    font-weight: bold;
    font-size: 0.8rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.product-card {
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.06);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #0d1309;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-weight: 700;
    color: var(--accent-2);
    font-size: 1.15rem;
    margin: 0.3rem 0;
}

.btn.small {
    margin-top: auto;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
}

/* Geen resultaten */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted);
}

.no-results p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Mobiel: Filters */
.filters-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: #0d1309;
    border: none;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 50;
    gap: 0.5rem;
    align-items: center;
}

.filters-toggle.active {
    background: var(--accent-2);
}

/* Responsive */
@media (max-width: 960px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 100;
        padding-top: 5rem;
    }
    
    .filters-sidebar.open {
        transform: translateX(0);
    }
    
    .filters-toggle {
        display: flex;
    }
    
    .filters-close {
        display: block;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-body {
        padding: 1rem;
    }
}

/* ====== PRODUCT DETAIL - NIEUWE STIJL ====== */
.product-detail-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--bg);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.product-gallery-container {
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.thumbnails {
    display: flex;
    gap: 0.8rem;
    padding: 1rem;
    overflow-x: auto;
    background: rgba(0,0,0,0.15);
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.thumbnails img:hover,
.thumbnails img.active {
    border-color: var(--accent);
    transform: scale(1.05);
}

.product-tabs {
    padding: 1.5rem;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
    overflow-x: auto;
    white-space: nowrap;
}

.tab-header {
    padding: 0.8rem 1.2rem;
    background: none;
    border: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tab-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.tab-header:hover,
.tab-header.active {
    color: var(--text);
}

.tab-header.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.specs-table table {
    width: 100%;
    margin-top: 0.5rem;
}

.specs-table th,
.specs-table td {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.specs-table th {
    text-align: left;
    color: var(--muted);
    width: 40%;
}

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

.downloads-list li {
    padding: 0.5rem 0;
}

.downloads-list a {
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.downloads-list a::before {
    content: "📄";
}

/* ====== CONFIGURATIE PANEL ====== */
.product-config-panel {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-config-panel h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.2;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.meta-item {
    display: flex;
    justify-content: space-between;
}

.in-stock {
    color: var(--accent);
    font-weight: 600;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-2);
    margin: 1rem 0;
}

.shipping-info {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.product-config-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.config-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.config-group label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.config-group label .required {
    color: #e74c3c;
}

.config-group select {
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: #232a21;
    color: var(--text);
    font-size: 0.95rem;
}

.total-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-2);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
}

.btn.add-to-cart {
    background: var(--accent);
    color: #0d1309;
    font-weight: 600;
    padding: 1rem;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

.btn.add-to-cart:hover {
    background: #a3c782;
    transform: translateY(-2px);
}

/* ====== ANIMATIES ====== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-config-panel {
        position: static;
    }

    .main-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .thumbnails {
        padding: 0.8rem;
    }

    .thumbnails img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 600px) {
    .tab-headers {
        gap: 0;
    }

    .tab-header {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
}
.filter-checkbox input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}
.filter-checkbox input:checked + .checkmark::after {
    content: "✓";
    color: #0d1309;
    font-weight: bold;
    font-size: 0.8rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}