/* =========================================================
   BOTANIC SILK — Stylesheet
   Palet: Forest #2b361c · Olive #607058 · Aloe #a0ab97 · White
   Fonts: Fraunces (display, ~Hagrid) · Poppins (body) · Pinyon Script (accent, ~Savoye LET)
   ========================================================= */

:root {
    --forest:       #2b361c;
    --forest-deep:  #1d2613;
    --forest-soft:  #3a4a26;
    --olive:        #607058;
    --aloe:         #a0ab97;
    --aloe-soft:    #c5cdbb;
    --white:        #ffffff;
    --cream:        #f4f1ea;
    --cream-warm:   #ebe7dd;
    --paper:        #faf8f3;

    --display: 'Fraunces', 'Hagrid', 'Cormorant Garamond', Georgia, serif;
    --body:    'Poppins', system-ui, sans-serif;
    --script:  'Pinyon Script', 'Savoye LET', cursive;

    --ease:    cubic-bezier(.22, 1, .36, 1);
    --ease-in: cubic-bezier(.4, 0, .2, 1);

    --container: 1320px;
    --gutter:    clamp(1.25rem, 4vw, 3rem);

    --radius: 2px;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
html { overflow-y: auto; }
body {
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.5;
    color: var(--cream);
    background: var(--forest-deep);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* =========================================================
   COMING SOON / LOGIN PAGE
   ========================================================= */

.vignette { position: fixed; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.45) 100%); pointer-events: none; z-index: 1; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: .06; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>"); }

.page-login {
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 1.25rem; min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(96,112,88,.45), transparent 55%),
        radial-gradient(ellipse at 85% 90%, rgba(160,171,151,.25), transparent 55%),
        linear-gradient(180deg, #1d2613 0%, #2b361c 50%, #1d2613 100%);
}

.login {
    position: relative; z-index: 3;
    width: min(560px, 100%);
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 5vw, 3.5rem);
    background: rgba(29, 38, 19, .55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(160, 171, 151, .25);
    box-shadow: 0 50px 100px -30px rgba(0,0,0,.6);
    animation: rise .9s var(--ease) both;
}
.login__inner { text-align: center; }
.login__brand { margin-bottom: 2.25rem; }
.login__logo { display: block; height: 56px; width: auto; margin: 0 auto .35rem; animation: rise .9s .1s var(--ease) both; }
.login__mark { font-family: var(--display); letter-spacing: .42em; font-size: .82rem; color: var(--aloe); text-indent: .42em; }
.login__script { font-family: var(--script); font-style: normal; font-size: clamp(2.6rem, 6vw, 3.4rem); color: var(--cream); margin-top: .1em; line-height: 1.2; animation: rise .9s .2s var(--ease) both; }
.login__divider { display: flex; align-items: center; gap: .75rem; margin: 0 auto 2rem; width: 80px; animation: rise .9s .25s var(--ease) both; }
.login__divider::before, .login__divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(160,171,151,.5), transparent); }
.login__divider span { width: 5px; height: 5px; border-radius: 50%; background: var(--aloe); }
.login__title { font-family: var(--display); font-weight: 300; font-size: clamp(1.6rem, 4vw, 2.1rem); letter-spacing: .04em; color: var(--cream); margin-bottom: .9rem; animation: rise .9s .3s var(--ease) both; }
.login__lede { font-size: .92rem; line-height: 1.7; color: var(--aloe); margin-bottom: 2.25rem; animation: rise .9s .35s var(--ease) both; }
.login__form { display: flex; gap: .6rem; margin-bottom: 1rem; animation: rise .9s .4s var(--ease) both; }
.login__form input { flex: 1; background: rgba(0,0,0,.25); border: 1px solid rgba(160,171,151,.3); color: var(--cream); padding: .95rem 1.1rem; font-family: var(--body); font-size: .92rem; letter-spacing: .04em; transition: border-color .3s var(--ease), background-color .3s var(--ease); }
.login__form input::placeholder { color: rgba(160,171,151,.6); letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.login__form input:focus { outline: none; border-color: var(--aloe); background: rgba(0,0,0,.4); }
.login__form button { background: var(--cream); color: var(--forest); border: 1px solid var(--cream); padding: 0 1.5rem; font-family: var(--body); font-size: .76rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: .65rem; transition: all .3s var(--ease); }
.login__form button:hover { background: var(--aloe); border-color: var(--aloe); color: var(--forest-deep); }
.login__form button:hover svg { transform: translateX(3px); }
.login__form button svg { transition: transform .3s var(--ease); }
.login__error { color: #d8a294; font-size: .82rem; letter-spacing: .04em; margin-bottom: 1.5rem; animation: shake .4s ease; }
.login__footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(160,171,151,.15); font-size: .78rem; color: rgba(160,171,151,.7); animation: rise .9s .5s var(--ease) both; }
.login__footer a { color: var(--aloe); border-bottom: 1px solid rgba(160,171,151,.3); }
.login__footer a:hover { color: var(--cream); border-bottom-color: var(--cream); }
.login__leaves { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .9; }
.login__leaves svg { width: 100%; height: 100%; }
.copyright { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(160,171,151,.4); z-index: 3; }

/* under-construction legacy (keep functional) */
.page-construction { display: flex; flex-direction: column; min-height: 100vh; background: linear-gradient(180deg, #1d2613 0%, #2b361c 50%, #1d2613 100%); }
.construction__top { display: flex; justify-content: space-between; align-items: center; padding: 1.75rem clamp(1.5rem, 5vw, 3.5rem); }
.construction__mark { display: inline-block; line-height: 0; }
.construction__mark img { height: 36px; }
.construction__logout { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(160,171,151,.6); padding: .5rem .9rem; border: 1px solid rgba(160,171,151,.25); transition: all .3s var(--ease); background: rgba(29,38,19,.6); backdrop-filter: blur(8px); }
.construction__logout:hover { color: var(--cream); border-color: var(--aloe); }
.construction { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem clamp(1.5rem, 5vw, 3.5rem); }
.construction__inner { text-align: center; max-width: 720px; }
.construction__eyebrow { font-family: var(--script); font-style: normal; font-size: 2.05rem; line-height: 1.3; color: var(--aloe); margin-bottom: 1.1rem; display: inline-block; }
.construction__title { font-family: var(--display); font-weight: 300; font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 1; color: var(--cream); margin-bottom: 1.75rem; }
.construction__title em { font-style: italic; color: var(--aloe); font-size: 1.15em; }
.construction__lede { font-size: clamp(.95rem, 1.6vw, 1.05rem); line-height: 1.8; color: var(--aloe); max-width: 480px; margin: 0 auto 2.5rem; }
.construction__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-bottom: 3rem; }
.pill { padding: .55rem 1.1rem; border: 1px solid rgba(160,171,151,.35); border-radius: 100px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--aloe); background: rgba(0,0,0,.15); }
.construction__progress { width: min(280px, 70%); height: 1px; background: rgba(160,171,151,.2); margin: 0 auto 1rem; overflow: hidden; }
.construction__progress-bar { display: block; height: 100%; width: 35%; background: linear-gradient(90deg, transparent, var(--aloe), transparent); animation: slide 2.4s ease-in-out infinite; }
.construction__status { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(160,171,151,.55); }
.construction__bottom { padding: 1.75rem clamp(1.5rem, 5vw, 3.5rem); display: flex; justify-content: space-between; align-items: center; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(160,171,151,.55); border-top: 1px solid rgba(160,171,151,.12); }
.construction__bottom a { color: var(--aloe); }

/* =========================================================
   HOME PAGE
   ========================================================= */

.page-home { background: var(--cream); color: var(--forest-deep); }

.eyebrow {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 400;
    margin-bottom: 1rem;
}
.eyebrow--center { text-align: center; display: block; }

.section {
    padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}

.section__intro { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__intro--split { max-width: none; display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; flex-wrap: wrap; }
.section__intro--split > div { max-width: 640px; }

.section__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -.01em;
    color: var(--forest-deep);
    margin-bottom: 1.25rem;
}
.section__title em {
    font-family: var(--script);
    font-style: normal;
    color: var(--olive);
    font-weight: 400;
    font-size: 1.45em;
}
.section__title--center { text-align: center; }
.section__lede { font-size: 1.05rem; line-height: 1.75; color: var(--olive); max-width: 520px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 1.1rem 1.8rem;
    font-family: var(--body);
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .35s var(--ease);
    white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.btn--primary:hover { background: var(--olive); border-color: var(--olive); }
.btn--ghost { background: transparent; color: var(--forest-deep); border-color: var(--forest-deep); }
.btn--ghost:hover { background: var(--forest-deep); color: var(--cream); }
.btn--block { width: 100%; }
.btn--small { padding: .85rem 1.3rem; font-size: .68rem; }

/* Header — promobalk + gecentreerd logo + menu op een rij eronder */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(43, 54, 28, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(160,171,151,.15);
    transition: background-color .4s var(--ease), transform .4s var(--ease);
}
.site-header.is-scrolled { background: rgba(43, 54, 28, .97); }
.site-header.is-hidden { transform: translateY(-100%); }

/* Op pagina's mét hero (homepage): transparant aan de top, groen na scroll */
.has-hero .site-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.has-hero .site-header.is-scrolled {
    background: rgba(43, 54, 28, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(160,171,151,.15);
}

/* Promobalk bovenin */
.site-header__promo {
    background: var(--olive);
    color: var(--cream);
    text-align: center;
    font-size: .76rem;
    letter-spacing: .06em;
    line-height: 1.4;
    padding: .55rem var(--gutter);
    max-height: 80px;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease), opacity .3s var(--ease);
}
.site-header__promo a, .site-header__promo span { color: inherit; }
.site-header__promo a { text-decoration: underline; text-underline-offset: 2px; }
.site-header__promo a:hover { opacity: .85; }
/* Promobalk schuift netjes weg zodra je scrollt */
.site-header.is-scrolled .site-header__promo {
    max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0;
}

/* Logo-rij: 3 kolommen zodat het logo perfect in het midden staat */
.site-header__inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    gap: 1rem;
    padding: .45rem var(--gutter);
}
.site-header__side { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.site-header__side--left { justify-content: flex-start; }
.site-header__logo { justify-self: center; flex-shrink: 0; }
.site-header__logo img { height: 38px; transition: opacity .3s var(--ease); display: block; }
.site-header__logo:hover img { opacity: .8; }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: .25rem; }

/* Menu-rij onder het logo, gecentreerd */
.site-header__navrow {
    display: flex; justify-content: center;
    padding: 0 var(--gutter) .45rem;
    border-top: 1px solid rgba(245,241,234,.08);
}
.site-nav { display: flex; gap: 2rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.site-nav__link, .site-nav a {
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--cream); position: relative; padding: .5rem 0;
    transition: color .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
}
.site-nav__link::after, .site-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--aloe); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav__link:hover, .site-nav a:hover { color: var(--aloe); }
.site-nav__link:hover::after, .site-nav a:hover::after { transform: scaleX(1); }

/* Items met mega-panel */
.site-nav__item {
    position: static; /* full-width panel hangt aan header */
    display: inline-flex;
    align-items: center;
}
.site-nav__chevron {
    transition: transform .25s var(--ease);
    opacity: .7;
}
.site-nav__item:hover .site-nav__chevron,
.site-nav__item.is-open .site-nav__chevron {
    transform: rotate(180deg);
}

/* =========================================================
   MEGA MENU
   ========================================================= */

.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    color: var(--forest-deep);
    border-top: 1px solid rgba(96,112,88,.15);
    box-shadow: 0 16px 40px -10px rgba(29,38,19,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    z-index: 49;
    pointer-events: none;
}
/* Onzichtbare hover-brug tussen link en panel — zo verlaat je 'item' niet bij oversteken */
.mega::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
    background: transparent;
}
.site-nav__item.has-mega:hover .mega,
.site-nav__item.has-mega.is-open .mega,
.mega:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
}

.mega__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2.5rem var(--gutter) 3rem;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 2.5fr;
    gap: 4rem;
    align-items: start;
}

.mega__col--links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mega__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: 2.2rem;
    color: var(--forest-deep);
    margin: 0;
    line-height: 1;
    letter-spacing: -.01em;
}
.site-nav .mega__cta {
    font-family: var(--body);
    font-size: .82rem;
    color: var(--olive);
    border-bottom: 1px solid var(--olive);
    padding: 0 0 2px;
    align-self: flex-start;
    transition: all .3s var(--ease);
    text-transform: none;
    letter-spacing: .02em;
    white-space: nowrap;
}
.site-nav .mega__cta::after { display: none !important; }
.site-nav .mega__cta:hover {
    color: var(--forest-deep);
    border-color: var(--forest-deep);
    padding-bottom: 4px;
}

.mega__sublist {
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    border-top: 1px solid rgba(96,112,88,.12);
    padding-top: 1.5rem;
}
.mega__sublist li { margin: 0; }
.site-nav .mega__sublist a {
    font-family: var(--display);
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--forest-deep);
    text-transform: none;
    letter-spacing: 0;
    padding: 0;
    transition: all .3s var(--ease);
    display: inline-block;
    position: relative;
    white-space: nowrap;
}
.site-nav .mega__sublist a::after { display: none !important; }
.site-nav .mega__sublist a::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    opacity: 0;
    transition: all .3s var(--ease);
    color: var(--olive);
}
.site-nav .mega__sublist a:hover {
    color: var(--olive);
    padding-left: .5rem;
}
.site-nav .mega__sublist a:hover::before {
    opacity: 1;
    left: -1.2rem;
}

.mega__col--featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mega__featured-label {
    font-family: var(--body);
    font-size: .68rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--olive);
}
.mega__featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 140px));
    gap: 1rem;
}
.site-nav .mega__product {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    text-transform: none;
    letter-spacing: 0;
    padding: 0;
    color: var(--forest-deep);
    white-space: normal;
}
.site-nav .mega__product::after { display: none !important; }
.site-nav .mega__product:hover { color: var(--forest-deep); }
.site-nav .mega__product:hover .mega__product-thumb img {
    transform: scale(1.06);
}
.site-nav .mega__product:hover .mega__product-thumb::after {
    opacity: 1;
}
.mega__product-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--paper);
    overflow: hidden;
    margin-bottom: .35rem;
    border: 1px solid rgba(96,112,88,.08);
}
.mega__product-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(43,54,28,.2));
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}
.mega__product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.mega__product-placeholder {
    display: block; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 50% 60%, rgba(160,171,151,.3), transparent 70%),
        var(--paper);
}
.mega__product-name {
    font-family: var(--display);
    font-weight: 400;
    font-size: .95rem;
    color: var(--forest-deep);
    transition: color .3s var(--ease);
    line-height: 1.2;
}
.site-nav .mega__product:hover .mega__product-name { color: var(--olive); }
.mega__product-price {
    font-size: .74rem;
    color: var(--olive);
    letter-spacing: .02em;
}

/* Mobile: geen mega, mobile menu krijgt details/summary accordion */
@media (max-width: 980px) {
    .mega { display: none; }
    .dropdown { display: none; }
}

/* =========================================================
   SIMPELE DROPDOWN (voor menu-items met menu sub-items)
   ========================================================= */

.site-nav__item.has-dropdown {
    position: relative; /* dropdown hangt onder de link, niet full-width */
    display: inline-flex;
    align-items: center;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: max-content;
    background: var(--cream);
    color: var(--forest-deep);
    box-shadow: 0 16px 40px -10px rgba(29,38,19,.25);
    border: 1px solid rgba(96,112,88,.15);
    padding: .85rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    z-index: 49;
    pointer-events: none;
    margin-top: 8px;
}
/* Hover-brug zodat je kunt oversteken */
.dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
    background: transparent;
}
.site-nav__item.has-dropdown:hover .dropdown,
.site-nav__item.has-dropdown.is-open .dropdown,
.dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
}

.site-nav .dropdown__link {
    display: block;
    padding: .65rem 1.5rem;
    font-family: var(--display);
    font-weight: 400;
    font-size: 1rem;
    color: var(--forest-deep);
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.site-nav .dropdown__link::after { display: none !important; }
.site-nav .dropdown__link:hover {
    background: var(--paper);
    color: var(--olive);
}
.site-nav .dropdown__link:hover::after { transform: none !important; }

/* Mobile menu sub-cat accordion */
.mobile-menu__group {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(160,171,151,.1);
}
.mobile-menu__group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    cursor: pointer;
    list-style: none;
    color: var(--cream);
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.65rem;
    padding: 1rem 1.75rem;
    transition: color .25s var(--ease);
    letter-spacing: -.005em;
}
.mobile-menu__group summary:hover { background: rgba(160,171,151,.05); }
.mobile-menu__group summary::-webkit-details-marker { display: none; }
.mobile-menu__group summary::marker { content: ''; }
.mobile-menu__group summary svg { transition: transform .3s var(--ease); flex-shrink: 0; }
.mobile-menu__group[open] summary svg { transform: rotate(180deg); }
.mobile-menu__group[open] summary { color: var(--aloe); }

