@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap");

:root {
    --kleur-ivoor: #f5f0e8;
    --kleur-ivoor-warm: #ede6d8;
    --kleur-ivoor-diep: #e0d5c3;
    --kleur-cognac: #a0522d;
    --kleur-cognac-licht: #c4763e;
    --kleur-cognac-diep: #7a3e20;
    --kleur-bruin: #2c1a0e;
    --kleur-bruin-mid: #4a2e1a;
    --kleur-bruin-licht: #8b6347;
    --kleur-goud: #c9a84c;
    --kleur-goud-licht: #e4c97e;
    --kleur-tekst: #1e1208;
    --kleur-tekst-mid: #5a3e2b;
    --kleur-tekst-zacht: #9a7b63;
    --kleur-rand: rgba(160, 82, 45, 0.18);
    --kleur-rand-sterk: rgba(160, 82, 45, 0.35);
    --kleur-fout: #c0392b;
    --kleur-succes: #4a7c59;

    --lettertype-hoofd: "Cormorant Garamond", Georgia, serif;
    --lettertype-inhoud: "DM Sans", system-ui, sans-serif;

    --ruimte-xs: 0.25rem;
    --ruimte-sm: 0.5rem;
    --ruimte-md: 1rem;
    --ruimte-lg: 1.5rem;
    --ruimte-xl: 2rem;
    --ruimte-2xl: 3rem;
    --ruimte-3xl: 5rem;

    --nav-breedte: 240px;
    --header-hoogte: 72px;
    --straal-sm: 4px;
    --straal-md: 8px;
    --straal-lg: 14px;
    --straal-xl: 24px;

    --schaduw-sm: 0 1px 4px rgba(44, 26, 14, 0.08);
    --schaduw-md: 0 4px 16px rgba(44, 26, 14, 0.1);
    --schaduw-lg: 0 12px 40px rgba(44, 26, 14, 0.14);
    --schaduw-goud: 0 4px 24px rgba(201, 168, 76, 0.18);

    --overgang: 0.22s ease;
    --overgang-traag: 0.45s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    background-color: var(--kleur-ivoor);
    color: var(--kleur-tekst);
    font-family: var(--lettertype-inhoud);
    font-size: 1rem;
    line-height: 1.7;
}

html,
body {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--lettertype-inhoud);
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

input,
textarea,
select {
    color: var(--kleur-tekst);
    font-family: var(--lettertype-inhoud);
    font-size: 1rem;
}

ul {
    list-style: none;
}

.animeer-infaden {
    animation: infaden 0.6s ease both;
}

.animeer-schalen {
    animation: schalen 0.5s ease both;
}

.badge {
    border-radius: 999px;
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    text-transform: uppercase;
}

.badge-cognac {
    background: rgba(160, 82, 45, 0.1);
    color: var(--kleur-cognac-diep);
}

.badge-goud {
    background: rgba(201, 168, 76, 0.15);
    color: #7a6010;
}

.badge-green {
    background: #e6f2ea;
    color: #2d6b3e;
}

.badge-amber {
    background: #fef3e2;
    color: #8a5c00;
}

.badge-blue {
    background: #e8eef8;
    color: #2c4e8a;
}

.badge-gray {
    background: var(--creme);
    color: var(--inkt-soft);
}

.cijfer-blok {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cijfer-groot {
    color: var(--kleur-cognac);
    font-family: var(--lettertype-hoofd);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}

.contact-band {
    align-items: center;
    background: var(--kleur-bruin-mid);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: var(--ruimte-2xl);
    justify-content: space-between;
    padding: var(--ruimte-3xl);
}

.contact-band-sier {
    flex-shrink: 0;
    opacity: 0.6;
    width: 180px;
}

.container {
    display: flex;
    min-height: 100vh;
    padding-top: var(--header-hoogte);
}

.datum-dag {
    color: var(--kleur-cognac);
    font-family: var(--lettertype-hoofd);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.datum-jaar {
    color: var(--kleur-tekst-zacht);
    font-size: 0.7rem;
}

.datum-maand {
    color: var(--kleur-tekst-zacht);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.display-lg {
    font-family: var(--lettertype-hoofd);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
}

.display-md {
    font-family: var(--lettertype-hoofd);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
}

.display-xl {
    font-family: var(--lettertype-hoofd);
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.evenement-affiche {
    border-radius: var(--straal-md);
    height: 70px;
    object-fit: cover;
    width: 70px;
}

.evenement-datum {
    align-items: center;
    border-right: 1px solid var(--kleur-rand);
    display: flex;
    flex-direction: column;
    min-width: 56px;
    padding-right: var(--ruimte-xl);
}

.evenement-info {
    flex: 1;
}

.evenement-kaart {
    align-items: center;
    background: var(--kleur-ivoor);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--straal-lg);
    display: flex;
    gap: var(--ruimte-xl);
    padding: var(--ruimte-lg) var(--ruimte-xl);
    transition:
        box-shadow var(--overgang),
        transform var(--overgang);
}

.evenement-kaart:hover {
    box-shadow: var(--schaduw-md);
    transform: translateY(-1px);
}

.evenement-link {
    color: var(--kleur-cognac) !important;
    font-size: 0.68rem !important;
}

.evenement-link:hover {
    color: var(--kleur-cognac-diep) !important;
}

.evenement-locatie {
    align-items: center;
    color: var(--kleur-tekst-zacht);
    display: flex;
    font-size: 0.85rem;
    gap: 5px;
    margin-bottom: 8px;
}

.evenement-naam {
    color: var(--kleur-tekst);
    font-family: var(--lettertype-hoofd);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.evenementen-lijst {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-lg);
}

.evenementen-sectie {
    background: var(--kleur-ivoor-warm);
    border-top: 1px solid var(--kleur-rand);
    padding: var(--ruimte-3xl);
}

.foto-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.foto-item img {
    display: block;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.fotos-raster {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    width: 28px;
}

.hamburger span {
    background: var(--kleur-tekst);
    border-radius: 2px;
    display: block;
    height: 1.5px;
    transition:
        transform var(--overgang),
        opacity var(--overgang);
}

.hero {
    align-items: center;
    background: var(--kleur-bruin);
    display: flex;
    min-height: calc(100vh - var(--header-hoogte));
    overflow: hidden;
    position: relative;
}

.hero-achtergrond {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-grain {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    inset: 0;
    opacity: 0.03;
    position: absolute;
}

.hero-inhoud {
    max-width: 960px;
    padding: var(--ruimte-3xl);
    position: relative;
    z-index: 2;
}

.hero-inhoud .label-caps {
    color: var(--kleur-goud);
    display: block;
    margin-bottom: var(--ruimte-lg);
}

.hero-kleuroverlay {
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(160, 82, 45, 0.18) 0%, transparent 70%);
    inset: 0;
    position: absolute;
}

.hero-knoppen {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ruimte-md);
}

.hero-sierafbeelding {
    opacity: 0.6;
    pointer-events: none;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
}

.hero-sub {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: var(--ruimte-2xl);
    max-width: 40ch;
}

.hero-titel {
    color: var(--kleur-ivoor);
    margin-bottom: var(--ruimte-xl);
}

.huidige-taal {
    border-radius: var(--straal-sm);
    color: var(--kleur-tekst-mid);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    padding: 4px 8px;
    text-transform: uppercase;
    transition:
        background var(--overgang),
        color var(--overgang);
}

.huidige-taal:hover,
.taal-selector.open .huidige-taal {
    background: var(--kleur-ivoor-warm);
    color: var(--kleur-cognac);
}

.icoon {
    fill: currentColor;
    height: 22px;
    width: 22px;
}

.kaart {
    background: var(--kleur-ivoor);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--straal-lg);
    overflow: hidden;
    transition:
        box-shadow var(--overgang),
        transform var(--overgang);
}

.kaart:hover {
    box-shadow: var(--schaduw-lg);
    transform: translateY(-2px);
}

.kaart-afbeelding {
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 100%;
}

.kaart-inhoud {
    padding: var(--ruimte-lg);
}

.kaart-omschrijving {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--kleur-tekst-zacht);
    line-height: 1.55;
    padding-top: var(--ruimte-md);
    border-top: 1px solid var(--kleur-rand);
    margin-bottom: 0;
}

.knop {
    align-items: center;
    border-radius: var(--straal-md);
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 500;
    gap: 8px;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    text-transform: uppercase;
    transition:
        background var(--overgang),
        color var(--overgang),
        border-color var(--overgang),
        box-shadow var(--overgang),
        transform 0.12s ease;
}

.knop:active {
    transform: scale(0.97);
}

.knop-ghost-licht {
    background: transparent;
    border: 1px solid rgba(245, 240, 232, 0.35);
    color: var(--kleur-ivoor);
}

.knop-ghost-licht:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: rgba(245, 240, 232, 0.6);
}

