﻿

:root {
    --bg: #F5F2F7;
    --white: #FFFFFF;
    /* Randen (Borders) */
    --border: #DFD5E3;
    --border-light: #EBE4EE;
    /* Tekst */
    --text: #18121A;
    --text-muted: #6C6073;
    /* Jouw Hoofdkleur (Het Dieppaars) */
    --brand-primary: #3e0a4e;
    --brand-dark: #24052e;
    --brand-light: #5c0f73;
    /* Complementaire Accentkleur (Nieuw: Warm Goud/Mosterd) */
    --accent: #dfa324; /* Dé knalkleur om de aandacht te trekken */
    --accent-hover: #c28d1f; /* Iets donkerder voor het hover-effect */
    /* Primaire Knoppen (Bijv. 'Koop nu' of 'Neem contact op') */
    --btn-primary-bg: var(--accent);
    --btn-primary-text: white; /* Donkere tekst leest het prettigst op een gele/gouden knop */
    --btn-primary-hover: var(--accent-hover);
    /* Secundaire Knoppen (Bijv. 'Lees meer' of 'Annuleren') */
    --btn-secondary-bg: var(--brand-primary);
    --btn-secondary-text: var(--white);
    --btn-secondary-hover: var(--brand-light);
    /* Overige elementen */
    --badge-bg: #E1D3E6;
    --badge-text: #4d4747;
    /* Schaduwen & Radius */
    /* De schaduw is subtiel getint met jouw paarse kleur (RGB: 62, 10, 78) voor betere integratie */
    --shadow: 0 1px 4px rgba(62, 10, 78, 0.06);
    --shadow-hover: 0 4px 16px rgba(62, 10, 78, 0.12);
    --radius: 4px;
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

/* ── Header ── */
.site-header {
    background: var(--btn);
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 60px;
    gap: 2rem;
}

.site-header__logo img {
    height: 36px;
    display: block;
}

.site-header__logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: .01em;
}

    .site-header__logo-text span {
        color: var(--accent);
    }

.site-nav {
    display: flex;
    gap: 1.5rem;
}

    .site-nav a {
        color: rgba(255,255,255,.75);
        text-decoration: none;
        font-size: .85rem;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: uppercase;
        transition: color .15s;
    }

        .site-nav a:hover {
            color: #fff;
        }

/* ── Breadcrumb / page title strip ── */
.page-title-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: .75rem 2rem;
}

.page-title-bar__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: .78rem;
    color: var(--text-muted);
    display: flex;
    gap: .35rem;
    align-items: center;
    margin-bottom: .3rem;
}

    .breadcrumb a {
        color: var(--text-muted);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }

.breadcrumb__sep {
    opacity: .45;
}

.page-title-bar h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

/* ── Toolbar ── */
.toolbar {
    max-width: 1500px;
    margin: 1.25rem auto .75rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.toolbar__left {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.toolbar__count {
    font-size: .85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

    .toolbar__count strong {
        color: var(--text);
        font-weight: 700;
    }

/* Actieve filter badges */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    align-items: center;
}

    .active-filters:empty {
        display: none;
    }

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .18rem .5rem;
    border-radius: 2px;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}

    .filter-badge:hover {
        background: var(--accent-dark);
    }

.btn-clear-all {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: 'Source Sans 3', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    padding: .18rem .6rem;
    border-radius: 2px;
    cursor: pointer;
    display: none;
    transition: border-color .15s, color .15s;
}

    .btn-clear-all.visible {
        display: inline-block;
    }

    .btn-clear-all:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* Zoekbalk */
.toolbar__search {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .4rem .85rem .4rem .65rem;
    gap: .45rem;
    transition: border-color .2s;
}

    .toolbar__search:focus-within {
        border-color: var(--accent);
    }

    .toolbar__search input {
        border: none;
        outline: none;
        background: transparent;
        font-family: 'Source Sans 3', sans-serif;
        font-size: .9rem;
        color: var(--text);
        width: 210px;
    }

        .toolbar__search input::placeholder {
            color: var(--text-muted);
        }

    .toolbar__search svg {
        color: var(--text-muted);
        flex-shrink: 0;
    }

/* ── Hoofd layout ── */
.page-body {
    max-width: 1500px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* ── Sidebar ── */
.sidebar {
    position: sticky;
    top: 72px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.sidebar__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--border);
}

.facet-group {
    border-bottom: 1px solid var(--border-light);
}

    .facet-group:last-child {
        border-bottom: none;
    }

.facet-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    padding: .65rem 1rem;
}

    .facet-group__header:hover {
        background: var(--bg);
    }