.mobile-menu__sub {
    display: flex;
    flex-direction: column;
    padding: 0 1.75rem 1.25rem;
    background: rgba(0,0,0,.15);
}
.mobile-menu__sub a {
    font-family: var(--body) !important;
    font-size: 1rem !important;
    color: var(--aloe-soft) !important;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(160,171,151,.08);
    letter-spacing: 0;
    text-transform: none;
}
.mobile-menu__sub a:last-child { border-bottom: none; }
.mobile-menu__sub-all {
    font-size: .72rem !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    color: var(--aloe) !important;
    opacity: .9;
    padding-top: .85rem !important;
    font-weight: 500;
}
.site-header__actions { display: flex; align-items: center; gap: .65rem; }
.site-header__icon {
    color: var(--cream);
    transition: color .3s var(--ease), background .3s var(--ease);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.site-header__icon svg { width: 24px; height: 24px; display: block; }
.site-header__icon:hover {
    color: var(--aloe);
    background: rgba(245,241,234,.08);
}

/* Language switcher — twee letters perfect op één lijn */
.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(245,241,234,.22);
    border-radius: 100px;
    font-size: .72rem;
    letter-spacing: .14em;
    overflow: hidden;
    flex-shrink: 0;
    height: 32px;
    line-height: 1;
}
.lang-switch__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(245,241,234,.6);
    padding: 0 .75rem;
    height: 100%;
    transition: all .25s var(--ease);
    font-family: var(--body);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}
.lang-switch__link::after { display: none !important; }
.lang-switch__link:hover { color: var(--cream); }
.lang-switch__link.is-active {
    color: var(--forest-deep);
    background: var(--aloe);
}
.lang-switch__link + .lang-switch__link {
    border-left: 1px solid rgba(245,241,234,.18);
}

.mobile-menu__langs {
    display: flex;
    gap: .65rem;
    margin: 2rem 1.75rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(160,171,151,.15);
    justify-content: flex-start;
}
.mobile-menu__langs a {
    font-family: var(--body);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--aloe);
    padding: .55rem 1.1rem;
    border: 1px solid rgba(160,171,151,.3);
    border-radius: 100px;
    transition: all .25s var(--ease);
}
.mobile-menu__langs a.is-active {
    background: var(--aloe);
    color: var(--forest-deep);
    border-color: var(--aloe);
}
.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    width: 44px;
    height: 44px;
    align-items: center;
    position: relative;
    z-index: 60;
}
.site-header__burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all .3s var(--ease); border-radius: 1px; }
.site-header__burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header__burger.is-active span:nth-child(2) { opacity: 0; }
.site-header__burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — full-screen slide-in */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: var(--forest-deep);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 80px; /* ruimte voor header */
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 0 3rem;
    text-align: left;
}
.mobile-menu nav > a {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.65rem;
    color: var(--cream);
    padding: 1rem 1.75rem;
    border-bottom: 1px solid rgba(160,171,151,.1);
    text-decoration: none;
    letter-spacing: -.005em;
}
.mobile-menu nav > a:hover { color: var(--aloe); background: rgba(160,171,151,.05); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem var(--gutter) 4rem;
    overflow: hidden;
    color: var(--cream);
}
.hero__media { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero__media video,
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Subtiele Ken Burns zoom voor extra dynamiek */
    animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__image {
    position: absolute;
    left: 0;
    top: -8%;
    width: 100%;
    height: 116%; /* extra ruimte voor parallax-verschuiving */
    object-fit: cover;
    object-position: center;
    will-change: transform;
}
.hero__placeholder { width: 100%; height: 100%; }
.hero__placeholder svg { width: 100%; height: 100%; }
/* Generieke parallax-laag — krijgt transform via JS (data-parallax) */
[data-parallax] { will-change: transform; }
.hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(180deg, rgba(29,38,19,.45) 0%, rgba(29,38,19,.25) 35%, rgba(29,38,19,.9) 100%),
        linear-gradient(90deg, rgba(29,38,19,.65) 0%, rgba(29,38,19,.15) 55%, transparent 100%);
}
.hero__content { position: relative; z-index: 3; max-width: 720px; margin: 0 auto; width: 100%; }
.hero__eyebrow { display: inline-block; font-family: var(--script); font-style: normal; font-size: 1.95rem; line-height: 1.3; color: var(--aloe); margin-bottom: 1.4rem; opacity: 0; animation: rise 1s .2s var(--ease) forwards; }
.hero__title { font-family: var(--display); font-weight: 300; font-size: clamp(3rem, 9vw, 6.8rem); line-height: .95; letter-spacing: -.015em; margin-bottom: 2rem; color: var(--cream); }
.hero__title em { font-family: var(--script); font-style: normal; color: var(--aloe); font-weight: 400; font-size: 1.5em; }
.hero__line { display: block; opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.hero__line:nth-child(1) { transition-delay: .3s; }
.hero__line:nth-child(2) { transition-delay: .45s; }
.hero__line.is-visible { opacity: 1; transform: translateY(0); }
.hero__lede { font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.7; color: var(--aloe-soft); max-width: 480px; margin-bottom: 2.5rem; opacity: 0; animation: rise 1s .65s var(--ease) forwards; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; animation: rise 1s .85s var(--ease) forwards; }
.hero__cta .btn--primary { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }
.hero__cta .btn--primary:hover { background: var(--aloe); border-color: var(--aloe); color: var(--forest-deep); }
.hero__cta .btn--ghost { color: var(--cream); border-color: rgba(245,241,234,.4); }
.hero__cta .btn--ghost:hover { background: rgba(245,241,234,.1); border-color: var(--cream); }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; width: 24px; height: 36px; border: 1px solid rgba(245,241,234,.5); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; transition: border-color .3s var(--ease); }
.hero__scroll span { display: block; width: 2px; height: 6px; background: var(--cream); border-radius: 1px; animation: scrollDot 1.8s ease-in-out infinite; }
.hero__scroll:hover { border-color: var(--cream); }

/* Press */
.press {
    background: var(--paper);
    color: var(--forest-deep);
    padding: 2rem var(--gutter);
    border-bottom: 1px solid rgba(96,112,88,.15);
    overflow: hidden;
}
.press__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

/* Botanic Silk logo links */
.press__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: clamp(1rem, 2vw, 2rem);
    border-right: 1px solid rgba(96,112,88,.2);
    position: relative;
    z-index: 3;
    background: var(--paper);
}
.press__brand img {
    height: 38px;
    width: auto;
    display: block;
}

/* Feed met label boven + sliding track */
.press__feed {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 0;
}
.press__label {
    font-family: var(--script);
    font-style: normal;
    font-size: 1.5rem;
    color: var(--olive);
    align-self: flex-start;
    padding-left: 1rem;
}

/* Track wrapper met fade-mask aan de linkerkant zodat logos lijken te verdwijnen */
.press__track-wrap {
    position: relative;
    overflow: hidden;
    /* fade mask: aan de linkerkant transparant (waar 't logo zit), dan zichtbaar */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 96%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 96%,
        transparent 100%
    );
}

.press__track {
    display: flex;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
    width: max-content;
    animation: press-slide 30s linear infinite;
}
.press:hover .press__track {
    animation-play-state: paused;
}

@keyframes press-slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* -50% omdat we de items hebben verdubbeld voor naadloze loop */
}

.press__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 38px;
    opacity: .55;
    transition: opacity .3s var(--ease);
}
.press__logo:hover { opacity: 1; }
.press__logo img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter .3s var(--ease);
}
.press__logo:hover img { filter: grayscale(0); }
.press__logo span {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--forest-deep);
    white-space: nowrap;
}

@media (max-width: 720px) {
    .press__inner { grid-template-columns: 1fr; gap: 1rem; }
    .press__brand {
        border-right: none;
        border-bottom: 1px solid rgba(96,112,88,.15);
        padding-right: 0;
        padding-bottom: 1rem;
        justify-content: center;
    }
    .press__label { align-self: center; padding-left: 0; }
}

/* Subscriptions */
.section--subscriptions { background: var(--paper); }
.subs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.sub { position: relative; background: var(--cream); border: 1px solid rgba(96,112,88,.15); padding: 0 0 2rem; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); transition-delay: calc(var(--i) * .08s); }
.sub:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(29,38,19,.25); }
.sub--popular { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.sub--popular .sub__sub { color: var(--aloe); }
.sub--popular .sub__name { color: var(--cream); }
.sub--popular .sub__desc, .sub--popular .sub__features { color: var(--aloe-soft); }
.sub--popular .sub__per { color: var(--aloe); }
.sub--popular .btn--primary { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }
.sub--popular .btn--primary:hover { background: var(--aloe); border-color: var(--aloe); }
.sub__badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--olive); color: var(--cream); padding: .45rem 1.1rem; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; z-index: 2; }
.sub__visual { aspect-ratio: 5 / 4; background: radial-gradient(circle at 50% 60%, rgba(160,171,151,.25), transparent 70%), linear-gradient(180deg, rgba(96,112,88,.08), rgba(96,112,88,.18)); display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid rgba(96,112,88,.1); }
.sub--popular .sub__visual { background: radial-gradient(circle at 50% 60%, rgba(160,171,151,.35), transparent 70%), linear-gradient(180deg, rgba(96,112,88,.15), rgba(29,38,19,.4)); border-bottom-color: rgba(160,171,151,.15); }
.sub__visual svg { width: 60%; height: 80%; }
.sub__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.sub:hover .sub__image {
    transform: scale(1.04);
}
.sub__body { padding: 2rem 1.75rem 0; display: flex; flex-direction: column; flex: 1; }
.sub__sub { font-family: var(--script); font-style: normal; font-size: 1.7rem; color: var(--olive); line-height: 1.15; margin-bottom: .15rem; }
.sub__name { font-family: var(--display); font-weight: 400; font-size: 2.2rem; color: var(--forest-deep); line-height: 1; margin-bottom: 1rem; }
.sub__desc { font-size: .92rem; line-height: 1.7; color: var(--olive); margin-bottom: 1.5rem; }
.sub__features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; font-size: .88rem; color: var(--olive); }
.sub__features li { display: flex; align-items: center; gap: .65rem; }
.sub__features svg { flex-shrink: 0; color: var(--aloe); }
.sub__price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.5rem; margin-top: auto; }
.sub__amount { font-family: var(--display); font-weight: 400; font-size: 3rem; line-height: 1; color: var(--forest-deep); }
.sub--popular .sub__amount { color: var(--cream); }
.sub__per { font-size: .8rem; color: var(--olive); letter-spacing: .04em; }

/* Bouquets */
.section--bouquets { background: var(--cream); }
.bouquets { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.bouquet { display: block; text-decoration: none; transition: transform .5s var(--ease); transition-delay: calc(var(--i) * .06s); max-width: 360px; }
.bouquet:hover { transform: translateY(-4px); }
.bouquet__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--forest-deep);
    margin-bottom: 1rem;
    border-radius: var(--radius);
}
/* Subtle gradient overlay voor leesbaarheid van naam-slide */
.bouquet__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29,38,19,0.55) 0%, rgba(29,38,19,0) 45%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
    z-index: 1;
}
.bouquet:hover .bouquet__media::after { opacity: 1; }
.bouquet__placeholder,
.bouquet__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.16,1,.3,1);
    display: block;
}

/* ───────────────────────────────────────────────────────
   Foto volledig zichtbaar (contain) op de pagina-achtergrond.
   Geen blurred zelf-bg — clean editorial witruimte.
   ─────────────────────────────────────────────────── */
.bouquet__media--photo {
    background: var(--cream);
}
.bouquet__media--photo .bouquet__image {
    object-fit: contain;
    object-position: center;
}
.bouquet:hover .bouquet__placeholder,
.bouquet:hover .bouquet__image {
    transform: scale(1.06);
}
/* Slide-in product naam over de foto bij hover */
.bouquet__overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .4s var(--ease);
    pointer-events: none;
}
.bouquet:hover .bouquet__overlay {
    transform: translateY(0);
    opacity: 1;
}
.bouquet__overlay-text {
    color: var(--cream);
    font-family: var(--display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: .01em;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(29,38,19,0.5);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.bouquet__overlay-arrow {
    display: inline-block;
    transition: transform .35s var(--ease);
}
.bouquet:hover .bouquet__overlay-arrow {
    transform: translateX(4px);
}
/* Container voor 1+ labels — stapelt netjes onder elkaar */
.bouquet__tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
}
.bouquet__tags .bouquet__tag {
    position: static; /* binnen wrapper geen eigen positionering */
    top: auto; left: auto;
}
.bouquet__tag { position: absolute; top: 1rem; left: 1rem; z-index: 3; padding: .35rem .8rem; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; background: var(--cream); color: var(--forest-deep); }
.bouquet__tag--new { background: var(--aloe); color: var(--forest-deep); }
.bouquet__tag--popular { background: var(--olive); color: var(--cream); }
.bouquet__tag--sale { background: #b85e4a; color: var(--cream); }
.bouquet__tag--limited { background: var(--forest-deep); color: var(--cream); }
.bouquet__tag--subscription { background: var(--forest); color: var(--cream); }
/* Card variant: alleen-via-abo */
.bouquet--subscription .bouquet__price--sub {
    font-family: var(--display, 'Cormorant Garamond', serif);
    font-style: italic;
    color: var(--olive);
    font-size: .95rem;
    letter-spacing: .02em;
}
.bouquets__empty,
.subs__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    background: var(--cream);
    border: 1px dashed rgba(96,112,88,.3);
    color: var(--olive);
    font-style: italic;
    font-family: var(--display);
    font-size: 1.15rem;
}
.bouquet__info { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.bouquet__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
    transition: color .35s var(--ease);
}
.bouquet:hover .bouquet__name { color: var(--olive); }
.bouquet__price { font-size: .82rem; color: var(--olive); letter-spacing: .04em; }

/* Rental */
.section--rental { max-width: none; padding: 0; background: var(--forest-deep); color: var(--cream); }
.rental { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; max-width: var(--container); margin: 0 auto; }
.rental__visual { position: relative; overflow: hidden; }
.rental__visual svg { width: 100%; height: 100%; }
.rental__content { padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.rental__content .eyebrow { color: var(--aloe); }
.rental__content .section__title { color: var(--cream); }
.rental__content .section__title em { color: var(--aloe); }
.rental__lede { font-size: 1rem; line-height: 1.8; color: var(--aloe-soft); margin-bottom: 2.25rem; max-width: 460px; }
.rental__list { list-style: none; margin-bottom: 2.5rem; border-top: 1px solid rgba(160,171,151,.2); }
.rental__list li { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(160,171,151,.2); font-size: .92rem; }
.rental__list strong { color: var(--cream); font-weight: 400; font-family: var(--display); font-size: 1.15rem; }
.rental__list span { color: var(--aloe); letter-spacing: .03em; }
.rental__content .btn--primary { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); align-self: flex-start; }
.rental__content .btn--primary:hover { background: var(--aloe); border-color: var(--aloe); }

/* About */
.section--about { background: var(--paper); }
.about { max-width: 1100px; margin: 0 auto; }
.about .section__title { margin-bottom: 4rem; }
.about .section__title span { font-family: var(--script); font-style: normal; color: var(--olive); font-size: 1.45em; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.5rem; }
.pillar { text-align: center; padding: 1rem; }
.pillar__icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; border: 1px solid var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--olive); transition: all .4s var(--ease); }
.pillar:hover .pillar__icon { background: var(--olive); color: var(--cream); transform: rotate(8deg) scale(1.05); }
.pillar h3 { font-family: var(--display); font-weight: 400; font-size: 1.6rem; color: var(--forest-deep); margin-bottom: .75rem; }
.pillar p { font-size: .92rem; line-height: 1.75; color: var(--olive); max-width: 320px; margin: 0 auto; }

/* FAQ */
.section--faq { background: var(--cream); }
.faq { max-width: 880px; margin: 0 auto; }
.faq__list { border-top: 1px solid rgba(96,112,88,.2); }
.faq__item { border-bottom: 1px solid rgba(96,112,88,.2); }
.faq__item summary {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.75rem 0; cursor: pointer; list-style: none;
    font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400;
    color: var(--forest-deep); transition: color .3s var(--ease);
    user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ''; }
.faq__item summary:hover { color: var(--olive); }
.faq__chevron { color: var(--olive); transition: transform .35s var(--ease); flex-shrink: 0; }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }

