/* ================================================================
   ShopStart — Frontend CSS
   ================================================================ */

/* ── Broken image placeholder ────────────────────────────────── */
img.img-broken {
    object-fit: contain;
    background: #f3f4f6;
    width: 100%;
    height: 100%;
}

/* ── Page loader ─────────────────────────────────────────────── */
#page-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
#page-loader.active { display: flex; }
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: loader-spin 0.7s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

:root {
    /* Prompt 6: kleurpalet */
    --color-primary:    #3182CE;
    --color-primary-dk: #2B6CB0;
    --color-accent:     #3182CE;
    --color-text:       #2D3748;
    --color-muted:      #718096;
    --color-bg:         #FFFFFF;
    --color-card:       #FFFFFF;
    --color-border:     #E2E8F0;
    --color-green:      #276749;
    --color-footer:     #1A202C;
    /* Prompt 6: typografie — Inter */
    --font:             'Inter', 'Segoe UI', system-ui, sans-serif;
    /* Prompt 6: spacing (8px-regel) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    /* Overige */
    --radius:           8px;
    --shadow:           0 1px 8px rgba(0,0,0,.07);
    --shadow-hover:     0 8px 24px rgba(0,0,0,.13);
    --transition:       .2s ease;
    --max-width:        1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Prompt 6: titels semibold */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

/* Sectie achtergrond licht grijs voor afwisseling */
.section-bg-alt { background: #F7FAFC; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.header-row-1 {
    border-bottom: 1px solid var(--color-border);
}
.header-row-1-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-row-2 {
    background: #f8f9fa;
    border-bottom: 1px solid var(--color-border);
}
.header-row-2 .container {
    display: flex;
    align-items: center;
    gap: 0;
    height: 40px;
    padding: 0 var(--space-3);
}
.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav > ul {
    display: flex;
    gap: 4px;
    list-style: none;
    flex-wrap: nowrap;
}
.main-nav a {
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--color-text);
    font-size: .9rem;
    transition: background var(--transition);
}
.main-nav a:hover {
    background: var(--color-bg);
    text-decoration: none;
}
/* ── Nav dropdown ────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: .9rem;
    cursor: pointer;
    transition: background var(--transition);
}
.nav-dropdown-toggle:hover { background: var(--color-bg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    flex-direction: column;
    gap: 0;
    z-index: 200;
}
.nav-dropdown-menu.open { display: flex; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-dropdown-menu a:hover { background: var(--color-bg); }
/* ── Taalschakelaar ──────────────────────────────────────────── */
.lang-switcher { position: relative; margin-left: auto; }
.lang-current {
    display: flex; align-items: center; gap: 6px;
    background: none; border: 1px solid rgba(0,0,0,.15); border-radius: 8px;
    padding: 5px 10px; cursor: pointer; font-size: .85rem;
    color: var(--color-text); white-space: nowrap;
    transition: background .15s, border-color .15s;
}
.lang-current:hover { background: var(--color-bg); border-color: rgba(0,0,0,.25); }
.lang-chevron { transition: transform .2s; flex-shrink: 0; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: #fff; border: 1px solid rgba(0,0,0,.12); border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); list-style: none;
    min-width: 160px; padding: 4px; z-index: 200; overflow: hidden;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown li a {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 12px; border-radius: 7px; text-decoration: none;
    font-size: .87rem; color: var(--color-text);
    transition: background .12s;
}
.lang-dropdown li a:hover { background: var(--color-bg); }
.lang-dropdown li[aria-selected="true"] a { font-weight: 600; }
.lang-flag { font-size: 1.15rem; line-height: 1; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-text);
    color: #adb5bd;
    text-align: center;
    padding: 32px 20px;
    margin-top: 60px;
    font-size: .875rem;
}
.site-footer .disclaimer { margin-top: 8px; color: #6c757d; }

/* ── Section titles ──────────────────────────────────────────── */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: var(--space-5) 0 var(--space-3);
    color: var(--color-text);
    padding-left: 0;
}

/* ── Brand ticker ────────────────────────────────────────────── */
.brand-ticker {
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 14px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brand-ticker-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: brand-scroll 30s linear infinite;
}
.brand-ticker:hover .brand-ticker-track { animation-play-state: paused; }
.brand-ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: .65;
    transition: opacity .2s;
}
.brand-ticker-item:hover { opacity: 1; }
.brand-ticker-item img {
    height: 36px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter .2s;
}
.brand-ticker-item:hover img { filter: grayscale(0); }
@keyframes brand-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Categories grid (homepage) ──────────────────────────────── */
.categories-section { padding: 24px 0; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 16px 8px 12px;
    text-align: center;
    color: var(--color-text);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}
.category-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.category-icon-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.category-emoji {
    font-size: 30px;
    line-height: 1;
}
.category-name {
    font-weight: 600;
    font-size: .78rem;
    line-height: 1.3;
    color: var(--color-text);
}

