/* ==========================================
   ScooterDiscounter - Modern Light Theme
   ========================================== */

/* CSS Variables */
:root {
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --primary-light: #FF8533;
    --green: #3aaa35;
    --green-dark: #2d8a2a;
    --dark: #1a1a2e;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --container-width: 1320px;
    
    /* SD Theme compatibility */
    --sd-orange: #FF6B00;
    --sd-dark: #1a1a2e;
    --sd-text: #1f2937;
    --sd-text-light: #4b5563;
    --sd-text-muted: #6b7280;
    --sd-border: #e5e7eb;
    --sd-bg: #f9fafb;
    --sd-white: #ffffff;
    --sd-red: #ef4444;
    --sd-radius: 12px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; 
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* Visually Hidden - for screen readers only */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   HEADER (v3.0 - compact + fixed)
   ========================================== */

/* Fixed wrapper voor header + nav */
.header-sticky-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Spacer om content onder fixed header te duwen */
.header-spacer {
    height: 110px; /* header ~60px + nav ~50px */
}

@media (max-width: 768px) {
    .header-spacer {
        height: 100px; /* mobile: header rij 1 + zoekbalk */
    }
}

.header {
    background: var(--white);
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.logo .orange { color: var(--primary); }

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}

.logo-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Search */
.search-box {
    flex: 1;
    max-width: 560px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 20px;
    padding-right: 130px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    background: var(--gray-50);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.search-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Header Icon (Service, Wishlist, Account) */
.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--gray-600);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.header-icon:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.header-icon svg {
    flex-shrink: 0;
}

/* Cart Button - Green compact */
.header-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    margin-left: 4px;
    transition: background 0.2s;
}

.header-cart:hover {
    background: var(--green-dark);
    color: white;
}

.header-cart svg {
    flex-shrink: 0;
}

.header-cart-count {
    background: white;
    color: var(--green);
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Hide count when 0 */
.header-cart-count:empty {
    display: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.3s ease;
}

/* Nav achtergrond bij scrollen - lichtgrijs */
.header-sticky-wrapper.is-scrolled .nav-bar {
    background: #edf0f2;
    border-bottom-color: #dde1e5;
}

.nav-bar .container {
    display: flex;
}

/* OpenMage navigation structure */
#nav,
.nav-primary,
.nav-bar ul.level0 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#nav li,
.nav-primary li {
    position: relative;
    list-style: none;
}

#nav > li > a,
.nav-primary > li > a,
#nav li.level0 > a {
    display: block;
    padding: 14px 18px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

#nav > li > a:hover,
.nav-primary > li > a:hover,
#nav li.level0 > a:hover {
    color: var(--primary);
    background: var(--gray-50);
}

#nav > li.active > a,
.nav-primary > li.active > a,
#nav li.level0.active > a {
    color: var(--primary);
}

/* Dropdown menus */
#nav ul,
#nav .level0 > ul,
.nav-primary ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

#nav li:hover > ul,
.nav-primary li:hover > ul {
    display: block;
}

#nav ul a,
#nav ul li a,
.nav-primary ul a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 13px;
    text-decoration: none;
}

#nav ul a:hover,
.nav-primary ul a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Third level */
#nav ul ul,
.nav-primary ul ul {
    top: 0;
    left: 100%;
}

/* Parent indicator */
#nav li.parent > a::after,
.nav-primary li.parent > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.5;
}

#nav ul li.parent > a::after,
.nav-primary ul li.parent > a::after {
    content: ' ▸';
    position: absolute;
    right: 12px;
}

/* ==========================================
   USP BAR
   ========================================== */
.usps {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 14px 0;
}

.usps .container {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.usp {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.usp-icon {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 70px 0 90px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--primary); }

.hero p {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    background: var(--gray-100);
    height: 420px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   HERO SLIDER (Homepage)
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.hero-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.hero-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}

.hero-slider__image-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    aspect-ratio: 21 / 9;
    position: relative;
    overflow: hidden;
}

.hero-slider__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image-only slide (met link) */
.hero-slider__image-wrapper > a {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slider__image-wrapper > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 1400px) {
    .hero-slider__image-wrapper {
        padding: 0 24px;
    }
    
    .hero-slider__image-wrapper img {
        border-radius: var(--radius-lg);
    }
    
    .hero-slider__content {
        margin: 0 24px;
        border-radius: var(--radius-lg);
    }
}