/* Smooth height animatie via grid-template-rows */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s var(--ease);
    overflow: hidden;
}
.faq__item[open] .faq__answer {
    grid-template-rows: 1fr;
}
.faq__answer > p {
    min-height: 0;
    color: var(--olive);
    line-height: 1.8;
    font-size: .96rem;
    padding-bottom: 1.75rem;
    max-width: 720px;
    margin: 0;
    /* Voorkomt content cut-off tijdens animatie */
    overflow: hidden;
}

/* Contact */
.section--contact { background: var(--forest-deep); color: var(--cream); max-width: none; }
.section--contact > .contact { max-width: var(--container); margin: 0 auto; }
.contact { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.contact__panel--newsletter .eyebrow { color: var(--aloe); }
.contact__panel--newsletter .section__title { color: var(--cream); }
.contact__panel--newsletter .section__title em { color: var(--aloe); }
.contact__panel--newsletter p { color: var(--aloe-soft); margin-bottom: 2rem; max-width: 460px; line-height: 1.75; }
.newsletter { display: flex; flex-direction: column; gap: .85rem; max-width: 480px; }
.newsletter__row { display: flex; gap: .6rem; }
.newsletter input[type="email"] { flex: 1; background: transparent; border: 1px solid rgba(160,171,151,.4); color: var(--cream); padding: 1rem 1.25rem; font-family: var(--body); font-size: .92rem; transition: border-color .3s var(--ease); }
.newsletter input[type="email"]::placeholder { color: rgba(160,171,151,.6); letter-spacing: .04em; }
.newsletter input[type="email"]:focus { outline: none; border-color: var(--aloe); }
.newsletter .btn--primary { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }
.newsletter .btn--primary:hover { background: var(--aloe); border-color: var(--aloe); }
.newsletter .btn--primary:disabled { opacity: .5; cursor: wait; }

.newsletter__consent { display: flex; gap: .55rem; align-items: flex-start; font-size: .78rem; color: var(--aloe-soft); line-height: 1.55; cursor: pointer; }
.newsletter__consent input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--aloe); margin-top: 2px; flex-shrink: 0; }
.newsletter__consent a { color: var(--aloe); border-bottom: 1px solid currentColor; }
.newsletter__consent a:hover { color: var(--cream); }

.newsletter__status { font-size: .85rem; min-height: 1.2em; margin-top: .25rem; }
.newsletter__status.is-success { color: var(--aloe); }
.newsletter__status.is-error { color: #d97777; }
.contact__panel--info { padding-left: 2rem; border-left: 1px solid rgba(160,171,151,.2); }
.contact__panel--info h3 { font-family: var(--display); font-weight: 400; font-size: 1.8rem; color: var(--cream); margin-bottom: 1rem; }
.contact__panel--info p { color: var(--aloe-soft); margin-bottom: 1.75rem; line-height: 1.75; }
.contact__links { list-style: none; }
.contact__links li { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(160,171,151,.15); font-size: .9rem; }
.contact__links li:last-child { border-bottom: none; }
.contact__links span:first-child { color: var(--aloe); letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; padding-top: .15rem; }
.contact__links a { color: var(--cream); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.contact__links a:hover { border-bottom-color: var(--aloe); }

/* Footer */
.site-footer { background: #16200d; color: var(--aloe-soft); padding: 4rem var(--gutter) 1.5rem; overflow-wrap: break-word; }
.site-footer__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(160,171,151,.15); }
.site-footer__brand img { height: 40px; margin-bottom: 1rem; }
.site-footer__tagline { font-family: var(--script); font-style: normal; font-size: 2rem; line-height: 1.3; color: var(--aloe); }
.site-footer__columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.site-footer__columns h4 { font-family: var(--display); font-weight: 400; font-size: 1.05rem; color: var(--cream); margin-bottom: 1.25rem; letter-spacing: .04em; }
.site-footer__columns div { display: flex; flex-direction: column; gap: .65rem; }
.site-footer__columns a { font-size: .85rem; color: var(--aloe-soft); transition: color .3s var(--ease); }
.site-footer__columns a:hover { color: var(--cream); }
.site-footer__bottom { max-width: var(--container); margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .76rem; letter-spacing: .04em; color: rgba(160,171,151,.5); }
.site-footer__bottom a { color: rgba(160,171,151,.7); margin-left: 1.5rem; }
.site-footer__bottom a:hover { color: var(--cream); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   LEGAL PAGES (Cookiebeleid, Privacy, Voorwaarden)
   ========================================================= */

.page-legal { background: var(--cream); }

.legal {
    padding: clamp(8rem, 14vw, 12rem) var(--gutter) clamp(4rem, 8vw, 6rem);
    max-width: 880px;
    margin: 0 auto;
}

.legal__back {
    display: inline-block;
    font-size: .82rem;
    color: var(--olive);
    margin-bottom: 2rem;
    letter-spacing: .04em;
    transition: color .25s var(--ease);
}
.legal__back:hover { color: var(--forest-deep); }

.legal__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--forest-deep);
    line-height: 1.05;
    margin: .5rem 0 1rem;
    letter-spacing: -.01em;
}

.legal__updated {
    color: var(--olive);
    font-size: .82rem;
    letter-spacing: .04em;
    margin-bottom: 3rem;
}

.legal__content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--forest-deep);
}
.legal__content p { margin-bottom: 1.5rem; color: var(--forest-deep); }
.legal__content h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--forest-deep);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(96,112,88,.15);
}
.legal__content a {
    color: var(--olive);
    border-bottom: 1px solid var(--olive);
    transition: opacity .25s var(--ease);
}
.legal__content a:hover { opacity: .7; }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
    font-size: .92rem;
    border: 1px solid rgba(96,112,88,.2);
}
.legal-table th,
.legal-table td {
    text-align: left;
    padding: .9rem 1.1rem;
    vertical-align: top;
    border-bottom: 1px solid rgba(96,112,88,.15);
}
.legal-table th {
    background: var(--paper);
    font-family: var(--body);
    font-weight: 500;
    color: var(--olive);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.legal-table tr:last-child td { border-bottom: none; }

.legal__cta {
    margin: 2.5rem 0 !important;
}
.legal__cta .btn {
    text-decoration: none;
    border: none;
}

@media (max-width: 600px) {
    .legal-table { font-size: .82rem; }
    .legal-table th, .legal-table td { padding: .65rem .75rem; }
}

/* =========================================================
   BLOG (overzicht + post)
   ========================================================= */

.page-blog, .page-blog-post { background: var(--cream); }

.blog {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.blog__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.blog__head {
    text-align: center;
    margin-bottom: 3rem;
}
.blog__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: var(--forest-deep);
    margin: .5rem 0 1rem;
    letter-spacing: -.01em;
}
.blog__lede {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--olive);
}

.blog__filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(96,112,88,.12);
}
.blog__filter {
    padding: .5rem 1.1rem;
    background: transparent;
    border: 1px solid rgba(96,112,88,.3);
    color: var(--olive);
    font-family: var(--body);
    font-size: .8rem;
    letter-spacing: .04em;
    border-radius: 100px;
    transition: all .25s var(--ease);
}
.blog__filter:hover {
    border-color: var(--olive);
    color: var(--forest-deep);
}
.blog__filter.is-active {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
    color: var(--cream);
}

.blog__empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--olive);
    font-style: italic;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2.5rem 2rem;
}

.blog-card {
    position: relative;
    animation: bs-fade-in .6s var(--ease) both;
    animation-delay: calc(var(--i, 0) * 60ms);
    background: #f1f0ec;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(29,38,19,.05);
    transition: box-shadow .3s var(--ease);
}
.blog-card:hover { box-shadow: 0 16px 36px rgba(29,38,19,.12); }
@keyframes bs-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.blog-card__link {
    display: block;
    color: var(--forest-deep);
}
.blog-card__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--paper);
    margin: 0;
}
.blog-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}
.blog-card__placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--paper), rgba(160,171,151,.2));
}
.blog-card__body {
    padding: 1.4rem 1.6rem 1.7rem;
}
.blog-card__cat {
    display: inline-block;
    font-size: .68rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: .5rem;
}
.blog-card__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 .65rem;
    color: var(--forest-deep);
    transition: color .25s var(--ease);
}
.blog-card:hover .blog-card__title { color: var(--olive); }

.blog-card__excerpt {
    color: var(--olive);
    line-height: 1.6;
    margin: 0 0 .85rem;
    font-size: .92rem;
    text-align: justify;
}
.blog-card__meta {
    font-size: .78rem;
    color: var(--olive);
    display: flex;
    gap: .25rem;
}
.blog-card__dot { opacity: .5; }

.blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1.1rem;
    padding: .7rem 1.4rem;
    border: 1px solid rgba(96,112,88,.45);
    border-radius: 2px;
    font-size: .78rem;
    letter-spacing: .06em;
    font-weight: 500;
    color: var(--forest-deep);
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.blog-card__more svg { transition: transform .25s var(--ease); }
.blog-card:hover .blog-card__more {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
    color: var(--cream);
}
.blog-card:hover .blog-card__more svg { transform: translateX(3px); }

/* Uitgelichte post (groot, beeld + tekst naast elkaar) */
.blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
    color: var(--forest-deep);
}
.blog-featured__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 14px;
    background: var(--paper);
    box-shadow: 0 10px 30px rgba(29,38,19,.10);
}
.blog-featured__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.blog-featured:hover .blog-featured__media img { transform: scale(1.04); }
.blog-featured__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 1.1;
    margin: .5rem 0 .85rem;
    color: var(--forest-deep);
    transition: color .25s var(--ease);
}
.blog-featured:hover .blog-featured__title { color: var(--olive); }
.blog-featured__excerpt {
    color: var(--olive);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 .5rem;
    max-width: 46ch;
}
.blog-featured__more {
    display: inline-block;
    margin-top: 1rem;
    font-size: .85rem;
    letter-spacing: .04em;
    font-weight: 500;
    color: var(--forest-deep);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
@media (max-width: 760px) {
    .blog-featured { grid-template-columns: 1fr; gap: 1.25rem; }
}


/* =========================================================
   BLOG POST - simpel: titel, datum, tekst
   ========================================================= */

.page-blog-post { background: var(--cream); }

.blog-post {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.blog-post__inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post__back {
    display: inline-block;
    font-size: .85rem;
    color: var(--olive);
    margin-bottom: 3rem;
    letter-spacing: .04em;
    transition: color .25s var(--ease);
}
.blog-post__back:hover { color: var(--forest-deep); }

.blog-post__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: var(--forest-deep);
    margin: 0 0 1rem;
    letter-spacing: -.01em;
}

.blog-post__date {
    font-size: .85rem;
    color: var(--olive);
    letter-spacing: .04em;
    margin: 0;
}

/* Kop (kruimels + titel + datum), gecentreerde kolom */
.blog-post__head {
    max-width: 780px;
    margin: 0 auto clamp(2rem, 4vw, 2.5rem);
}
.blog-post__head .category__crumbs { margin-bottom: 1.25rem; }

/* Hero-foto — subtiel, even breed als de tekstkolom */
.blog-post__hero {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: var(--paper);
    box-shadow: 0 4px 16px rgba(29,38,19,.07);
}
.blog-post__hero img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.blog-post__back--bottom {
    margin: 3rem 0 0;
}

/* Recente artikelen onderaan */
.blog-post__related {
    max-width: 1280px;
    margin: clamp(4rem, 8vw, 6rem) auto 0;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgba(96,112,88,.15);
}
.blog-post__related-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--forest-deep);
    text-align: center;
    margin: 0 0 2rem;
}


/* PROSE — rendert markdown HTML mooi */
.prose {
    font-family: var(--body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--forest-deep);
}
.prose h1, .prose h2, .prose h3 {
    font-family: var(--display);
    font-weight: 400;
    color: var(--forest-deep);
    line-height: 1.2;
    letter-spacing: -.005em;
}
.prose h1 { font-size: 2.2rem; margin: 2.5rem 0 1rem; }
.prose h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.35rem; margin: 2rem 0 .75rem; }
.prose p { margin: 0 0 1.25rem; }
.prose a {
    color: var(--forest-deep);
    border-bottom: 1px solid var(--olive);
    padding-bottom: 1px;
    transition: all .25s var(--ease);
}
.prose a:hover {
    color: var(--olive);
    border-color: var(--forest-deep);
}
.prose strong { font-weight: 500; color: var(--forest-deep); }
.prose em { font-style: italic; }
.prose ul, .prose ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}
.prose ul li, .prose ol li {
    margin-bottom: .5rem;
    line-height: 1.7;
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.5rem; }
.prose ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--olive);
    font-weight: bold;
}
.prose blockquote {
    margin: 2rem 0;
    padding: .5rem 0 .5rem 1.5rem;
    border-left: 3px solid var(--olive);
    font-family: var(--display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--forest-deep);
    line-height: 1.55;
}
.prose hr {
    border: none;
    border-top: 1px solid rgba(96,112,88,.15);
    margin: 3rem auto;
    max-width: 80px;
}
.prose code {
    font-family: 'Menlo', monospace;
    font-size: .9em;
    background: var(--paper);
    padding: .15em .4em;
    border-radius: 3px;
    color: var(--forest-deep);
}
.prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}
.prose .prose__figure {
    margin: 2.5rem -1rem;
}
.prose .prose__figure img {
    width: 100%;
    margin: 0;
}
.prose .prose__figure figcaption {
    font-size: .82rem;
    color: var(--olive);
    text-align: center;
    margin-top: .65rem;
    font-style: italic;
}

@media (max-width: 720px) {
    .blog-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .prose .prose__figure { margin: 2rem 0; }
}

.page-contact { background: var(--cream); }

.contact-page {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.contact-page__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.contact-page__head {
    text-align: center;
    margin-bottom: 4rem;
}
.contact-page__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: var(--forest-deep);
    margin: .5rem 0 1rem;
    letter-spacing: -.01em;
}
.contact-page__lede {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--olive);
}

.contact-page__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

/* Info kolom */
.contact-page__info {
    padding: 0;
}
.contact-page__info-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin: 0 0 1rem;
    line-height: 1.2;
}
.contact-page__info > p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--olive);
    margin: 0 0 2rem;
}
.contact-page__list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-page__list li {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(96,112,88,.12);
}
.contact-page__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-page__label {
    font-family: var(--body);
    font-size: .68rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--olive);
}
.contact-page__list a,
.contact-page__list span:not(.contact-page__label) {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--forest-deep);
    transition: color .25s var(--ease);
}
.contact-page__list a:hover { color: var(--olive); }

.contact-page__quote {
    border-left: 2px solid var(--olive);
    padding: .5rem 0 .5rem 1.25rem;
    margin-top: 2rem;
}
.contact-page__quote p {
    font-family: var(--display);
    font-style: italic;
    font-size: 1rem;
    color: var(--forest-deep);
    line-height: 1.6;
    margin: 0 0 .5rem;
}
.contact-page__quote span {
    font-size: .76rem;
    letter-spacing: .14em;
    color: var(--olive);
}

/* Form kolom */
.contact-page__form-wrap {
    background: var(--paper);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border: 1px solid rgba(96,112,88,.1);
}
.contact-page__form-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin: 0 0 1.75rem;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.contact-form label > span {
    font-family: var(--body);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    font-family: var(--body);
    font-size: .95rem;
    padding: .75rem .9rem;
    border: 1px solid rgba(96,112,88,.25);
    background: var(--cream);
    color: var(--forest-deep);
    transition: border-color .25s var(--ease);
    resize: vertical;
    min-height: 44px;
    line-height: 1.5;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--olive);
}
.contact-form textarea {
    min-height: 140px;
    font-family: var(--body);
    line-height: 1.6;
}

.contact-form__small {
    font-size: .78rem;
    color: var(--olive);
    line-height: 1.55;
    margin: -.25rem 0 .5rem;
}

.contact-page__error {
    padding: 1rem 1.25rem;
    background: rgba(184,94,74,.1);
    border-left: 3px solid #b85e4a;
    color: #8a3e2b;
    font-size: .9rem;
    margin-bottom: 1.5rem;
}

.contact-page__success {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--forest-deep);
}
.contact-page__success svg {
    color: var(--olive);
    margin: 0 auto 1.25rem;
    display: block;
    animation: bs-pop .5s var(--ease);
}
@keyframes bs-pop {
    from { opacity: 0; transform: scale(.7); }
    to   { opacity: 1; transform: scale(1); }
}
.contact-page__success h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--forest-deep);
    margin: 0 0 .75rem;
}
.contact-page__success p {
    color: var(--olive);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto 1.75rem;
    font-size: .95rem;
}

@media (max-width: 860px) {
    .contact-page__layout {
        grid-template-columns: 1fr;
    }
    .contact-form__row {
        grid-template-columns: 1fr;
    }
    .contact-page__info {
        order: 2;
    }
}