/* ── News / articles grid ────────────────────────────────────── */
.intro-section { padding: 32px 0 8px; }
.intro-block {
    padding: 32px 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.intro-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px;
    text-align: left;
}
.intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}
.news-section { padding: 24px 0; }
.section-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}
.section-link {
    font-size: .88rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}
.section-link:hover { text-decoration: underline; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.news-grid-wide {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 900px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .news-grid { grid-template-columns: 1fr; }
}
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}
.news-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
.news-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.news-card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.news-date {
    font-size: .75rem;
    color: var(--color-muted);
}
.special-badge {
    display: inline-block;
    padding: 2px 9px;
    background: #e53e3e;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.special-badge:hover { background: #c53030; color: #fff; text-decoration: none; }
.special-badge-detail {
    font-size: .85rem;
    padding: 4px 13px;
    align-self: center;
}
.news-title {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: var(--color-text);
}
.news-excerpt {
    font-size: .82rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.news-read-more {
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 4px;
}

/* ── Article detail ──────────────────────────────────────────── */
.article-detail { max-width: 800px; margin: 0 auto 48px; }
.article-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.article-hero-img img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.article-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--color-muted); margin-bottom: 12px; }
.article-title { font-size: 2rem; line-height: 1.2; margin: 0 0 16px; }
.article-lead { font-size: 1.1rem; color: var(--color-muted); line-height: 1.6; margin-bottom: 24px; border-left: 3px solid var(--color-primary); padding-left: 16px; }
.article-content { line-height: 1.75; font-size: 1rem; }
.article-content p { margin: 0 0 16px; }
.article-content h2 { font-size: 1.35rem; margin: 28px 0 12px; }
.article-content h3 { font-size: 1.1rem; margin: 20px 0 8px; }
.article-cta { margin: 32px 0; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.article-tag { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 20px; padding: 4px 12px; font-size: .78rem; color: var(--color-muted); }
.article-tag-link { text-decoration: none; transition: background .15s, color .15s, border-color .15s; }
.article-tag-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.breadcrumb-tag { display:inline-flex; align-items:center; }
.related-articles { margin-top: 48px; }
.related-articles h2 { margin-bottom: 16px; }
.related-articles .news-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .related-articles .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-articles .news-grid { grid-template-columns: 1fr; } }

/* ── Product grid ────────────────────────────────────────────── */
.products-section { padding: 20px 0 40px; }
.product-grid {
    display: grid;
    gap: 20px;
}
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-auto { grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); justify-content: center; }
.cols-home { grid-template-columns: repeat(4, 1fr); justify-content: start; }
@media (max-width: 900px) { .cols-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cols-home { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   Prompt 4: Product card — verticale layout, bold prijs, CTA, badges
   ══════════════════════════════════════════════════════════════ */
.product-card {
    background: var(--color-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: #CBD5E0;
}

/* Prompt 4: productfoto vullend bovenin */
.product-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F7FAFC;
    display: block;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
    padding: 8px;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-muted);
    font-size: .8rem;
}

/* Prompt 4: korting badge */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E53E3E;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 4px;
}
.out-of-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-muted);
    color: #fff;
    font-size: .75rem;
    padding: 3px 8px;
    border-radius: 4px;
}
/* Prompt 4: product info blok */
.product-info {
    padding: var(--space-2);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    flex: 1;
}
.product-brand {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-muted);
    letter-spacing: .05em;
}

/* Prompt 4: titel max 2 regels */
.product-title {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a { color: var(--color-text); }
.product-title a:hover { color: var(--color-primary); text-decoration: none; }

/* Prompt 4: prijs bold */
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
    margin-top: 4px;
}
.price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}
.price-old {
    font-size: .82rem;
    color: var(--color-muted);
    text-decoration: line-through;
}

/* Prompt 4: CTA knop 'Bekijk Deal' — accentkleur blauw */
.btn-shop {
    display: block;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    margin-top: var(--space-1);
    transition: background var(--transition), transform var(--transition);
    letter-spacing: .01em;
}
.btn-shop:hover {
    background: var(--color-primary-dk);
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Like-knop (hartje) ──────────────────────────────────────── */
.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 2px;
    font-size: .82rem;
    color: var(--color-muted);
    transition: color .15s, transform .15s;
    line-height: 1;
    user-select: none;
}
.like-btn svg { flex-shrink: 0; transition: fill .2s, stroke .2s, transform .2s; }
.like-btn:hover { color: #e53e3e; }
.like-btn:hover svg { transform: scale(1.15); }
.like-btn.liked { color: #e53e3e; }
.like-btn.liked svg { fill: #e53e3e; stroke: #e53e3e; }
.like-btn.like-pop svg { animation: like-pop .25s ease; }
@keyframes like-pop { 0%{transform:scale(1)} 40%{transform:scale(1.4)} 100%{transform:scale(1)} }

/* Wrapper in productkaart: rechts uitlijnen */
.product-like-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}
/* Like-knop op productdetailpagina */
.detail-like-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 4px;
}
.like-btn-lg {
    font-size: .95rem;
    gap: 7px;
    padding: 6px 4px;
}
.like-btn-lg svg { width: 22px; height: 22px; }

/* Prompt 4: 'Populair' badge */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ED8936;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 4px;
    letter-spacing: .02em;
}