.knop-goud {
    background: #c9a84c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.knop-goud:hover {
    background: #b09140;
}

.knop-omlijnd {
    background: transparent;
    border: 1px solid var(--kleur-rand-sterk);
    color: var(--kleur-cognac);
}

.knop-omlijnd:hover {
    background: var(--kleur-ivoor-warm);
    border-color: var(--kleur-cognac);
}

.knop-primair {
    background: var(--kleur-cognac);
    border: 1px solid transparent;
    color: var(--kleur-ivoor);
}

.knop-primair:hover {
    background: var(--kleur-cognac-diep);
    box-shadow: var(--schaduw-md);
}

.label-caps {
    color: var(--kleur-tekst-zacht);
    font-family: var(--lettertype-inhoud);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.logo-container {
    align-items: center;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.logo-container.zichtbaar {
    opacity: 1;
    transform: translateY(0);
}

.logo-container a {
    align-items: center;
    display: flex;
    gap: 12px;
}

.logo-tekst .tekst1 {
    color: var(--kleur-tekst);
    font-family: var(--lettertype-hoofd);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.logo-tekst .tekst2 {
    color: var(--kleur-tekst-mid);
    font-family: var(--lettertype-hoofd);
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1;
}

.melding {
    border-left: 3px solid;
    border-radius: var(--straal-md);
    font-size: 0.9rem;
    margin-bottom: var(--ruimte-lg);
    padding: var(--ruimte-md) var(--ruimte-lg);
}

.melding-fout {
    background: rgba(192, 57, 43, 0.08);
    border-color: var(--kleur-fout);
    color: var(--kleur-fout);
}

.melding-succes {
    background: rgba(74, 124, 89, 0.08);
    border-color: var(--kleur-succes);
    color: var(--kleur-succes);
}

.nav-overlay-backdrop {
    background: rgba(44, 26, 14, 0.4);
    display: none;
    inset: 0;
    position: fixed;
    z-index: 90;
}

.nav-sociaal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: var(--ruimte-md);
    margin-top: auto;
    padding: var(--ruimte-lg) var(--ruimte-xl);
}

.nav-sociaal a {
    color: rgba(245, 240, 232, 0.4);
    display: flex;
    transition: color var(--overgang);
}

.nav-sociaal a:hover {
    color: var(--kleur-goud-licht);
}

.nav-sociaal svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
}

.over-artikel-tekst {
    margin: 0 auto;
    max-width: 800px;
}

.over-artikel-tekst a {
    color: var(--kleur-cognac);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.over-artikel-tekst h1 {
    margin-bottom: var(--ruimte-lg);
}

.over-artikel-tekst h3 {
    color: var(--kleur-cognac);
    margin-bottom: var(--ruimte-sm);
    margin-top: var(--ruimte-xl);
}

.over-artikel-tekst p {
    color: var(--kleur-tekst-mid);
    line-height: 1.8;
    margin-bottom: var(--ruimte-md);
}

.over-cijfers {
    border-left: 1px solid var(--kleur-rand-sterk);
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-xl);
    padding-left: var(--ruimte-2xl);
}

.over-inhoud {
    align-items: center;
    display: grid;
    gap: var(--ruimte-3xl);
    grid-template-columns: 1fr 1fr;
}

.over-sectie {
    background: var(--kleur-ivoor-warm);
    border-bottom: 1px solid var(--kleur-rand);
    padding: var(--ruimte-3xl);
}

.over-sierregel {
    margin-bottom: var(--ruimte-2xl);
}

.over-tekst {
    color: var(--kleur-tekst-mid);
    line-height: 1.8;
    max-width: 44ch;
}

.over-tekst-blok {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-lg);
}