/* =========================================================
   CATEGORY PAGE
   ========================================================= */

.page-category { background: var(--cream); }

.category {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.category__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.category__crumbs,
.product__crumbs {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--olive);
    margin-bottom: 2rem;
    letter-spacing: .04em;
}
.category__crumbs a,
.product__crumbs a {
    color: var(--olive);
    transition: color .25s var(--ease);
}
.category__crumbs a:hover,
.product__crumbs a:hover { color: var(--forest-deep); }
.category__crumbs span[aria-hidden],
.product__crumbs span[aria-hidden] { opacity: .5; }

.category__head {
    text-align: center;
    margin-bottom: 3rem;
}
.category__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: var(--forest-deep);
    margin: .5rem 0 1rem;
    letter-spacing: -.01em;
}
.category__lede {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--olive);
}

/* Filter/sort bar */
.category__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(96,112,88,.15);
    border-bottom: 1px solid rgba(96,112,88,.15);
    margin-bottom: 2rem;
}

.category__filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.category__filter {
    padding: .5rem 1.1rem;
    background: transparent;
    border: 1px solid rgba(96,112,88,.3);
    color: var(--olive);
    font-family: var(--body);
    font-size: .8rem;
    letter-spacing: .04em;
    border-radius: 100px;
    transition: all .25s var(--ease);
}
.category__filter:hover {
    border-color: var(--olive);
    color: var(--forest-deep);
}
.category__filter.is-active {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
    color: var(--cream);
}

.category__sort {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .82rem;
    color: var(--olive);
}
.category__sort label {
    letter-spacing: .04em;
}
.category__sort select {
    font-family: var(--body);
    font-size: .85rem;
    padding: .45rem .75rem;
    border: 1px solid rgba(96,112,88,.3);
    background: var(--cream);
    color: var(--forest-deep);
    cursor: pointer;
    transition: border-color .25s var(--ease);
}
.category__sort select:hover,
.category__sort select:focus {
    border-color: var(--olive);
    outline: none;
}

.category__count {
    font-size: .82rem;
    color: var(--olive);
    margin-bottom: 1.5rem;
    letter-spacing: .04em;
}

.category__empty {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--paper);
    border: 1px dashed rgba(96,112,88,.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.category__empty p {
    color: var(--olive);
    font-family: var(--display);
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

/* Volledige grid: 3-4 kolommen op desktop ipv max 4 */
.bouquets--full {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.bouquets--full .bouquet { max-width: none; }

/* ───────────────────────────────────────────────────
   Lifestyle tile — brede editorial foto tussen producten
   2 kolommen breed, zelfde hoogte als 1 product card
   ─────────────────────────────────────────────────── */
.lifestyle-tile {
    grid-column: span 2;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    /* Match hoogte van een product card (media + info) door aspect-ratio */
    aspect-ratio: 16 / 13;
    background: var(--forest-deep);
}
.lifestyle-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.6s cubic-bezier(.16, 1, .3, 1);
}
.lifestyle-tile:hover .lifestyle-tile__image {
    transform: scale(1.03);
}
.lifestyle-tile__caption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.25rem;
    color: var(--cream);
    font-family: var(--display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    letter-spacing: .02em;
    text-shadow: 0 2px 12px rgba(29, 38, 19, .6);
    z-index: 2;
    max-width: 80%;
    line-height: 1.3;
}
/* Subtiele donker-gradient onder voor leesbaarheid van caption */
.lifestyle-tile::after {
    content: '';
    position: absolute;
    inset: 50% 0 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(29, 38, 19, .55) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Mobiel: lifestyle tile vol-breed, niet meer 2 kolommen */
@media (max-width: 640px) {
    .lifestyle-tile {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }
}

/* Sold-out overlay op kaart */
.bouquet__sold-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(43, 54, 28, .9);
    color: var(--cream);
    padding: .35rem 1rem;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 3;
}

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

.page-product { background: var(--cream); }

.product {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.product__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.product__back {
    display: inline-block;
    font-size: .82rem;
    color: var(--olive);
    margin-bottom: 2rem;
    letter-spacing: .04em;
    transition: color .25s var(--ease);
}
.product__back:hover { color: var(--forest-deep); }

.product__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: 6rem;
}

/* LEFT: Gallery */
.product__main-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--paper);
    overflow: hidden;
    margin-bottom: .65rem;
    border: 1px solid rgba(96,112,88,.1);
}
.product__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s var(--ease);
}
/* Foto contain op page background — clean editorial */
.product__main-image--photo {
    background: var(--cream);
}
.product__main-image--photo img {
    object-fit: contain;
    object-position: center;
}
.product__main-image--placeholder {
    background: linear-gradient(180deg, #3a4a26 0%, #1d2613 100%);
}
.product__main-image--placeholder svg {
    width: 100%;
    height: 100%;
}

.product__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .35rem .8rem;
    font-size: .62rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    background: var(--cream);
    color: var(--forest-deep);
    z-index: 2;
}
.product__tag--new     { background: var(--aloe);       color: var(--forest-deep); }
.product__tag--popular { background: var(--olive);      color: var(--cream); }
.product__tag--sale    { background: #b85e4a;           color: var(--cream); }
.product__tag--limited { background: var(--forest-deep); color: var(--cream); }

.product__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: .5rem;
}
.product__thumb {
    aspect-ratio: 1;
    padding: 0;
    background: var(--paper);
    border: 1px solid rgba(96,112,88,.2);
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s var(--ease);
}
.product__thumb:hover { border-color: var(--olive); }
.product__thumb.is-active {
    border-color: var(--forest-deep);
    border-width: 2px;
}
.product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT: Info */
.product__eyebrow {
    font-family: var(--body);
    font-size: .76rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--olive);
    display: block;
    margin-bottom: .75rem;
}
.product__eyebrow--link {
    transition: color .25s var(--ease);
}
.product__eyebrow--link:hover { color: var(--forest-deep); }

.product__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--forest-deep);
    margin: 0 0 1rem;
    letter-spacing: -.01em;
}

.product__short {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--olive);
    margin-bottom: 2rem;
    max-width: 480px;
}

.product__price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(96,112,88,.15);
}
.product__price-main {
    font-family: var(--display);
    font-weight: 400;
    font-size: 2rem;
    color: var(--forest-deep);
    line-height: 1;
}
/* Aanbieding: doorgestreepte oude prijs + sale-prijs */
.product__price-old {
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--olive);
    text-decoration: line-through;
    margin-right: .55rem;
    opacity: .75;
}
.product__price-main--sale { color: #b85e4a; }
/* Sale-prijzen in productkaarten (home + categorie) */
.bouquet__price-old {
    text-decoration: line-through;
    color: var(--olive);
    opacity: .7;
    margin-right: .4rem;
}
.bouquet__price-sale { color: #b85e4a; font-weight: 500; }
.product__stock {
    font-family: var(--body);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .25rem .6rem;
}
.product__stock--out_of_stock {
    background: rgba(184,94,74,.15);
    color: #b85e4a;
}
.product__stock--preorder {
    background: rgba(96,112,88,.15);
    color: var(--olive);
}

.product__actions {
    display: flex;
    gap: .65rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}
.product__qty {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--forest-deep);
    background: var(--cream);
    flex-shrink: 0;
}
.product__qty-btn {
    width: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--forest-deep);
    font-size: 1.1rem;
    font-family: var(--body);
    transition: background .2s var(--ease);
}
.product__qty-btn:hover { background: var(--paper); }
.product__qty-input {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(96,112,88,.2);
    border-right: 1px solid rgba(96,112,88,.2);
    background: transparent;
    color: var(--forest-deep);
    font-family: var(--body);
    font-size: .95rem;
    -moz-appearance: textfield;
    appearance: textfield;
}
.product__qty-input::-webkit-outer-spin-button,
.product__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product__qty-input:focus { outline: none; }

.product__actions .btn--block { flex: 1; }

/* Abonnement hint */
.product__sub-hint {
    background: var(--paper);
    border: 1px solid rgba(96,112,88,.15);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
}
.product__sub-hint p {
    margin: 0 0 .25rem;
    font-size: .88rem;
    color: var(--forest-deep);
    line-height: 1.5;
}
.product__sub-hint p strong {
    font-family: var(--display);
    font-weight: 500;
    color: var(--forest-deep);
    margin-right: .25rem;
}
.product__sub-link {
    display: inline-block;
    color: var(--olive);
    font-size: .82rem;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--olive);
    padding-bottom: 1px;
    transition: opacity .25s var(--ease);
}
.product__sub-link:hover { opacity: .7; }

/* USP's */
.product__usps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.product__usps li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .85rem;
    color: var(--olive);
    line-height: 1.5;
}
.product__usps li svg {
    color: var(--olive);
    flex-shrink: 0;
}

/* Beschrijving / accordion */
.product__details {
    border-top: 1px solid rgba(96,112,88,.15);
}
.product__details:last-child {
    border-bottom: 1px solid rgba(96,112,88,.15);
}
.product__details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--forest-deep);
    user-select: none;
}
.product__details summary::-webkit-details-marker { display: none; }
.product__details summary::marker { content: ''; }
.product__chevron {
    color: var(--olive);
    transition: transform .35s var(--ease);
    flex-shrink: 0;
}
.product__details[open] .product__chevron { transform: rotate(180deg); }

.product__details-body {
    padding: 0 0 1rem;
}
.product__details-body p {
    color: var(--olive);
    line-height: 1.7;
    font-size: .92rem;
    margin: 0;
}

/* Gerelateerd */
.product__related {
    padding-top: 4rem;
    border-top: 1px solid rgba(96,112,88,.15);
}
.product__related .section__title {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
    .product__layout {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   BUILDER (Subscription configurator)
   ========================================================= */

.page-builder { background: var(--white); }

.builder {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.builder__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.builder__back {
    display: inline-block;
    font-size: .82rem;
    color: var(--olive);
    margin-bottom: 2rem;
    letter-spacing: .04em;
    transition: color .25s var(--ease);
}
.builder__back:hover { color: var(--forest-deep); }

.builder__head {
    text-align: center;
    margin-bottom: 3rem;
}

/* 2-koloms layout */
.builder__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.builder__config {
    max-width: 680px;
}

/* Preview rechts */
.builder__preview {
    position: sticky;
    top: 6rem;
    align-self: start;
}
.builder__preview-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(96,112,88,.1);
    text-align: center;
}
.builder__preview-image {
    /* Geen vaste aspect-ratio — foto bepaalt zelf de hoogte */
    overflow: hidden;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}
.builder__preview-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: center;
    display: block;
}
/* Als er nog geen product gekozen is en SVG fallback toont,
   houden we de oude vaste ratio aan voor visuele balans */
.builder__preview-image svg {
    width: 100%;
    aspect-ratio: 5 / 6;
    display: block;
}
.builder__preview-name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin: 0 0 .35rem;
    line-height: 1.2;
}
.builder__preview-sub {
    font-size: .85rem;
    color: var(--olive);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .builder__layout {
        grid-template-columns: 1fr;
    }
    .builder__config {
        max-width: 100%;
    }
    .builder__preview {
        order: -1;
        position: relative;
        top: auto;
        max-width: 320px;
        margin: 0 auto 1rem;
    }
    .builder__preview-image { aspect-ratio: 4 / 3; }
}

.builder__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    color: var(--forest-deep);
    margin: .5rem 0 0;
    letter-spacing: -.01em;
}

.builder__group {
    margin-bottom: 2.5rem;
}
.builder__step-title {
    font-family: var(--display);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin: 0 0 1rem;
    line-height: 1.2;
}

/* Category pills */
.builder__pills {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.builder-pill {
    flex: 0 0 auto;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(96,112,88,.2);
    background: var(--cream);
    color: var(--forest-deep);
    font-family: var(--body);
    font-size: .9rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s var(--ease);
    min-width: 140px;
}
.builder-pill:hover {
    border-color: var(--olive);
    background: var(--cream);
}
.builder-pill.is-active {
    border: 1.5px solid var(--forest-deep);
    background: var(--cream);
    color: var(--forest-deep);
    font-weight: 500;
}

/* Size grid */
.builder__size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .75rem;
}
.builder-size {
    padding: 1.25rem 1rem;
    border: 1px solid rgba(96,112,88,.2);
    background: var(--cream);
    color: var(--forest-deep);
    font-family: var(--body);
    cursor: pointer;
    transition: all .25s var(--ease);
    text-align: center;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.builder-size:hover {
    border-color: var(--olive);
    background: var(--cream);
}
.builder-size.is-active {
    border: 1.5px solid var(--forest-deep);
}
.builder-size strong {
    font-family: var(--body);
    font-weight: 500;
    font-size: .95rem;
    color: var(--forest-deep);
}
.builder-size em {
    font-style: italic;
    font-family: var(--display);
    font-weight: 300;
    font-size: .85rem;
    color: var(--olive);
}

/* Product carousel */
.builder__carousel {
    position: relative;
    margin: 0 -.5rem;
}
.builder__products {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: .25rem .5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.builder__products::-webkit-scrollbar { display: none; }

.builder-product {
    flex: 0 0 auto;
    width: 120px;
    aspect-ratio: 4 / 5;
    padding: 0;
    border: 1.5px solid transparent;
    background: var(--cream);
    cursor: pointer;
    transition: all .25s var(--ease);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.builder-product:hover { border-color: var(--olive); }
.builder-product.is-active {
    border-color: var(--forest-deep);
}
.builder-product__media {
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.builder-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.builder-product__placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 60%, rgba(160,171,151,.35), transparent 70%),
        var(--cream);
}

/* Carousel arrows */
.builder-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--olive);
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all .25s var(--ease);
    box-shadow: 0 4px 12px rgba(29,38,19,.2);
}
.builder-carousel__arrow:hover:not(:disabled) {
    background: var(--forest-deep);
    transform: translateY(-50%) scale(1.05);
}
.builder-carousel__arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.builder-carousel__arrow[hidden] { display: none; }
.builder-carousel__arrow--prev { left: -22px; }
.builder-carousel__arrow--next { right: -22px; }

.builder__empty {
    color: var(--olive);
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    font-size: .9rem;
}