.facet-group__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.facet-group__arrow {
    font-size: .6rem;
    color: var(--text-muted);
    transition: transform .18s;
}

.facet-group.collapsed .facet-group__arrow {
    transform: rotate(-90deg);
}

.facet-group.collapsed .facet-group__body {
    display: none;
}

.facet-group__body {
    padding: .25rem 1rem .75rem;
}

.facet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.facet-item label {
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    font-size: .85rem;
    color: var(--text);
    padding: .22rem 0;
    transition: color .12s;
}

    .facet-item label:hover {
        color: var(--accent);
    }

.facet-item input[type=checkbox] {
    accent-color: var(--accent);
    width: 14px;
    height: 14px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 2px;
}

.facet-count {
    margin-left: auto;
    font-size: .72rem;
    color: var(--text-muted);
    background: var(--badge-bg);
    padding: .03rem .38rem;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

.facet-show-more {
    background: none;
    border: none;
    color: var(--accent);
    font-family: 'Source Sans 3', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    padding: .35rem 0 0;
    display: none;
}

    .facet-show-more.visible {
        display: block;
    }

    .facet-show-more:hover {
        color: var(--accent-dark);
    }

/* ── Grid ── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    gap: 1rem;
}

/* ── Card ── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
    animation: fadeUp .35s ease both;
}

    .card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }

    .card.hidden {
        display: none !important;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Afbeelding */
.card__img-wrap {
    position: relative;
    background: var(--white);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

    .card__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* contain: product volledig zichtbaar, zoals op Hobbydoos */
        padding: .5rem;
        transition: transform .3s ease;
    }

.card:hover .card__img-wrap img {
    transform: scale(1.04);
}

.card__img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--badge-bg);
    font-size: 3.5rem;
}

/* Kleuren-badge rechtsboven */
.card__badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: .67rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 2px;
    letter-spacing: .03em;
}

/* Body */
.card__body {
    padding: .8rem .9rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .22rem;
}

/* Merknaam boven productnaam */
.card__merk {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Productnaam */
.card__naam {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

/* Metadata (materiaal, pendikte) */
.card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .18rem;
}

.card__meta-item {
    display: flex;
    align-items: center;
    gap: .2rem;
    font-size: .78rem;
    color: var(--text-muted);
}

.card__meta-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Prijs */
.card__price {
    margin-top: auto;
    padding-top: .65rem;
    display: flex;
    align-items: baseline;
    gap: .3rem;
}

.card__price-label {
    font-size: .75rem;
    color: var(--text-muted);
}

.card__price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

/* CTA knop */
.card__link {
    display: block;
    margin-top: .65rem;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    text-align: center;
    text-decoration: none;
    padding: .5rem .9rem;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: background .18s;
}

    .card__link:hover {
        background: var(--btn-primary-hover);
    }

.card__link--disabled {
    background: var(--badge-bg);
    color: var(--text-muted);
    pointer-events: none;
}

/* ── Fout / leeg / geen resultaten ── */
.notice {
    max-width: 520px;
    margin: 5rem auto;
    text-align: center;
    padding: 2rem;
}

.notice__icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.notice__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.notice__msg {
    color: var(--text-muted);
    font-size: .9rem;
}

.no-results-msg {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: .95rem;
    display: none;
}

    .no-results-msg.visible {
        display: block;
    }

/* ── Footer ── */
.site-footer {
    background: var(--btn);
    color: rgba(255,255,255,.5);
    text-align: center;
    font-size: .78rem;
    padding: 1.2rem 1rem;
}

    .site-footer a {
        color: rgba(255,255,255,.7);
        text-decoration: none;
    }

        .site-footer a:hover {
            color: #fff;
        }

/* ── Responsive ── */
@media (max-width: 920px) {
    .page-body {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .site-nav {
        display: none;
    }
}

@media (max-width: 560px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    }

    .page-title-bar h1 {
        font-size: 1.2rem;
    }
}

</style >
<style >
/* ═══════════════════════════════════════════════════════
   HNAV — Hobbydoos hoofdnavigatie
   Vereist: :root met --btn, --btn-hover, --accent,
            --accent-dark, --border, --border-light,
            --bg, --badge-bg, --text
   ═══════════════════════════════════════════════════════ */
/* ── Balk ── */
.hnav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(62,10,78,.07);
    position: sticky;
    top: 60px; /* aanpassen aan hoogte site-header */
    z-index: 190;
}

