/* Vlekkenwijzer - Main CSS */

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 56px;
}
.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0.5rem 0 0;
}
.site-logo:hover .logo-wordmark__v { color: #1d4ed8; }

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 9px;
    position: relative;
    flex-shrink: 0;
}
.logo-icon::after {
    content: '';
    position: absolute;
    inset: 7px;
    background: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.logo-wordmark {
    display: flex;
    align-items: baseline;
    line-height: 1;
}
.logo-wordmark__v {
    font-size: 1.1rem;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: -0.04em;
    transition: color 0.15s;
}
.logo-wordmark__w {
    font-size: 1.1rem;
    font-weight: 400;
    color: #374151;
    letter-spacing: -0.02em;
}

/* ── Nav ── */
.site-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* ── Dropdown ── */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
    font-family: inherit;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: #2563eb;
    border-bottom-color: #2563eb;
    outline: none;
}

.nav-caret {
    font-size: 0.7rem;
    transition: transform 0.2s;
    display: inline-block;
}
.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    min-width: 200px;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 1001;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.1s, color 0.1s;
}
.nav-dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #2563eb;
}

/* ── Mobile toggle ── */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
    .nav-mobile-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }
    .site-nav.is-open { display: flex; }
    .nav-link,
    .nav-dropdown-toggle {
        padding: 0.75rem 1.25rem;
        border-bottom: none;
        border-top: 1px solid #f3f4f6;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid #f3f4f6;
        border-radius: 0;
        max-height: 50vh;
        padding: 0;
    }
    .nav-dropdown-menu li a { padding-left: 2rem; }
}

/* Main */
.site-main { padding: 0 0 4rem; }

/* Footer */
/* ============================================================================
   Footer
   ============================================================================ */

.site-footer {
    background: #111827;
    color: #9ca3af;
    font-size: 0.875rem;
    padding: 3.5rem 0 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
    gap: 2.5rem 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1f2937;
}

/* Merk kolom */
.footer-logo {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.footer-logo:hover { color: #60a5fa; }

.footer-tagline {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 1rem;
    font-size: 0.875rem;
}

.footer-disclaimer {
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.6;
    margin: 0;
    padding: 0.75rem;
    background: #1f2937;
    border-radius: 6px;
    border-left: 3px solid #374151;
}

/* Overige kolommen */
.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e5e7eb;
    margin: 0 0 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

/* Bodemregel */
.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid #1f2937;
    color: #4b5563;
    font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-col--brand { grid-column: auto; }
}

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 0;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; color: #6b7280; margin-bottom: 2rem; }

/* Buttons */
.btn-primary, .btn-affiliate, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: #2563eb;
    color: #fff;
}
.btn-affiliate {
    background: #f97316;
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
    margin-left: 0.5rem;
}
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }

/* ── Page Hero ────────────────────────────────────────────── */

.page-hero {
    background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 100%);
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.page-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}

.page-hero__text .breadcrumb {
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.page-hero__text h1 {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero__intro {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.page-hero__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    height: 46px;
    padding: 0 1.5rem;
    background: #2563eb;
    color: #fff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(37,99,235,.25);
}
.btn--primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.35);
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    height: 46px;
    padding: 0 1.5rem;
    background: #fff;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, transform 0.15s;
}
.btn--outline:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
}

/* Hero afbeelding in witte cirkel */
.page-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero__img-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.page-hero__img-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .page-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
    .page-hero__intro { margin-left: auto; margin-right: auto; }
    .page-hero__cta { justify-content: center; }
    .page-hero__img-circle { width: 220px; height: 220px; }
}

/* ── Vlekken interne links ────────────────────────────────── */

.vlek-links-sectie {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 4rem 0;
}

.vlek-links-sectie__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.vlek-links-sectie__inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 0.75rem;
    line-height: 1.2;
}