.hero-slider__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
    color: white;
}

@media (min-width: 1400px) {
    .hero-slider__content {
        padding: 40px 48px;
        border-radius: var(--radius-lg);
    }
}

.hero-slider__badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.hero-slider__title {
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 8px;
    max-width: 500px;
}

.hero-slider__subtitle {
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 400px;
}

.hero-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s;
}

.hero-slider__btn:hover {
    background: var(--primary-dark);
}

.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.hero-slider__nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider__nav--prev { left: 16px; }
.hero-slider__nav--next { right: 16px; }

@media (min-width: 1400px) {
    .hero-slider__nav--prev { left: max(16px, calc((100% - var(--container-width)) / 2 + 40px)); }
    .hero-slider__nav--next { right: max(16px, calc((100% - var(--container-width)) / 2 + 40px)); }
}

.hero-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-slider__dot.is-active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* Hero Slider Mobile */
@media (max-width: 768px) {
    .hero-slider__image-wrapper {
        aspect-ratio: 16 / 9;
    }

    .hero-slider__content {
        padding: 20px;
        background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
        justify-content: flex-end;
    }

    .hero-slider__nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hero-slider__nav--prev { left: 8px; }
    .hero-slider__nav--next { right: 8px; }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--gray-700);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* Section Mobile */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-header-flex {
        margin-bottom: 20px;
        /* Blijft naast elkaar op mobile */
        flex-wrap: nowrap;
        align-items: center;
    }

    .section-header-flex .section-title {
        font-size: 18px;
        margin-bottom: 0;
    }

    .view-all {
        font-size: 13px;
    }
}
}

/* ==========================================
   CATEGORY GRID
   ========================================== */
section.categories .container .cat-grid,
.categories .cat-grid,
.cat-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

section.categories .container .cat-item,
.categories .cat-item,
.cat-item {
    display: block;
    background: var(--gray-50);
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
}

.cat-item:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(255,107,0,0.25);
}

.cat-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.cat-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
}

.cat-count {
    font-size: 12px;
    color: var(--gray-600);
}

/* Category Grid Mobile: Horizontal Scroll */
@media (max-width: 768px) {
    .categories .cat-grid,
    .cat-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px !important;
        padding-bottom: 8px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .categories .cat-grid::-webkit-scrollbar,
    .cat-grid::-webkit-scrollbar {
        display: none;
    }

    .categories .cat-item,
    .cat-item {
        flex: 0 0 140px;
        scroll-snap-align: start;
        padding: 16px 12px;
    }

    .cat-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .cat-icon img {
        width: 32px;
        height: 32px;
    }

    .cat-name {
        font-size: 13px;
    }

    .cat-count {
        font-size: 11px;
    }
}

/* ==========================================
   PRODUCTS
   ========================================== */