/* Frequency */
.builder__freq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .75rem;
}
.builder-freq {
    padding: 1.1rem 1rem;
    border: 1px solid rgba(96,112,88,.2);
    background: var(--cream);
    color: var(--forest-deep);
    font-family: var(--body);
    cursor: pointer;
    transition: all .25s var(--ease);
    text-align: center;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.builder-freq__price {
    font-family: var(--display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-weight: 300;
    font-size: .85rem;
    color: var(--olive);
    line-height: 1.2;
    min-height: 1.05em; /* hou ruimte vrij ook als prijs nog leeg is */
}
.builder-freq.is-active .builder-freq__price {
    color: var(--forest-deep);
}
.builder-freq:hover {
    border-color: var(--olive);
    background: var(--cream);
}
.builder-freq.is-active {
    border: 1.5px solid var(--forest-deep);
    font-weight: 500;
}
.builder-freq strong {
    font-family: var(--body);
    font-weight: inherit;
    font-size: .92rem;
}

/* Summary bar */
.builder__summary {
    background: var(--cream);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(96,112,88,.15);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.builder__summary-left,
.builder__summary-right {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.builder__summary-label {
    font-family: var(--body);
    font-size: .85rem;
    color: var(--olive);
}
.builder__summary [data-total] {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
}

.builder__cta {
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .builder__pills { gap: .5rem; }
    .builder-pill {
        flex: 1;
        min-width: 0;
        padding: .85rem .75rem;
        font-size: .82rem;
    }
    .builder__size-grid,
    .builder__freq-grid {
        grid-template-columns: 1fr 1fr;
    }
    .builder-product {
        width: 110px;
    }
    .builder-carousel__arrow--prev { left: -8px; }
    .builder-carousel__arrow--next { right: -8px; }
    .builder__summary {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 60;
    max-width: 560px;
    background: var(--cream);
    color: var(--forest-deep);
    border: 1px solid rgba(96,112,88,.2);
    box-shadow: 0 30px 80px -20px rgba(29,38,19,.4);
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    pointer-events: none;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__inner { padding: 1.5rem 1.75rem; }

.cookie-banner__view[hidden] { display: none; }

.cookie-banner__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin: 0 0 .5rem;
    line-height: 1.2;
}
.cookie-banner__lede {
    font-size: .88rem;
    line-height: 1.65;
    color: var(--olive);
    margin: 0 0 1.25rem;
}
.cookie-banner__lede a {
    color: var(--forest-deep);
    border-bottom: 1px solid var(--olive);
    transition: opacity .2s var(--ease);
}
.cookie-banner__lede a:hover { opacity: .7; }

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .65rem 1.1rem;
    font-family: var(--body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease);
}
.cookie-btn--primary {
    background: var(--forest-deep);
    color: var(--cream);
    border-color: var(--forest-deep);
}
.cookie-btn--primary:hover { background: var(--olive); border-color: var(--olive); }
.cookie-btn--ghost {
    background: transparent;
    color: var(--forest-deep);
    border-color: rgba(96,112,88,.4);
}
.cookie-btn--ghost:hover { border-color: var(--forest-deep); }

/* Categorieën in instellingen-view */
.cookie-cats {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(96,112,88,.15);
}
.cookie-cat {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(96,112,88,.15);
    cursor: pointer;
}
.cookie-cat--locked { cursor: default; }
.cookie-cat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: .25rem;
}
.cookie-cat strong {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--forest-deep);
    letter-spacing: .01em;
}
.cookie-cat p {
    font-size: .82rem;
    line-height: 1.6;
    color: var(--olive);
    margin: 0;
}

/* Custom toggle switch */
.cookie-cat__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.cookie-cat__toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.cookie-cat__pill {
    width: 38px;
    height: 22px;
    background: rgba(96,112,88,.3);
    border-radius: 100px;
    position: relative;
    transition: background-color .25s var(--ease);
    flex-shrink: 0;
}
.cookie-cat__pill::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: var(--cream);
    border-radius: 50%;
    transition: transform .25s var(--ease);
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-cat__toggle input:checked ~ .cookie-cat__pill {
    background: var(--olive);
}
.cookie-cat__toggle input:checked ~ .cookie-cat__pill::after {
    transform: translateX(16px);
}
.cookie-cat__toggle input:disabled ~ .cookie-cat__pill {
    background: var(--aloe);
    opacity: .7;
}
.cookie-cat__state {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--olive);
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-banner {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
        max-width: none;
    }
    .cookie-banner__inner { padding: 1.25rem; }
    .cookie-banner__title { font-size: 1.2rem; }
    .cookie-banner__actions {
        flex-direction: column-reverse;
    }
    .cookie-banner__actions .cookie-btn {
        width: 100%;
    }
}

/* Animations */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
@keyframes slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(380%); } }
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0; } }
@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* Responsive */
@media (max-width: 980px) {
    .site-nav { display: none; }
    .site-header__burger { display: flex; }
    .rental { grid-template-columns: 1fr; min-height: auto; }
    .rental__visual { aspect-ratio: 16 / 10; }
    .contact { grid-template-columns: 1fr; gap: 3rem; }
    .contact__panel--info { padding-left: 0; border-left: none; padding-top: 2rem; border-top: 1px solid rgba(160,171,151,.2); }
    /* Newsletter input + button onder elkaar op mobiel ipv naast elkaar
       (anders is de "Schrijf je in" knop te breed en duwt 'ie alles uit beeld) */
    .newsletter__row { flex-direction: column; gap: .65rem; }
    .newsletter__row .btn { width: 100%; justify-content: center; }
    /* Contact info links: lange emails/strings mogen netjes wrappen */
    .contact__links li { flex-wrap: wrap; gap: .35rem .75rem; }
    .contact__links a { overflow-wrap: anywhere; word-break: break-word; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .site-footer__columns { grid-template-columns: repeat(2, 1fr); }

    /* === App-feeling header op mobiel === */
    /* Header altijd zichtbaar, nooit weg-schuiven */
    .site-header.is-hidden { transform: none; }

    /* Header moet BOVEN het mobile-menu staan (anders verdwijnt burger) */
    .site-header { z-index: 60; }

    /* Solid achtergrond direct, ook op pagina's met hero */
    .site-header,
    .has-hero .site-header {
        background: rgba(43, 54, 28, .96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 1px 0 rgba(160,171,151,.15);
    }

    /* Menu-rij zit op mobiel in de burger → verbergen, scheelt hoogte */
    .site-header__navrow { display: none; }
    .site-header__promo { padding: .5rem 1rem; }
    /* Zoek + taal links verbergen op mobiel (taal staat in het burger-menu) */
    .site-header__side--left { display: none; }

    /* Strakkere logo-rij voor app-look */
    .site-header__inner { gap: .5rem; padding: .6rem 1rem; }
    /* Logo: zowel height ALS max-width vastpinnen — SVG zonder explicit dimensies
       kan anders heel breed worden en de actions+burger wegduwen */
    .site-header__logo { max-width: 50vw; }
    .site-header__logo img { height: 26px; width: auto; max-width: 100%; }

    /* Actions blok mag niet shrinken — anders verdwijnt 'ie achter het logo */
    .site-header__actions { flex-shrink: 0; }
    /* Burger MOET zichtbaar blijven, never wegduwen */
    .site-header__burger { display: flex; flex-shrink: 0; }

    /* Account/winkelmandje icons verbergen om plek te maken voor burger */
    .site-header__actions .lang-switch { display: none; }
    .site-header__actions .site-header__icon { display: none; }

    /* Body scroll-lock wanneer menu open */
    body.menu-open { overflow: hidden; }

    /* Hero ruimte boven (header is fixed) */
    .hero { padding-top: 5.5rem; }
}

@media (max-width: 640px) {
    .hero { padding-top: 7rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .section__intro--split { flex-direction: column; align-items: flex-start; }
    .newsletter { flex-direction: column; }
    .newsletter .btn { justify-content: center; }
    .site-footer__columns { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; }
    /* Links-paragraph als wrap-container op mobiel zodat links netjes
       op nieuwe regels komen ipv uit beeld lopen */
    .site-footer__bottom p:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: .35rem 1rem;
        width: 100%;
    }
    .site-footer__bottom a { margin-left: 0; margin-right: 0; }
    .login__form { flex-direction: column; }
    .login__form button { padding: .9rem 1.5rem; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   SUBSCRIPTIONS OVERVIEW PAGE (/abonnementen)
   ========================================================= */

.page-subscriptions { background: var(--cream); }

.subs-page {
    padding: clamp(7rem, 12vw, 9rem) var(--gutter) clamp(5rem, 10vw, 7rem);
}
.subs-page__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.subs-page__head {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
.subs-page__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: var(--forest-deep);
    margin: .75rem 0 1.25rem;
    letter-spacing: -.01em;
}
.subs-page__lede {
    font-family: var(--display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--olive);
    line-height: 1.55;
    max-width: 620px;
    margin: 0 auto;
}

.subs-page__empty {
    text-align: center;
    padding: 4rem var(--gutter);
    color: var(--olive);
}

/* Cards grid */
.subs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.subs-card {
    background: var(--paper);
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: subs-card-in .8s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.subs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -28px rgba(43, 54, 28, 0.18);
}

@keyframes subs-card-in {
    to { opacity: 1; transform: translateY(0); }
}

.subs-card--popular {
    background: var(--white);
    outline: 1px solid var(--olive);
    outline-offset: -1px;
}

.subs-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest-deep);
    color: var(--cream);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .45rem 1.1rem;
    font-weight: 500;
    z-index: 2;
}

/* "Eerder besteld" markering op een abonnementskaart */
.subs-card--owned {
    outline: 1.5px solid var(--olive);
    outline-offset: -1.5px;
}
.subs-card__owned {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--olive);
    color: var(--cream);
    font-family: var(--body);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .32rem .6rem .32rem .5rem;
    border-radius: 100px;
    z-index: 3;
    box-shadow: 0 4px 12px -6px rgba(43, 54, 28, 0.5);
}
.subs-card__owned svg { flex: 0 0 auto; }
.subs-card__owned-note {
    font-family: var(--body);
    font-size: .78rem;
    color: var(--olive);
    margin: -.9rem 0 1.2rem;
    line-height: 1.45;
    font-style: italic;
}

/* Banner bovenaan: lopende abonnementen van de klant */
.subs-owned-banner {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    flex-wrap: wrap;
    background: var(--cream);
    border: 1px solid var(--aloe);
    border-radius: 14px;
    padding: 1.1rem 1.35rem;
    margin: 0 0 2.5rem;
}
.subs-owned-banner__icon {
    color: var(--forest);
    flex: 0 0 auto;
    margin-top: .1rem;
}
.subs-owned-banner__body { flex: 1 1 240px; }
.subs-owned-banner__body strong {
    display: block;
    font-family: var(--body);
    font-weight: 600;
    color: var(--forest-deep);
    font-size: .95rem;
    margin-bottom: .25rem;
}
.subs-owned-banner__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .65rem;
}
.subs-owned-banner__list li {
    font-family: var(--body);
    font-size: .85rem;
    color: var(--forest);
    background: var(--white);
    border: 1px solid var(--aloe);
    border-radius: 100px;
    padding: .2rem .7rem;
}
.subs-owned-banner__link {
    align-self: center;
    white-space: nowrap;
    font-family: var(--body);
    font-size: .85rem;
    font-weight: 500;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.subs-owned-banner__link:hover { color: var(--forest-deep); }

.subs-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.subs-card__media img,
.subs-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
}
.subs-card:hover .subs-card__media img,
.subs-card:hover .subs-card__placeholder {
    transform: scale(1.04);
}

.subs-card__body {
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.subs-card__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--forest-deep);
    margin: 0 0 .35rem;
    line-height: 1.1;
    letter-spacing: -.005em;
}
.subs-card__subtitle {
    font-family: var(--body);
    font-size: .88rem;
    color: var(--olive);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.subs-card__price {
    margin: auto 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
}
.subs-card__price-from {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--olive);
}
.subs-card__price-amount {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.4rem, 3.5vw, 3rem);
    color: var(--forest-deep);
    line-height: 1;
    letter-spacing: -.015em;
}
.subs-card__price-unit {
    font-size: .82rem;
    color: var(--olive);
    margin-top: .15rem;
}

.subs-card__cta {
    margin-top: auto;
}

/* How it works */
.subs-how {
    text-align: center;
    padding-top: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid rgba(96, 112, 88, .15);
}
.subs-how__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--forest-deep);
    margin: 0 0 3rem;
    letter-spacing: -.005em;
}
.subs-how__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 940px;
    margin: 0 auto;
}
.subs-step {
    padding: 0 1rem;
}
.subs-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--olive);
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}
.subs-step h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--forest-deep);
    margin: 0 0 .55rem;
    letter-spacing: 0;
}
.subs-step p {
    font-size: .9rem;
    color: var(--olive);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 720px) {
    .subs-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* =========================================================
   CART — drawer + badge
   ========================================================= */

/* Badge op cart-icoon */
.site-header__cart { position: relative; }
.site-header__cart-badge {
    position: absolute;
    top: 4px; right: 4px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--aloe);
    color: var(--forest-deep);
    font-size: .68rem;
    font-weight: 600;
    border-radius: 100px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.site-header__cart-badge.is-visible { display: inline-flex; }

/* Forceer hidden voor cart drawer elementen (overschrijft display:flex etc.) */
.cart-empty[hidden],
.cart-filled[hidden],
.cart-drawer__foot[hidden] { display: none !important; }

/* Backdrop achter drawer */
.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(29, 38, 19, .55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    z-index: 65;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Drawer */
.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: var(--cream);
    z-index: 66;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 40px -16px rgba(29,38,19,.25);
}
.cart-drawer.is-open { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(96,112,88,.15);
}
.cart-drawer__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin: 0;
    letter-spacing: -.01em;
}
.cart-drawer__close {
    background: none;
    border: none;
    width: 36px; height: 36px;
    font-size: 1.5rem;
    color: var(--olive);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.cart-drawer__close:hover { background: rgba(96,112,88,.08); color: var(--forest-deep); }

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.75rem;
}

/* Empty state */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 1rem;
}
.cart-empty__icon {
    width: 80px; height: 80px;
    background: rgba(96,112,88,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
}
.cart-empty h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin: 0;
}
.cart-empty p {
    color: var(--olive);
    font-size: .92rem;
    margin: 0 0 .5rem;
    max-width: 280px;
}

/* Items */
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(96,112,88,.12);
}
.cart-item__media {
    width: 72px; height: 88px;
    overflow: hidden;
    background: rgba(96,112,88,.05);
    border-radius: 2px;
}
.cart-item__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.cart-item__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--aloe-soft, #c7d0bd), var(--olive));
    opacity: .3;
}
.cart-item__body { display: flex; flex-direction: column; gap: .35rem; min-width: 0; padding-right: 1.5rem; }
.cart-item__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--forest-deep);
    line-height: 1.25;
}
.cart-item__variant {
    font-size: .78rem;
    color: var(--olive);
    line-height: 1.4;
}
.cart-item__variant em {
    font-style: italic;
    color: var(--aloe);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.cart-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .4rem;
}
.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(96,112,88,.25);
    padding: 0 .25rem;
}
.cart-qty__btn {
    background: none;
    border: none;
    width: 24px; height: 28px;
    font-size: 1rem;
    color: var(--olive);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-qty__btn:hover { color: var(--forest-deep); }
.cart-qty__num {
    min-width: 18px;
    text-align: center;
    font-size: .88rem;
    font-weight: 500;
    color: var(--forest-deep);
}
.cart-item__price {
    font-family: var(--display);
    font-size: 1.05rem;
    color: var(--forest-deep);
    font-weight: 400;
}
.cart-item__remove {
    position: absolute;
    top: .65rem; right: .65rem;
    background: none;
    border: none;
    width: 24px; height: 24px;
    font-size: 1.25rem;
    color: var(--aloe);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.cart-item__remove:hover { color: var(--forest-deep); }

/* Footer met totalen */
.cart-drawer__foot {
    padding: 1.25rem 1.75rem 1.5rem;
    border-top: 1px solid rgba(96,112,88,.15);
    background: var(--cream);
}
.cart-totals { margin-bottom: 1rem; }
.cart-totals__row {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--olive);
    padding: .35rem 0;
}
.cart-totals__row--total {
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--forest-deep);
    border-top: 1px solid rgba(96,112,88,.15);
    padding-top: .75rem;
    margin-top: .4rem;
    font-weight: 400;
}

@media (max-width: 480px) {
    .cart-drawer { width: 100vw; }
    .cart-drawer__head { padding: 1.1rem 1.25rem; }
    .cart-drawer__body { padding: 1rem 1.25rem; }
    .cart-drawer__foot { padding: 1rem 1.25rem 1.25rem; }
}

/* Cart icon visible on mobile too (override van eerder die 'm verbergt) */
@media (max-width: 980px) {
    .site-header__actions .site-header__cart { display: inline-flex; }
}

/* Add-to-cart knop laden */
.btn.is-loading {
    opacity: .6;
    pointer-events: none;
    position: relative;
}

/* =========================================================
   CHECKOUT pagina
   ========================================================= */
.page-checkout { background: var(--cream); }
.checkout {
    padding: 8rem 1.5rem 6rem;
    min-height: 80vh;
}
.checkout__inner {
    max-width: 1180px;
    margin: 0 auto;
}
.checkout__head {
    text-align: center;
    margin-bottom: 3.5rem;
}
.checkout__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--forest-deep);
    margin: .75rem 0 .5rem;
    letter-spacing: -.01em;
}
.checkout__lede {
    font-size: 1rem;
    color: var(--olive);
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto;
}

/* Empty state */
.checkout__empty {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 3.5rem 2rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.checkout__empty h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin: 1.25rem 0 .5rem;
}
.checkout__empty p { color: var(--olive); margin-bottom: 2rem; }
.checkout__empty .cart-empty__icon { margin: 0 auto; }

/* Layout */
.checkout__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.checkout__form { display: flex; flex-direction: column; gap: 1.5rem; }

.checkout-section {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 2rem 2.25rem;
}
.checkout-section__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--forest-deep);
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    letter-spacing: -.005em;
}
.checkout-section__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--forest-deep);
    color: var(--cream);
    font-family: var(--body);
    font-size: .85rem;
    font-weight: 500;
}

.checkout-section label {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.1rem;
}
.checkout-section label:last-child { margin-bottom: 0; }
.checkout-section label > span:first-child {
    font-size: .78rem;
    font-weight: 500;
    color: var(--forest-deep);
    letter-spacing: .02em;
}
.checkout-section input,
.checkout-section select,
.checkout-section textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid rgba(96,112,88,.25);
    color: var(--forest-deep);
    padding: .85rem 1rem;
    font-family: var(--body);
    font-size: .92rem;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checkout-section input:focus,
.checkout-section select:focus,
.checkout-section textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--olive);
}
.checkout-section textarea { resize: vertical; min-height: 70px; }
.checkout-section small {
    font-size: .75rem;
    color: var(--olive);
    margin-top: .25rem;
}
.checkout-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.checkout-section .form-row label { margin-bottom: 0; }