.inleiding-tekst {
    margin-bottom: var(--ruimte-md);
}

.overlay-logo-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-md);
    margin-bottom: var(--ruimte-xl);
}

.overlay-logo-container img {
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    height: 80px;
    width: 80px;
}

.overlay-logo-tekst {
    text-align: center;
}

.overlay-logo-tekst .tekst1 {
    color: var(--kleur-ivoor);
    font-family: var(--lettertype-hoofd);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.overlay-logo-tekst .tekst2 {
    color: var(--kleur-goud-licht);
    font-family: var(--lettertype-hoofd);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.overlay-naam {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    left: 0;
    padding: 8px;
    position: absolute;
    text-align: center;
    width: 100%;
}

.overlay-taalvraag {
    color: rgba(245, 240, 232, 0.5);
    font-family: var(--lettertype-hoofd);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
}

.pagina-band {
    background: var(--kleur-bruin);
    color: var(--kleur-ivoor);
    padding: var(--ruimte-3xl) var(--ruimte-3xl) var(--ruimte-2xl);
}

.pagina-band .display-lg {
    color: var(--kleur-ivoor);
}

.pagina-inhoud {
    max-width: 1200px;
    padding: var(--ruimte-2xl) var(--ruimte-3xl);
}

.prijs-label {
    color: var(--kleur-tekst-zacht);
    font-weight: 400;
}

.product-kaart {
    display: block;
    text-decoration: none;
}

.product-naam {
    color: var(--kleur-tekst);
    font-family: var(--lettertype-hoofd);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 6px 0 4px;
}

.product-placeholder {
    align-items: center;
    background: var(--kleur-ivoor-warm);
    display: flex;
    justify-content: center;
}

.product-placeholder svg {
    opacity: 0.7;
    width: 80px;
}

.product-prijs {
    color: var(--kleur-cognac);
    font-size: 0.9rem;
    font-weight: 500;
}

.producten-raster-groep {
    display: grid;
    gap: var(--ruimte-xl);
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.producten-sectie {
    padding: var(--ruimte-3xl);
}

.schud-winkelmand {
    animation: schud-winkelmand 0.5s ease;
}

.sectie-hoofd {
    align-items: flex-end;
    display: flex;
    gap: var(--ruimte-lg);
    justify-content: space-between;
    margin-bottom: var(--ruimte-2xl);
}

.sectie-hoofd p.label-caps {
    margin-bottom: 4px;
}

.sierregel {
    align-items: center;
    color: var(--kleur-tekst-zacht);
    display: flex;
    gap: var(--ruimte-md);
}

.sierregel::before,
.sierregel::after {
    background: var(--kleur-rand);
    content: "";
    flex: 1;
    height: 1px;
}

.taal-selector {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1000;
}

.taal-selector::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    display: none;
}

.taal-selector:hover::after,
.taal-selector:hover .taal-dropdown {
    display: block;
}

.taal-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    display: none;
    background: var(--kleur-ivoor);
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: var(--straal-md);
    box-shadow: var(--schaduw-md);
    z-index: 9999;
    min-width: 60px;
    list-style: none;
}

.taal-dropdown li {
    padding: 8px 16px;
    color: var(--kleur-tekst-mid);
    cursor: pointer;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.taalknop {
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--straal-md);
    color: rgba(245, 240, 232, 0.7);
    display: inline-block;
    font-family: var(--lettertype-inhoud);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    padding: 12px 40px;
    text-transform: uppercase;
    transition:
        background var(--overgang),
        border-color var(--overgang),
        color var(--overgang);
}

.taalknop:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--kleur-goud);
    color: var(--kleur-ivoor);
}

.tekst-midden {
    text-align: center;
}

.tekst-zacht {
    color: var(--kleur-tekst-zacht);
}

.veld-groep {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.veld-groep input,
.veld-groep textarea,
.veld-groep select {
    background: var(--kleur-ivoor-warm);
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: var(--straal-md);
    color: var(--kleur-tekst);
    font-size: 0.95rem;
    outline: none;
    padding: 10px 14px;
    transition:
        border-color var(--overgang),
        box-shadow var(--overgang);
}

.veld-groep input,
.veld-groep textarea,
.veld-groep select {
    width: 100%;
    max-width: 100%;
}

.veld-groep input[type="file"] {
    width: 100%;
    max-width: 100%;
}

.veld-groep select {
    height: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 14px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
}

.veld-groep input:focus,
.veld-groep textarea:focus,
.veld-groep select:focus {
    border-color: var(--kleur-cognac);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.12);
}

.veld-groep label {
    color: var(--kleur-tekst-mid);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vertraging-1 {
    animation-delay: 0.1s;
}
.vertraging-2 {
    animation-delay: 0.2s;
}
.vertraging-3 {
    animation-delay: 0.3s;
}
.vertraging-4 {
    animation-delay: 0.4s;
}
.vertraging-5 {
    animation-delay: 0.5s;
}
.vertraging-6 {
    animation-delay: 0.6s;
}

.winkel-container {
    align-items: center;
    display: flex;
    gap: var(--ruimte-lg);
}

.winkel-container a {
    align-items: center;
    color: var(--kleur-bruin-mid);
    display: flex;
    position: relative;
    transition: color var(--overgang);
}

.winkel-container a:hover {
    color: var(--kleur-cognac);
}

.winkel-categorie-titel {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin: var(--ruimte-2xl) 0 var(--ruimte-lg);
}

.winkel-categorie-titel span {
    font-family: var(--lettertype-hoofd);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--kleur-tekst);
    padding-bottom: var(--ruimte-sm);
    border-bottom: 2px solid var(--kleur-cognac);
    white-space: nowrap;
}