.hnav__wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
}

/* ── Horizontale lijst ── */
.hnav__list {
    list-style: none;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

/* ── Item ── */
.hnav__item {
    position: relative;
    display: flex;
    align-items: stretch;
}

/* ── Link / span ── */
.hnav__link {
    display: flex;
    align-items: center;
    padding: 0 .85rem;
    height: 44px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .025em;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s, background .15s;
    user-select: none;
}

/* Pijltje voor items mét dropdown */
.hnav__item--sub > .hnav__link::after,
.hnav__item--mega > .hnav__link::after {
    content: ' ▾';
    font-size: .58rem;
    opacity: .45;
    margin-left: .2rem;
}

/* Hover staat */
.hnav__link:hover,
.hnav__item--sub:hover > .hnav__link,
.hnav__item--mega:hover > .hnav__link {
    color: var(--btn);
    border-bottom-color: var(--btn);
    background: var(--badge-bg);
}

/* Uitgelicht: Nieuw */
.hnav__link--new {
    color: var(--accent);
    font-weight: 700;
}

    .hnav__link--new:hover {
        color: var(--accent-dark);
        border-bottom-color: var(--accent);
        background: transparent;
    }

/* Uitgelicht: Sale */
.hnav__link--sale {
    color: var(--accent);
    font-weight: 700;
}

    .hnav__link--sale:hover {
        color: var(--accent-dark);
        border-bottom-color: var(--accent);
        background: transparent;
    }

/* ── Normaal dropdown ── */
.hnav__drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 195px;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--btn);
    box-shadow: 0 8px 24px rgba(62,10,78,.13);
    z-index: 600;
    list-style: none;
    margin: 0;
    padding: .35rem 0;
    flex-direction: column;
}

.hnav__item--sub:hover > .hnav__drop,
.hnav__item--sub:focus-within > .hnav__drop {
    display: flex;
}

.hnav__drop li {
    margin: 0;
}

    .hnav__drop li a {
        display: block;
        padding: .42rem 1rem;
        font-family: 'Source Sans 3', sans-serif;
        font-size: .84rem;
        font-weight: 400;
        color: var(--text);
        text-decoration: none;
        transition: background .1s, color .1s;
        white-space: nowrap;
    }

        .hnav__drop li a:hover {
            background: var(--badge-bg);
            color: var(--btn);
        }

/* ── Mega dropdown (Garens) ── */
.hnav__mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--btn);
    box-shadow: 0 8px 24px rgba(62,10,78,.13);
    z-index: 600;
    flex-direction: row;
    gap: 0;
    min-width: 560px;
}

.hnav__item--mega:hover .hnav__mega,
.hnav__item--mega:focus-within .hnav__mega {
    display: flex;
}

/* Kolom */
.hnav__mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: .9rem 1.1rem 1rem;
    border-right: 1px solid var(--border-light);
    gap: 0;
}

    .hnav__mega-col:last-child {
        border-right: none;
    }

/* Kolomkop */
.hnav__mega-head {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--btn);
    margin-bottom: .3rem;
    margin-top: .6rem;
    padding-bottom: .2rem;
    border-bottom: 1px solid var(--border-light);
}

    .hnav__mega-head:first-child {
        margin-top: 0;
    }