.products-section {
    background: var(--gray-50);
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    aspect-ratio: 1;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.product-badge.sale { background: var(--danger); color: white; }
.product-badge.new { background: var(--success); color: white; }

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* PRODUCT NAME - EXACT 2 REGELS */
.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    /* Exact 2 regels hoogte */
    height: calc(14px * 1.4 * 2);
    min-height: calc(14px * 1.4 * 2);
    max-height: calc(14px * 1.4 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--primary); }

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    margin-top: auto;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.price-old {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-actions {
    margin-top: 0;
}

.add-to-cart {
    width: 100%;
    padding: 10px 16px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.add-to-cart:hover {
    background: var(--primary);
}

/* Products Grid Mobile: Horizontal Scroll */
@media (max-width: 768px) {
    .products-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px !important;
        padding-bottom: 8px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-item {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
        height: calc(13px * 1.4 * 2);
        min-height: calc(13px * 1.4 * 2);
        max-height: calc(13px * 1.4 * 2);
    }

    .price-current {
        font-size: 16px;
    }

    .add-to-cart {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px;
}

.feature {
    text-align: center;
    padding: 24px 16px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-50);
    border-radius: 12px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Features Mobile: 2x2 grid */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature {
        padding: 16px 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature h3 {
        font-size: 13px;
    }

    .feature p {
        font-size: 12px;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

.about-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.about-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.about-image {
    height: 400px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
}

/* ==========================================
   BRANDS
   ========================================== */
.brands {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.brands-title {
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    width: 120px;
    height: 60px;
    background: var(--gray-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-500);
    border: 1px solid var(--gray-100);
}

.brand-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================
   SEO CONTENT TABS (Homepage)
   ========================================== */
.seo-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.seo-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.seo-tabs::-webkit-scrollbar {
    display: none;
}

.seo-tab {
    padding: 10px 20px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.seo-tab:hover {
    background: var(--gray-100);
}

.seo-tab.is-active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.seo-content {
    display: none;
    animation: seoFadeIn 0.3s ease;
}

.seo-content.is-active {
    display: block;
}

@keyframes seoFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.seo-content h1,
.seo-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.seo-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.seo-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.seo-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.seo-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.seo-content a:hover {
    text-decoration: none;
    border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
    .seo-section {
        padding: 40px 0;
    }

    .seo-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .seo-content h3 {
        font-size: 18px;
    }

    .seo-content p,
    .seo-content li {
        font-size: 14px;
    }
}

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

/* ==========================================================================
   MAIN WRAPPER SPACING FIX
   ========================================================================== */

/* Reduce bottom padding above footer */
.sd-main-wrapper {
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    .sd-main-wrapper {
        padding-bottom: 16px;
    }
}

/* ==========================================================================
   FOOTER V5 - Mobile-first, Full-width sections
   ========================================================================== */

/* --- Newsletter --- */
.sd-footer-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 14px 16px;
    color: #fff;
}

.sd-footer-newsletter__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.sd-footer-newsletter__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-footer-newsletter__icon { font-size: 18px; }

.sd-footer-newsletter__text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.sd-footer-newsletter__text span {
    display: none;
    font-size: 12px;
    opacity: 0.9;
}

.sd-footer-newsletter__form {
    display: flex;
    gap: 8px;
}

.sd-footer-newsletter__form input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
}

.sd-footer-newsletter__form button {
    padding: 10px 16px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.sd-footer-newsletter__form button:hover { background: #333; }

/* --- Footer Base --- */
.sd-footer {
    background: #fff;
    border-top: 3px solid var(--primary);
}

/* --- USP Bar (full-width background) --- */
.sd-footer__usp {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 16px;
}

.sd-footer__usp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.sd-footer__usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border-radius: var(--radius);
}

.sd-footer__usp-item > span { font-size: 18px; }

.sd-footer__usp-item strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
}

.sd-footer__usp-item div span {
    font-size: 10px;
    color: var(--gray-500);
}

/* --- Quick Contact (Mobile) --- */
.sd-footer__quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}

.sd-footer__quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.sd-footer__quick-btn svg { width: 16px; height: 16px; }

/* --- Navigation (full-width background) --- */
.sd-footer__nav {
    background: #fff;
    padding: 0 16px;
}

.sd-footer__nav-inner {
    display: block;
    max-width: var(--container-width);
    margin: 0 auto;
}

.sd-footer__brand { display: none; }

.sd-footer__col {
    border-bottom: 1px solid var(--gray-200);
}

.sd-footer__col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.sd-footer__col-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.sd-footer__arrow {
    font-size: 10px;
    color: var(--gray-500);
    transition: transform 0.2s;
}

.sd-footer__col.is-open .sd-footer__arrow { transform: rotate(180deg); }

.sd-footer__col-content {
    display: none;
    padding: 0 0 12px;
}

.sd-footer__col.is-open .sd-footer__col-content { display: block; }

.sd-footer__col-content ul { list-style: none; margin: 0; padding: 0; }
.sd-footer__col-content li { margin-bottom: 8px; }
.sd-footer__col-content li:last-child { margin-bottom: 0; }
.sd-footer__col-content a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 13px;
}
.sd-footer__col-content a:hover { color: var(--primary); }

/* --- Contact items (voor CMS block) --- */
.sd-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--gray-700);
}

.sd-footer__contact-item:last-child { margin-bottom: 0; }

.sd-footer__contact-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sd-footer__contact-item strong {
    display: block;
    color: var(--dark);
    font-weight: 600;
}

.sd-footer__contact-item span {
    font-size: 11px;
    color: var(--gray-500);
}

.sd-footer__contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.sd-footer__contact-item a:hover { text-decoration: underline; }

/* --- Trust Section (full-width background) --- */
.sd-footer__trust {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 16px;
}

.sd-footer__trust-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.sd-footer__review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius);
}