/* ── Category page layout ────────────────────────────────────── */
.page-title {
    font-size: 1.8rem;
    margin: 24px 0 6px;
}
.category-desc { color: var(--color-muted); margin-bottom: 20px; }
.breadcrumb { margin: 20px 0 0; font-size: .875rem; color: var(--color-muted); }
.breadcrumb a { color: var(--color-accent); }

.category-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 24px;
}

/* ── Filter sidebar ──────────────────────────────────────────── */
.filter-sidebar {
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 76px;
}
.filter-block { margin-bottom: 20px; }
.filter-block h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; color: var(--color-muted); }
.filter-block select,
.filter-block input[type="number"] {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: .9rem;
    background: #fff;
}
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { flex: 1; }
.checkbox-label { display: flex; gap: 8px; align-items: center; cursor: pointer; font-size: .9rem; }

.results-bar { font-size: .875rem; color: var(--color-muted); margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
.filter-toggle-btn { display: none; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition);
    text-align: center;
}
.btn-primary  { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dk); color: #fff; text-decoration: none; }
.btn-secondary { background: #e9ecef; color: var(--color-text); }
.btn-secondary:hover { background: #dee2e6; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--color-muted); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: #f1f3f5; text-decoration: none; }
.btn-full { width: 100%; display: block; margin-top: 8px; }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
    flex-wrap: wrap;
}
.pag-btn {
    padding: 7px 12px;
    border-radius: 6px;
    background: var(--color-card);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-size: .9rem;
    text-decoration: none;
    display: inline-block;
}
.pag-btn:hover { background: #e9ecef; text-decoration: none; }
.pag-current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pag-disabled { color: var(--color-muted); cursor: default; }
.pag-ellipsis { padding: 0 4px; color: var(--color-muted); }
.pag-jump { display: flex; gap: 4px; align-items: center; margin-left: 8px; }
.pag-input { width: 60px; padding: 6px 8px; border: 1px solid var(--color-border); border-radius: 6px; font-size: .9rem; text-align: center; }

/* ── Empty state ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 48px 20px; color: var(--color-muted); }

/* ── Product detail page ─────────────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
    align-items: start;
}
.product-detail-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: contain;
    max-height: 500px;
    background: #f1f3f5;
}
.img-placeholder-lg {
    width: 100%;
    height: 400px;
    background: #e9ecef;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
}
.detail-brand { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); margin-bottom: 6px; }
.detail-title { font-size: 1.6rem; line-height: 1.3; margin-bottom: 16px; }
.detail-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.detail-price { font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.detail-old-price { font-size: 1.1rem; color: var(--color-muted); text-decoration: line-through; }
.detail-discount { background: var(--color-primary); color: #fff; padding: 3px 10px; border-radius: 4px; font-size: .85rem; font-weight: 700; }
.stock-warning { background: #fff3cd; border: 1px solid #ffc107; border-radius: 6px; padding: 8px 14px; margin-bottom: 16px; font-size: .9rem; }
.btn-shop-lg {
    display: block;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: background var(--transition);
}
.btn-shop-lg:hover { background: var(--color-primary-dk); color: #fff; text-decoration: none; }
.affiliate-notice { font-size: .8rem; color: var(--color-muted); margin-bottom: 24px; }
.detail-description { margin-bottom: 24px; }
.detail-description h2 { font-size: 1.1rem; margin-bottom: 8px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.specs-table th, .specs-table td { padding: 8px 12px; border-bottom: 1px solid var(--color-border); text-align: left; }
.specs-table th { width: 140px; color: var(--color-muted); font-weight: 600; background: #f8f9fa; }
.related-products { margin: 48px 0; }
.related-products h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* ── Reviews ─────────────────────────────────────────────────────────── */
.reviews-section { margin: 48px 0 32px; border-top: 2px solid var(--color-border, #e2e8f0); padding-top: 32px; }
.reviews-title { font-size: 1.4rem; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.reviews-count { font-size: 1rem; font-weight: 400; color: var(--color-muted, #718096); }
.reviews-empty { color: var(--color-muted, #718096); font-size: .95rem; margin: 0 0 24px; }

.review-flash { padding: 10px 16px; border-radius: 8px; margin-bottom: 16px; font-size: .9rem; }
.review-flash-ok  { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.review-flash-err { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.review-card {
    background: #f8fafc;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 10px;
    padding: 16px 20px;
}
.review-header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.review-name { font-weight: 700; font-size: .95rem; }
.review-stars { display: flex; gap: 2px; }
.star-filled path { fill: #f59e0b; }
.star-empty  path { fill: #e5e7eb; }
.review-date { font-size: .78rem; color: var(--color-muted, #718096); margin-left: auto; }
.review-body { margin: 0; font-size: .92rem; line-height: 1.6; color: var(--color-text, #2d3748); white-space: pre-line; }

/* Formulier */
.review-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 9px 20px;
    background: none;
    border: 1px solid var(--color-primary, #3182CE);
    border-radius: 20px;
    color: var(--color-primary, #3182CE);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.review-toggle-btn:hover { background: var(--color-primary, #3182CE); color: #fff; }
.review-form-collapsible { margin-top: 16px; }
.review-form-wrap {
    background: #f8fafc;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 12px;
    padding: 24px;
    margin-top: 8px;
}
.review-form-title { font-size: 1.1rem; margin: 0 0 20px; }
.review-form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.review-form-row label { font-size: .88rem; font-weight: 600; color: var(--color-text, #2d3748); }
.review-form-row input[type="text"],
.review-form-row textarea {
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .92rem;
    font-family: inherit;
    background: #fff;
    color: var(--color-text, #2d3748);
    transition: border-color .15s;
    resize: vertical;
}
.review-form-row input[type="text"]:focus,
.review-form-row textarea:focus { border-color: var(--color-primary, #3182CE); outline: none; box-shadow: 0 0 0 3px rgba(49,130,206,.12); }
.review-required { color: #e53e3e; }
.review-hint { font-size: .78rem; color: var(--color-muted, #718096); }

/* Ster-kiezer */
.star-picker { display: flex; gap: 4px; }
.star-pick-label { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.star-pick path { fill: #e5e7eb; transition: fill .1s; }
.star-pick-label:hover .star-pick path,
.star-pick-label:hover ~ .star-pick-label .star-pick path { fill: #e5e7eb; }
.star-pick-label input:checked ~ * { fill: #f59e0b; }
/* JS vult .star-active class in */
.star-pick-label.star-active .star-pick path { fill: #f59e0b; }

.btn-review-submit {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-primary, #3182CE);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}
.btn-review-submit:hover { background: var(--color-primary-dk, #2b6cb0); }

/* ══════════════════════════════════════════════════════════════
   Prompt 2: Hero-sectie — H1 + zoekbalk + quick links
   + Parallax achtergrond via --parallax-y CSS custom property
   ══════════════════════════════════════════════════════════════ */
.homepage-search {
    background: linear-gradient(135deg, #1A365D 0%, #2A4A7F 55%, #3182CE 100%);
    padding: var(--space-6) var(--space-3);
    text-align: center;
    position: relative;
    /* overflow: visible zodat de zoek-dropdown niet wordt afgeknipt */
    z-index: 2;
}

/* Cirkelwrapper: eigen overflow:hidden zodat de cirkels worden bijgesneden
   zonder de dropdown van de zoekbalk te clippen.
   z-index: -1 zodat cirkels achter de tekst blijven (maar voor de gradient achtergrond). */
.homepage-search-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* Decoratieve cirkel boven-rechts */
.homepage-search-bg::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

/* Decoratieve cirkel onder-links */
.homepage-search-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -80px;
}

.hero-home-h1 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 auto var(--space-2);
    max-width: 700px;
    letter-spacing: -.01em;
}

.hero-home-sub {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin: 0 auto var(--space-4);
    max-width: 500px;
}

.search-form {
    display: flex;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
    border-radius: 50px;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.search-input-wrap {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
    width: 20px; height: 20px;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 18px 18px 18px 52px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1.05rem;
    font-family: var(--font);
    outline: none;
    background: #fff;
    color: var(--color-text);
}

.search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    font-size: .9rem;
    cursor: pointer;
    padding: 4px;
}

.search-clear:hover { color: var(--color-primary); text-decoration: none; }

.search-submit {
    padding: 18px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
    letter-spacing: .01em;
}

.search-submit:hover { background: var(--color-primary-dk); }

/* ── Prompt 2: Quick links onder de zoekbalk ── */
.hero-quick-links {
    display: flex;
    gap: var(--space-1);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-3);
    position: relative;
    z-index: 0;
}

.hero-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(4px);
}

.hero-quick-link:hover {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.45);
    text-decoration: none;
    color: #fff;
}

/* Autocomplete dropdown */
.search-suggest,
.header-suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 200;
    overflow: hidden;
    display: none;
}
.search-suggest.open,
.header-suggest.open { display: block; }
.suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
    transition: background var(--transition);
}
.suggest-item:hover { background: #f8f9fa; text-decoration: none; }
.suggest-item-img {
    width: 36px; height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: #f1f3f5;
    flex-shrink: 0;
}
.suggest-item-icon {
    width: 36px; height: 36px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 800;
    flex-shrink: 0;
}
.suggest-label { flex: 1; font-size: .9rem; line-height: 1.3; }
.suggest-label small { display: block; color: var(--color-muted); font-size: .78rem; }
.suggest-price { font-size: .85rem; font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.suggest-divider { padding: 4px 16px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); background: #f8f9fa; }

/* Zoekbalk in header rij 1 — gecentreerd */
.header-row-1 .container {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}
.header-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 620px;
    margin: 0 auto;
}
.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
}
.header-search-wrap svg {
    position: absolute;
    left: 12px;
    color: var(--color-muted);
    pointer-events: none;
    z-index: 1;
}
.header-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid var(--color-border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
    background: #f8f9fa;
    transition: border-color var(--transition), background var(--transition);
    box-sizing: border-box;
}
.header-search input:focus {
    border-color: var(--color-primary);
    background: #fff;
}
.header-search-btn {
    padding: 12px 22px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    transition: background var(--transition);
}
.header-search-btn:hover { background: var(--color-primary-dk); }
/* Categorie pill-knoppen in header rij 2 */
.header-quick-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-left: auto;
}
.header-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    color: #4A5568;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.header-quick-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

/* ── Search pagina ────────────────────────────────────────────── */
.search-page { padding-bottom: 60px; }
.search-hero { background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%); padding: 32px 20px; }
.search-summary { max-width: var(--max-width); margin: 24px auto; padding: 0 20px; color: var(--color-muted); }
.search-section { max-width: var(--max-width); margin: 0 auto 40px; padding: 0 20px; }
.search-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
}
.section-count { color: var(--color-muted); font-size: .9rem; font-weight: 400; }
.search-empty { max-width: var(--max-width); margin: 60px auto; text-align: center; color: var(--color-muted); padding: 0 20px; }
.search-empty h2 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-text); }

/* Result type badges */
.result-type-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.type-category { background: #dbeafe; color: #1e40af; }
.type-brand    { background: #fef3c7; color: #92400e; }
.type-product  { background: #d1fae5; color: #065f46; }

/* Category resultaten */
.search-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
.search-category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
    color: var(--color-text);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}
.search-category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); text-decoration: none; }
.sc-img { width: 60px; height: 60px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; }
.sc-img-placeholder { background: #f1f3f5; display: flex; align-items: center; justify-content: center; color: #adb5bd; }
.sc-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sc-info strong { font-size: .95rem; }
.sc-info p { font-size: .8rem; color: var(--color-muted); margin: 0; }
.sc-arrow { color: var(--color-muted); font-size: 1.2rem; flex-shrink: 0; }

/* Merk resultaten */
.search-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.search-brand-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
    color: var(--color-text);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}
.search-brand-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); text-decoration: none; }
.brand-icon {
    width: 52px; height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-text));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 900;
    flex-shrink: 0;
}
.brand-sample-img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; background: #f1f3f5; flex-shrink: 0; }
.brand-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.brand-info strong { font-size: .95rem; }
.brand-count { font-size: .78rem; color: var(--color-muted); }
.brand-price { font-size: .82rem; color: var(--color-primary); font-weight: 600; }

/* ── Hero slider ─────────────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #1d3557;
}
.hero-track { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}
.hero-slide.active { opacity: 1; }
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.hero-slide.active .hero-bg { transform: scale(1.04); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 700px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin-bottom: 12px;
}
.hero-subtitle {
    font-size: 1.15rem;
    opacity: .9;
    text-shadow: 0 1px 6px rgba(0,0,0,.3);
    margin-bottom: 24px;
}
.hero-btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.hero-btn:hover { background: var(--color-primary-dk); transform: translateY(-2px); text-decoration: none; color: #fff; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.35); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* ── Gradient CTA strook (zelfde als hero, boven footer) ────── */
.hero-cta-stripe {
    background: linear-gradient(135deg, #1A365D 0%, #2A4A7F 55%, #3182CE 100%);
    padding: var(--space-5) var(--space-3);
    text-align: center;
    margin-top: var(--space-5);
    position: relative;
    overflow: hidden;
}

/* Grote cirkel rechts */
.hero-cta-stripe::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
    width: 400px;
    height: 400px;
    top: -180px;
    right: -80px;
}

/* Kleine cirkel links */
.hero-cta-stripe::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -60px;
}
.hero-cta-stripe-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.hero-cta-text {
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}
.hero-cta-btn {
    display: inline-block;
    background: #fff;
    color: #1A365D;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.hero-cta-btn:hover {
    background: #EBF8FF;
    color: #1A365D;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   Prompt 5: Trust bar — social proof sectie boven de footer
   ══════════════════════════════════════════════════════════════ */
.trust-bar {
    background: #F7FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    padding: var(--space-5) var(--space-3);
    margin-top: 0;
}
.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.trust-bar-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}
@media (max-width: 600px) {
    .trust-bar-icons { grid-template-columns: 1fr; gap: var(--space-3); }
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
}
.trust-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #EBF8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg { width: 26px; height: 26px; color: #3182CE; }
.trust-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2D3748;
    margin: 0;
}
.trust-item-text {
    font-size: .875rem;
    color: #718096;
    margin: 0;
}

/* Prompt 5: populaire bezoekers sectie */
.trust-visitors {
    text-align: center;
    padding: var(--space-4) 0 var(--space-2);
    border-top: 1px solid #E2E8F0;
}
.trust-visitors-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2D3748;
    margin: 0 0 var(--space-2);
}
.trust-visitor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
    justify-content: center;
}
.trust-tag {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: .82rem;
    color: #4A5568;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   Prompt 5: Footer — donkergrijs/antraciet, kolommen
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: #1A202C;
    color: #A0AEC0;
    padding: var(--space-6) var(--space-3) var(--space-4);
    margin-top: 0;
    font-size: .875rem;
}
.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto var(--space-5);
    padding: 0 var(--space-3);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-5);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

.footer-brand-col {}
.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--space-2);
}
.footer-tagline {
    color: #718096;
    font-size: .875rem;
    line-height: 1.6;
    margin: 0 0 var(--space-3);
}

/* Social icons in footer */
.footer-social {
    display: flex;
    gap: var(--space-1);
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: #718096;
    transition: background var(--transition), color var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

/* Footer kolom stijlen */
.footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #E2E8F0;
    margin: 0 0 var(--space-2);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #718096;
    text-decoration: none;
    font-size: .875rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: #fff; text-decoration: none; }

/* Footer bottom bar */
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-4) var(--space-3) 0;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: #4A5568; font-size: .8rem; }
.footer-bottom a { color: #718096; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.site-footer .disclaimer { display: none; } /* Zit nu in footer-bottom */

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cols-4 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Tablet 768px ── */
@media (max-width: 768px) {
    /* Header rij 1: logo | zoekbalk | hamburger */
    .header-row-1 .container {
        display: flex;
        flex-wrap: wrap;
        padding: 0 12px;
        height: auto;
        min-height: 48px;
        gap: 0;
    }
    .site-logo {
        flex: 0 0 auto;
        font-size: 1.15rem;
        order: 1;
        padding: 8px 0;
    }
    .header-search {
        order: 2;
        flex: 1;
        margin: 0;
        padding: 6px 8px;
        min-width: 0;
        max-width: none;
    }
    .header-search-wrap { width: 100%; }
    .header-search input {
        padding: 8px 10px 8px 34px;
        font-size: .88rem;
        background: #f0f4f8;
    }
    .header-search input:focus { background: #fff; }
    .header-search-btn { padding: 8px 14px; font-size: .85rem; }
    .header-row-1-right { order: 3; margin-left: auto; padding: 4px 0; }
    .header-suggest { left: 0; right: 0; width: auto; }
    .lang-switcher { display: none; }
    .nav-toggle { display: block; order: 3; margin-left: auto; }
    /* Header rij 2: verborgen op mobiel, zichtbaar via hamburger */
    .header-row-2 { display: none; }
    .header-row-2.open {
        display: block;
        background: #fff;
        border-top: 1px solid var(--color-border);
    }
    .header-row-2.open .container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 8px 12px;
        gap: 8px;
    }
    .header-quick-links { margin-left: 0; flex-wrap: wrap; }
    .main-nav > ul { flex-direction: column; gap: 4px; }

    /* Layout */
    .category-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; position: static; overflow: hidden; }
    .filter-sidebar.mobile-open { display: block; }
    .filter-toggle-btn {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 6px 14px; font-size: .85rem; font-weight: 600;
        background: var(--color-bg); border: 1px solid var(--color-border);
        border-radius: 20px; cursor: pointer; color: var(--color-text);
    }
    .filter-toggle-btn[aria-expanded="true"] { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
    .product-detail { grid-template-columns: 1fr; }
    .cols-4, .cols-3 { grid-template-columns: repeat(2, 1fr); }

    /* Hero compacter op tablet */
    .hero-slider { height: 220px; }
    .hero-content { bottom: 28px; }
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: .88rem; margin-bottom: 12px; }
    .hero-btn { padding: 10px 20px; font-size: .88rem; }
}

/* ── Mobiel 480px: 2 kolommen, kleinere tekst, compacte hero ── */
@media (max-width: 480px) {
    html { font-size: 14px; }
    /* 2 kolommen voor producten & winkels */
    .cols-4, .cols-3, .cols-2 { grid-template-columns: repeat(2, 1fr); }
    .cols-home { grid-template-columns: repeat(2, 1fr); }
    .search-brand-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { gap: 10px; }

    /* Productkaarten: compact voor 2-kolomsweergave */
    .product-info { padding: 8px; gap: 4px; }
    .product-brand { font-size: .65rem; }
    .product-title { font-size: .78rem; }
    .price-current { font-size: .95rem; }
    .price-old { font-size: .72rem; }
    .btn-shop { padding: 7px 8px; font-size: .75rem; border-radius: 4px; letter-spacing: 0; }
    .discount-badge, .popular-badge { font-size: .62rem; padding: 3px 6px; top: 6px; left: 6px; }
    .product-like-row { display: none; }

    /* Detail pagina */
    .detail-title { font-size: 1.2rem; }
    .detail-price { font-size: 1.5rem; }

    /* Hero slider: laag en compact */
    .hero-slider { height: 155px; }
    .hero-content { bottom: 12px; }
    .hero-title { font-size: 1rem; margin-bottom: 5px; }
    .hero-subtitle { display: none; }
    .hero-btn { padding: 6px 12px; font-size: .75rem; }
    .hero-arrow { width: 28px; height: 28px; font-size: 1.1rem; }
    .hero-prev { left: 6px; }
    .hero-next { right: 6px; }
    .hero-dots { bottom: 6px; }

    .search-form input[type="text"] { padding: 11px 11px 11px 38px; font-size: .88rem; }
    .search-submit { padding: 11px 14px; font-size: .82rem; }

    /* Sectietitels kleiner */
    .section-title { font-size: 1.05rem; margin: 14px 0 10px; }
    .section-title-row { margin-bottom: 10px; }

    /* Artikelkaarten: 2 kolommen */
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-title { font-size: .88rem; }
    .news-excerpt { font-size: .76rem; }
    .news-card-body { padding: 10px 12px 12px; gap: 4px; }

    /* Container: minder zijdelingse padding */
    .container { padding: 0 12px; }
}

/* ── Newsletter (in footer) ─────────────────────────────────── */
.newsletter-section { margin-bottom: 0; }
.newsletter-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: #E2E8F0; }
.newsletter-sub   { font-size: .875rem; color: #718096; margin-bottom: var(--space-2); }
.newsletter-form  { display: flex; flex-direction: column; gap: var(--space-1); }
.newsletter-form input {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    font-size: .875rem;
    font-family: var(--font);
    background: rgba(255,255,255,.07);
    color: #E2E8F0;
    outline: none;
    width: 100%;
}
.newsletter-form input::placeholder { color: #4A5568; }
.newsletter-form input:focus {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.1);
}
.newsletter-form button {
    padding: 9px 20px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background var(--transition);
    text-align: center;
}
.newsletter-form button:hover { background: var(--color-primary-dk); }
.flash-inline {
    padding: 8px 14px; border-radius: 6px; margin-bottom: 10px; font-size: .875rem;
}
.flash-inline.flash-success { background: rgba(49,130,206,.2); color: #90CDF4; border: 1px solid rgba(49,130,206,.3); }

/* ── Disclaimer page ─────────────────────────────────────────── */
.disclaimer-page { max-width: 760px; padding: 40px 20px; }
.disclaimer-intro { color: #666; margin-bottom: 32px; }
.disclaimer-section-title { margin-top: 32px; font-size: 1.2rem; }
.dark-mode .disclaimer-intro { color: #94a3b8; }

/* ── Static pages (over-ons, privacy, contact, cookies) ──────── */
.static-page {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-6) 0;
}
.static-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
}
.static-page-intro {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0 0 var(--space-4);
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-2);
}
.static-page-content {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--color-text);
}
.static-page-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: var(--space-4) 0 var(--space-2);
    color: var(--color-text);
}
.static-page-content p { margin: 0 0 var(--space-2); }
.static-page-content a { color: var(--color-primary); }

/* ── Contact form ────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-5);
    align-items: start;
}
@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .875rem; font-weight: 600; color: var(--color-text); }
.form-field input,
.form-field textarea {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: var(--font);
    color: var(--color-text);
    background: #fff;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(49,130,206,.12);
}
.form-field textarea { resize: vertical; }
.required { color: #E53E3E; }
.btn-contact {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 1rem;
}
.contact-info {
    background: #F7FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: .9rem;
}
.contact-info-block svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.contact-info-block div { display: flex; flex-direction: column; gap: 2px; }
.contact-info-block strong { font-weight: 600; color: var(--color-text); }
.contact-info-block span,
.contact-info-block a { color: var(--color-muted); text-decoration: none; }
.contact-info-block a:hover { color: var(--color-primary); }
.flash-msg {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .95rem;
    border: 1px solid transparent;
}
.flash-msg.flash-success { background: #F0FFF4; color: #276749; border-color: #C6F6D5; }
.flash-msg.flash-error   { background: #FFF5F5; color: #C53030; border-color: #FED7D7; }

/* ================================================================
   Dark mode
   ================================================================ */
.dark-mode {
    background: #111827;
    color: #e5e7eb;
}
.dark-mode body { background: #111827; }

/* Header */
.dark-mode .site-header {
    background: #1f2937;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.dark-mode .header-row-1 { border-bottom-color: #374151; }
.dark-mode .header-row-2 { background: #111827; border-bottom-color: #374151; }
.dark-mode .header-quick-link { color: #d1d5db; }
.dark-mode .header-quick-link:hover { background: #374151; }
.dark-mode .site-logo { color: #f9fafb; }
.dark-mode .main-nav a { color: #d1d5db; }
.dark-mode .main-nav a:hover { color: var(--color-primary); }
.dark-mode .nav-dropdown-menu {
    background: #1f2937;
    border-color: #374151;
}
.dark-mode .nav-dropdown-menu a { color: #d1d5db; }
.dark-mode .nav-dropdown-menu a:hover { background: #374151; }
.dark-mode .header-search input {
    background: #374151;
    border-color: #4b5563;
    color: #f3f4f6;
}
.dark-mode .header-search input::placeholder { color: #9ca3af; }
.dark-mode .nav-toggle { color: #e5e7eb; }

/* Search suggest dropdown */
.dark-mode .search-suggest {
    background: #1f2937;
    border-color: #374151;
}
.dark-mode .suggest-item { color: #e5e7eb; }
.dark-mode .suggest-item:hover { background: #374151; }
.dark-mode .suggest-divider { background: #374151; color: #9ca3af; }

/* Cards / producten */
.dark-mode .product-card {
    background: #1f2937;
    border-color: #374151;
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.dark-mode .product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.5); }
.dark-mode .product-card .product-title { color: #f3f4f6; }
.dark-mode .product-card .product-price { color: var(--color-primary); }
.dark-mode .product-card .product-brand { color: #9ca3af; }
.dark-mode .product-card .product-meta  { color: #6b7280; }
.dark-mode .product-card .btn { background: var(--color-primary); color: #fff; }

/* Categorie kaartjes */
.dark-mode .category-card {
    background: #1f2937;
    border-color: #374151;
    color: #e5e7eb;
}
.dark-mode .category-card:hover { background: #374151; }

/* Merk kaartjes */
.dark-mode .brand-card {
    background: #1f2937;
    border-color: #374151;
    color: #e5e7eb;
}
.dark-mode .brand-card:hover { background: #374151; }

/* Filter sidebar */
.dark-mode .filter-sidebar {
    background: #1f2937;
    border-color: #374151;
}
.dark-mode .filter-sidebar h3 { color: #f3f4f6; }
.dark-mode .filter-sidebar label { color: #d1d5db; }
.dark-mode .filter-sidebar input[type="checkbox"] { accent-color: var(--color-primary); }
.dark-mode .filter-sidebar input[type="number"],
.dark-mode .filter-sidebar input[type="text"] {
    background: #374151;
    border-color: #4b5563;
    color: #f3f4f6;
}
.dark-mode .filter-section { border-bottom-color: #374151; }

/* Main content achtergrond */
.dark-mode .site-main { background: #111827; }
.dark-mode .section-title { color: #f3f4f6; }
.dark-mode .results-bar  { color: #9ca3af; }

/* Artikelen / nieuws */
.dark-mode .article-card {
    background: #1f2937;
    border-color: #374151;
    color: #e5e7eb;
}
.dark-mode .article-card:hover { background: #374151; }
.dark-mode .article-card h3 { color: #f3f4f6; }
.dark-mode .article-card .article-meta { color: #9ca3af; }

/* Hero slider */
.dark-mode .hero-slide { filter: brightness(.85); }

/* Footer */
.dark-mode .site-footer {
    background: #0f172a;
    color: #9ca3af;
    border-top-color: #1f2937;
}
.dark-mode .site-footer a { color: #6b7280; }
.dark-mode .site-footer a:hover { color: #d1d5db; }

/* Page loader overlay */
.dark-mode #page-loader { background: rgba(0,0,0,.6); }

/* Gebroken afbeelding placeholder */
.dark-mode img.img-broken { background: #1f2937; }

/* Paginering */
.dark-mode .pag-btn {
    background: #1f2937;
    border-color: #374151;
    color: #d1d5db;
}
.dark-mode .pag-btn:hover { background: #374151; }
.dark-mode .pag-current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Product detail */
.dark-mode .product-detail { background: #1f2937; border-color: #374151; }
.dark-mode .product-detail h1 { color: #f3f4f6; }
.dark-mode .product-detail .detail-description { color: #d1d5db; }
.flash-inline.flash-error   { background: rgba(0,0,0,.2); }

.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;}