.winkel-categorie-titel::after {
    content: "";
    flex: 1;
    align-self: flex-end;
    height: 0;
    border-bottom: 2px solid var(--kleur-rand);
}

.winkel-categorie-titel:first-of-type {
    margin-top: 0;
}

.producten-raster-groep + .winkel-categorie-titel {
    margin-top: var(--ruimte-3xl);
}

.winkelmand-teller {
    align-items: center;
    background: var(--kleur-cognac);
    border-radius: 999px;
    color: var(--kleur-ivoor);
    display: none;
    font-size: 0.6rem;
    font-weight: 500;
    height: 17px;
    justify-content: center;
    letter-spacing: 0;
    min-width: 17px;
    padding: 0 4px;
    position: absolute;
    right: -7px;
    top: -6px;
}

footer {
    background: var(--kleur-bruin);
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.85rem;
    margin-left: var(--nav-breedte);
    padding: var(--ruimte-2xl) var(--ruimte-3xl);
}

.footer-inner {
    display: grid;
    gap: var(--ruimte-2xl);
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: var(--ruimte-xl);
    max-width: 900px;
}

.footer-kolom h4 {
    color: var(--kleur-ivoor);
    font-family: var(--lettertype-hoofd);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--ruimte-md);
}

.footer-kolom ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-kolom ul li a {
    color: rgba(245, 240, 232, 0.5);
    transition: color var(--overgang);
}

.footer-kolom ul li a:hover {
    color: var(--kleur-goud-licht);
}

.footer-onderkant {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    font-size: 0.78rem;
    justify-content: space-between;
    padding-top: var(--ruimte-lg);
}

header {
    align-items: center;
    background: var(--kleur-ivoor);
    border-bottom: 1px solid var(--kleur-rand);
    display: flex;
    height: var(--header-hoogte);
    justify-content: space-between;
    left: 0;
    padding: 0 var(--ruimte-xl);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 200;
}

#logo {
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: 50%;
    height: 44px;
    object-fit: cover;
    width: 44px;
}

#taal-overlay {
    align-items: center;
    background: var(--kleur-ivoor-warm);
    display: none;
    flex-direction: column;
    gap: var(--ruimte-xl);
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 900;
}

#taal-overlay .overlay-logo-tekst .tekst1 {
    color: var(--kleur-tekst);
}

#taal-overlay .overlay-logo-tekst .tekst2 {
    color: var(--kleur-tekst-mid);
}

#taal-overlay .overlay-taalvraag {
    color: var(--kleur-tekst-mid);
}

#taal-overlay .taalknop {
    border: 1px solid var(--kleur-cognac);
    color: var(--kleur-cognac);
}

#taal-overlay .taalknop:hover {
    background: var(--kleur-cognac);
    color: var(--kleur-ivoor);
}

#taal-overlay .overlay-logo-container img {
    border: 2px solid var(--kleur-cognac);
}

main {
    flex: 1;
    margin-left: var(--nav-breedte);
    min-height: calc(100vh - var(--header-hoogte));
}

nav#navigatie {
    background: var(--kleur-bruin);
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-hoogte));
    left: 0;
    overflow-y: auto;
    padding: var(--ruimte-2xl) 0;
    position: fixed;
    top: var(--header-hoogte);
    width: var(--nav-breedte);
    z-index: 100;
}

nav#navigatie ul {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
    padding: 0 var(--ruimte-md);
}

nav#navigatie ul li a {
    align-items: center;
    border-radius: var(--straal-md);
    color: rgba(245, 240, 232, 0.65);
    display: flex;
    font-size: 0.875rem;
    font-weight: 400;
    gap: 10px;
    letter-spacing: 0.02em;
    padding: 10px 14px;
    transition:
        background var(--overgang),
        color var(--overgang);
}

nav#navigatie ul li a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--kleur-ivoor);
}

nav#navigatie ul li a.actief {
    background: rgba(201, 168, 76, 0.14);
    color: var(--kleur-goud-licht);
}

nav#navigatie ul li.nav-scheiding {
    background: rgba(255, 255, 255, 0.06);
    height: 1px;
    margin: var(--ruimte-sm) var(--ruimte-sm);
}

.winkel-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.winkel-zoek-sectie {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.live-zoek-input {
    width: 100%;
    max-width: 420px;
    padding: 0.65rem 1rem;
    font-family: var(--lettertype-inhoud);
    font-size: 0.95rem;
    color: var(--kleur-tekst);
    background: var(--kleur-ivoor-warm);
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: var(--straal-md);
    outline: none;
    transition:
        border-color var(--overgang),
        box-shadow var(--overgang);
}

.live-zoek-input:focus {
    border-color: var(--kleur-cognac);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.12);
}

#producten-raster.zoek-laden {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.knop-zoek {
    padding: 0.5rem 1rem;
    background: #c9a84c;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.knop-filter {
    padding: 0.5rem 1rem;
    border: 1px solid #c9a84c;
    border-radius: 4px;
    text-decoration: none;
    color: #c9a84c;
}

.knop-filter:hover {
    background: #c9a84c;
    color: white;
}

.knop-filter.actief {
    background: #c9a84c;
    color: white;
    border-color: #c9a84c;
}

.product-kaart {
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.product-kaart:hover {
    transform: translateY(-5px);
}

.details-paneel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.varianten-keuze {
    padding: 0 var(--ruimte-lg) var(--ruimte-lg);
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-md);
}

.keuze-groep {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-xs);
}

.keuze-groep:first-of-type {
    padding-top: var(--ruimte-md);
    border-top: 1px solid var(--kleur-rand);
}

.keuze-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--kleur-tekst-zacht);
}

.keuze-opties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ruimte-xs);
}

.keuze-knop {
    padding: 5px 14px;
    font-size: 0.8rem;
    font-family: var(--lettertype-inhoud);
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: var(--straal-md);
    background: transparent;
    color: var(--kleur-tekst-mid);
    cursor: pointer;
    transition:
        background var(--overgang),
        border-color var(--overgang),
        color var(--overgang);
}

.keuze-knop:hover {
    border-color: var(--kleur-cognac-licht);
    color: var(--kleur-cognac);
}