.vlek-links-sectie__intro {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.vlek-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.vlek-link-pill {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 1.1rem;
    background: #f8faff;
    border: 1.5px solid #dbeafe;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1d4ed8;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.vlek-link-pill:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,.2);
}

/* ── Informatiesectie ─────────────────────────────────────── */

.info-sectie {
    background: linear-gradient(160deg, #f0fdf4 0%, #eef2ff 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 4rem 0;
}

.info-sectie__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Intro */
.info-sectie__intro { }

.info-sectie__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    margin-bottom: 0.9rem;
}

.info-sectie__intro h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.info-sectie__intro p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

/* Kaarten */
.info-sectie__kaarten {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.info-kaart {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.info-kaart:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.07);
    transform: translateY(-2px);
}

.info-kaart__icon {
    font-size: 2rem;
    margin-bottom: 0.9rem;
    line-height: 1;
}

.info-kaart h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.info-kaart p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Checklist */
.info-sectie__checklist {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 2rem 2.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.info-sectie__checklist h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.info-sectie__checklist ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-sectie__checklist li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.info-sectie__checklist li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #eff6ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-sectie__checklist strong { color: #111827; font-weight: 600; }

.info-sectie__checklist > p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-sectie__kaarten { grid-template-columns: 1fr; }
    .info-sectie__checklist { padding: 1.5rem; }
    .info-sectie__checklist ul { grid-template-columns: 1fr; }
}

/* Top-10 intro blok */
.top10-intro {
    padding: 2.5rem 0 1.75rem;
}
.top10-intro h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}
.top10-intro p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Cards */
.vlek-card, .materiaal-card {
    display: block;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    text-align: center;
    transition: border-color 0.15s;
}
.vlek-card:hover, .materiaal-card:hover { border-color: #2563eb; }
.vlek-naam { display: block; font-weight: 600; }
.vlek-categorie { display: block; font-size: 0.8rem; color: #9ca3af; margin-top: 0.25rem; }

/* Producten grid */
.producten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
}
.product-card--top { border-color: #2563eb; }
.badge-top {
    position: absolute;
    top: -12px;
    left: 1rem;
    background: #2563eb;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
}
.product-prijs { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 0.5rem 0; }
.product-reasoning { font-size: 0.875rem; color: #6b7280; margin-bottom: 1rem; }
.voorbereiding { font-size: 0.875rem; background: #fef9c3; padding: 0.5rem; border-radius: 4px; }

/* Methode */
.methode-sectie, .methode-kort {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.methode-intro { color: #374151; font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid #e5e7eb; }
.methode-meta { color: #6b7280; margin-bottom: 1rem; }
.stappen { padding-left: 1.5rem; }
.stappen li { margin-bottom: 0.5rem; }
.warning { color: #b45309; background: #fffbeb; padding: 0.5rem; border-radius: 4px; }
.tip { color: #065f46; background: #ecfdf5; padding: 0.5rem; border-radius: 4px; }

/* Tool form */
.tool-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem 0;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.form-group select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-weight: 400; }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: #e5e7eb;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}
.badge-urgent { background: #fee2e2; color: #b91c1c; }
.alert-urgent {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb { font-size: 0.875rem; color: #9ca3af; margin-bottom: 1rem; }
.breadcrumb a { color: #6b7280; text-decoration: none; }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 0.6rem 1rem; border-bottom: 1px solid #e5e7eb; text-align: left; }
.specs-table th { color: #6b7280; font-weight: 500; width: 40%; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.tag {
    padding: 0.25rem 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
}

/* Results */
.results { margin-top: 2rem; }
.loading, .error { padding: 1rem; }
.error { color: #b91c1c; }

/* Waarom lastig */
.waarom-lastig-sectie {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.waarom-lastig-sectie h2 { font-size: 1rem; margin: 0 0 0.5rem; color: #0369a1; }
.waarom-lastig-sectie p { margin: 0; color: #374151; }

/* Fouten sectie */
.fouten-sectie {
    background: #fff;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.fouten-sectie h2 { font-size: 1.1rem; margin: 0 0 0.75rem; color: #991b1b; }
.fouten-list { margin: 0; padding-left: 1.5rem; }
.fouten-list li { margin-bottom: 0.5rem; color: #374151; }

/* Zonder machine */
.zonder-machine-sectie {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.zonder-machine-sectie h2 { font-size: 1rem; margin: 0 0 0.5rem; color: #15803d; }
.zonder-machine-sectie p { margin: 0; color: #374151; }

/* FAQ */
.faq-sectie { margin-top: 3rem; }
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid #e5e7eb; padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1rem; margin: 0 0 0.5rem; color: #1a1a1a; }
.faq-item p { margin: 0; color: #4b5563; }

/* Vlek/Materiaal uitleg blok */
.vlek-uitleg, .materiaal-uitleg {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
    margin: 1.5rem 0;
}
.vlek-uitleg h2, .materiaal-uitleg h2 { font-size: 1rem; margin: 0 0 0.4rem; }
.vlek-uitleg p, .materiaal-uitleg p { margin: 0; }

/* Materiaal waarschuwingen */
.materiaal-waarschuwingen {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}
.materiaal-waarschuwingen h2 { font-size: 1rem; margin: 0 0 0.5rem; }
.materiaal-waarschuwingen ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.materiaal-waarschuwingen li { margin-bottom: 0.25rem; font-size: 0.9rem; }

/* Product highlights */
.product-highlights { list-style: none; padding: 0; margin: 0.75rem 0 1rem; }
.product-highlights li { color: #065f46; font-size: 0.9rem; margin-bottom: 0.2rem; }

/* Product specs mini (overzicht) */
.product-specs-mini { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }
.product-specs-mini li { font-size: 0.85rem; color: #6b7280; }

/* Product card actions */
.product-card-actions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }

/* Tag materiaal kleur */
.tag-materiaal { background: #f0fdf4; color: #15803d; }

/* -------------------------------------------------------------------------
   Product Gallery
   ------------------------------------------------------------------------- */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: flex-start;
}

.gallery-main {
    border-radius: 10px;
    overflow: hidden;
    background: #f9fafb;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.18s ease;
}

.gallery-main img.switching {
    opacity: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    background: #f9fafb;
    overflow: hidden;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #2563eb;
}

@media (max-width: 640px) {
    .gallery-thumb {
        width: 56px;
        height: 56px;
    }
}

/* -------------------------------------------------------------------------
   Product Single – Layout
   ------------------------------------------------------------------------- */

.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 1.5rem 0 1.25rem;
    line-height: 1.3;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Col: gallery */
.product-col-gallery {
    position: sticky;
    top: 1.5rem;
}

.product-img-single {
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
    background: #f9fafb;
}

/* Col: info */
.product-col-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-col-info .product-merk {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-col-info .product-prijs {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1;
}

.product-col-info .product-highlights {
    margin: 0.25rem 0 0.5rem;
}

.product-col-info .btn-affiliate {
    align-self: flex-start;
}

/* Geschikt mini (in rechter kolom) */
.product-geschikt-mini {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.geschikt-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tag-sm {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
}

/* Specs sectie */
.specs-sectie {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 10px;
}

.specs-sectie h2 {
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

/* Gerelateerde producten */
.gerelateerde-producten {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.gerelateerde-producten h2 {
    margin-bottom: 1.5rem;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    background: #f9fafb;
    display: block;
    margin-bottom: 0.75rem;
}

/* Compacte knoppen in product cards */
.product-card-actions .btn-affiliate,
.product-card-actions .btn-secondary {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    text-align: center;
    margin-left: 0;
}
.product-card-actions .btn-affiliate { flex: 3; }
.product-card-actions .btn-secondary { flex: 1; }

/* =========================================================
   Top-10 pagina
   ========================================================= */

.top10-lijst {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.top10-item {
    display: grid;
    grid-template-columns: 56px 180px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.15s ease;
}

.top10-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.top10-item--featured {
    border-color: #2563eb;
    border-width: 2px;
}

/* Rank kolom */
.top10-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding-top: 0.25rem;
}

.rank-nummer {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.top10-item--featured .rank-nummer {
    font-size: 2.25rem;
}

.rank-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    background: #2563eb;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    text-align: center;
    line-height: 1.3;
}

/* Afbeelding kolom */
.top10-img {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.top10-img a { display: block; }

.top10-img img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    background: #f9fafb;
}

.top10-img-placeholder {
    width: 180px;
    height: 180px;
    background: #f3f4f6;
    border-radius: 8px;
}

/* Content kolom */
.top10-content { min-width: 0; }

.top10-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.top10-header h2 {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.3;
}

.top10-header h2 a {
    color: #1a1a1a;
    text-decoration: none;
}

.top10-header h2 a:hover { color: #2563eb; }

.top10-prijs {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.top10-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.6rem 0;
}

.spec-tag {
    font-size: 0.75rem;
    background: #f3f4f6;
    color: #374151;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    font-weight: 500;
}

.spec-tag--feature {
    background: #eff6ff;
    color: #1d4ed8;
}

.top10-tekst {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0.5rem 0 1rem;
}

.top10-acties {
    display: flex;
    gap: 0.5rem;
}

.top10-acties .btn-affiliate { flex: 3; }
.top10-acties .btn-secondary { flex: 1; }

/* Responsive */
@media (max-width: 700px) {
    .top10-item {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
    }
    .top10-img {
        grid-column: 2;
        grid-row: 1;
    }
    .top10-content {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

/* ============================================================================
   UGC — User Generated Content
   Upload form + approved grid op combinatiepagina's
   ============================================================================ */

/* ── Upload sectie ── */
.ugc-upload-sectie {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.ugc-upload-sectie h2 {
    margin-top: 0;
    font-size: 1.25rem;
}

.ugc-intro {
    color: #6b7280;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.ugc-upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ugc-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ugc-field label,
.ugc-field legend {
    font-weight: 600;
    font-size: 0.9rem;
}

.ugc-field .required { color: #dc2626; }
.ugc-field .optional { font-weight: 400; color: #9ca3af; font-size: 0.8rem; }

.ugc-field input[type="file"],
.ugc-field input[type="text"],
.ugc-field textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
}

.ugc-field small {
    font-size: 0.8rem;
    color: #9ca3af;
}

.ugc-field fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.ugc-radio {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.ugc-form-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ugc-upload {
    padding: 0.6rem 1.25rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-ugc-upload:hover  { background: #1d4ed8; }
.btn-ugc-upload:disabled { background: #9ca3af; cursor: not-allowed; }

.ugc-status {
    font-size: 0.9rem;
    min-height: 1.25rem;
}

.ugc-status--success { color: #15803d; }
.ugc-status--error   { color: #dc2626; }

/* ── Display sectie ── */
.ugc-display-sectie {
    margin-top: 2.5rem;
}

.ugc-display-sectie h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.ugc-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.ugc-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f4f6;
}

.ugc-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ugc-label {
    position: absolute;
    bottom: 0.4rem;
    left: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.label-ja    { background: #dcfce7; color: #15803d; }
.label-deels { background: #fef9c3; color: #854d0e; }
.label-nee   { background: #fee2e2; color: #991b1b; }

.ugc-card-body {
    padding: 0.6rem 0.75rem;
}

.ugc-naam {
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0 0 0.25rem;
    color: #374151;
}

.ugc-toelichting {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
    .ugc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── UGC Lightbox ── */
#ugc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
}

#ugc-lightbox.ugc-lb-open {
    display: flex;
}

.ugc-lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.ugc-lb-caption {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    text-align: center;
    max-width: 60ch;
}

.ugc-lb-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}
.ugc-lb-close:hover { opacity: 1; }

.ugc-card-img-wrap a { display: block; cursor: zoom-in; }

/* ============================================================================
   Uitgelicht product blok
   ============================================================================ */

.uitgelicht-blok {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #fffbeb;
    border: 1.5px solid #fbbf24;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin: 1.25rem 0 1.75rem;
}

.uitgelicht-img-link { flex-shrink: 0; }

.uitgelicht-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    display: block;
}

.uitgelicht-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.uitgelicht-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #92400e;
    margin: 0;
}

.uitgelicht-naam {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.uitgelicht-naam a {
    color: #1d2327;
    text-decoration: none;
}
.uitgelicht-naam a:hover { text-decoration: underline; }

.uitgelicht-tekst {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0.1rem 0 0.4rem;
    line-height: 1.55;
}

.uitgelicht-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.uitgelicht-prijs-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.uitgelicht-prijs {
    font-size: 1.25rem;
    font-weight: 800;
    color: #15803d;
}

.uitgelicht-streepprijs {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.uitgelicht-korting {
    font-size: 0.75rem;
    font-weight: 700;
    background: #dcfce7;
    color: #15803d;
    padding: 0.15rem 0.45rem;
    border-radius: 99px;
}

.btn-uitgelicht {
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s;
}
.btn-uitgelicht:hover { background: #1d4ed8; }

@media (max-width: 540px) {
    .uitgelicht-blok { flex-direction: column; }
    .uitgelicht-img  { width: 80px; height: 80px; }
}

/* ============================================================================
   Contact Form 7
   ============================================================================ */

.wpcf7-form .cf7-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.wpcf7-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
}

.wpcf7-form abbr {
    text-decoration: none;
    color: #dc2626;
    margin-left: 2px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 130px;
}

.wpcf7-form input[type="submit"],
.wpcf7-form [type="submit"] {
    padding: 0.65rem 1.5rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.wpcf7-form input[type="submit"]:hover { background: #1d4ed8; }

.wpcf7-response-output {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    border: none !important;
}
.wpcf7-mail-sent-ok {
    background: #dcfce7;
    color: #15803d;
}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #fee2e2;
    color: #991b1b;
}

.wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border-color: #dc2626;
}

/* Contact pagina wrapper */
.contact-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.contact-wrap h1 { margin-bottom: 0.5rem; }
.contact-intro { color: #6b7280; margin-bottom: 2rem; }

/* ============================================================================
   Contact pagina
   ============================================================================ */

.contact-page {
    padding: 3rem 0 5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

/* Info kolom */
.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.6rem;
    line-height: 1.2;
}

.contact-lead {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.contact-reasons {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-reasons li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: #f0f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-reasons li div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-reasons li strong {
    font-size: 0.9rem;
    color: #1f2937;
    font-weight: 600;
}

.contact-reasons li span {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

.contact-response-time {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

/* Formulier kaart */
.contact-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.contact-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

/* Responsive */
@media (max-width: 780px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-title { font-size: 1.6rem; }
}

/* ============================================================
   Catalogus Grid (beste-tapijtreiniger.php)
   ============================================================ */

/* ============================================================
   Catalogus sectie — modern 2025
   ============================================================ */

.catalogus-sectie {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2.5rem 1.5rem 0;
    border-top: 1px solid #f3f4f6;
}

.catalogus-sectie h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.4rem;
}

.catalogus-intro {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

/* ── Filter panel ─────────────────────────────────────────── */

.catalogus-filters {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    overflow: hidden;
}

.cat-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
}

.cat-spec-filters {
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    align-items: flex-end;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

/* Inputs & selects */
.catalogus-filters select,
.catalogus-filters input[type="number"] {
    height: 36px;
    padding: 0 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    background: #fff;
    color: #111827;
    transition: border-color 0.15s, box-shadow 0.15s;
    -moz-appearance: textfield;
}
.catalogus-filters input[type="number"]::-webkit-inner-spin-button,
.catalogus-filters input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.catalogus-filters select:focus,
.catalogus-filters input[type="number"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.catalogus-filters select {
    min-width: 150px;
    padding-right: 2rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
}

/* Range-invoer met label + eenheid */
.cat-prijs-range,
.cat-spec-range {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}
.cat-range-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
}
.cat-range-unit {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563eb;
}
.cat-range-sep {
    color: #9ca3af;
    font-size: 0.8rem;
}
.cat-prijs-range input[type="number"],
.cat-spec-range input[type="number"] {
    width: 68px;
    height: 34px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    border-radius: 7px;
    box-shadow: none;
    padding: 0 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    transition: border-color 0.15s;
}
.cat-prijs-range input[type="number"]:focus,
.cat-spec-range input[type="number"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

/* Slider spec filters */
.cat-spec-range--slider {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    flex: 1;
    min-width: 130px;
    max-width: 220px;
}
.cat-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}
.cat-slider-output {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563eb;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
input[type="range"].cat-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 99px;
    background: #e0e7ff;
    outline: none;
    cursor: pointer;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 4px 0 0;
    display: block;
}
input[type="range"].cat-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(37,99,235,0.4);
    border: 2px solid #fff;
    transition: box-shadow 0.15s, transform 0.1s;
}
input[type="range"].cat-slider:active::-webkit-slider-thumb {
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(37,99,235,0.15);
}
input[type="range"].cat-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(37,99,235,0.4);
    border: 2px solid #fff;
}

/* Toggle pills voor stoom/zuig */
.cat-check-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.cat-checkbox {
    position: relative;
    cursor: pointer;
    user-select: none;
}
.cat-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.cat-checkbox span {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.15s;
    white-space: nowrap;
}
.cat-checkbox span::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1.5px solid #d1d5db;
    margin-right: 0.5rem;
    transition: all 0.15s;
    flex-shrink: 0;
}
.cat-checkbox input:checked + span {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1d4ed8;
}
.cat-checkbox input:checked + span::before {
    background: #2563eb;
    border-color: #2563eb;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.cat-checkbox:hover span { border-color: #93c5fd; }

/* Reset knop */
.btn-reset {
    height: 36px;
    padding: 0 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #6b7280;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s;
    margin-left: auto;
    white-space: nowrap;
}
.btn-reset:hover { background: #fef2f2; border-color: #fca5a5; color: #ef4444; }

/* ── Product grid ─────────────────────────────────────────── */

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

.cat-product-card {
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.cat-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
    border-color: #e0e7ff;
}

.cat-product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f9fafb;
    padding: 1rem;
}
.cat-product-no-img {
    width: 100%;
    aspect-ratio: 1;
    background: #f3f4f6;
}

.cat-product-info {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.cat-product-merk {
    font-size: 0.7rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cat-product-titel {
    font-size: 0.825rem;
    color: #111827;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-product-prijs {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0.3rem 0 0;
}

.cat-btn {
    margin-top: auto;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
    border-radius: 8px;
}

/* Spec tags op kaart */
.cat-spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: 0.15rem 0;
}
.cat-spec-tag {
    font-size: 0.68rem;
    font-weight: 500;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 5px;
    padding: 0.1rem 0.4rem;
    white-space: nowrap;
}

/* ── Paginering ───────────────────────────────────────────── */

.catalogus-loading,
.catalogus-leeg { color: #9ca3af; padding: 3rem 0; text-align: center; font-size: 0.95rem; }

.catalogus-paginering {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.cat-pag-btn {
    height: 38px;
    padding: 0 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}
.cat-pag-btn:hover { background: #eff6ff; border-color: #2563eb; color: #2563eb; }
.cat-pag-info { color: #9ca3af; font-size: 0.875rem; }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
    .catalogus-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .catalogus-sectie { padding-left: 1rem; padding-right: 1rem; }
    .catalogus-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
    .cat-filter-row { gap: 0.4rem; }
    .catalogus-filters select { min-width: 0; width: 100%; }
    .btn-reset { margin-left: 0; }
}

/* ============================================================
   Vlek & Combinatie pagina stijlen
   ============================================================ */

/* Hero urgentie badge */
.hero-urgentie {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c2410c;
    margin-bottom: 1rem;
}
.hero-urgentie__icon { font-size: 1.1rem; }

/* Vlek hero card (rechts in de hero van vlek-single) */
.vlek-hero-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
    padding: 2rem 1.75rem;
    text-align: center;
    width: 100%;
    max-width: 340px;
}
.vlek-hero-card__icon { font-size: 3rem; margin-bottom: 0.75rem; line-height: 1; }
.vlek-hero-card__naam { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.vlek-hero-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.vlek-hero-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    background: #f3f4f6;
    color: #374151;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
}
.vlek-hero-badge--urgent { background: #fff7ed; color: #c2410c; }
.vlek-hero-badge--koud   { background: #eff6ff; color: #1d4ed8; }
.vlek-hero-badge--warm   { background: #fef3c7; color: #92400e; }
.vlek-hero-card__tip { font-size: 0.85rem; color: #6b7280; margin: 0; }

/* Held product kaart (rechts in de hero van combinatie) */
.held-product-kaart {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    position: relative;
}
.held-product-kaart__korting {
    position: absolute;
    top: 1rem; right: 1rem;
    background: #ef4444;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}
.held-product-kaart__img-wrap {
    display: block;
    background: #f9fafb;
    padding: 1.5rem;
    text-align: center;
}
.held-product-kaart__img-wrap img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}
.held-product-kaart__body { padding: 1.25rem 1.5rem 1.5rem; }
.held-product-kaart__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563eb;
    margin-bottom: 0.4rem;
}
.held-product-kaart__naam {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.held-product-kaart__naam a { color: inherit; text-decoration: none; }
.held-product-kaart__naam a:hover { color: #2563eb; }
.held-product-kaart__tekst { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 1rem; }
.held-product-kaart__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.held-product-kaart__prijs-wrap { display: flex; align-items: baseline; gap: 0.4rem; }
.held-product-kaart__prijs { font-size: 1.25rem; font-weight: 800; color: #111827; }
.held-product-kaart__streep { font-size: 0.9rem; color: #9ca3af; text-decoration: line-through; }

/* Knop varianten */
.btn--small {
    height: 38px;
    padding: 0 1rem;
    font-size: 0.85rem;
}

/* Materialen sectie */
.vlek-materialen-sectie {
    background: linear-gradient(160deg, #f0fdf4 0%, #eef2ff 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 4rem 0;
}
.vlek-materialen-sectie__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.vlek-materialen-sectie__inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 0.75rem;
}
.vlek-materialen-sectie__intro {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.materialen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
}
.materiaal-kaart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.materiaal-kaart:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(37,99,235,.12);
    transform: translateY(-1px);
    color: #2563eb;
}
.materiaal-kaart__pijl { color: #9ca3af; font-size: 1.1rem; transition: color 0.15s, transform 0.15s; }
.materiaal-kaart:hover .materiaal-kaart__pijl { color: #2563eb; transform: translateX(3px); }

/* Stappenplan sectie */
.stappenplan-sectie {
    padding: 4rem 0;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}
.stappenplan-sectie__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.stappenplan-sectie__inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 0.5rem;
}
.stappenplan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.stappenplan-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}
.stappenplan-meta__icon { font-size: 1rem; }

/* Warnings */
.warnings-modern { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.warning-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 500;
}
.warning-modern__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Stappen */
.stappen-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    counter-reset: none;
}
.stap-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}
.stap-modern__nummer {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stap-modern__tekst {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.65;
    padding-top: 0.3rem;
}

/* Tip */
.tip-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.875rem 1.1rem;
    font-size: 0.9rem;
    color: #14532d;
    font-weight: 500;
}
.tip-modern__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Producten sectie modern */
.producten-sectie-modern {
    background: linear-gradient(160deg, #eef2ff 0%, #f0fdf4 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 4rem 0;
}
.producten-sectie-modern__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.producten-sectie-modern__inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 1.75rem;
}
.producten-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.product-kaart-modern {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.product-kaart-modern:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.product-kaart-modern--top { border-color: #2563eb; border-width: 2px; }
.product-kaart-modern__badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: #2563eb;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-kaart-modern__img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    padding: 1.5rem;
    aspect-ratio: 1;
}
.product-kaart-modern__img-link img { width: 100%; max-width: 180px; height: auto; object-fit: contain; }
.product-kaart-modern__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-kaart-modern__body h3 { font-size: 0.95rem; font-weight: 700; color: #111827; margin: 0; line-height: 1.4; }
.product-kaart-modern__body h3 a { color: inherit; text-decoration: none; }
.product-kaart-modern__body h3 a:hover { color: #2563eb; }
.product-kaart-modern__prijs { font-size: 1.1rem; font-weight: 800; color: #111827; margin: 0; }
.product-kaart-modern__reasoning { font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin: 0; }
.product-kaart-modern__voorbereiding { font-size: 0.82rem; color: #374151; background: #fffbeb; border-radius: 6px; padding: 0.4rem 0.6rem; margin: 0; }
.product-kaart-modern__acties { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.5rem; flex-wrap: wrap; }

/* Fouten sectie */
.fouten-sectie-modern {
    padding: 4rem 0;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}
.fouten-sectie-modern__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.fouten-sectie-modern__inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 1.5rem;
}
.fouten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}
.fout-kaart {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}
.fout-kaart__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.fout-kaart p { font-size: 0.9rem; color: #374151; line-height: 1.6; margin: 0; }

/* Zonder machine */
.zonder-machine-modern {
    background: linear-gradient(160deg, #f0fdf4 0%, #eef2ff 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 4rem 0;
}
.zonder-machine-modern__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.zonder-machine-modern__inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 1rem;
}
.zonder-machine-modern__inner p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 760px;
}

/* FAQ modern */
.faq-sectie-modern {
    padding: 3rem 0 2rem;
}
.faq-sectie-modern h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    margin: 0.9rem 0 1.5rem;
}
.faq-modern-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-modern-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.faq-modern-vraag {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
}
.faq-modern-antwoord {
    font-size: 0.925rem;
    color: #4b5563;
    line-height: 1.75;
    padding: 1rem 1.25rem;
}
.faq-modern-antwoord strong { color: #111827; font-weight: 600; }

/* Breadcrumb light variant (in hero) */
.breadcrumb--light a { color: rgba(255,255,255,0.8); }
.breadcrumb--light { color: rgba(37,99,235,0.6); }
.page-hero .breadcrumb--light a { color: #2563eb; opacity: 0.75; }
.page-hero .breadcrumb--light { color: #6b7280; }

/* Responsive */
@media (max-width: 768px) {
    .materialen-grid { grid-template-columns: 1fr; }
    .producten-grid-modern { grid-template-columns: 1fr; }
    .fouten-grid { grid-template-columns: 1fr; }
    .stappenplan-sectie,
    .fouten-sectie-modern,
    .producten-sectie-modern,
    .vlek-materialen-sectie,
    .zonder-machine-modern { padding: 2.5rem 0; }
    .stappenplan-sectie__inner,
    .fouten-sectie-modern__inner,
    .producten-sectie-modern__inner,
    .vlek-materialen-sectie__inner,
    .zonder-machine-modern__inner { padding: 0 1rem; }
}
