:root {
    /* Basiskleuren */
    --color-primary: #ff9b14;
    --color-dark-grey: #202020;
    --color-medium-grey: #333;
    --color-light-grey: #444;
    --bg-dark: #1c1c1c;
    --bg-item: #3a3a3a;
    --text-light: #e8e8e8;
    --text-active: #1c1c1c;
    --muted: #b7b3ac;
}

/* Algemeen */
* {
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

main {
    flex: 1;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--color-medium-grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.bg-white {
    background-color: white;
}

/* Typography */
h1,
h2,
h3 {
    font-family: "Cookie", cursive;
    font-weight: 400;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-dark-grey);
    color: white;
    padding: 1rem 1rem 0 1rem;
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.55);
    margin-bottom: 10px;
}

header .container {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.name {
    display: flex;
    flex-direction: column;
}

.logo {
    color: white;
    text-decoration: none;
    font-family: "Cookie", cursive;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.subtitle {
    margin: 0.2rem 0;
    color: white;
    font-family: "Cookie", cursive;
    font-size: 1.2rem;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hamburger knop */
.menu-toggle {
    display: none;
    background: var(--bg-item);
    border: none;
    color: var(--text-light);
    font-size: 1.4rem;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-list li {
    flex: 0 1 auto;
}

.nav-list a {
    display: block;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    color: var(--text-light);
    background: var(--bg-item);
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 6px 6px 0 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-list a:hover {
    background: var(--color-light-grey);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.nav-list a.active {
    background: var(--color-primary);
    color: var(--text-active);
}

/* Deze twee elementen bestaan alleen t.b.v. het mobiele drawer-menu,
   op desktop/tablet blijven ze onzichtbaar */
.nav-list-header {
    display: none;
}

.nav-backdrop {
    display: none;
}

/* Tablet */
@media (max-width: 900px) {
    .container {
        margin: 0 10px;
    }

    .nav-list a {
        font-size: 0.78rem;
        padding: 12px 10px;
    }
}

/* ============================================================
   Mobiel — slide-in drawer i.p.v. blokkerige uitklap-lijst
   ============================================================ */
@media (max-width: 700px) {
    header {
        padding: 0.8rem 1rem 0 1rem;
    }

    header .container {
        gap: 0.5rem;
    }

    .name {
        padding-bottom: 0.3rem;
    }

    .logo {
        font-size: 1.9rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .navbar {
        width: 100%;
    }

    .nav-inner {
        display: block;
        width: 100%;
    }

    /* ------------------------- Menu knop ------------------------- */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: var(--bg-item);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        color: var(--text-light);
        cursor: pointer;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
        transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    }

    .menu-toggle:hover {
        background: var(--color-light-grey);
        transform: translateY(-1px);
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.4);
    }

    .menu-toggle:active {
        transform: scale(0.94);
    }

    .menu-toggle.open {
        background: var(--color-primary);
        color: var(--text-active);
        box-shadow: 0 0 0 5px rgba(255, 155, 20, 0.18), 0 4px 14px rgba(0, 0, 0, 0.35);
    }

    /* Tekstlabel blijft voor screenreaders bestaan, maar is visueel verborgen
       nu de knop een rond icoon-knopje is */
    .menu-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* ------------------------- Hamburger icoon ------------------------- */
    .menu-icon {
        width: 20px;
        height: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-shrink: 0;
    }

    .menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: currentColor;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .menu-toggle.open .menu-icon span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-toggle.open .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .menu-icon span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    /* ------------------------- Backdrop ------------------------- */
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(1px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 1000;
    }

    .nav-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    /* ------------------------- Drawer-paneel ------------------------- */
    .nav-list {
        list-style: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(80vw, 300px);
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        background: var(--color-dark-grey);
        border-left: 3px solid var(--color-primary);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-list.open {
        transform: translateX(0);
    }

    .nav-list-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px 14px;
        color: var(--text-light);
        font-family: "Cookie", cursive;
        font-size: 1.6rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-close {
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.8rem;
        line-height: 1;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-close:hover {
        background: var(--bg-item);
        color: var(--color-primary);
    }

    .nav-list li {
        width: 100%;
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateX(12px);
    }

    /* Gestaffelde fade/slide-in van de links zodra de drawer opent */
    .nav-list.open li {
        animation: nav-item-in 0.32s ease forwards;
    }

    .nav-list.open li:nth-child(1) {
        animation-delay: 0s;
    }

    .nav-list.open li:nth-child(2) {
        animation-delay: .03s;
    }

    .nav-list.open li:nth-child(3) {
        animation-delay: .06s;
    }

    .nav-list.open li:nth-child(4) {
        animation-delay: .09s;
    }

    .nav-list.open li:nth-child(5) {
        animation-delay: .12s;
    }

    .nav-list.open li:nth-child(6) {
        animation-delay: .15s;
    }

    .nav-list.open li:nth-child(7) {
        animation-delay: .18s;
    }

    .nav-list.open li:nth-child(8) {
        animation-delay: .21s;
    }

    .nav-list.open li:nth-child(9) {
        animation-delay: .24s;
    }

    .nav-list.open li:nth-child(10) {
        animation-delay: .27s;
    }

    .nav-list.open li:nth-child(11) {
        animation-delay: .30s;
    }

    @keyframes nav-item-in {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-list a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        text-align: left;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 0;
        background: transparent;
        color: var(--text-light);
        border-left: 3px solid transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: background 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
    }

    .nav-list a:hover {
        background: var(--bg-item);
        box-shadow: none;
        border-left-color: var(--color-primary);
        padding-left: 26px;
    }

    .nav-list a.active {
        background: var(--bg-item);
        color: var(--color-primary);
        border-left-color: var(--color-primary);
    }
}

/* Voorkomt dat de pagina achter de open drawer nog kan scrollen */
body.nav-open-lock {
    overflow: hidden;
}


/* Footer */
footer {
    background: #222;
    text-align: center;
    padding: 1rem;
    color: #ccc;
    margin-top: 25px;
    font-size: 10px;
}

/* Home */
.content-block,
.intro-block {
    background: #fff;
    border-radius: 8px;
    margin: 20px 0;
}

/* --- Eyebrow --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--color-primary);
}

/* --- Intro --- */
.intro-block {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 36px 42px;
    margin: 20px 0;
}

.intro-image {
    flex: 0 0 340px;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text h1 {
    font-size: 2.6rem;
    margin: 0 0 8px;
    color: var(--color-dark-grey);
}

.intro-text p {
    margin: 0 0 10px;
    color: #333;
    max-width: 58ch;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .intro-image {
        flex: 0 0 auto;
        width: 100%;
        max-height: none;
    }

    .intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* --- Productblokken --- */
.product-section {
    margin: 20px 0;
}

.product-block {
    padding: 36px 42px;
    display: flex;
    gap: 40px;
    align-items: center;
    border-top: 1px solid #eee;
}

.product-block.reverse {
    flex-direction: row-reverse;
}

.framed-image {
    flex: 0 0 340px;
    position: relative;
    padding: 10px;
}

.framed-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border-top: 3px solid var(--color-primary);
    border-left: 3px solid var(--color-primary);
}

.framed-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-bottom: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
}

.framed-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-text {
    flex: 1;
    min-width: 0;
}

.product-text h2 {
    font-size: 2rem;
    margin: 0 0 4px;
    color: var(--color-dark-grey);
}

.product-text p {
    margin: 0 0 14px;
    color: #333;
}

.badge-nieuw {
    display: inline-block;
    background: var(--color-primary);
    color: var(--text-active);
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.isbn {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.isbn strong {
    color: #333;
}

.price-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: #f4f4f4;
    border-left: 3px solid var(--color-primary);
    border-radius: 3px;
    padding: 8px 16px;
    margin-bottom: 18px;
}

.price-pill .amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-grey);
}

.price-pill .note {
    font-size: 12.5px;
    color: #777;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--text-active);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.button:hover {
    background: #e88b06;
}

.button::after {
    content: "→";
}

.contact-line {
    font-size: 15.5px;
}

.contact-line a {
    color: var(--color-dark-grey);
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
    text-decoration: none;
}

/* --- Glas-in-lood--- */
.glass-block {
    background: var(--color-dark-grey);
    color: var(--text-light);
    padding: 44px 42px;
    border-radius: 8px;
    border-top: 3px solid var(--color-primary);
    margin: 20px 0;
}

.glass-block .eyebrow {
    color: var(--color-primary);
}

.glass-block h2 {
    color: #fff;
    font-size: 2.2rem;
    margin: 0 0 6px;
}

.glass-block p.lead {
    color: var(--muted);
    max-width: 60ch;
    margin: 0 0 28px;
}

.glass-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.glass-item {
    background: var(--bg-item);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.glass-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.glass-block .button {
    margin-top: 28px;
}

/* --- Mobiel --- */
@media (max-width: 750px) {
    .intro-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .intro-image {
        align-self: center;
    }

    .product-block,
    .product-block.reverse {
        flex-direction: column;
        padding: 24px;
    }

    .framed-image {
        flex: auto;
        width: 100%;
    }

    .glass-block {
        padding: 28px;
    }

    .glass-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

/* Categories */
.categories-section {
    padding: 20px 0;
}

.categories-heading {
    text-align: center;
    margin-bottom: 28px;
}

.categories-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.categories-heading .eyebrow::before,
.categories-heading .eyebrow::after {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--color-primary);
}

.categories-heading h2 {
    color: #fff;
    font-size: 2.4rem;
    margin: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-item);
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
    border-color: var(--color-primary);
}

.category-image-wrap {
    aspect-ratio: 3 / 4;
    /* background: var(--color-primary); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.category-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.category-label {
    margin: 14px;
    margin-top: 4px;
    background: var(--color-primary);
    color: var(--text-active);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 10px;
    border-radius: 8px;
    transition: background .15s ease;
}

.category-card:hover .category-label {
    background: #e88b06;
}

/* --- Mobiel --- */
@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .category-grid {
        gap: 14px;
    }
    .category-label {
        font-size: 13px;
        padding: 10px 6px;
        margin: 10px;
        margin-top: 4px;
    }
}

/* page intro */
.page-intro-block {
    text-align: center;
    padding: 10px 15px 0;
}

.page-intro-block h1,
.page-intro-block h2 {
    color: #fff;
    font-size: 2.4rem;
    margin: 0 0 6px;
}

.page-intro-block p {
    color: var(--text-light);
    opacity: .8;
    margin: 0 0 24px;
}

.page-intro-block a {
    color: var(--color-primary);
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 15px 34px;
}

.tabs a {
    text-decoration: none;
    color: var(--text-light);
    background: var(--bg-item);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    padding: 9px 18px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: border-color .15s ease, color .15s ease;
}

.tabs a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* article blocks */
.article-block {
    margin-bottom: 40px;
    scroll-margin-top: 20px;
}

.article-card {
    padding: 0;
    overflow: hidden;
}

.article-hero {
    position: relative;
}

.article-hero img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.article-hero-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
    color: #fff;
    width: 100%;
    padding: 40px 40px 18px;
}

.article-hero-caption .eyebrow {
    color: var(--color-primary);
}

.article-hero-caption h2 {
    font-size: 2.4rem;
    margin: 0;
    color: #fff;
}

.article-body {
    padding: 34px 44px 40px;
}

.article-body p {
    margin: 0 0 18px;
    color: #333;
    line-height: 1.75;
    font-size: 15.5px;
}

.article-body p:last-of-type {
    margin-bottom: 0;
}

.img-float {
    float: left;
    width: min(46%, 220px);
    height: auto;
    margin: 4px 18px 10px 0;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
    shape-outside: margin-box;
}

/* Op groot scherm: tekst in twee leesbare kolommen i.p.v. één smalle kolom met witruimte ernaast */
@media (min-width: 900px) {
    .article-body {
        column-count: 2;
        column-gap: 52px;
        column-rule: 1px solid #eee;
    }

    .article-body p {
        break-inside: avoid;
    }
}

.byline {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 13.5px;
    font-style: italic;
    color: var(--muted);
    column-span: all;
}

.byline::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--color-primary);
}

/* --- Mobiel --- */
@media (max-width: 750px) {
    .article-body {
        padding: 26px 24px 30px;
    }

    .article-hero-caption {
        padding: 30px 24px 16px;
    }

    .article-hero-caption h2 {
        font-size: 1.9rem;
    }
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 220px);
    justify-content: center;
    gap: 20px;
}

.gallery-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-item);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}