/* Links in mega */
.hnav__mega-col a {
    display: block;
    padding: .3rem 0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: .84rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    transition: color .1s;
    white-space: nowrap;
}

    .hnav__mega-col a:hover {
        color: var(--btn);
        text-decoration: underline;
    }

/* ── Hamburger (mobiel) ── */
.hnav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .65rem .2rem;
    margin-left: auto;
}

    .hnav__burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: transform .2s, opacity .2s;
    }

    .hnav__burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hnav__burger.open span:nth-child(2) {
        opacity: 0;
    }

    .hnav__burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── Responsive ── */
@media (max-width: 920px) {
    .hnav {
        top: 60px;
    }

    .hnav__wrap {
        flex-wrap: wrap;
    }

    .hnav__burger {
        display: flex;
    }

    .hnav__list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--btn);
        padding: .5rem 0 1rem;
        border-top: 1px solid rgba(255,255,255,.1);
        max-height: 72vh;
        overflow-y: auto;
    }

        .hnav__list.open {
            display: flex;
        }

    .hnav__item {
        flex-direction: column;
        align-items: stretch;
    }

    .hnav__link {
        height: auto;
        padding: .6rem 1.25rem;
        color: rgba(255,255,255,.88);
        border-bottom: 1px solid rgba(255,255,255,.07);
        border-left: 3px solid transparent;
    }

        .hnav__link:hover,
        .hnav__item--sub:hover > .hnav__link,
        .hnav__item--mega:hover > .hnav__link {
            background: rgba(255,255,255,.08);
            color: #fff;
            border-bottom-color: rgba(255,255,255,.07);
            border-left-color: var(--accent);
        }

    .hnav__item--sub > .hnav__link::after,
    .hnav__item--mega > .hnav__link::after {
        margin-left: auto;
    }

    .hnav__link--new, .hnav__link--sale {
        color: var(--accent);
    }

    /* Dropdowns op mobiel via JS toggle */
    .hnav__drop,
    .hnav__mega {
        display: none !important;
        position: static;
        border: none;
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: none;
        background: rgba(0,0,0,.18);
        min-width: 0;
        flex-direction: column;
    }

    .hnav__item.mob-open > .hnav__drop,
    .hnav__item.mob-open > .hnav__mega {
        display: flex !important;
    }

    .hnav__drop li a,
    .hnav__mega-col a {
        color: rgba(255,255,255,.78);
        padding: .45rem 2rem;
    }

        .hnav__drop li a:hover,
        .hnav__mega-col a:hover {
            color: #fff;
            background: rgba(255,255,255,.06);
            text-decoration: none;
        }

    .hnav__mega {
        flex-direction: column;
    }

    .hnav__mega-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding: .4rem 0 .4rem;
    }

    .hnav__mega-head {
        color: rgba(255,255,255,.4);
        padding-left: 2rem;
        border-bottom-color: rgba(255,255,255,.08);
    }
}

.kop, .voet {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 0.9rem;
}

    .kop h1 {
        font-size: 1.3rem;
        font-weight: 700;
    }

.footer-seo-sectie {
    display: flex;
    gap: 25px; /* Ruimte tussen afbeelding en tekst */
    align-items: flex-start;
}

.footer-seo-img {
    flex: 0 0 250px; /* Vaste breedte voor de afbeelding, pas aan indien nodig */
}

    .footer-seo-img img {
        width: 100%;
        height: auto;
        border-radius: 4px; /* Optioneel: subtiel afgeronde hoekjes */
    }

.footer-seo-tekst {
    flex: 1; /* Neemt de rest van de ruimte in */
}

/* Mobiele weergave: zet ze onder elkaar */
@media (max-width: 768px) {
    .footer-seo-sectie {
        flex-direction: column;
    }

    .footer-seo-img {
        flex: 0 0 auto;
        max-width: 100%;
        margin-bottom: 10px;
    }
}