.keuze-knop.geselecteerd {
    background: var(--kleur-cognac);
    border-color: var(--kleur-cognac);
    color: var(--kleur-ivoor);
}

.varianten-prijs-rij {
    display: flex;
    align-items: baseline;
    gap: var(--ruimte-sm);
    padding-top: var(--ruimte-sm);
    border-top: 1px solid var(--kleur-rand);
}

.varianten-prijs-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--kleur-tekst-zacht);
}

.varianten-prijs {
    font-family: var(--lettertype-hoofd);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--kleur-cognac);
}

.varianten-toevoegen {
    width: 100%;
    justify-content: center;
    margin-top: var(--ruimte-xs);
}

.varianten-toevoegen:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.varianten-laden,
.varianten-fout,
.varianten-leeg {
    padding: var(--ruimte-md);
    color: var(--kleur-tekst-zacht);
    font-size: 0.875rem;
}

.contact-formulier {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-md);
    max-width: 600px;
}

.form-actie-knop {
    background: var(--kleur-cognac);
    color: var(--kleur-ivoor);
    padding: 14px 32px;
    border-radius: var(--straal-md);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition:
        background var(--overgang),
        box-shadow var(--overgang);
    align-self: flex-start;
}

.form-actie-knop:hover {
    background: var(--kleur-cognac-diep);
    box-shadow: var(--schaduw-md);
}

.melding {
    padding: var(--ruimte-md);
    border-radius: var(--straal-md);
    margin-bottom: var(--ruimte-xl);
    font-size: 0.9rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ruimte-xl);
    margin-top: var(--ruimte-xl);
}

.link-card {
    display: flex;
    flex-direction: column;
    background: var(--kleur-ivoor-warm);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--straal-lg);
    overflow: hidden;
    transition:
        transform var(--overgang),
        box-shadow var(--overgang);
    min-height: 350px;
}

.link-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background-color: var(--kleur-ivoor);
    padding: var(--ruimte-md);
    border-bottom: 1px solid var(--kleur-rand);
}

.link-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--schaduw-lg);
}

.link-text {
    padding: var(--ruimte-lg);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--kleur-tekst);
    text-align: center;
}

.link-inhoud {
    padding: var(--ruimte-md);
    text-align: center;
}

.link-inhoud h3 {
    font-family: var(--lettertype-hoofd);
    font-size: 1.2rem;
    margin-bottom: var(--ruimte-sm);
    color: var(--kleur-cognac);
}

.link-inhoud p {
    font-size: 0.85rem;
    color: var(--kleur-tekst-mid);
    line-height: 1.4;
}

.mandje-container {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-xl);
}

.mandje-rijen {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-md);
}

.mandje-rij {
    display: flex;
    align-items: center;
    gap: var(--ruimte-lg);
    padding: var(--ruimte-lg);
}

.mandje-extra-veld {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    margin-block: 0.2rem;
}

.mandje-extra-label {
    opacity: 0.7;
    white-space: nowrap;
}

.mandje-extra-waarde {
    font-weight: 500;
}

.mandje-extra-bewerk {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
    line-height: 0;
    color: inherit;
    opacity: 0.45;
    flex-shrink: 0;
}
.mandje-extra-bewerk:hover {
    opacity: 1;
}
.mandje-extra-bewerk svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.mandje-foto {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--straal-md);
    border: 1px solid var(--kleur-rand);
    flex-shrink: 0;
}

.mandje-info {
    flex: 1;
    min-width: 0;
}

.mandje-naam {
    font-family: var(--lettertype-hoofd);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.mandje-varianten {
    color: var(--kleur-tekst-zacht);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.mandje-stukprijs {
    color: var(--kleur-tekst-mid);
    font-size: 0.85rem;
}

.mandje-acties {
    display: flex;
    align-items: center;
    gap: var(--ruimte-xl);
    flex-shrink: 0;
}

.aantal-kiezer {
    display: flex;
    align-items: center;
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: var(--straal-md);
    overflow: hidden;
}

.aantal-kiezer button {
    padding: 6px 12px;
    font-size: 1rem;
    color: var(--kleur-cognac);
    transition: background var(--overgang);
}

.aantal-kiezer button:hover {
    background: var(--kleur-ivoor-warm);
}

.aantal-waarde {
    min-width: 32px;
    text-align: center;
    font-size: 0.9rem;
}

.mandje-subtotaal {
    font-family: var(--lettertype-hoofd);
    font-size: 1.1rem;
    color: var(--kleur-cognac);
    min-width: 80px;
    text-align: right;
}

.mandje-verwijder {
    color: var(--kleur-tekst-zacht);
    font-size: 1.1rem;
    padding: 6px;
    transition: color var(--overgang);
}

.mandje-verwijder:hover {
    color: var(--kleur-fout);
}

.mandje-totaal-blok {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-md);
    padding: var(--ruimte-xl);
    max-width: 380px;
    margin-left: auto;
}

.mandje-totaal-rij {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--lettertype-hoofd);
    font-size: 1.3rem;
    border-bottom: 1px solid var(--kleur-rand);
    padding-bottom: var(--ruimte-md);
}

.mandje-afrekenen,
.mandje-verder {
    width: 100%;
    justify-content: center;
}

.knop-secundair {
    background: transparent;
    border: 1px solid var(--kleur-rand-sterk);
    color: var(--kleur-tekst-mid);
}

.knop-secundair:hover {
    background: var(--kleur-ivoor-warm);
    border-color: var(--kleur-cognac);
}

.mandje-leeg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--ruimte-md);
    padding: var(--ruimte-3xl) var(--ruimte-xl);
    color: var(--kleur-tekst-zacht);
    text-align: center;
    background: var(--kleur-ivoor-warm);
    border: 1px dashed var(--kleur-rand-sterk);
    border-radius: var(--straal-lg);
}

.mandje-laden {
    text-align: center;
    color: var(--kleur-tekst-zacht);
    padding: var(--ruimte-3xl);
}

.verborgen {
    display: none;
}

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

.details-paneel form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