.gallery-image-wrap {
    aspect-ratio: 1 / 1;
    background: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.gallery-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.gallery-caption {
    padding: 10px 12px 13px;
}

.gallery-caption .title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 3px;
}

.gallery-caption .size {
    display: block;
    color: var(--muted);
    font-size: 11.5px;
}

.gallery-card:hover .title {
    color: var(--color-primary);
}

/* --- Mobiel --- */
@media (max-width: 750px) {

    .product-block,
    .product-block.reverse {
        flex-direction: column;
        padding: 24px;
    }

    .framed-image {
        flex: auto;
        width: 100%;
    }
}

@media (max-width: 460px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* text section */
.text-section {
    margin-bottom: 20px;
}

.text-block {
    padding: 40px 46px;
}

.text-block .product-text {
    max-width: 70ch;
}

.product-text h2 {
    font-size: 2.1rem;
    margin: 0 0 10px;
    color: var(--color-dark-grey);
}

.product-text p {
    margin: 0 0 14px;
    color: #333;
    line-height: 1.7;
}

.product-text .specs {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 16px;
}

.price-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: #f4f4f4;
    border-left: 3px solid var(--color-primary);
    border-radius: 3px;
    padding: 8px 16px;
    margin-bottom: 6px;
}

.price-pill .amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-grey);
}