.checkout-consent {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: .65rem !important;
    cursor: pointer;
    margin-bottom: 0 !important;
}
.checkout-consent input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--forest-deep);
    margin-top: 3px;
    flex-shrink: 0;
}
.checkout-consent span {
    font-size: .88rem !important;
    font-weight: 400 !important;
    color: var(--olive);
    line-height: 1.55;
}
.checkout-consent a { color: var(--forest-deep); border-bottom: 1px solid currentColor; }

.checkout__cta {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 2rem 2.25rem;
}
.checkout__cta-note {
    text-align: center;
    font-size: .78rem;
    color: var(--olive);
    margin: 1rem 0 0;
}
.btn--lg {
    padding: 1.15rem 2rem !important;
    font-size: 1rem !important;
}
.btn[disabled], .btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* Summary kolom rechts */
.checkout__summary { position: sticky; top: 6rem; }
.checkout-summary {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 2rem 2.25rem;
}
.checkout-summary__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(96,112,88,.15);
}
.checkout-summary__items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.checkout-summary__item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 1rem;
    align-items: center;
}
.checkout-summary__media {
    width: 56px; height: 68px;
    position: relative;
    background: rgba(96,112,88,.05);
    border: 1px solid rgba(96,112,88,.1);
}
.checkout-summary__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.checkout-summary__qty {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--forest-deep);
    color: var(--cream);
    font-size: .68rem;
    font-weight: 600;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.checkout-summary__info { min-width: 0; }
.checkout-summary__name {
    font-family: var(--display);
    font-size: 1rem;
    color: var(--forest-deep);
    line-height: 1.25;
}
.checkout-summary__variant {
    font-size: .74rem;
    color: var(--olive);
    margin-top: .15rem;
}
.checkout-summary__price {
    font-size: .92rem;
    color: var(--forest-deep);
    font-weight: 500;
}
.checkout-summary__totals {
    padding-top: 1rem;
    border-top: 1px solid rgba(96,112,88,.15);
}
.checkout-summary__note {
    margin-top: 1rem;
    padding: .85rem 1rem;
    background: rgba(160,171,151,.15);
    font-size: .78rem;
    color: var(--olive);
    line-height: 1.5;
}
.checkout-summary__note strong { color: var(--forest-deep); }

@media (max-width: 900px) {
    .checkout__layout { grid-template-columns: 1fr; }
    .checkout__summary { position: static; }
    .checkout { padding-top: 6rem; }
    .checkout-section { padding: 1.5rem; }
    .checkout-section .form-row { grid-template-columns: 1fr; }
    .checkout__cta { padding: 1.5rem; }
    .checkout-summary { padding: 1.5rem; }
}

/* =========================================================
   CHECKOUT: error message
   ========================================================= */
.checkout__error {
    background: rgba(214, 96, 92, .12);
    border: 1px solid rgba(214, 96, 92, .35);
    color: #6e3530;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: .92rem;
    line-height: 1.6;
}

/* =========================================================
   BEDANKT pagina
   ========================================================= */
.page-thanks { background: var(--cream); }
.thanks {
    padding: 9rem 1.5rem 6rem;
    min-height: 80vh;
}
.thanks__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.thanks__icon {
    width: 80px;
    height: 80px;
    background: rgba(96, 112, 88, .12);
    color: var(--forest-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.thanks__icon--warn {
    background: rgba(214, 96, 92, .15);
    color: #b25149;
}
.thanks__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--forest-deep);
    margin: .75rem 0 1rem;
    letter-spacing: -.01em;
}
.thanks__lede {
    font-size: 1rem;
    color: var(--olive);
    line-height: 1.65;
    margin: 0 auto 2rem;
}
.thanks__lede strong {
    color: var(--forest-deep);
    font-weight: 500;
}
.thanks__reference {
    font-size: .82rem;
    color: var(--olive);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.thanks__reference strong {
    font-family: var(--body);
    color: var(--forest-deep);
    font-weight: 500;
}
.thanks__summary {
    background: var(--white);
    border: 1px solid rgba(96, 112, 88, .15);
    padding: 2rem 2.25rem;
    text-align: left;
    margin-bottom: 2rem;
}
.thanks__summary-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--forest-deep);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(96, 112, 88, .15);
}
.thanks__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(96, 112, 88, .08);
    font-size: .92rem;
    gap: 1rem;
}
.thanks__item-name {
    color: var(--forest-deep);
    line-height: 1.5;
}
.thanks__item-variant {
    color: var(--olive);
    font-size: .78rem;
    display: block;
    margin-top: .15rem;
}
.thanks__item em {
    color: var(--aloe);
    font-size: .7rem;
    font-style: italic;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.thanks__item-price {
    color: var(--forest-deep);
    font-weight: 500;
    white-space: nowrap;
}
.thanks__total {
    display: flex;
    justify-content: space-between;
    padding-top: 1.25rem;
    margin-top: .5rem;
    border-top: 1px solid rgba(96, 112, 88, .25);
    font-family: var(--display);
    font-size: 1.3rem;
    color: var(--forest-deep);
}

/* =========================================================
   COUPON / kortingscode in cart drawer
   ========================================================= */
.cart-coupon {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(96,112,88,.12);
}

/* Niet-toegepast: input + knop */
.cart-coupon__form {
    display: flex;
    gap: .5rem;
    align-items: stretch;
}
.cart-coupon__input {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(96,112,88,.25);
    color: var(--forest-deep);
    padding: .65rem .85rem;
    font-family: var(--body);
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.cart-coupon__input:focus {
    outline: none;
    border-color: var(--olive);
}
.cart-coupon__input::placeholder {
    color: var(--olive);
    text-transform: none;
    letter-spacing: 0;
}
.cart-coupon__btn {
    background: var(--forest-deep);
    color: var(--cream);
    border: none;
    padding: .65rem 1.1rem;
    font-family: var(--body);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}
.cart-coupon__btn:hover { background: var(--forest); }
.cart-coupon__btn:disabled { opacity: .5; cursor: wait; }

/* Toegepast: badge met code + remove-knop */
.cart-coupon__applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(160,171,151,.18);
    border: 1px dashed var(--aloe);
    padding: .65rem .9rem;
}
.cart-coupon__applied[hidden] { display: none !important; }
.cart-coupon__form[hidden] { display: none !important; }
.cart-coupon__badge {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.cart-coupon__badge strong {
    font-family: var(--body);
    color: var(--forest-deep);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .04em;
}
.cart-coupon__badge small {
    color: var(--olive);
    font-size: .72rem;
}
.cart-coupon__remove {
    background: none;
    border: none;
    width: 24px; height: 24px;
    color: var(--olive);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}
.cart-coupon__remove:hover { color: var(--forest-deep); }

/* Error melding */
.cart-coupon__error {
    margin-top: .5rem;
    padding: .55rem .85rem;
    background: rgba(214, 96, 92, .12);
    color: #6e3530;
    font-size: .8rem;
}
.cart-coupon__error[hidden] { display: none !important; }

/* Discount-regel in totalen */
.cart-totals__row--discount {
    color: var(--olive);
}
.cart-totals__row--discount[hidden] { display: none !important; }
.cart-totals__row--discount span:last-child {
    color: var(--forest-deep);
    font-weight: 500;
}
.cart-totals__row--discount small {
    font-size: .72rem;
    color: var(--aloe);
    margin-left: .25rem;
}

/* Checkout pagina: coupon block in summary */
.checkout-coupon {
    padding: 1rem 0;
    border-top: 1px solid rgba(96,112,88,.15);
    border-bottom: 1px solid rgba(96,112,88,.15);
    margin: 1rem 0 1.25rem;
}
.checkout-coupon__form {
    display: flex;
    gap: .5rem;
}
.checkout-coupon__form input {
    flex: 1;
    background: var(--cream);
    border: 1px solid rgba(96,112,88,.25);
    color: var(--forest-deep);
    padding: .7rem .9rem;
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.checkout-coupon__form input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: var(--olive);
}
.checkout-coupon__form button {
    background: var(--forest-deep);
    color: var(--cream);
    border: none;
    padding: .7rem 1.15rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}
.checkout-coupon__applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(160,171,151,.18);
    border: 1px dashed var(--aloe);
    padding: .6rem .85rem;
    font-size: .85rem;
}
.checkout-coupon__applied strong {
    color: var(--forest-deep);
    letter-spacing: .04em;
}
.checkout-coupon__applied button {
    background: none;
    border: none;
    color: var(--olive);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 .25rem;
}
.checkout-coupon__error {
    margin-top: .5rem;
    color: #6e3530;
    font-size: .78rem;
}
.checkout-coupon__error[hidden] { display: none !important; }

/* =========================================================
   ACCOUNT pagina's
   ========================================================= */
.page-account { background: var(--cream); }

/* Auth pagina (login + magic error) */
.account-auth {
    padding: 9rem 1.5rem 6rem;
    min-height: 80vh;
}
.account-auth__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}
.account-auth__icon {
    width: 80px; height: 80px;
    background: rgba(96, 112, 88, .12);
    color: var(--forest-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.account-auth__icon--warn {
    background: rgba(214, 96, 92, .15);
    color: #b25149;
}
.account-auth__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--forest-deep);
    margin: .75rem 0 1rem;
    letter-spacing: -.01em;
}
.account-auth__lede {
    font-size: 1rem;
    color: var(--olive);
    line-height: 1.65;
    margin: 0 auto 2rem;
}
.account-auth__lede strong { color: var(--forest-deep); font-weight: 500; }
.account-auth__hint {
    font-size: .82rem;
    color: var(--aloe);
    line-height: 1.6;
}
.account-auth__form {
    text-align: left;
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
}
.account-auth__form label {
    display: block;
    margin-bottom: 1.25rem;
}
.account-auth__form label span {
    display: block;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: .5rem;
}
.account-auth__form input[type="email"] {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid rgba(96,112,88,.25);
    background: var(--cream);
    color: var(--forest-deep);
    font-family: var(--body);
    font-size: 1rem;
}
.account-auth__form input[type="email"]:focus {
    outline: none;
    border-color: var(--olive);
    background: var(--white);
}

/* Account dashboard / overzicht pagina's */
.account {
    padding: 7rem 1.5rem 5rem;
}
.account__inner {
    max-width: 980px;
    margin: 0 auto;
}
.account__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.account__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--forest-deep);
    margin: .25rem 0 .5rem;
    letter-spacing: -.01em;
}
.account__lede {
    color: var(--olive);
    margin: 0;
}

/* Stat-blokken */
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.account-stat {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.account-stat__label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--olive);
}
.account-stat__value {
    font-family: var(--display);
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--forest-deep);
    line-height: 1.1;
}
.account-stat__value--small {
    font-size: 1rem;
    font-family: var(--body);
    word-break: break-all;
}

/* Layout: main + side */
.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.5rem;
    align-items: start;
}
.account-section { min-width: 0; }
.account-section__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}
.account-section__head h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin: 0;
}
.account-link {
    color: var(--olive);
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .04em;
}
.account-link:hover { color: var(--forest-deep); text-decoration: underline; }

.account-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.account-card {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 1.5rem 1.75rem;
}
.account-card__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--forest-deep);
    margin: 0 0 1rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(96,112,88,.12);
}
.account-card__address {
    margin: 0 0 .75rem;
    font-style: normal;
    line-height: 1.65;
    color: var(--forest-deep);
    font-size: .9rem;
}
.account-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.account-links a {
    color: var(--forest-deep);
    text-decoration: none;
    font-size: .92rem;
}
.account-links a:hover { color: var(--olive); text-decoration: underline; }

/* Bestellingen lijst */
.account-orders {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.account-order {
    display: block;
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 1.15rem 1.4rem;
    text-decoration: none;
    color: var(--forest-deep);
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.account-order:hover {
    border-color: var(--olive);
}
.account-order__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .4rem;
}
.account-order__ref {
    font-family: monospace;
    letter-spacing: .04em;
    font-size: .95rem;
    color: var(--forest-deep);
}
.account-order__meta {
    display: flex;
    gap: 1.5rem;
    color: var(--olive);
    font-size: .85rem;
    flex-wrap: wrap;
}
.account-order__meta strong {
    color: var(--forest-deep);
    margin-left: auto;
}

/* Empty state */
.account-empty {
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--olive);
}
.account-empty p { margin: 0 0 1.5rem; }

/* Account detail items (binnen order detail) */
.account-items {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 1.5rem;
}
.account-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(96,112,88,.08);
}
.account-item:last-child { border-bottom: none; }
.account-item__main {
    flex: 1;
    color: var(--forest-deep);
}
.account-item__variant {
    display: block;
    color: var(--olive);
    font-size: .82rem;
    margin-top: .15rem;
}
.account-item__qty {
    color: var(--olive);
    min-width: 40px;
    text-align: right;
}
.account-item__price {
    color: var(--forest-deep);
    font-weight: 500;
    min-width: 90px;
    text-align: right;
}
.account-totals {
    border-top: 1px solid rgba(96,112,88,.15);
    padding-top: 1rem;
}
.account-totals__row {
    display: flex;
    justify-content: space-between;
    padding: .35rem 0;
    color: var(--forest-deep);
}
.account-totals__row span:first-child { color: var(--olive); }
.account-totals__row--total {
    margin-top: .5rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(96,112,88,.15);
    font-family: var(--display);
    font-size: 1.2rem;
}
.account-totals__row--total span:first-child { color: var(--forest-deep); }

/* Account form (gegevens wijzigen) */
.account-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.account-form label {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    color: var(--forest-deep);
    font-size: .9rem;
    margin-bottom: 1rem;
}
.account-form label span {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--olive);
}
.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="tel"],
.account-form select,
.account-form textarea {
    font-family: var(--body);
    font-size: .92rem;
    padding: .7rem .85rem;
    border: 1px solid rgba(96,112,88,.25);
    background: var(--cream);
    color: var(--forest-deep);
    width: 100%;
    box-sizing: border-box;
}
.account-form textarea {
    resize: vertical;
    min-height: 3.5rem;
}
.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus {
    outline: none;
    border-color: var(--olive);
    background: var(--white);
}
.account-form small {
    color: var(--olive);
    font-size: .78rem;
}
.account-form__actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

/* Checkout: login banner */
.checkout-login-banner {
    background: rgba(160, 171, 151, .18);
    border: 1px dashed var(--aloe);
    padding: .85rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--forest-deep);
    font-size: .9rem;
}
.checkout-login-banner a {
    color: var(--forest-deep);
    font-weight: 500;
    text-decoration: underline;
}

@media (max-width: 760px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
    .account-stats {
        grid-template-columns: 1fr;
    }
    .account-form .form-row {
        grid-template-columns: 1fr;
    }
    .account-order__meta {
        flex-direction: column;
        gap: .25rem;
    }
    .account-order__meta strong {
        margin-left: 0;
    }
}

/* =========================================================
   ACCOUNT — Abonnementen
   ========================================================= */
.account-subs {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.account-sub {
    display: block;
    background: var(--white);
    border: 1px solid rgba(96,112,88,.15);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--forest-deep);
    transition: border-color .2s var(--ease);
}
.account-sub:hover { border-color: var(--olive); }
.account-sub__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem;
}
.account-sub__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--forest-deep);
}
.account-sub__status { flex-shrink: 0; }
.account-sub__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--olive);
    font-size: .87rem;
    align-items: center;
}
.account-sub__meta strong {
    color: var(--forest-deep);
    margin-left: auto;
}