.sd-footer__review-score {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.sd-footer__review-stars { color: #00b67a; font-size: 12px; position: relative; }
.sd-footer__review-count { font-size: 10px; color: var(--gray-500); }
.sd-footer__review-label { font-size: 9px; color: #00b67a; font-weight: 600; }

/* Review stars overlay */
.tp-stars-outer { position: relative; display: inline-block; color: #ddd; }
.tp-stars-inner { position: absolute; top: 0; left: 0; overflow: hidden; color: #00b67a; white-space: nowrap; }

.sd-footer__payments { text-align: center; }

.sd-footer__payments-label {
    display: block;
    font-size: 9px;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sd-footer__payments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.sd-footer__payments-grid img {
    height: 26px;
    width: auto;
}

.sd-footer__payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 26px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    color: var(--gray-600);
}

/* --- Bottom (full-width background) --- */
.sd-footer__bottom {
    background: var(--dark);
    padding: 14px 16px;
}

.sd-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.sd-footer__social {
    display: flex;
    gap: 8px;
}

.sd-footer__social a {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.2s;
}

.sd-footer__social a:hover { background: var(--primary); }

.sd-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sd-footer__links a {
    color: #999;
    text-decoration: none;
    font-size: 10px;
}

.sd-footer__links a:hover { color: #fff; }

.sd-footer__copy {
    font-size: 10px;
    color: #666;
    margin: 0;
}

/* --- Brand styling (voor CMS block) --- */
.sd-footer__brand-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.sd-footer__brand-logo span { color: var(--primary); }

.sd-footer__brand p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
}

.sd-footer__brand-social {
    display: flex;
    gap: 6px;
}

.sd-footer__brand-social a {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 11px;
    transition: all 0.2s;
}

.sd-footer__brand-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ==========================================================================
   FOOTER - DESKTOP (769px+)
   ========================================================================== */
@media (min-width: 769px) {
    
    /* Newsletter */
    .sd-footer-newsletter { padding: 20px 24px; }
    
    .sd-footer-newsletter__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .sd-footer-newsletter__text span { display: block; }
    
    .sd-footer-newsletter__form { max-width: 320px; }
    
    /* USP - 4 columns, full-width background */
    .sd-footer__usp { padding: 20px 24px; }
    
    .sd-footer__usp-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    
    .sd-footer__usp-item { padding: 14px 16px; }
    .sd-footer__usp-item > span { font-size: 22px; }
    .sd-footer__usp-item strong { font-size: 13px; }
    .sd-footer__usp-item div span { font-size: 11px; }
    
    /* Hide mobile quick contact */
    .sd-footer__quick { display: none; }
    
    /* Navigation - 5 columns, full-width background */
    .sd-footer__nav { padding: 40px 24px; }
    
    .sd-footer .sd-footer__nav-inner,
    .sd-footer__nav-inner {
        display: grid !important;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr !important;
        gap: 40px;
    }
    
    .sd-footer .sd-footer__brand,
    .sd-footer__brand { display: block !important; }
    
    .sd-footer__col { border-bottom: none; }
    
    .sd-footer__col-header {
        padding: 0 0 12px 0;
        cursor: default;
    }
    
    .sd-footer__arrow { display: none; }
    
    .sd-footer__col-content {
        display: block;
        padding: 0;
    }
    
    .sd-footer__col-content a { font-size: 13px; }
    
    /* Contact column - speciale box styling */
    .sd-footer .sd-footer__col--contact,
    .sd-footer__col--contact {
        background: var(--gray-100) !important;
        border-radius: var(--radius) !important;
        padding: 16px !important;
    }
    
    .sd-footer__col--contact .sd-footer__col-header {
        padding: 0 0 14px 0;
    }
    
    .sd-footer__col--contact .sd-footer__col-header h4 {
        font-size: 14px;
    }
    
    .sd-footer__col--contact .sd-footer__contact-item {
        font-size: 12px;
    }
    
    .sd-footer__col--contact .sd-footer__contact-icon {
        font-size: 14px;
        width: 20px;
    }
    
    /* Trust - horizontal, full-width background */
    .sd-footer__trust { padding: 20px 24px; }
    
    .sd-footer__trust-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .sd-footer__review { padding: 12px 16px; }
    .sd-footer__review-score { font-size: 24px; }
    
    .sd-footer__payments {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .sd-footer__payments-label { margin-bottom: 0; }
    
    .sd-footer__payment-icon { min-width: 48px; height: 30px; font-size: 10px; }
    
    /* Bottom - horizontal, full-width background */
    .sd-footer__bottom { padding: 16px 24px; }
    
    .sd-footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .sd-footer__links a,
    .sd-footer__copy { font-size: 11px; }
}


/* ==========================================
   HIDE DEFAULT NEW PRODUCTS BLOCK
   ========================================== */
.cms-index-index .block-new-products,
.cms-index-index .widget-new-products,
.cms-home .block-new-products {
    display: none !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* =====================================================
   MOBILE HEADER & MENU - Complete Rewrite
   ===================================================== */

/* ===== LOGO STYLING (Desktop + Mobile) ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
}

/* ===== USP BAR - DESKTOP ===== */
.usps-desktop {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #E55A00) 100%);
    padding: 10px 0;
}

.usps-desktop .container {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.usps-desktop .usp {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.usps-desktop .usp-icon {
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ===== USP BAR - MOBILE TICKER ===== */
.usps-mobile {
    display: none; /* Hidden on desktop */
    background: var(--gray-900, #1f2937);
    overflow: hidden;
    padding: 6px 0;
}

.usps-mobile .usps-track {
    display: flex;
    animation: ticker 25s linear infinite;
    width: max-content;
}

.usps-mobile .usps-track:hover {
    animation-play-state: paused;
}

.usps-mobile .usps-inner {
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.usps-mobile .usp {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
}

.usps-mobile .usp-check {
    color: #10b981;
    font-weight: 700;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== MOBILE MENU - Slide Panel ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gray-50, #f9fafb);
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.mobile-menu-header span {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark, #1a1a2e);
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600, #4b5563);
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Nav Items */
.mobile-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
    list-style: none !important;
}

.mobile-nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px !important;
    color: var(--gray-700, #374151) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500;
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: var(--gray-50, #f9fafb);
}

.mobile-nav-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400, #9ca3af);
    transition: transform 0.2s;
    font-size: 18px;
}

.mobile-nav-item.open > .mobile-nav-link .mobile-nav-arrow {
    transform: rotate(90deg);
    color: var(--primary, #FF6B00);
}

/* Mobile Submenu */
.mobile-subnav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--gray-50, #f9fafb);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.open > .mobile-subnav {
    max-height: 600px;
}

.mobile-subnav-item {
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
    list-style: none !important;
}

.mobile-subnav-item:last-child {
    border-bottom: none;
}

.mobile-subnav-link {
    display: block !important;
    padding: 12px 16px 12px 32px !important;
    color: var(--gray-600, #4b5563) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.2s;
}

.mobile-subnav-link:hover {
    background: var(--gray-100, #f3f4f6);
    color: var(--primary, #FF6B00) !important;
}

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 8px;
    background: var(--gray-100, #f3f4f6);
}

/* Mobile Nav Sale/Aanbiedingen styling */
.mobile-nav-link--sale {
    color: #d32f2f !important;
    font-weight: 600 !important;
}

.mobile-nav-link--sale:hover {
    background: #ffebee !important;
}

/* Mobile Menu Links (CMS Block) */
.mobile-menu-links {
    padding: 8px 0;
}

.mobile-menu-links-title {
    padding: 12px 16px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400, #9ca3af);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-700, #374151);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover {
    background: var(--gray-50, #f9fafb);
    color: var(--primary, #FF6B00);
}

.mobile-menu-link svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400, #9ca3af);
    flex-shrink: 0;
}

/* ===== HAMBURGER BUTTON - Hidden on desktop ===== */
.mobile-menu-btn {
    display: none;
}

/* ===== OLD NAV-BAR MOBILE HEADER - Hidden ===== */
.mobile-nav-header {
    display: none;
}

/* ===== MOBILE STYLES: max 768px ===== */
@media (max-width: 768px) {
    /* Switch USP bars */
    .usps-desktop,
    .usps {
        display: none !important;
    }
    
    .usps-mobile {
        display: block;
    }

    /* Header adjustments - 2 rijen op mobiel */
    .header {
        padding: 8px 0;
    }

    .header .container {
        flex-wrap: wrap;
        padding: 0 12px;
        gap: 6px;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: none;
        border: 1px solid var(--gray-200, #e5e7eb);
        border-radius: 6px;
        cursor: pointer;
        flex-shrink: 0;
        order: 1;
    }

    .mobile-menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--gray-700, #374151);
        position: relative;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: var(--gray-700, #374151);
        left: 0;
    }

    .mobile-menu-btn span::before { top: -6px; }
    .mobile-menu-btn span::after { top: 6px; }

    /* Logo - links na hamburger */
    .header .logo {
        order: 2;
        flex: 1;
    }

    .logo img {
        height: 28px;
    }

    /* Header actions */
    .header-actions {
        order: 3;
        gap: 2px;
    }

    /* Hide service/wishlist icons on mobile, keep account */
    .header-icon:nth-child(1),
    .header-icon:nth-child(2) {
        display: none;
    }

    .header-icon {
        width: 36px;
        height: 36px;
    }

    /* Compact cart button */
    .header-cart {
        padding: 6px 10px;
        margin-left: 4px;
    }

    .header-cart svg {
        width: 18px;
        height: 18px;
    }

    .header-cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
    }

    /* Search full width - tweede rij */
    .header .search-box {
        order: 4;
        width: 100%;
        max-width: 100%;
        flex: none;
        margin-top: 4px;
    }

    .header .search-box input {
        padding: 10px 14px;
        padding-right: 50px;
        font-size: 14px;
        border-radius: 6px 0 0 6px;
    }

    .header .search-box button {
        padding: 0 14px;
        font-size: 0; /* Hide text, show icon */
        border-radius: 0 6px 6px 0;
    }
    
    /* Search icon on mobile button */
    .header .search-box button::before {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    /* Hide old nav-bar on mobile (we use mobile-menu instead) */
    .nav-bar {
        display: none;
    }

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
}

/* ===== DESKTOP: ensure nav visible ===== */
@media (min-width: 769px) {
    .nav-bar {
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        box-shadow: none !important;
        overflow: visible !important;
        display: block !important;
    }
    
    /* Hide mobile-only elements on desktop */
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ==========================================
   HOMEPAGE GRID OVERRIDES (Final Priority)
   ========================================== */
@media (min-width: 769px) {
    .cat-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }
    
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }
    
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }
}

@media (max-width: 768px) {
    .cat-grid,
    .products-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* ===== Configurable Product Options ===== */
/* Voeg dit toe aan sd-product.css, bijvoorbeeld na de Price section */

.sd-product-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--sd-bg);
    border-radius: var(--sd-radius);
    border: 1px solid var(--sd-border);
}

.sd-option-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sd-option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--sd-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sd-option-required {
    color: var(--sd-red);
    font-weight: 400;
}

.sd-option-select-wrapper {
    position: relative;
}

.sd-option-select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--sd-text);
    background-color: var(--sd-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sd-option-select:hover {
    border-color: var(--sd-orange);
}

.sd-option-select:focus {
    outline: none;
    border-color: var(--sd-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.sd-option-select.validation-failed {
    border-color: var(--sd-red);
    background-color: #fef2f2;
}

/* Mobile */
@media (max-width: 768px) {
    .sd-product-options {
        padding: 12px;
    }
    
    .sd-option-select {
        padding: 14px 40px 14px 12px;
        font-size: 16px; /* Voorkomt zoom op iOS */
    }
}

/* =====================================================
   ACCESSIBILITY & PERFORMANCE FIXES v2
   Toegevoegd voor Lighthouse optimalisatie
   ===================================================== */

/* ----- Skip link (accessibility) ----- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary, #FF6B00);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ----- Visually hidden (screen readers) ----- */
.visually-hidden,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ----- Focus visible (keyboard navigation) ----- */
:focus-visible {
    outline: 2px solid var(--primary, #FF6B00);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary, #FF6B00);
    outline-offset: 2px;
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =====================================================
   TOUCH TARGETS (min 44x44px)
   ===================================================== */

.mobile-menu-btn,
.mobile-menu-close,
.header-icon,
.header-cart {
    min-width: 44px;
    min-height: 44px;
}

/* Hero slider dots - grotere touch area met behoud van visuele styling */
.hero-slider__dot {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none;
    cursor: pointer;
    margin: 0;
    position: relative;
}

/* De zichtbare dot */
.hero-slider__dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.hero-slider__dot.is-active::after {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* Hero slider navigation buttons */
.hero-slider__nav {
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
}

/* Hero slider CTA buttons */
.hero-slider__btn,
a.hero-slider__btn {
    min-width: 44px;
    min-height: 44px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   CONTRAST FIXES - Product badges
   ===================================================== */

/* Sale badge - donkerder rood voor wit tekst */
.product-badge.sale {
    background-color: #b91c1c !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* New badge - donkerder groen voor wit tekst */
.product-badge.new {
    background-color: #047857 !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* =====================================================
   CONTRAST FIXES - Prijzen
   ===================================================== */

/* Huidige prijs - donkerder voor beter contrast */
.price-current,
span.price-current {
    color: #b91c1c !important;
    font-weight: 700;
}

/* Oude prijs - donkerder grijs */
.price-old,
span.price-old {
    color: #4b5563 !important;
}

/* Cart drawer prijzen */
.cart-drawer__item-price-current,
span.cart-drawer__item-price-current {
    color: #b91c1c !important;
    font-weight: 700;
}

.cart-drawer__related-item-price {
    color: #1f2937 !important;
    font-weight: 600;
}

/* Cart drawer total */
#cartDrawerTotal,
.cart-drawer__total-value {
    color: #1f2937 !important;
    font-weight: 700;
}

/* Cart drawer shipping complete */
.cart-drawer__shipping.is-complete strong {
    color: #047857 !important;
}

/* Cart drawer payments tekst */
.cart-drawer__payments {
    color: #4b5563 !important;
}

/* =====================================================
   CONTRAST FIXES - Links
   ===================================================== */

/* View all links */
a.view-all {
    color: #c2410c !important;
    font-weight: 600;
}

a.view-all:hover {
    color: #9a3412 !important;
}

/* =====================================================
   CONTRAST FIXES - SEO tabs
   ===================================================== */

.seo-tab {
    color: #374151;
    background: #f3f4f6;
}

.seo-tab.is-active {
    background: #1f2937 !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* SEO content links */
.seo-content a,
.seo-section a {
    color: #c2410c !important;
    text-decoration: underline;
}

.seo-content a:hover,
.seo-section a:hover {
    color: #9a3412 !important;
}

/* =====================================================
   CONTRAST FIXES - Footer
   ===================================================== */

.footer-payments-title {
    color: #e5e7eb !important;
}

footer.footer p,
.footer p {
    color: #d1d5db !important;
}

/* =====================================================
   CONTRAST FIXES - Cookie banner
   ===================================================== */

/* Cookie accept button */
a.cookie-button.fill.accept-cookies,
.cookie-button.accept-cookies {
    background-color: #047857 !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* Cookie save button */
a.cookie-button.fill.save-cookies,
.cookie-button.save-cookies {
    background-color: #1f2937 !important;
    color: #ffffff !important;
    font-weight: 600;
}

/* Cookie deny button */
a.cookie-button.deny-cookies,
.cookie-button.deny-cookies {
    color: #1f2937 !important;
    border-color: #1f2937 !important;
    font-weight: 600;
}

/* Cookie form labels - maak labels klikbaar */
.cookie-input + .switch,
label.switch {
    cursor: pointer;
}

/* =====================================================
   CONTRAST FIXES - Algemeen
   ===================================================== */

/* Section subtitles */
.section-subtitle,
.cat-count {
    color: #4b5563 !important;
}

/* =====================================================
   VALIDATION STATES
   ===================================================== */

.validation-failed,
input.validation-failed,
select.validation-failed,
textarea.validation-failed {
    border-color: #dc3545 !important;
    background-color: #fef2f2 !important;
}

.validation-advice {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 4px;
}

/* =====================================================
   LAYOUT SHIFT PREVENTION
   ===================================================== */

.hero-slider {
    aspect-ratio: 21 / 9;
    /* background removed - slider has transparent bg */
}

@media (max-width: 768px) {
    .hero-slider {
        aspect-ratio: 16 / 9;
    }
}

.product-image {
    aspect-ratio: 1 / 1;
    background: #f9fafb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .header,
    .nav-bar,
    .usps-desktop,
    .usps-mobile,
    .mobile-menu,
    .mobile-menu-overlay,
    .cart-drawer,
    .newsletter,
    .cookie-notice {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}