.price-pill .note {
    font-size: 12.5px;
    color: #777;
}

/* kaart grid */
.kaart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 210px);
    justify-content: center;
    gap: 22px;
    margin-bottom: 10px;
}

.kaart-card {
    background: var(--bg-item);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.kaart-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}

.kaart-card .category-image-wrap {
    aspect-ratio: 3 / 4;
}

.kaart-caption {
    padding: 12px 14px 15px;
    color: var(--muted);
}

.kaart-caption .title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.kaart-caption .meta {
    display: block;
    color: var(--muted-light);
    font-size: 11.5px;
    margin-bottom: 2px;
}

.kaart-caption .size {
    display: block;
    color: var(--muted-light);
    font-size: 11.5px;
    margin-bottom: 8px;
}

.price-pill-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    background: rgba(255, 255, 255, .08);
    border-left: 3px solid var(--color-primary);
    border-radius: 3px;
    padding: 4px 9px;
    font-size: 12px;
}

.price-pill-mini .amount {
    font-weight: 700;
    color: #fff;
}

.price-pill-mini .note {
    color: var(--muted-light);
    font-size: 10.5px;
}

.availability {
    margin-top: 8px;
    font-size: 11px;
    color: var(--muted-light);
    line-height: 1.5;
}

/* --- Mobiel --- */
@media (max-width: 460px) {
    .kaart-grid {
        grid-template-columns: repeat(auto-fit, 150px);
        gap: 14px;
    }
}

.size-table {
    width: 100%;
    max-width: 420px;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}

.size-table td {
    padding: 8px 4px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.size-table td:first-child {
    font-weight: 700;
    color: var(--color-dark-grey);
}

.size-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* --- Contactblok --- */
.contact-section {
    margin-bottom: 10px;
}

.contact-card {
    padding: 40px 46px;
    text-align: center;
}

.contact-card .eyebrow {
    justify-content: center;
}

.contact-card h2 {
    font-size: 2.3rem;
    margin: 0 0 10px;
    color: var(--color-dark-grey);
}

.contact-card p {
    max-width: 52ch;
    margin: 0 auto 22px;
    color: #333;
}

/* --- Verkooppunten: eenvoudige lijst --- */
.shops-list-card {
    padding: 30px 40px;
}

.shops-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shops-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 4px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 15px;
}

.shops-list li:last-child {
    border-bottom: none;
}

.shops-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.shops-list .home-link {
    text-align: center;
    margin-top: 18px;
}

.shops-list .home-link a {
    color: var(--color-dark-grey);
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
    text-decoration: none;
    font-size: 14.5px;
}