@keyframes infaden-links {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes schalen {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes schud-winkelmand {
    0%,
    100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-12deg);
    }
    40% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-8deg);
    }
    80% {
        transform: rotate(6deg);
    }
}

.auth-sectie {
    display: flex;
    justify-content: center;
    padding-top: var(--ruimte-3xl);
    padding-bottom: var(--ruimte-3xl);
}

.auth-kaart {
    background: var(--kleur-ivoor);
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: var(--straal-xl);
    box-shadow: var(--schaduw-lg);
    padding: var(--ruimte-2xl);
    width: 100%;
    max-width: 460px;
}

.auth-formulier {
    max-width: 100%;
}

.auth-naam-rij {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ruimte-md);
}

.auth-vergeten {
    text-align: right;
    margin-top: -0.25rem;
}

.auth-vergeten a {
    color: var(--kleur-tekst-zacht);
    font-size: 0.8rem;
    transition: color var(--overgang);
}

.auth-vergeten a:hover {
    color: var(--kleur-cognac);
}

.auth-scheiding {
    display: flex;
    align-items: center;
    gap: var(--ruimte-md);
    margin: var(--ruimte-xl) 0 var(--ruimte-lg);
    color: var(--kleur-tekst-zacht);
    font-size: 0.8rem;
}

.auth-scheiding::before,
.auth-scheiding::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--kleur-rand);
}

.auth-wissel {
    text-align: center;
    font-size: 0.875rem;
    color: var(--kleur-tekst-mid);
    margin-top: var(--ruimte-md);
}

.auth-wissel a {
    color: var(--kleur-cognac);
    font-weight: 500;
    transition: color var(--overgang);
}

.auth-wissel a:hover {
    color: var(--kleur-cognac-diep);
}

.auth-terug-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--kleur-tekst-zacht) !important;
    font-size: 0.8rem;
    transition: color var(--overgang);
}

.auth-terug-link:hover {
    color: var(--kleur-cognac) !important;
}

.wachtwoord-wrapper {
    position: relative;
    display: flex;
}

.wachtwoord-wrapper input {
    flex: 1;
    padding-right: 42px;
}

.toon-wachtwoord {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--kleur-tekst-zacht);
    opacity: 0.5;
    padding: 0;
    display: flex;
    align-items: center;
    transition: opacity var(--overgang);
}

.toon-wachtwoord:hover {
    opacity: 0.8;
}

.toon-wachtwoord svg {
    width: 18px;
    height: 18px;
}

.wachtwoord-sterkte {
    display: flex;
    align-items: center;
    gap: var(--ruimte-sm);
    margin-top: 6px;
}

.sterkte-balk {
    flex: 1;
    height: 4px;
    background: var(--kleur-rand);
    border-radius: 999px;
    overflow: hidden;
}

.sterkte-balk span {
    display: block;
    height: 100%;
    border-radius: 999px;
    transition:
        width 0.3s ease,
        background 0.3s ease;
    width: 0%;
}

.sterkte-tekst {
    font-size: 0.72rem;
    font-weight: 500;
    min-width: 40px;
}

.profiel-band {
    padding: var(--ruimte-2xl) var(--ruimte-3xl);
}

.profiel-band-inhoud {
    display: flex;
    align-items: center;
    gap: var(--ruimte-xl);
}

.profiel-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.22);
    border: 2px solid rgba(201, 168, 76, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lettertype-hoofd);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--kleur-goud-licht);
    flex-shrink: 0;
}

.profiel-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: var(--kleur-ivoor);
    border-bottom: 1px solid var(--kleur-rand);
    padding: 0 var(--ruimte-3xl);
    position: sticky;
    top: var(--header-hoogte);
    z-index: 50;
    box-shadow: var(--schaduw-sm);
    flex-wrap: nowrap;
    gap: 0;
}

.profiel-nav-links {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

.profiel-nav-links::-webkit-scrollbar {
    display: none;
}

.profiel-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 14px 16px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--kleur-tekst-mid);
    white-space: nowrap;
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
    transition:
        color var(--overgang),
        border-color var(--overgang),
        background var(--overgang);
}

.profiel-nav-item:hover {
    color: var(--kleur-cognac);
    background: var(--kleur-ivoor-warm);
}

.profiel-nav-item.actief {
    color: var(--kleur-cognac);
    border-bottom-color: var(--kleur-cognac);
    font-weight: 500;
}

.profiel-nav-item span,
.profiel-nav-actie span {
    display: inline;
}

.profiel-nav-rechts {
    display: flex;
    align-items: center;
    gap: var(--ruimte-sm);
    padding: var(--ruimte-sm) 0 var(--ruimte-sm) var(--ruimte-md);
    flex-shrink: 0;
}

.profiel-nav-actie {
    font-size: 0.75rem;
    padding: 7px 14px;
}

.profiel-nav-item[title],
.profiel-nav-actie[title] {
    position: relative;
}

.profiel-nav-item:hover {
    color: var(--kleur-cognac);
}

.profiel-nav-item.actief {
    color: var(--kleur-cognac);
    border-bottom-color: var(--kleur-cognac);
    font-weight: 500;
}

.profiel-nav-actie {
    font-size: 0.75rem;
    padding: 7px 16px;
}

.knop-uitlog {
    background: transparent;
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: var(--kleur-fout);
}

.knop-uitlog:hover {
    background: rgba(192, 57, 43, 0.07);
    border-color: var(--kleur-fout);
}

.profiel-inhoud {
    max-width: 960px;
}

.profiel-sectie-titel {
    margin-bottom: var(--ruimte-xl);
}

.profiel-leeg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--ruimte-md);
    padding: var(--ruimte-3xl) var(--ruimte-xl);
    color: var(--kleur-tekst-zacht);
    text-align: center;
    background: var(--kleur-ivoor-warm);
    border: 1px dashed var(--kleur-rand-sterk);
    border-radius: var(--straal-lg);
}

.bestellingen-lijst {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-xl);
}

.bestelling-kaart {
    overflow: hidden;
}

.bestelling-hoofd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ruimte-xl);
    flex-wrap: wrap;
    padding: var(--ruimte-lg) var(--ruimte-xl);
    background: var(--kleur-ivoor-warm);
    border-bottom: 1px solid var(--kleur-rand);
}