/* Cancel opties */
.sub-cancel-options {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.sub-cancel-options button { width: 100%; max-width: 280px; }

/* Facturen */
.account-invoices {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.account-invoice {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: .85rem 1.15rem;
    background: var(--cream);
    border: 1px solid rgba(96,112,88,.1);
}
.account-invoice__main {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}
.account-invoice__main strong {
    font-family: monospace;
    letter-spacing: .04em;
    font-size: .85rem;
    color: var(--forest-deep);
}
.account-invoice__date {
    font-size: .78rem;
    color: var(--olive);
}
.account-invoice__status small { color: var(--olive); font-size: .8rem; }
.account-invoice__amount {
    color: var(--forest-deep);
    font-weight: 500;
    text-align: right;
}
.account-invoice__actions {
    text-align: right;
}
.btn--sm {
    padding: .35rem .85rem;
    font-size: .78rem;
}

@media (max-width: 600px) {
    .account-sub__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
    }
    .account-sub__meta strong { margin-left: 0; }
    .account-invoice {
        grid-template-columns: 1fr;
        gap: .35rem;
    }
    .account-invoice__amount,
    .account-invoice__actions {
        text-align: left;
    }
}

/* =========================================================
   CMS pagina (Retourneren, Bezorging, Over ons, ...)
   ========================================================= */
.page-cms { background: var(--cream); }

.cms-page__hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(160,171,151,.1), transparent);
}
.cms-page__hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.cms-page__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: var(--forest-deep);
    margin: 1rem 0 .85rem;
    letter-spacing: -.015em;
    line-height: 1.05;
}
.cms-page__subtitle {
    font-family: var(--display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    color: var(--olive);
    margin: 0;
    line-height: 1.5;
}

.cms-page__body {
    padding: 2rem 1.5rem 6rem;
}
.cms-page__body-inner {
    max-width: 720px;
    margin: 0 auto;
    color: var(--forest-deep);
    line-height: 1.85;
    font-size: 1.02rem;
}

/* Typografie binnen Quill-content */
.cms-page__body-inner p {
    margin: 0 0 1.25rem;
}
.cms-page__body-inner p:first-child::first-letter {
    font-family: var(--display);
    font-size: 3.5em;
    line-height: .85;
    float: left;
    margin: .15rem .65rem -.1rem 0;
    color: var(--forest-deep);
    font-weight: 400;
}
.cms-page__body-inner h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--forest-deep);
    margin: 2.5rem 0 1rem;
    letter-spacing: -.005em;
    line-height: 1.25;
}
.cms-page__body-inner h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--forest-deep);
    margin: 2rem 0 .75rem;
    letter-spacing: -.005em;
}
.cms-page__body-inner ul,
.cms-page__body-inner ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}
.cms-page__body-inner li {
    margin: 0 0 .5rem;
    line-height: 1.7;
}
.cms-page__body-inner a {
    color: var(--olive);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s var(--ease);
}
.cms-page__body-inner a:hover {
    color: var(--forest-deep);
}
.cms-page__body-inner strong { font-weight: 500; color: var(--forest-deep); }
.cms-page__body-inner em { font-style: italic; }
.cms-page__body-inner u { text-decoration: underline; }
.cms-page__body-inner blockquote {
    border-left: 3px solid var(--aloe);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.15em;
    color: var(--olive);
}
.cms-page__body-inner hr {
    border: none;
    border-top: 1px solid rgba(96,112,88,.2);
    margin: 2.5rem 0;
}

@media (max-width: 720px) {
    .cms-page__hero { padding: 6rem 1.25rem 2.5rem; }
    .cms-page__body-inner p:first-child::first-letter {
        font-size: 2.8em;
    }
}

/* =========================================================
   Footer — sociale media iconen
   ========================================================= */
.site-footer__columns .site-footer__socials {
    display: flex;
    flex-direction: row;
    gap: .55rem;
    flex-wrap: wrap;
    margin-top: .25rem;
    align-items: center;
}
.site-footer__socials .site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: var(--aloe);
    border: 1px solid rgba(160, 171, 151, .35);
    border-radius: 50%;
    transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
    background: transparent;
    padding: 0;
    text-decoration: none;
}
.site-footer__socials .site-footer__social:hover {
    color: var(--cream);
    background: var(--olive);
    border-color: var(--olive);
    transform: translateY(-1px);
}
.site-footer__socials .site-footer__social svg {
    width: 17px;
    height: 17px;
    display: block;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* =========================================================
   GIFT CARD pagina (/cadeaubon, /gift-card)
   ========================================================= */

.gift-page {
    background: var(--paper);
    padding-top: 5rem;
}

/* Hero */
.gift-hero {
    padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem);
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}
.gift-hero--success {
    padding-bottom: clamp(5rem, 10vw, 8rem);
}
.gift-hero__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--forest-deep);
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.05;
}
.gift-hero__intro {
    max-width: 620px;
    margin: 0 auto;
    font-family: var(--body);
    color: var(--olive);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Content */
.gift-content {
    padding: clamp(2rem, 4vw, 3rem) var(--gutter) clamp(5rem, 10vw, 8rem);
    max-width: var(--container);
    margin: 0 auto;
}
.gift-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.gift-error {
    background: var(--cream-warm);
    border-left: 3px solid #b25149;
    padding: 1rem 1.25rem;
    color: #8a3530;
    margin-bottom: 2rem;
    font-family: var(--body);
}

/* === Form === */
.gift-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.gift-field {
    background: var(--white);
    border: 1px solid rgba(96, 112, 88, 0.15);
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
}
.gift-field h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--forest-deep);
    margin: 0 0 .35rem;
    letter-spacing: -0.005em;
}
.gift-field__hint {
    color: var(--olive);
    font-family: var(--body);
    font-size: .88rem;
    margin: 0 0 1.25rem;
}

/* Bedrag preset knoppen */
.gift-amount-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-bottom: 1.25rem;
}
.gift-amount-preset {
    background: var(--paper);
    border: 1px solid rgba(96, 112, 88, 0.2);
    padding: 1rem .5rem;
    cursor: pointer;
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--forest-deep);
    transition: all .2s var(--ease);
    border-radius: var(--radius);
}
.gift-amount-preset:hover {
    background: var(--forest-deep);
    color: var(--cream);
    border-color: var(--forest-deep);
}
.gift-amount-custom > label {
    display: block;
}
.gift-amount-custom > label > span {
    display: block;
    font-family: var(--body);
    font-size: .8rem;
    color: var(--olive);
    letter-spacing: .04em;
    margin-bottom: .4rem;
}
.gift-amount-input {
    display: flex;
    align-items: center;
    background: var(--paper);
    border: 1px solid rgba(96, 112, 88, 0.2);
    border-radius: var(--radius);
}
.gift-amount-input__currency {
    padding: 0 1rem;
    color: var(--olive);
    font-size: 1.3rem;
    font-family: var(--display);
}
.gift-amount-input input {
    flex: 1;
    border: none;
    padding: .9rem 0;
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--forest-deep);
    background: transparent;
    width: 100%;
}
.gift-amount-input input:focus {
    outline: none;
}

/* Type toggle (radio cards) */
.gift-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}
.gift-type-option {
    background: var(--paper);
    border: 2px solid rgba(96, 112, 88, 0.2);
    padding: 1.35rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    transition: all .2s var(--ease);
    border-radius: var(--radius);
    position: relative;
}
.gift-type-option:hover {
    border-color: var(--olive);
}
.gift-type-option.is-active {
    border-color: var(--forest-deep);
    background: var(--cream);
}
.gift-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.gift-type-option__icon {
    font-size: 1.85rem;
    line-height: 1;
}
.gift-type-option__title {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--forest-deep);
    font-weight: 500;
}
.gift-type-option__desc {
    font-family: var(--body);
    font-size: .82rem;
    color: var(--olive);
    line-height: 1.5;
}

/* Generic form fields */
.gift-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.gift-form-row > label {
    flex: 1;
}
.gift-field label:not(.gift-type-option):not(.gift-amount-custom > label) {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}
.gift-field label > span {
    font-family: var(--body);
    font-size: .8rem;
    color: var(--olive);
    letter-spacing: .04em;
}
.gift-field input[type="text"],
.gift-field input[type="email"],
.gift-field input[type="number"],
.gift-field textarea,
.gift-field select {
    font-family: var(--body);
    font-size: .95rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(96, 112, 88, 0.2);
    background: var(--paper);
    color: var(--forest-deep);
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--radius);
}
.gift-field input:focus,
.gift-field textarea:focus,
.gift-field select:focus {
    outline: none;
    border-color: var(--olive);
}
.gift-field textarea {
    resize: vertical;
    min-height: 80px;
}
.gift-field small {
    color: var(--aloe);
    font-family: var(--body);
    font-size: .78rem;
}

/* Submit button */
.gift-submit {
    background: var(--forest-deep);
    color: var(--cream);
    border: 1px solid var(--forest-deep);
    padding: 1.25rem 2rem;
    font-family: var(--display);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all .2s var(--ease);
    border-radius: var(--radius);
    letter-spacing: .01em;
}
.gift-submit:hover {
    background: var(--olive);
    border-color: var(--olive);
}
.gift-submit__total {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 400;
}

/* === Live preview (rechts) === */
.gift-preview__sticky {
    position: sticky;
    top: 6rem;
}
.gift-preview__card {
    background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest) 100%);
    color: var(--cream);
    padding: 2rem;
    aspect-ratio: 1.6 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(43, 54, 28, .22);
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
}
.gift-preview__brand small {
    font-family: var(--body);
    letter-spacing: .25em;
    font-size: .7rem;
    color: var(--aloe);
    font-weight: 500;
}
.gift-preview__amount {
    text-align: center;
}
.gift-preview__amount small {
    display: block;
    color: var(--aloe);
    letter-spacing: .15em;
    font-size: .68rem;
    text-transform: uppercase;
    margin-bottom: .4rem;
    font-family: var(--body);
}
.gift-preview__amount strong {
    font-family: var(--display);
    font-weight: 300;
    font-size: 3rem;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.02em;
}
.gift-preview__message {
    text-align: center;
}
.gift-preview__message small {
    color: var(--aloe);
    letter-spacing: .12em;
    font-size: .65rem;
    text-transform: uppercase;
    font-family: var(--body);
}
.gift-preview__message p {
    margin: .35rem 0 0;
    font-family: var(--display);
    font-size: 1.05rem;
    color: var(--cream);
}
.gift-preview__msg-text {
    font-style: italic;
    color: var(--aloe) !important;
    font-size: .85rem !important;
    margin-top: .5rem !important;
    line-height: 1.5;
}
.gift-preview__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px dashed var(--olive);
    padding-top: 1rem;
    gap: 1rem;
}
.gift-preview__footer small {
    color: var(--aloe);
    font-size: .72rem;
    font-family: var(--body);
}
.gift-preview__pay-off {
    font-family: var(--display) !important;
    font-style: italic;
    font-size: .85rem !important;
}

/* Summary box */
.gift-preview__summary {
    background: var(--white);
    border: 1px solid rgba(96, 112, 88, 0.15);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
}
.gift-preview__row {
    display: flex;
    justify-content: space-between;
    padding: .45rem 0;
    color: var(--olive);
    font-family: var(--body);
    font-size: .92rem;
}
.gift-preview__row strong {
    color: var(--forest-deep);
}
.gift-preview__row--total {
    border-top: 1px solid rgba(96, 112, 88, 0.15);
    margin-top: .35rem;
    padding-top: .85rem;
    font-family: var(--display);
    font-size: 1.15rem;
}
.gift-preview__row--total span,
.gift-preview__row--total strong {
    font-family: var(--display);
}
.gift-preview__row--total strong {
    font-size: 1.35rem;
    font-weight: 500;
}

/* Success page */
.gift-success-summary {
    background: var(--cream);
    padding: 1.75rem 2.25rem;
    margin: 2rem auto;
    max-width: 380px;
    border-radius: var(--radius);
}
.gift-success-summary__row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    color: var(--olive);
    font-family: var(--body);
}
.gift-success-summary__row strong {
    color: var(--forest-deep);
    font-family: var(--display);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 860px) {
    .gift-layout {
        grid-template-columns: 1fr;
    }
    .gift-preview {
        order: -1; /* Preview boven form op mobiel */
    }
    .gift-preview__sticky {
        position: static;
    }
    .gift-preview__card {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 480px) {
    .gift-field {
        padding: 1.5rem 1.25rem;
    }
    .gift-amount-presets {
        grid-template-columns: repeat(2, 1fr);
    }
    .gift-type-toggle {
        grid-template-columns: 1fr;
    }
    .gift-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================================
   PRODUCT: vaas-upsell box op productpagina
   ========================================================= */
.product__upsell {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin: 1.25rem 0;
    padding: .85rem 1rem;
    background: var(--cream);
    border: 1px solid rgba(96, 112, 88, 0.18);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .15s var(--ease), border-color .15s var(--ease);
}
.product__upsell:hover {
    background: var(--cream-warm);
    border-color: rgba(96, 112, 88, 0.35);
}
.product__upsell input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--forest-deep);
    cursor: pointer;
    flex-shrink: 0;
}
.product__upsell-content {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex: 1;
}
.product__upsell-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--white);
}
.product__upsell-icon {
    font-size: 1.85rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
}
.product__upsell-text {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.product__upsell-text strong {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--forest-deep);
    line-height: 1.2;
}
.product__upsell-text small {
    font-family: var(--body);
    font-size: .82rem;
    color: var(--olive);
}

/* =========================================================
   BUILDER: vaas-upsell (in subscription builder)
   ========================================================= */
.builder__upsell {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border: 1px solid rgba(96, 112, 88, 0.18);
    border-radius: var(--radius);
}
.builder__upsell-toggle {
    display: flex;
    align-items: center;
    gap: .85rem;
    cursor: pointer;
}
.builder__upsell-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--forest-deep);
    cursor: pointer;
    flex-shrink: 0;
}
.builder__upsell-content {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex: 1;
}
.builder__upsell-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius);
    background: var(--cream);
    flex-shrink: 0;
    padding: 4px;
    box-sizing: border-box;
}
.builder__upsell-icon {
    font-size: 1.85rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.builder__upsell-text {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.builder__upsell-text strong {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--forest-deep);
    line-height: 1.2;
}
.builder__upsell-name {
    font-family: var(--body);
    font-size: .85rem;
    color: var(--olive);
}
.builder__upsell-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-top: .85rem;
    padding-top: .85rem;
    border-top: 1px dashed rgba(96, 112, 88, 0.25);
}
.builder__upsell-mode label {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding: .5rem .65rem;
    background: var(--white);
    border: 1px solid rgba(96, 112, 88, 0.15);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color .15s var(--ease);
}
.builder__upsell-mode label:hover {
    border-color: var(--olive);
}
.builder__upsell-mode label:has(input:checked) {
    border-color: var(--forest-deep);
    background: var(--cream-warm);
}
.builder__upsell-mode input[type="radio"] {
    margin-top: 2px;
    accent-color: var(--forest-deep);
    flex-shrink: 0;
}
.builder__upsell-mode label span {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.builder__upsell-mode label strong {
    font-family: var(--body);
    font-size: .85rem;
    color: var(--forest-deep);
    font-weight: 500;
}
.builder__upsell-mode label small {
    font-size: .75rem;
    color: var(--olive);
    line-height: 1.3;
}
.builder__upsell-mode-fixed {
    margin-top: .65rem;
    padding-top: .65rem;
    border-top: 1px dashed rgba(96, 112, 88, 0.25);
    font-family: var(--body);
}
.builder__upsell-mode-fixed strong {
    font-size: .85rem;
    color: var(--forest-deep);
}
.builder__upsell-mode-fixed small {
    color: var(--olive);
    margin-left: .35rem;
}

@media (max-width: 480px) {
    .builder__upsell-mode {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   LIGHTBOX (herbruikbaar voor foto-zoom)
   ========================================================= */
.bs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(29, 38, 19, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease);
    cursor: zoom-out;
}
.bs-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.bs-lightbox__inner {
    position: relative;
    max-width: min(90vw, 700px);
    max-height: 90vh;
    cursor: default;
}
.bs-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.bs-lightbox__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: var(--cream);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    padding: .25rem .5rem;
    transition: color .15s var(--ease);
}
.bs-lightbox__close:hover {
    color: var(--white);
}
.bs-lightbox__caption {
    text-align: center;
    color: var(--aloe);
    font-family: var(--display);
    font-size: 1.05rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Klikbare zoom-trigger images krijgen pointer cursor + subtle hover */
[data-lightbox] {
    cursor: zoom-in;
    transition: opacity .15s var(--ease);
}
[data-lightbox]:hover {
    opacity: .85;
}

@media (max-width: 480px) {
    .bs-lightbox {
        padding: 1rem;
    }
    .bs-lightbox__close {
        top: -2rem;
        font-size: 2rem;
    }
}

/* =========================================================
   STORY / MANIFESTO sectie (Planti-stijl)
   ========================================================= */
.story {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: clamp(420px, 70vh, 720px);
    overflow: hidden;
    background: var(--forest-deep);
}

.story__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 12s cubic-bezier(.16,1,.3,1);
}
.story__image--svg {
    width: 100%;
    height: 100%;
}
/* Story image ken-burns op .story__media in-view */
.story__media.is-in-view .story__image:not(.story__image--svg) {
    transform: scale(1.04);
    transition: transform 12s cubic-bezier(.16,1,.3,1);
}

/* Donkere overlay over beeld zodat tekst leesbaar blijft */
.story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(29, 38, 19, 0.75) 0%,
        rgba(29, 38, 19, 0.45) 50%,
        rgba(29, 38, 19, 0.7) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.story__panel {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    min-height: inherit;
}

.story--left .story__panel { justify-content: flex-start; }
.story--right .story__panel { justify-content: flex-end; }

.story__inner {
    max-width: 560px;
    color: var(--cream);
    /* data-anim regelt nu opacity/transform — geen eigen defaults */
}

.story__eyebrow {
    display: inline-block;
    font-family: var(--body);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--aloe);
    margin-bottom: 1.25rem;
}
.story__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--cream);
    margin: 0 0 1.5rem;
    font-style: italic;
}
.story__body {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    color: var(--aloe);
    margin: 0 0 2rem;
}
.story__cta {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.6rem;
    background: var(--cream);
    color: var(--forest-deep);
    font-family: var(--body);
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background .35s var(--ease),
        color .35s var(--ease),
        transform .35s var(--ease);
    border-radius: var(--radius);
}
.story__cta:hover {
    background: var(--aloe);
    color: var(--forest-deep);
    transform: translateY(-2px);
}
.story__cta svg {
    transition: transform .35s var(--ease);
}
.story__cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .story::before {
        background: linear-gradient(
            to bottom,
            rgba(29, 38, 19, 0.55) 0%,
            rgba(29, 38, 19, 0.75) 100%
        );
    }
    .story__panel {
        justify-content: center !important;
        text-align: center;
        padding: 4rem 1.5rem;
    }
    .story__inner {
        max-width: 100%;
    }
}