.bestelling-nr {
    font-family: var(--lettertype-hoofd);
    font-size: 1.1rem;
    font-weight: 400;
}

.bestelling-totaal {
    color: var(--kleur-cognac);
    font-weight: 500;
}

.bestelling-items {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--kleur-rand);
}

.bestelling-item {
    display: flex;
    align-items: center;
    gap: var(--ruimte-lg);
    padding: var(--ruimte-lg) var(--ruimte-xl);
    background: var(--kleur-ivoor);
}

.bestelling-item-foto {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--straal-md);
    border: 1px solid var(--kleur-rand);
    flex-shrink: 0;
}

.bestelling-item-info {
    flex: 1;
}

.bestelling-item-naam {
    font-family: var(--lettertype-hoofd);
    font-size: 1rem;
    margin-bottom: 2px;
}

.badge-succes {
    background: rgba(74, 124, 89, 0.12);
    color: var(--kleur-succes);
}

.badge-fout {
    background: rgba(192, 57, 43, 0.1);
    color: var(--kleur-fout);
}

.verlanglijst-verwijder {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: var(--kleur-ivoor);
    border: 1px solid var(--kleur-rand-sterk);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--kleur-tekst-zacht);
    transition:
        background var(--overgang),
        color var(--overgang),
        border-color var(--overgang);
    box-shadow: var(--schaduw-sm);
}

.verlanglijst-verwijder:hover {
    background: var(--kleur-fout);
    border-color: var(--kleur-fout);
    color: white;
}

.adressen-lijst {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--ruimte-xl);
}

.adres-kaart {
    display: flex;
    flex-direction: column;
    gap: var(--ruimte-md);
    padding: var(--ruimte-xl);
}

.adres-inhoud {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.9rem;
    color: var(--kleur-tekst-mid);
    line-height: 1.5;
}

.adres-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ruimte-xs);
}

.adres-formulier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ruimte-md);
}

.adres-straat {
    grid-column: 1 / 2;
}
.adres-nummer {
    grid-column: 2 / 3;
}
.adres-postcode {
    grid-column: 1 / 2;
}
.adres-gemeente {
    grid-column: 2 / 3;
}
.adres-land {
    grid-column: 1 / 3;
}
.adres-bedrijf {
    grid-column: 1 / 2;
}
.adres-btw {
    grid-column: 2 / 3;
}
.adres-vinkjes {
    grid-column: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.adres-knoppen {
    grid-column: 1 / 3;
    display: flex;
    gap: var(--ruimte-md);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--kleur-tekst-mid);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--kleur-cognac);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.kaart-foto-wrapper {
    aspect-ratio: 1 / 1;
    background: var(--kleur-ivoor-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kaart-foto-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.klikbaar-foto {
    cursor: zoom-in;
}

.vergroot-knop {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition:
        background 0.2s,
        transform 0.15s;
    z-index: 2;
}

.vergroot-knop:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.1);
}

.vergroot-knop svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: #555;
    transition: fill 0.2s;
}

.vergroot-knop:hover svg {
    fill: #222;
}

.hartje-knop {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition:
        background 0.2s,
        transform 0.15s;
    z-index: 2;
}

.hartje-knop:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.1);
}

.hartje-icoon {
    width: 1.1rem;
    height: 1.1rem;
    fill: #ccc;
    transition: fill 0.2s;
}

.hartje-knop.actief .hartje-icoon {
    fill: #e05252;
}

.hartje-knop:hover .hartje-icoon {
    fill: #e05252;
}

.foto-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-modal[hidden] {
    display: none;
}

.foto-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    cursor: pointer;
}

.foto-modal-inhoud {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
}

.foto-modal-afbeelding {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    user-select: none;
}

.foto-modal-sluiten {
    position: absolute;
    top: -2.75rem;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 0;
}

.foto-modal-sluiten svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: #fff;
    transition: fill 0.15s;
}

.foto-modal-sluiten:hover svg {
    fill: #e05252;
}

.foto-modal-pijl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    line-height: 0;
    transition: background 0.2s;
}

.foto-modal-pijl:hover {
    background: rgba(255, 255, 255, 0.3);
}

.foto-modal-pijl svg {
    width: 2rem;
    height: 2rem;
    fill: #fff;
}

.foto-modal-vorige {
    left: -3.5rem;
}

.foto-modal-volgende {
    right: -3.5rem;
}