/* =========================================================
   KINETIC MOTION — scroll-triggered cinematic reveals
   ========================================================= */

/* Default fade-up (was data-fade, blijft werken voor backward compat) */
[data-fade] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .9s var(--ease),
        transform .9s cubic-bezier(.16,1,.3,1);
    will-change: opacity, transform;
}
[data-fade].is-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Kinetic motion varianten via data-anim ===== */
[data-anim] {
    opacity: 0;
    transition:
        opacity 1.1s cubic-bezier(.16, 1, .3, 1),
        transform 1.1s cubic-bezier(.16, 1, .3, 1),
        clip-path 1.2s cubic-bezier(.76, 0, .24, 1);
    will-change: opacity, transform, clip-path;
}
[data-anim].is-in-view {
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
}

/* SLIDE FROM RIGHT — voor tekst-blokken die "binnen glijden" */
[data-anim="slide-right"] {
    transform: translateX(80px);
}

/* SLIDE FROM LEFT */
[data-anim="slide-left"] {
    transform: translateX(-80px);
}

/* CURTAIN UP — clip-path reveal van onder naar boven, voor beelden */
[data-anim="curtain-up"] {
    clip-path: inset(100% 0 0 0);
    transform: translateY(40px) scale(1.02);
}
[data-anim="curtain-up"].is-in-view {
    transform: translateY(0) scale(1);
}

/* CURTAIN DOWN — top down */
[data-anim="curtain-down"] {
    clip-path: inset(0 0 100% 0);
}

/* CURTAIN LEFT — left to right wipe */
[data-anim="curtain-left"] {
    clip-path: inset(0 100% 0 0);
}

/* SCALE-IN — voor foto's die zacht "openbloeien" */
[data-anim="scale-in"] {
    transform: scale(.92);
}

/* FADE-UP MED — meer beweging dan default data-fade */
[data-anim="fade-up"] {
    transform: translateY(48px);
}

/* FADE-UP STRONG — heel duidelijke entry */
[data-anim="fade-up-strong"] {
    transform: translateY(80px);
}

/* ROTATE-IN — heel subtiel kantelen, voor accent-elements */
[data-anim="rotate-in"] {
    transform: translateY(40px) rotate(-2deg);
}
[data-anim="rotate-in"].is-in-view {
    transform: translateY(0) rotate(0);
}

/* STAGGER — vertraging per child via --i CSS variable
   Gebruik: <div data-stagger><img data-anim style="--i:0"><img data-anim style="--i:1">...</div>
   Of: <ul><li style="transition-delay:calc(var(--i,0)*.08s)">... */
[data-stagger] > [data-anim] {
    transition-delay: calc(var(--i, 0) * 0.08s);
}

/* === Word-by-word reveal voor headlines === */
.kinetic-headline {
    /* Block-level + eigen clip-box. Voorkomt baseline-issues in flex-containers
       (waar inline-block headlines verkeerd uitlijnen tegen sibling-knoppen). */
    display: block;
    overflow: hidden;
    padding-bottom: 0.05em; /* descenders niet afsnijden */
}
.kinetic-headline__word {
    display: inline-block;
    vertical-align: top;
    transform: translateY(120%) skewY(8deg);
    opacity: 0;
    transition:
        transform 1.1s cubic-bezier(.16, 1, .3, 1),
        opacity .8s var(--ease);
    transition-delay: calc(var(--i, 0) * 0.07s);
}
.is-in-view .kinetic-headline__word,
.kinetic-headline.is-in-view .kinetic-headline__word {
    transform: translateY(0) skewY(0);
    opacity: 1;
}

/* Reduced motion: respecteer voorkeuren */
@media (prefers-reduced-motion: reduce) {
    [data-fade],
    [data-anim],
    .kinetic-headline__word,
    .story__inner,
    .bouquet__image,
    .bouquet__overlay {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}

/* =========================================================
   VIEW TRANSITIONS API — productfoto blijft staan tijdens nav
   ========================================================= */
@supports (view-transition-name: foo) {
    /* Cross-page fade voor de root */
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation-duration: .55s;
        animation-timing-function: cubic-bezier(.16,1,.3,1);
    }
    /* Image die meeshift krijgt zachte timing */
    ::view-transition-old(*),
    ::view-transition-new(*) {
        animation-duration: .7s;
        animation-timing-function: cubic-bezier(.16,1,.3,1);
    }
}

/* =========================================================
   INLINE EDITOR — alleen zichtbaar voor admins
   ========================================================= */
.bs-edit-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(90deg, #1d2613 0%, #2b361c 100%);
    color: #f4f1ea;
    font-family: var(--body, 'Poppins', sans-serif);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(160, 171, 151, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.bs-edit-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.bs-edit-bar__group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bs-edit-bar__badge {
    display: inline-flex;
    align-items: center;
    background: var(--aloe, #a0ab97);
    color: var(--forest-deep, #1d2613);
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.72rem;
}
.bs-edit-bar__hint {
    color: rgba(244, 241, 234, 0.75);
    font-size: 0.78rem;
}
.bs-edit-bar__locale {
    color: rgba(244, 241, 234, 0.85);
    font-size: 0.78rem;
}
.bs-edit-bar__locale strong {
    color: var(--aloe, #a0ab97);
    font-weight: 500;
}
.bs-edit-bar__status {
    min-width: 100px;
    text-align: right;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(244, 241, 234, 0.7);
    transition: color 0.2s ease;
}
.bs-edit-bar__status[data-type="success"] { color: #a0ab97; font-style: normal; }
.bs-edit-bar__status[data-type="error"]   { color: #d97a6c; font-style: normal; }
.bs-edit-bar__btn {
    color: var(--aloe, #a0ab97);
    text-decoration: none;
    border: 1px solid rgba(160, 171, 151, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    font-size: 0.75rem;
    transition: background 0.2s ease;
}
.bs-edit-bar__btn:hover {
    background: rgba(160, 171, 151, 0.1);
}

/* Push pagecontent omlaag zodat editor bar niet over hero valt */
body:has(.bs-edit-bar) {
    padding-top: 48px;
}

/* Editable hover/active states */
[data-editable] {
    cursor: text;
    transition: outline-color 0.15s ease, background 0.15s ease;
    outline: 1px dashed transparent;
    outline-offset: 4px;
    border-radius: 2px;
}
[data-editable]:hover {
    outline-color: rgba(160, 171, 151, 0.6);
    background: rgba(160, 171, 151, 0.05);
}
[data-editable].bs-editing {
    outline: 2px solid var(--aloe, #a0ab97);
    background: rgba(244, 241, 234, 0.95);
    color: var(--forest-deep, #1d2613) !important;
    text-shadow: none !important;
    cursor: text;
}
[data-editable].bs-editing * {
    color: inherit !important;
    text-shadow: none !important;
}

/* Editable images */
[data-editable-image] {
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s ease;
}
[data-editable-image]:hover {
    opacity: 0.85;
}
[data-editable-image]::after {
    content: '✎ klik om foto te wijzigen';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(29, 38, 19, 0.85);
    color: var(--cream, #f4f1ea);
    padding: 0.45rem 0.85rem;
    font-family: var(--body, 'Poppins', sans-serif);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 5;
}
[data-editable-image]:hover::after {
    opacity: 1;
}

/* Story placeholder image */
.story__image--placeholder {
    width: 100%;
    height: 100%;
    background: #2b361c;
    cursor: pointer;
}
.story__image--placeholder svg {
    width: 100%;
    height: 100%;
}

/* Reduced motion: geen flashy transitions in editor */
@media (prefers-reduced-motion: reduce) {
    [data-editable],
    [data-editable-image] {
        transition: none;
    }
}

/* Newsletter optin checkbox in account & elsewhere */
.newsletter-optin {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border: 1px solid rgba(96,112,88,0.15);
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s ease;
}
.newsletter-optin:hover {
    background: rgba(160,171,151,0.15);
}
.newsletter-optin input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--forest-deep);
    flex-shrink: 0;
    cursor: pointer;
}
.newsletter-optin span {
    font-size: .92rem;
    color: var(--forest-deep);
    line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════
   SEARCH — overlay, dropdown, /zoek pagina
   ═══════════════════════════════════════════════════════════ */

/* Header search trigger button */
.site-header__search-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay (full-screen drop-down vanaf header) */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.search-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(29, 38, 19, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.search-overlay__panel {
    position: relative;
    background: var(--cream);
    max-width: 720px;
    margin: 6vh auto 0;
    box-shadow: 0 12px 40px rgba(29, 38, 19, 0.25);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
}
.search-overlay.is-open .search-overlay__panel {
    transform: translateY(0);
    opacity: 1;
}

.search-overlay__form {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(96, 112, 88, 0.18);
    background: var(--cream);
}
.search-overlay__icon {
    width: 22px;
    height: 22px;
    color: var(--olive);
    flex-shrink: 0;
}
.search-overlay__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--forest-deep);
    outline: none;
    padding: .25rem 0;
}
.search-overlay__input::placeholder {
    color: var(--olive);
    opacity: .55;
    font-style: italic;
}
.search-overlay__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s var(--ease);
}
.search-overlay__close:hover { background: rgba(96,112,88,0.1); }
.search-overlay__close svg { width: 20px; height: 20px; }

.search-overlay__results {
    overflow-y: auto;
    max-height: calc(88vh - 80px);
    padding: 1rem 0;
}
.search-overlay__hint {
    color: var(--olive);
    text-align: center;
    font-style: italic;
    padding: 2rem 1.5rem;
    font-size: .92rem;
}
.search-overlay__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.search-overlay__more {
    display: block;
    padding: 1rem 1.5rem;
    text-align: center;
    background: rgba(96, 112, 88, 0.08);
    color: var(--forest-deep);
    text-decoration: none;
    font-size: .9rem;
    letter-spacing: .04em;
    border-top: 1px solid rgba(96, 112, 88, 0.15);
    transition: background .2s var(--ease);
}
.search-overlay__more:hover {
    background: rgba(96, 112, 88, 0.18);
}

/* Search result rows (gedeeld door overlay én /zoek pagina) */
.search-result {
    list-style: none;
    border-bottom: 1px solid rgba(96, 112, 88, 0.1);
}
.search-result:last-child { border-bottom: none; }
.search-result__link {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--forest-deep);
    align-items: center;
    transition: background .2s var(--ease);
}
.search-result__link:hover,
.search-result__link.is-highlight {
    background: rgba(160, 171, 151, 0.18);
}
.search-result__image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background: var(--paper);
    border-radius: 4px;
}
.search-result__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.search-result__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.search-result__type {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 500;
}
.search-result__title {
    font-family: var(--display);
    font-size: 1.05rem;
    color: var(--forest-deep);
    line-height: 1.3;
}
.search-result__snippet {
    font-size: .85rem;
    color: rgba(43, 54, 28, 0.7);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* /zoek pagina */
.page-search { background: var(--cream); }
.search-page__hero {
    background: var(--cream);
    padding: 7rem 1.5rem 3rem;
    text-align: center;
}
.search-page__hero-inner { max-width: 720px; margin: 0 auto; }
.search-page__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--forest-deep);
    line-height: 1.2;
    margin: 1rem 0 2rem;
}
.search-page__title em {
    font-style: italic;
    color: var(--olive);
}
.search-page__form {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(96, 112, 88, 0.25);
    padding: .25rem .25rem .25rem 1.25rem;
    max-width: 560px;
    margin: 0 auto;
}
.search-page__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--body);
    font-size: 1rem;
    color: var(--forest-deep);
    outline: none;
    padding: .85rem .5rem;
}
.search-page__submit {
    background: var(--forest-deep);
    border: none;
    color: white;
    padding: .85rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-page__body {
    background: white;
    padding: 3rem 1.5rem 5rem;
}
.search-page__inner { max-width: 760px; margin: 0 auto; }
.search-page__empty {
    text-align: center;
    color: var(--olive);
    padding: 3rem 1rem;
    font-style: italic;
}
.search-page__count {
    color: var(--olive);
    font-size: .85rem;
    letter-spacing: .04em;
    margin-bottom: 2rem;
}
.search-group {
    margin-bottom: 3rem;
}
.search-group__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(96, 112, 88, 0.2);
}
.search-group__count {
    color: var(--olive);
    font-size: .9rem;
    font-style: italic;
}
.search-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 600px) {
    .search-overlay__panel { margin-top: 0; max-height: 100vh; }
    .search-overlay__results { max-height: calc(100vh - 80px); }
    .search-overlay__input { font-size: 1.15rem; }
}

/* Button-as-icon reset (search trigger in header) */
button.site-header__icon {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: var(--cream);
}

/* ── Bevestigingsmodal (vervangt native confirm) ── */
.bs-confirm {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.bs-confirm[hidden] { display: none; }
.bs-confirm__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(29, 38, 19, .45);
    backdrop-filter: blur(2px);
    animation: bsConfirmFade .18s ease;
}
.bs-confirm__dialog {
    position: relative;
    background: var(--cream);
    border: 1px solid rgba(96, 112, 88, .2);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(29, 38, 19, .25);
    max-width: 420px;
    width: 100%;
    padding: 2rem 1.85rem 1.6rem;
    animation: bsConfirmPop .2s ease;
}
.bs-confirm__msg {
    margin: 0 0 1.6rem;
    color: var(--forest-deep);
    font-size: 1.02rem;
    line-height: 1.5;
}
.bs-confirm__actions {
    display: flex;
    justify-content: flex-end;
    gap: .65rem;
}
.bs-confirm__actions .btn { min-width: 120px; }
#bsConfirmOk.bs-confirm__ok--danger {
    background: #b25149;
    border-color: #b25149;
    color: #fff;
}
@keyframes bsConfirmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bsConfirmPop {
    from { opacity: 0; transform: translateY(8px) scale(.98); }
    to   { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
    .bs-confirm__actions { flex-direction: column-reverse; }
    .bs-confirm__actions .btn { width: 100%; }
}

/* ── Abonnement: formaat + boeket kiezen (klantportaal) ── */
.bs-picker__label {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--olive);
    margin: 1.4rem 0 .6rem;
}
.bs-picker__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.bs-picker__size {
    border: 1px solid rgba(96, 112, 88, .3);
    background: var(--white);
    border-radius: 8px;
    padding: .6rem .95rem;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: var(--forest-deep);
    transition: border-color .15s, background .15s;
}
.bs-picker__size:hover { border-color: var(--aloe); }
.bs-picker__size.is-active {
    border-color: var(--olive);
    background: rgba(160, 171, 151, .16);
}
.bs-picker__size strong { display: block; font-size: .92rem; }
.bs-picker__size em { font-style: normal; color: var(--olive); font-size: .76rem; }
.bs-picker__bouquets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .85rem;
}
.bs-picker__bouquet {
    position: relative;
    border: 1px solid rgba(96, 112, 88, .25);
    background: var(--white);
    border-radius: 8px;
    padding: .5rem;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: var(--forest-deep);
    transition: border-color .15s, background .15s;
}
.bs-picker__bouquet.is-chosen { border-color: var(--olive); }
.bs-picker__chosen {
    position: absolute;
    top: .45rem;
    left: .45rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .22rem;
    background: var(--olive);
    color: var(--cream) !important;
    font-size: .6rem !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .2rem .42rem;
    border-radius: 100px;
    line-height: 1;
    box-shadow: 0 3px 8px -4px rgba(43, 54, 28, 0.6);
}
.bs-picker__chosen svg { flex: 0 0 auto; }
.bs-picker__bouquet:hover { border-color: var(--aloe); }
.bs-picker__bouquet.is-active {
    border-color: var(--olive);
    background: rgba(160, 171, 151, .16);
}
.bs-picker__bouquet img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: var(--cream);
    border-radius: 5px;
    display: block;
    margin-bottom: .45rem;
}
.bs-picker__bouquet strong { display: block; font-size: .9rem; line-height: 1.25; }
.bs-picker__bouquet span { color: var(--olive); font-size: .82rem; }