.foto-modal-teller {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 900px) and (min-width: 769px) {
    .profiel-nav {
        padding: 0 var(--ruimte-xl);
    }

    .profiel-nav-item span,
    .profiel-nav-actie span {
        display: none;
    }

    .profiel-nav-item {
        padding: 14px 12px;
        justify-content: center;
    }

    .profiel-nav-item svg {
        width: 20px;
        height: 20px;
    }

    .profiel-nav-actie {
        padding: 8px 10px;
    }

    .profiel-nav-actie svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-hoogte: 60px;
        --nav-breedte: 260px;
    }

    header {
        padding: 0 var(--ruimte-sm) 0 var(--ruimte-xl);
    }

    main {
        margin-left: 0;
    }

    footer {
        margin-left: 0;
        padding: var(--ruimte-lg);
    }

    .pagina-band,
    .pagina-inhoud {
        padding-left: var(--ruimte-xl);
        padding-right: var(--ruimte-xl);
    }

    .hamburger {
        display: flex;
    }

    nav#navigatie {
        box-shadow: var(--schaduw-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    nav#navigatie.open {
        transform: translateX(0);
    }

    .nav-overlay-backdrop.zichtbaar {
        display: block;
    }

    .profiel-band {
        padding: var(--ruimte-xl) var(--ruimte-lg);
    }

    .profiel-band-inhoud {
        gap: var(--ruimte-md);
    }

    .profiel-avatar {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .profiel-nav {
        padding: 0;
    }

    .profiel-nav-links {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 var(--ruimte-sm);
        scrollbar-width: none;
    }

    .profiel-nav-links::-webkit-scrollbar {
        display: none;
    }

    .profiel-nav-item {
        padding: 12px 14px;
        font-size: 0.78rem;
        flex-shrink: 0;
    }

    .profiel-nav-item span {
        display: inline;
    }

    .profiel-nav-rechts {
        padding: 0 var(--ruimte-sm);
        flex-shrink: 0;
    }

    .profiel-nav-actie {
        padding: 7px 10px;
        white-space: nowrap;
    }

    .profiel-nav-actie span {
        display: none;
    }

    .profiel-inhoud {
        padding-top: var(--ruimte-xl);
        padding-bottom: var(--ruimte-xl);
    }

    .profiel-sectie-titel {
        margin-bottom: var(--ruimte-lg);
    }

    .profiel-sectie-titel > div {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--ruimte-sm);
    }

    .bestellingen-lijst {
        gap: var(--ruimte-lg);
    }

    .bestelling-hoofd {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--ruimte-sm) var(--ruimte-md);
        padding: var(--ruimte-md);
        align-items: start;
    }

    .bestelling-hoofd > div:last-child {
        grid-column: 1 / -1;
    }

    .bestelling-item {
        display: flex;
        gap: var(--ruimte-md);
        padding: var(--ruimte-md);
    }

    .bestelling-item-foto {
        width: 48px;
        height: 48px;
    }

    .adressen-lijst {
        grid-template-columns: 1fr;
    }

    .adres-formulier-grid {
        grid-template-columns: 1fr;
    }

    .adres-straat,
    .adres-nummer,
    .adres-postcode,
    .adres-gemeente,
    .adres-land,
    .adres-bedrijf,
    .adres-btw,
    .adres-vinkjes,
    .adres-knoppen {
        grid-column: 1 / -1;
    }

    .adres-knoppen {
        flex-direction: column;
    }

    .adres-knoppen .knop {
        width: 100%;
        justify-content: center;
    }

    .auth-naam-rij {
        grid-template-columns: 1fr;
    }

    .auth-kaart {
        padding: var(--ruimte-xl);
    }

    .profiel-inhoud > div[style*="flex-direction: column"] {
        max-width: none;
    }

    .form-actie-knop {
        align-self: center;
        width: 100%;
        justify-content: center;
    }

    .winkel-container {
        gap: var(--ruimte-md);
    }

    .winkel-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .winkel-zoek-sectie {
        margin-bottom: 1.5rem;
    }

    .winkel-categorie-titel::after {
        display: none;
    }

    .winkel-categorie-titel span {
        white-space: normal;
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .knop-filter {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .live-zoek-input {
        font-size: 0.9rem;
    }

    .producten-raster-groep {
        grid-template-columns: 1fr;
    }

    .mandje-rij {
        flex-wrap: wrap;
        padding: var(--ruimte-md);
    }

    .mandje-acties {
        width: 100%;
        justify-content: space-between;
        padding-left: calc(80px + var(--ruimte-lg));
    }

    .mandje-totaal-blok {
        max-width: none;
    }

    .sectie-hoofd {
        align-items: flex-start;
        flex-direction: column;
    }

    .over-inhoud {
        grid-template-columns: 1fr;
    }

    .over-sectie {
        padding: var(--ruimte-2xl) var(--ruimte-xl);
    }

    .over-cijfers {
        border-left: none;
        border-top: 1px solid var(--kleur-rand-sterk);
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0;
        padding-top: var(--ruimte-xl);
    }

    .producten-sectie {
        padding: var(--ruimte-2xl) var(--ruimte-xl);
    }

    .contact-band {
        flex-direction: column;
        padding: var(--ruimte-2xl) var(--ruimte-xl);
    }

    .contact-band-sier {
        display: none;
    }

    .evenement-affiche {
        display: none;
    }

    .evenement-kaart {
        gap: var(--ruimte-md);
        padding: var(--ruimte-md);
    }

    .evenementen-sectie {
        padding: var(--ruimte-2xl) var(--ruimte-xl);
    }

    .hero-inhoud {
        padding: var(--ruimte-2xl) var(--ruimte-xl);
    }

    .hero-sierafbeelding {
        display: none;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: var(--ruimte-md);
        margin-bottom: var(--ruimte-md);
        max-width: none;
    }

    .footer-kolom:first-child p {
        display: none;
    }

    .footer-kolom h4 {
        font-family: var(--lettertype-inhoud);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(245, 240, 232, 0.4);
        margin-bottom: 6px;
    }

    .footer-kolom ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
    }

    .footer-kolom ul li {
        display: flex;
        align-items: center;
    }

    .footer-kolom ul li a {
        font-size: 0.8rem;
    }

    .footer-kolom ul li:not(:last-child)::after {
        content: "·";
        color: rgba(245, 240, 232, 0.3);
        margin: 0 8px;
    }

    .footer-onderkant {
        flex-direction: column;
        gap: var(--ruimte-sm);
        text-align: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .foto-modal-vorige {
        left: 0.25rem;
    }
    .foto-modal-volgende {
        right: 0.25rem;
    }
    .foto-modal-pijl {
        background: rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 480px) {
    .pagina-band,
    .pagina-inhoud {
        padding-left: var(--ruimte-lg);
        padding-right: var(--ruimte-lg);
    }

    .profiel-band {
        padding: var(--ruimte-lg);
    }

    .profiel-nav-item span {
        display: none;
    }

    .profiel-nav-item {
        padding: 12px 16px;
    }

    .profiel-nav-item svg {
        width: 18px;
        height: 18px;
    }

    .bestelling-hoofd {
        grid-template-columns: 1fr;
    }

    .bestelling-hoofd > div:last-child {
        grid-column: auto;
    }

    .bestelling-item {
        flex-wrap: wrap;
    }

    .bestelling-item > div:last-child {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: var(--ruimte-sm);
        border-top: 1px solid var(--kleur-rand);
    }

    .mandje-acties {
        padding-left: 0;
        flex-wrap: wrap;
        gap: var(--ruimte-sm);
    }

    .mandje-subtotaal {
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-kolom:first-child {
        grid-column: auto;
    }
}
