/* ─── Design Tokens ───────────────────────────────────────────────────────────
   Prestige Champagne — Frontend Design System
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    /* Kleuren */
    --c-bg:         #f7f4ef;
    --c-surface:    #f0ece4;
    --c-surface-2:  #e8e2d8;
    --c-border:     #d4cdc0;
    --c-gold:       #b8962e;
    --c-gold-dark:  #9a7a22;
    --c-gold-bg:    rgba(184, 150, 46, 0.10);
    --c-text:       #1a1a18;
    --c-text-2:     #6b6860;
    --c-text-3:     #a8a5a0;
    --c-white:      #ffffff;
    --c-overlay:    rgba(20, 18, 14, 0.55);

    /* Typografie — clamp() voor vloeiende schaling */
    --fs-xs:    clamp(0.6875rem, 0.65rem + 0.19vw, 0.75rem);
    --fs-sm:    clamp(0.8125rem, 0.78rem + 0.16vw, 0.875rem);
    --fs-base:  clamp(0.9375rem, 0.90rem + 0.19vw, 1rem);
    --fs-md:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --fs-lg:    clamp(1.25rem, 1.10rem + 0.75vw, 1.5rem);
    --fs-xl:    clamp(1.5rem, 1.30rem + 1.00vw, 2rem);
    --fs-2xl:   clamp(2rem, 1.60rem + 2.00vw, 3rem);
    --fs-3xl:   clamp(2.75rem, 2.00rem + 3.75vw, 4.5rem);
    --fs-hero:  clamp(3.5rem, 2.00rem + 7.50vw, 7rem);

    /* Border-radius — grote radii conform design systeem */
    --r-xs:     0.5rem;
    --r-sm:     1rem;
    --r-md:     1.5rem;
    --r-lg:     2rem;
    --r-xl:     3rem;
    --r-pill:   100px;

    /* Spacing */
    --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
    --sp-5: 1.25rem;  --sp-6: 1.5rem;   --sp-8: 2rem;     --sp-10: 2.5rem;
    --sp-12: 3rem;    --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Layout */
    --max-w:    1340px;
    --cp:       clamp(1rem, 4vw, 2.5rem);

    /* Componenthoogtes */
    --usp-h:    36px;
    --header-h: 76px;

    /* Easing — conform PRD animatiecyclus */
    --ease-mag:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:    cubic-bezier(0.16, 1.00, 0.30, 1.00);
    --ease-inout:  cubic-bezier(0.45, 0.05, 0.55, 0.95);

    /* Schaduwen */
    --shadow-sm:  0 1px 4px rgba(0,0,0,.05), 0 0 1px rgba(0,0,0,.03);
    --shadow-md:  0 4px 20px rgba(0,0,0,.08), 0 0 1px rgba(0,0,0,.04);
    --shadow-lg:  0 8px 48px rgba(0,0,0,.12), 0 0 2px rgba(0,0,0,.05);
    --shadow-xl:  0 24px 80px rgba(0,0,0,.18);
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100dvh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }


/* ─── Noise Overlay (feTurbulence — opaciteit 0.05) ───────────────────────── */
.noise-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
}


/* ─── Container ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--cp);
}


/* ─── Page Wrap ────────────────────────────────────────────────────────────── */
#page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: calc(var(--usp-h) + var(--header-h));
}

#page-wrap > main {
    flex: 1;
}


/* ─── Typografie ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.35;
}

p { line-height: 1.7; }

em { font-style: italic; }

.label {
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
}


/* ─── Knoppen ───────────────────────────────────────────────────────────────── */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.75rem 1.75rem;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        transform 180ms var(--ease-mag),
        box-shadow 300ms var(--ease-mag),
        background-color 200ms var(--ease-mag),
        color 200ms var(--ease-mag),
        border-color 200ms var(--ease-mag);
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 200ms;
}

/* Magnetisch hover-effect conform PRD */
.btn:hover {
    transform: scale(1.03) translateY(-1px);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.99); }

.btn--primary {
    background-color: var(--c-gold);
    color: var(--c-white);
    box-shadow: 0 4px 24px rgba(184, 150, 46, 0.32);
}

.btn--primary:hover {
    background-color: var(--c-gold-dark);
    box-shadow: 0 8px 36px rgba(184, 150, 46, 0.48);
}

.btn--outline {
    background-color: transparent;
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
}

.btn--outline:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.btn--ghost {
    background: transparent;
    color: var(--c-text-2);
}

.btn--ghost:hover {
    color: var(--c-gold);
    background: var(--c-gold-bg);
}

.btn--sm  { padding: 0.5rem 1.25rem; font-size: var(--fs-xs); }
.btn--lg  { padding: 1rem 2.5rem;    font-size: var(--fs-md); }
.btn--full { width: 100%; }


/* ─── USP-balk ──────────────────────────────────────────────────────────────── */
.usp-bar {
    height: var(--usp-h);
    background: var(--c-text);
    color: var(--c-text-3);
    font-size: var(--fs-xs);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.usp-bar__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 5vw, 3.5rem);
    width: 100%;
}

.usp-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usp-bar__item svg {
    width: 13px;
    height: 13px;
    color: var(--c-gold);
    flex-shrink: 0;
}


/* ─── Site Bar (USP + Header gecombineerd voor één vloeiende animatie) ──────── */
#site-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: transform 350ms var(--ease-mag);
}

#site-bar.is-hidden {
    transform: translateY(-100%);
}


/* ─── Header ────────────────────────────────────────────────────────────────── */
.site-header {
    height: var(--header-h);
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    transition: box-shadow 300ms var(--ease-mag), background-color 300ms;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--c-text);
    transition: opacity 150ms;
}

.site-logo:hover { opacity: 0.82; }

.site-logo svg,
.site-logo img {
    height: 54px;
    width: auto;
}

/* Navigatie */
.site-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
}

.site-nav__link {
    position: relative;
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-text);
    transition: color 150ms, transform 150ms var(--ease-mag);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease-mag);
}

.site-nav__link:hover {
    color: var(--c-gold);
    transform: translateY(-1px);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__link.is-active { color: var(--c-gold); }

/* Nav-acties (account, taal) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--c-text-2);
    transition: color 150ms, background 150ms, transform 150ms var(--ease-mag);
}

.nav-icon-btn:hover {
    color: var(--c-gold);
    background: var(--c-gold-bg);
    transform: translateY(-1px);
}

.nav-icon-btn svg { width: 20px; height: 20px; }

/* Taalkiezer */
.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    overflow: hidden;
}

.lang-switcher__opt {
    padding: 0.28rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-2);
    transition: background 150ms, color 150ms;
    line-height: 1;
}

.lang-switcher__opt:hover,
.lang-switcher__opt.is-active {
    background: var(--c-gold);
    color: var(--c-white);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 150ms;
}

.nav-hamburger:hover { background: var(--c-gold-bg); }

.nav-hamburger__bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--c-text);
    transition: transform 320ms var(--ease-mag), opacity 200ms;
    transform-origin: center;
}

.nav-hamburger.is-open .nav-hamburger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ─── Mobiel navigatiemenu ────────────────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 490;
    background: var(--c-bg);
    flex-direction: column;
    padding: var(--sp-8) var(--cp) var(--sp-12);
    gap: 0;
    transform: translateX(-100%);
    transition: transform 480ms var(--ease-out);
    overflow-y: auto;
    border-top: 1px solid var(--c-border);
}

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

.mobile-nav__link {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 300;
    color: var(--c-text);
    padding-block: var(--sp-4);
    border-bottom: 1px solid var(--c-border);
    transition: color 150ms, padding-left 300ms var(--ease-mag);
}

.mobile-nav__link:hover {
    color: var(--c-gold);
    padding-left: var(--sp-3);
}

.mobile-nav__link.is-active { color: var(--c-gold); }

.mobile-nav__footer {
    margin-top: var(--sp-8);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}


/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--c-text);
    color: rgba(255, 255, 255, 0.5);
    padding-top: var(--sp-20);
    padding-bottom: var(--sp-12);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-16);
}

/* Logo in footer — gebruik currentColor om logo tekst crème te maken */
.footer-logo-link {
    display: inline-block;
    color: #ede8df;
    margin-bottom: var(--sp-5);
    transition: opacity 150ms;
}

.footer-logo-link:hover { opacity: 0.8; }

.footer-logo-link svg,
.footer-logo-link img {
    height: 60px;
    width: auto;
}

.footer-tagline {
    font-size: var(--fs-sm);
    line-height: 1.75;
    max-width: 30ch;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: var(--sp-5);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-nav__link {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.55);
    display: inline-block;
    transition: color 150ms, transform 200ms var(--ease-mag);
}

.footer-nav__link:hover {
    color: var(--c-gold);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
}

.footer-contact__item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--c-gold);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-xs);
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.footer-bottom__links {
    display: flex;
    gap: var(--sp-4);
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 150ms;
}

.footer-bottom__links a:hover { color: var(--c-gold); }


/* ─── Cart — zwevende knop ────────────────────────────────────────────────── */
.cart-fab {
    position: fixed;
    bottom: var(--sp-8);
    right: var(--sp-8);
    z-index: 600;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--c-gold);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 28px rgba(184, 150, 46, 0.45);
    transition:
        transform 180ms var(--ease-mag),
        box-shadow 280ms var(--ease-mag);
}

.cart-fab:hover {
    transform: scale(1.09) translateY(-2px);
    box-shadow: 0 10px 40px rgba(184, 150, 46, 0.60);
}

.cart-fab svg { width: 24px; height: 24px; }

.cart-fab__count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    background: var(--c-text);
    color: var(--c-white);
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--c-bg);
    line-height: 1;
}

.cart-fab__count:empty,
.cart-fab__count[data-count="0"] { display: none; }


/* ─── Cart Panel ────────────────────────────────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 700;
    background: var(--c-overlay);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 320ms var(--ease-mag),
        visibility 320ms;
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    width: min(700px, 100vw);
    background: var(--c-bg);
    display: flex;
    flex-direction: column;
    transform: translateX(102%);
    transition: transform 480ms var(--ease-out);
    box-shadow: -12px 0 80px rgba(0, 0, 0, 0.18);
}

.cart-panel.is-open { transform: translateX(0); }

.cart-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) var(--sp-8);
    border-bottom: 1px solid var(--c-border);
    flex-shrink: 0;
}

.cart-panel__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 400;
}

.cart-panel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--c-text-2);
    transition: color 150ms, background 150ms;
}

.cart-panel__close:hover {
    color: var(--c-text);
    background: var(--c-surface);
}

.cart-panel__close svg { width: 20px; height: 20px; }

.cart-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--sp-6) var(--sp-8);
}

/* Lege cart staat */
.cart-empty {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    text-align: center;
}

.cart-empty svg {
    width: 52px;
    height: 52px;
    color: var(--c-text-3);
}

.cart-empty__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--c-text);
}

.cart-empty__text {
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    max-width: 26ch;
    line-height: 1.6;
}

/* Cart items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--sp-4);
    padding-block: var(--sp-5);
    border-bottom: 1px solid var(--c-border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--r-sm);
    background: var(--c-surface);
    flex-shrink: 0;
}

.cart-item__content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    min-width: 0;
}

.cart-item__name {
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 1.35;
    color: var(--c-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__meta {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
}

.cart-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: auto;
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    overflow: hidden;
    padding: 2px;
}

.cart-item__qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--c-text-2);
    transition: background 150ms, color 150ms;
}

.cart-item__qty-btn:hover {
    background: var(--c-gold-bg);
    color: var(--c-gold);
}

.cart-item__qty-input {
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--c-text);
    padding: 0;
    -moz-appearance: textfield;
}

.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-item__price {
    font-size: var(--fs-sm);
    font-weight: 600;
    white-space: nowrap;
}

.cart-item__remove {
    color: var(--c-text-3);
    padding: var(--sp-1);
    transition: color 150ms, transform 150ms;
}

.cart-item__remove:hover {
    color: #c0392b;
    transform: scale(1.1);
}

.cart-item__remove svg { width: 16px; height: 16px; }

/* Cart footer totalen */
.cart-panel__footer {
    padding: var(--sp-6) var(--sp-8);
    border-top: 1px solid var(--c-border);
    background: var(--c-surface);
    flex-shrink: 0;
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
}

.cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    color: var(--c-text-2);
}

.cart-totals__row--total {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--c-text);
    padding-top: var(--sp-3);
    border-top: 1px solid var(--c-border);
    margin-top: var(--sp-1);
}

.cart-totals__row--total .cart-total-amount {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 500;
}

.cart-tax-note {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    margin-bottom: var(--sp-5);
}


/* ─── Cookie Banner ─────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: var(--sp-8);
    left: var(--sp-8);
    z-index: 9500;
    max-width: 400px;
    background: var(--c-text);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    transform: translateY(calc(100% + var(--sp-8)));
    transition: transform 520ms var(--ease-out);
    pointer-events: none;
    opacity: 0;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
    transition: transform 520ms var(--ease-out), opacity 300ms;
}

.cookie-banner__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--c-white);
}

.cookie-banner__text {
    font-size: var(--fs-sm);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner__text a {
    color: var(--c-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--sp-3);
}

.cookie-btn-accept,
.cookie-btn-reject {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-align: center;
    transition: background 150ms, color 150ms, transform 150ms var(--ease-mag), border-color 150ms;
}

.cookie-btn-accept {
    background: var(--c-gold);
    color: var(--c-white);
}

.cookie-btn-accept:hover {
    background: var(--c-gold-dark);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.65);
}

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--c-white);
    transform: translateY(-1px);
}


/* ─── Product Card ────────────────────────────────────── */
.product-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 300ms var(--ease-mag), box-shadow 300ms var(--ease-mag);
}

.product-card:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--c-surface-2);
}

.product-card__body {
    padding: var(--sp-5) var(--sp-6) var(--sp-6);
}

.product-card__label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-3);
    margin-bottom: var(--sp-1);
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--sp-2);
}

.product-card__price {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--c-text);
}

.product-card__price--sale { color: var(--c-gold); }

.product-card__price-old {
    font-size: var(--fs-sm);
    text-decoration: line-through;
    color: var(--c-text-3);
    margin-left: var(--sp-2);
    font-weight: 400;
}

.product-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--c-gold-bg);
    color: var(--c-gold);
}


/* ─── Sectie-layout helpers ─────────────────────────────────────────────────── */
.section {
    padding-block: var(--sp-20);
}

.section--lg { padding-block: var(--sp-32); }

.section__header {
    margin-bottom: var(--sp-12);
}

.section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
    line-height: 1.05;
}

.section__subtitle {
    font-size: var(--fs-md);
    color: var(--c-text-2);
    margin-top: var(--sp-4);
    max-width: 52ch;
    line-height: 1.7;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}


/* ─── Utilities ─────────────────────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.text-gold   { color: var(--c-gold); }
.text-muted  { color: var(--c-text-2); }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin-block: var(--sp-8);
}


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

@media (max-width: 900px) {
    :root {
        --usp-h: 0px;
    }

    .usp-bar { display: none; }

    #page-wrap {
        padding-top: var(--header-h);
    }

    .site-nav,
    .nav-actions { display: none; }

    .nav-hamburger { display: flex; }

    .mobile-nav { display: flex; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cart-panel { width: 100vw; }

    .cookie-banner {
        left: var(--sp-4);
        right: var(--sp-4);
        bottom: var(--sp-4);
        max-width: 100%;
    }

    .cart-fab {
        bottom: var(--sp-4);
        right: var(--sp-4);
        width: 52px;
        height: 52px;
    }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }

    .cart-panel__header,
    .cart-panel__body,
    .cart-panel__footer { padding-inline: var(--sp-4); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(78dvh - var(--usp-h) - var(--header-h));
    overflow: hidden;
    background: var(--c-bg);
}

/* Linker teksthelft */
.hero__content {
    position: relative;
    z-index: 2;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-6);
    padding-block: var(--sp-20);
    padding-left: clamp(2.5rem, 7vw, 6rem);
    padding-right: var(--sp-12);
    background: #ebe6df;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    font-weight: 300;
    line-height: 1.0;
    color: var(--c-text);
    letter-spacing: -0.02em;
}

.hero__title em {
    color: var(--c-gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: var(--fs-md);
    color: var(--c-text-2);
    max-width: 54ch;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    margin-top: var(--sp-2);
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-top: var(--sp-2);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    letter-spacing: 0.03em;
}

.hero__trust-item svg {
    color: var(--c-gold);
    flex-shrink: 0;
}

/* Rechter afbeeldingshelft — absoluut gepositioneerd */
.hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero__img-wrap {
    width: 100%;
    height: 100%;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Verticale goud-accentlijn */
.hero__accent-line {
    position: absolute;
    top: 10%;
    left: 0;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--c-gold) 30%, var(--c-gold) 70%, transparent);
    opacity: 0.6;
}


@media (max-width: 900px) {
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    .hero__content {
        width: 100%;
        padding: var(--sp-16) var(--cp) var(--sp-10);
    }

    .hero__visual {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .hero__accent-line { display: none; }
}

@media (max-width: 600px) {
    .hero__content { gap: var(--sp-5); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOME — SECTIE-HELPERS
   ═══════════════════════════════════════════════════════════════════════ */
.section--surface {
    background: var(--c-surface-2);
}

.section__cta {
    display: flex;
    justify-content: center;
    margin-top: var(--sp-12);
}

.section__cta .btn svg {
    transition: transform 200ms var(--ease-mag);
}

.section__cta .btn:hover svg {
    transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD — add-to-cart knop + verbeteringen
   ═══════════════════════════════════════════════════════════════════════ */
.product-card__img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--c-surface-2);
    transition: transform 420ms var(--ease-mag);
    display: block;
}

.product-card:hover .product-card__img {
    transform: scale(1.04);
}

.product-card__badge {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
}

.product-card__badge--sale {
    background: rgba(184, 150, 46, 0.92);
    color: var(--c-white);
}

.product-card__meta {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    margin-top: var(--sp-1);
}

.product-card__desc {
    font-size: var(--fs-xs);
    color: var(--c-text-2);
    line-height: 1.6;
    margin-top: var(--sp-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__name a {
    color: inherit;
    transition: color 150ms;
}

.product-card__name a:hover { color: var(--c-gold); }

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: var(--sp-4);
}

.product-card__atc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--c-gold);
    color: var(--c-white);
    flex-shrink: 0;
    transition: background 150ms, transform 180ms var(--ease-mag), box-shadow 200ms;
    box-shadow: 0 3px 12px rgba(184, 150, 46, 0.35);
}

.product-card__atc:hover {
    background: var(--c-gold-dark);
    transform: scale(1.09);
    box-shadow: 0 5px 20px rgba(184, 150, 46, 0.55);
}

/* Grotere kaart variant voor featured */
.product-card--lg .product-card__name {
    font-size: var(--fs-xl);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOME — OVER ONS SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
.about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-20);
    align-items: center;
}

.about__image-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-xl);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms var(--ease-mag);
}

.about__image-wrap:hover .about__img { transform: scale(1.03); }

.about__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
    line-height: 1.08;
    margin-top: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.about__title em {
    color: var(--c-gold);
    font-style: italic;
}

.about__text {
    font-size: var(--fs-base);
    color: var(--c-text-2);
    line-height: 1.78;
    margin-bottom: var(--sp-5);
    max-width: 50ch;
}

.about__stats {
    display: flex;
    gap: var(--sp-8);
    margin-block: var(--sp-6) var(--sp-8);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.about__stat-num {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--c-gold);
    line-height: 1;
}

.about__stat-plus {
    font-size: 0.7em;
    vertical-align: super;
}

.about__stat-label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
}

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .about__image-wrap { aspect-ratio: 16 / 9; }

    .about__stats { gap: var(--sp-6); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOME — CALL TO ACTION SECTIE
   ═══════════════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--c-text);
    padding-block: var(--sp-24);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-6);
    max-width: 680px;
    margin-inline: auto;
}

.label--light {
    color: rgba(255, 255, 255, 0.5);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
    color: var(--c-white);
    line-height: 1.06;
}

.cta-title em {
    color: var(--c-gold);
    font-style: italic;
}

.cta-text {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 46ch;
}

.cta-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--sp-2);
}

.btn--outline-light {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline-light:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

@media (max-width: 600px) {
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SHOP PAGINA
   ═══════════════════════════════════════════════════════════════════════ */
.shop-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
    flex-wrap: wrap;
}

.shop-page-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
}

.shop-page-count {
    font-size: var(--fs-sm);
    margin-top: var(--sp-1);
}

.shop-reset-link {
    color: var(--c-gold);
    font-size: var(--fs-sm);
    transition: opacity 150ms;
}

.shop-reset-link:hover { opacity: 0.75; }

.shop-sort__select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    background: var(--c-bg);
    font-size: var(--fs-sm);
    color: var(--c-text);
    cursor: pointer;
    transition: border-color 150ms;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6860' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.shop-sort__select:focus { border-color: var(--c-gold); outline: none; }

/* Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--sp-10);
    align-items: start;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: calc(var(--usp-h) + var(--header-h) + var(--sp-6));
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
}

.filter-group {
    padding-bottom: var(--sp-5);
    margin-bottom: var(--sp-5);
    border-bottom: 1px solid var(--c-border);
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-group__title {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-2);
    margin-bottom: var(--sp-3);
}

.filter-scroll {
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--c-border) transparent;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    padding: 0.28rem 0;
    cursor: pointer;
    transition: color 150ms;
}

.filter-option:hover { color: var(--c-gold); }

.filter-option input[type="radio"] {
    width: 15px;
    height: 15px;
    accent-color: var(--c-gold);
    flex-shrink: 0;
    cursor: pointer;
}

.filter-clear-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    margin-top: var(--sp-2);
    transition: color 150ms;
}

.filter-clear-link:hover { color: var(--c-gold); }

/* Shop leeg state */
.shop-empty {
    grid-column: 1 / -1;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    text-align: center;
    color: var(--c-text-3);
}

.shop-empty__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 400;
    color: var(--c-text-2);
}

.shop-empty__text { font-size: var(--fs-sm); }

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

    .shop-sidebar {
        position: static;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════════════ */
.breadcrumb {
    margin-bottom: var(--sp-8);
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-1);
    font-size: var(--fs-sm);
    color: var(--c-text-3);
}

.breadcrumb__item a {
    color: var(--c-text-2);
    transition: color 150ms;
}

.breadcrumb__item a:hover { color: var(--c-gold); }

.breadcrumb__sep { color: var(--c-border); }

.breadcrumb__current { color: var(--c-text); }


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGINA
   ═══════════════════════════════════════════════════════════════════════ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: start;
    margin-bottom: var(--sp-20);
}

/* Gallerij */
.product-gallery {
    position: sticky;
    top: calc(var(--usp-h) + var(--header-h) + var(--sp-6));
}

.product-gallery__main {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--c-surface);
}

.product-gallery__main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.product-detail__badge {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--c-gold-bg);
    color: var(--c-gold);
}

.product-detail__badge.product-card__badge--sale {
    background: rgba(184, 150, 46, 0.92);
    color: var(--c-white);
}

.product-gallery__thumbs {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-3);
    flex-wrap: wrap;
}

.product-gallery__thumb {
    width: 76px;
    height: 76px;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 150ms, opacity 150ms;
    opacity: 0.7;
    flex-shrink: 0;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
    border-color: var(--c-gold);
    opacity: 1;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product info */
.product-info {
    padding-top: var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.product-info__name {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 300;
    line-height: 1.1;
    color: var(--c-text);
}

/* Prijs */
.product-info__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.product-info__price-sale {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--c-gold);
}

.product-info__price-regular {
    font-size: var(--fs-md);
    color: var(--c-text-3);
    text-decoration: line-through;
}

.product-info__price-regular--main {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--c-text);
    text-decoration: none;
}

.product-info__price-save {
    font-size: var(--fs-xs);
    color: var(--c-gold);
    background: var(--c-gold-bg);
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-pill);
    font-weight: 500;
}

/* Kerneigenschappen tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.product-tag {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.35rem 0.85rem;
    background: var(--c-surface);
    border-radius: var(--r-pill);
    border: 1px solid var(--c-border);
    font-size: var(--fs-xs);
}

.product-tag dt {
    color: var(--c-text-3);
    font-weight: 500;
}

.product-tag dt::after { content: ':'; margin-right: 0.1em; }

.product-tag dd {
    color: var(--c-text);
    font-weight: 500;
}

/* Speciale noot */
.product-special-note {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    background: var(--c-gold-bg);
    border: 1px solid rgba(184, 150, 46, 0.25);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
}

.product-special-note svg {
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Aantal + ATC */
.product-atc {
    display: flex;
    gap: var(--sp-3);
    align-items: stretch;
}

.product-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-pill);
    overflow: hidden;
    background: var(--c-bg);
    transition: border-color 150ms;
}

.product-qty:focus-within { border-color: var(--c-gold); }

.product-qty__btn {
    width: 42px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-2);
    transition: color 150ms, background 150ms;
    flex-shrink: 0;
}

.product-qty__btn:hover {
    color: var(--c-gold);
    background: var(--c-gold-bg);
}

.product-qty__input {
    width: 48px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--c-text);
    padding: 0;
    -moz-appearance: textfield;
}

.product-qty__input::-webkit-outer-spin-button,
.product-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }

.product-atc__btn { flex: 1; }

/* Leveringsinformatie */
.product-delivery-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--c-border);
}

.product-delivery-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text-2);
}

.product-delivery-item svg { color: var(--c-gold); flex-shrink: 0; }

/* Beschrijving + specs grid */
.product-details-section {
    padding-block: var(--sp-16);
    border-top: 1px solid var(--c-border);
}

.product-details-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 400;
    margin-bottom: var(--sp-6);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--sp-16);
    align-items: start;
}

.product-desc {
    font-size: var(--fs-base);
    color: var(--c-text-2);
    line-height: 1.8;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--c-border);
    font-size: var(--fs-sm);
}

.product-spec-row:last-child { border-bottom: none; }

.product-spec-row dt {
    color: var(--c-text-3);
    font-weight: 500;
}

.product-spec-row dd { color: var(--c-text); }

/* Andere jaargangen */
.product-vintages {
    padding-block: var(--sp-10);
    border-top: 1px solid var(--c-border);
}

.product-vintages__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-4);
}

.vintage-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: var(--sp-3) var(--sp-5);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: border-color 200ms, background 200ms, transform 150ms var(--ease-mag);
}

.vintage-pill:hover {
    border-color: var(--c-gold);
    background: var(--c-gold-bg);
    transform: translateY(-2px);
}

.vintage-pill__year {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--c-text);
}

.vintage-pill__price {
    font-size: var(--fs-xs);
    color: var(--c-text-2);
}

/* Gerelateerde producten */
.product-related {
    padding-block: var(--sp-10) var(--sp-6);
    border-top: 1px solid var(--c-border);
}

/* Cart item top-row fix voor JS render */
.cart-item__top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-2);
}

.cart-item__img-link {
    display: block;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .product-gallery {
        position: static;
    }


    .product-details-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .product-atc {
        flex-direction: column;
    }

    .product-qty { border-radius: var(--r-lg); justify-content: center; }
    .product-atc__btn { width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   Account, Checkout, Checkout-complete
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─── Formulier systeem (gedeeld door account + checkout) ─────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
}

.form-label {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--c-text);
}

.form-required {
    color: var(--c-gold);
    margin-left: 2px;
}

.form-optional {
    color: var(--c-text-3);
    font-weight: 400;
    font-size: var(--fs-xs);
}

.form-hint {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    color: var(--c-text);
    font-size: var(--fs-sm);
    transition: border-color 180ms var(--ease-mag), box-shadow 180ms var(--ease-mag);
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-text-3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px var(--c-gold-bg);
}

.form-input.is-invalid,
.form-select.is-invalid {
    border-color: #d94f4f;
    box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.12);
}

.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
    background: var(--c-surface);
    color: var(--c-text-3);
    cursor: not-allowed;
}

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

/* Wrapper voor input + eye-icon */
.form-input-wrap {
    position: relative;
}

.form-input-wrap .form-input {
    padding-right: 2.75rem;
}

.form-pw-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-3);
    display: flex;
    align-items: center;
    transition: color 150ms;
}

.form-pw-toggle:hover { color: var(--c-text); }
.form-pw-toggle svg   { width: 16px; height: 16px; pointer-events: none; }

/* Select wrapper met chevron */
.form-select-wrap {
    position: relative;
}

.form-select-wrap .form-select {
    padding-right: 2.5rem;
}

.form-select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--c-text-3);
    width: 16px;
    height: 16px;
}

/* Checkbox */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--c-text);
    line-height: 1.5;
}

.form-checkbox-label a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }

.form-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-xs);
    background: var(--c-white);
    cursor: pointer;
    accent-color: var(--c-gold);
    margin-top: 2px;
}

/* Alert box */
.auth-alert {
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    line-height: 1.55;
}

.auth-alert--error {
    background: rgba(217, 79, 79, 0.08);
    border: 1px solid rgba(217, 79, 79, 0.25);
    color: #a83232;
}

.auth-alert--success {
    background: rgba(74, 145, 97, 0.08);
    border: 1px solid rgba(74, 145, 97, 0.25);
    color: #2f6b45;
}

.auth-forgot-link {
    display: inline-block;
    margin-top: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.auth-forgot-link:hover { color: var(--c-gold); }

/* Laad-spinner in knop */
.btn-loading { display: inline-flex; align-items: center; gap: var(--sp-2); }
.btn-loading[hidden] { display: none; }
.btn-loading svg { animation: spin 0.8s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }


/* ─── Account pagina ─────────────────────────────────────────────────────── */
.account-auth-section {
    padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0;
}

.account-auth-wrap {
    max-width: 500px;
    margin-inline: auto;
    background: var(--c-surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.account-auth-tabs {
    display: flex;
    border-bottom: 1.5px solid var(--c-border);
}

.auth-tab {
    flex: 1;
    padding: var(--sp-5) var(--sp-6);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--c-text-2);
    border-bottom: 2.5px solid transparent;
    transition: color 180ms, border-color 180ms;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.auth-tab:hover     { color: var(--c-text); }
.auth-tab.is-active {
    color: var(--c-gold);
    border-bottom-color: var(--c-gold);
}

.auth-panel { display: none; padding: var(--sp-10) var(--sp-8); }
.auth-panel.is-active { display: block; }

.auth-panel__header  { margin-bottom: var(--sp-8); }
.auth-panel__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    margin-bottom: var(--sp-2);
}
.auth-panel__sub { color: var(--c-text-2); font-size: var(--fs-sm); }

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    margin-bottom: var(--sp-6);
}

.auth-switch {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    margin-top: var(--sp-4);
}

.auth-switch__link {
    color: var(--c-gold);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
}

/* Dashboard */
.account-dashboard-section { padding: var(--sp-12) 0 var(--sp-16); }

.account-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-6);
    margin-bottom: var(--sp-10);
}

.account-page-title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    margin-top: var(--sp-2);
}

.account-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--sp-8);
    align-items: start;
}

.account-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
}

.account-card__title {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--c-border);
}

.account-card__title svg { width: 20px; height: 20px; color: var(--c-gold); flex-shrink: 0; }

.account-details-list { display: flex; flex-direction: column; gap: var(--sp-5); }

.account-details-row dt {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
    margin-bottom: var(--sp-1);
}

.account-details-row dd { font-size: var(--fs-sm); color: var(--c-text); line-height: 1.6; }

.account-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-10) 0;
    color: var(--c-text-3);
    text-align: center;
}

.account-empty-state svg { width: 40px; height: 40px; opacity: 0.4; }

/* Orders tabel */
.orders-table-wrap { overflow-x: auto; }

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.orders-table th {
    text-align: left;
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
    border-bottom: 1.5px solid var(--c-border);
}

.orders-table td {
    padding: var(--sp-4) var(--sp-4);
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}

.orders-table tr:last-child td { border-bottom: none; }

.order-id { font-weight: 600; color: var(--c-text); }
.order-total { font-weight: 600; }

/* Order status badges */
.order-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.order-status--pending    { background: rgba(184,150,46,.12); color: var(--c-gold-dark); }
.order-status--processing { background: rgba(59,130,246,.10); color: #2563eb; }
.order-status--completed  { background: rgba(34,197,94,.10);  color: #15803d; }
.order-status--cancelled,
.order-status--failed     { background: rgba(217,79,79,.10);  color: #a83232; }
.order-status--refunded   { background: rgba(100,116,139,.10);color: #475569; }


/* ─── Checkout pagina ─────────────────────────────────────────────────────── */
#checkout-page {
    padding: var(--sp-10) 0 var(--sp-20);
}

.checkout-header {
    margin-bottom: var(--sp-10);
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    margin-top: var(--sp-2);
}

/* Auth notice */
.checkout-auth-notice {
    background: var(--c-gold-bg);
    border: 1.5px solid rgba(184,150,46,.3);
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-8);
    margin-bottom: var(--sp-10);
}

.checkout-auth-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-5);
}

.checkout-auth-notice__inner > svg {
    width: 24px;
    height: 24px;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-auth-notice__text {
    margin-bottom: var(--sp-4);
    font-size: var(--fs-sm);
    color: var(--c-text);
}

/* 2-koloms layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--sp-10);
    align-items: start;
}

/* Formulier */
.checkout-fieldset {
    border: none;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.checkout-fieldset__legend {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--c-text);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: var(--sp-3);
    width: 100%;
}

.checkout-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-gold);
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    flex-shrink: 0;
}

.shipping-fields {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--c-border);
    margin-top: var(--sp-3);
}
.shipping-fields[hidden] { display: none; }

/* Betaalmethode */
.payment-method-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.payment-method-option {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color 150ms;
}

.payment-method-option--selected,
.payment-method-option:has(.payment-method-radio:checked) {
    border-color: var(--c-gold);
}

.payment-method-radio {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--c-gold);
    cursor: pointer;
}

.payment-method-option__icon {
    width: 18px;
    height: 18px;
    color: var(--c-text-2);
    flex-shrink: 0;
}

.payment-method-option__label {
    font-size: var(--fs-sm);
    color: var(--c-text);
}

/* Bestellingsoverzicht */
.checkout-summary {
    position: sticky;
    top: calc(var(--usp-h) + var(--header-h) + var(--sp-6));
    background: var(--c-surface);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-md);
}

.checkout-summary__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--c-border);
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
    max-height: 280px;
    overflow-y: auto;
    padding-right: var(--sp-2);
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.checkout-item__img {
    width: 60px;
    height: 60px;
    border-radius: var(--r-sm);
    object-fit: cover;
    background: var(--c-surface-2);
    flex-shrink: 0;
}

.checkout-item__info {
    flex: 1;
    min-width: 0;
}

.checkout-item__name {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-item__qty {
    display: block;
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    margin-top: 2px;
}

.checkout-item__price {
    font-size: var(--fs-sm);
    font-weight: 600;
    flex-shrink: 0;
}

.checkout-totals {
    border-top: 1px solid var(--c-border);
    padding-top: var(--sp-5);
    margin-bottom: var(--sp-6);
}

.checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-2) 0;
    font-size: var(--fs-sm);
    color: var(--c-text-2);
}

.checkout-totals__row--total {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--c-text);
    border-top: 1px solid var(--c-border);
    padding-top: var(--sp-4);
    margin-top: var(--sp-2);
}

.checkout-vat-note {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
    margin-top: var(--sp-2);
    text-align: right;
}

.checkout-place-order {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.checkout-terms {
    font-size: var(--fs-sm);
    line-height: 1.5;
}

.checkout-privacy-note {
    font-size: var(--fs-xs);
    line-height: 1.5;
    color: var(--c-text-3);
}

.checkout-privacy-note a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 2px; }

.checkout-login-hint {
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    text-align: center;
}


/* ─── Checkout-complete pagina ────────────────────────────────────────────── */
#checkout-complete-page {
    padding: var(--sp-12) 0 var(--sp-20);
}

.complete-hero {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-8);
    margin-bottom: var(--sp-12);
    padding: var(--sp-10) var(--sp-10);
    background: var(--c-surface);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
}

.complete-hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34,197,94,.10);
    flex-shrink: 0;
}

.complete-hero__icon svg {
    width: 36px;
    height: 36px;
    color: #15803d;
}

.complete-hero__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    margin: var(--sp-2) 0 var(--sp-3);
}

.complete-hero__sub {
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    line-height: 1.65;
    max-width: 520px;
}

.complete-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--sp-8);
    margin-bottom: var(--sp-10);
    align-items: start;
}

.complete-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
}

.complete-card__title {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--c-border);
}

.complete-card__title svg { width: 20px; height: 20px; color: var(--c-gold); flex-shrink: 0; }

.complete-card__subtitle {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
    margin-bottom: var(--sp-3);
}

.complete-card__subtitle svg { width: 14px; height: 14px; }

.complete-order-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--c-border);
}

.complete-meta-item__label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
    margin-bottom: var(--sp-1);
}

.complete-meta-item__val { font-size: var(--fs-sm); font-weight: 500; }
.complete-meta-item__val--total { font-size: var(--fs-md); font-weight: 700; color: var(--c-text); }

.complete-items {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.complete-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
}

.complete-item__info { display: flex; align-items: center; gap: var(--sp-3); }

.complete-item__name {
    font-size: var(--fs-sm);
    font-weight: 500;
}

.complete-item__qty {
    font-size: var(--fs-xs);
    color: var(--c-text-3);
}

.complete-item__price {
    font-size: var(--fs-sm);
    font-weight: 600;
    flex-shrink: 0;
}

.complete-totals { border-top: 1px solid var(--c-border); padding-top: var(--sp-5); }

.complete-totals__row {
    display: flex;
    justify-content: space-between;
    padding: var(--sp-2) 0;
    font-size: var(--fs-sm);
    color: var(--c-text-2);
}

.complete-totals__row--total {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--c-text);
    border-top: 1px solid var(--c-border);
    padding-top: var(--sp-4);
    margin-top: var(--sp-2);
}

.complete-card--addr {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.complete-addr-block { }

.complete-addr {
    font-size: var(--fs-sm);
    line-height: 1.75;
    color: var(--c-text);
    font-style: normal;
}

.complete-cta {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    padding-top: var(--sp-6);
}


/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-summary-col {
        order: -1;
    }

    .complete-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-panel { padding: var(--sp-8) var(--sp-6); }

    .complete-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--sp-5);
    }

    .complete-hero__sub { max-width: 100%; }

    .complete-order-meta { grid-template-columns: 1fr; }

    .complete-cta { flex-direction: column; }

    .checkout-auth-notice__inner { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   About, Contact, Terms, Privacy, 404
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Page-hero (gedeeld door about + contact) ──────────────────────────── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--c-surface);
    padding: clamp(var(--sp-16), 8vw, var(--sp-24)) 0;
    margin-bottom: var(--sp-20);
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__eyebrow {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--c-gold);
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.page-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--c-gold);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-2xl), 5vw, var(--fs-hero));
    font-weight: 300;
    line-height: 1.05;
    color: var(--c-text);
    letter-spacing: -0.02em;
    max-width: 18ch;
}

.page-hero__title em { color: var(--c-gold); font-style: italic; }

.page-hero__sub {
    font-size: var(--fs-md);
    color: var(--c-text-2);
    line-height: 1.75;
    max-width: 52ch;
    margin-top: var(--sp-6);
}

.page-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    object-position: center 30%;
}


/* ─── About pagina ──────────────────────────────────────────────────────── */
.about-page { padding-bottom: var(--sp-20); }

.about-page-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
    margin-bottom: var(--sp-20);
}

.about-page-image {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-xl);
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms var(--ease-mag);
}

.about-page-image:hover img { transform: scale(1.03); }

.about-page-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.about-page-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-gold);
}

.about-page-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
    line-height: 1.08;
}

.about-page-title em { color: var(--c-gold); font-style: italic; }

.about-page-text {
    font-size: var(--fs-base);
    color: var(--c-text-2);
    line-height: 1.8;
    max-width: 50ch;
}

.about-values {
    padding-block: var(--sp-16);
    background: var(--c-surface);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-12);
}

.about-value-card {
    background: var(--c-bg);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    border: 1px solid var(--c-border);
    transition: transform 250ms var(--ease-mag), box-shadow 250ms;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--c-gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
}

.about-value-card__icon svg { width: 22px; height: 22px; }

.about-value-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
}

.about-value-card__text {
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-page-intro {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }
    .about-page-image { aspect-ratio: 16 / 9; }
    .about-values__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .about-values__grid { grid-template-columns: 1fr; }
}


/* ─── Contact pagina ────────────────────────────────────────────────────── */
.contact-section { padding-bottom: var(--sp-20); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--sp-12);
    align-items: start;
}

.contact-info {
    position: sticky;
    top: calc(var(--usp-h) + var(--header-h) + var(--sp-8));
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--sp-4);
}

.contact-info__title em { color: var(--c-gold); font-style: italic; }

.contact-info__sub {
    font-size: var(--fs-base);
    color: var(--c-text-2);
    line-height: 1.75;
    max-width: 38ch;
    margin-bottom: var(--sp-10);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
}

.contact-detail-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--c-gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    flex-shrink: 0;
}

.contact-detail-item__icon svg { width: 20px; height: 20px; }

.contact-detail-item__content { display: flex; flex-direction: column; gap: 2px; }

.contact-detail-item__label {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-3);
}

.contact-detail-item__value {
    font-size: var(--fs-sm);
    color: var(--c-text);
    line-height: 1.55;
}

.contact-detail-item__value a {
    color: var(--c-text);
    transition: color 150ms;
}

.contact-detail-item__value a:hover { color: var(--c-gold); }

.contact-form-card {
    background: var(--c-surface);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-md);
}

.contact-form-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 400;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--c-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.contact-form__success[hidden] { display: none; }
.contact-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-4);
    padding: var(--sp-8) 0;
}

.contact-form__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34,197,94,.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form__success-icon svg { width: 30px; height: 30px; color: #15803d; }

.contact-form__success-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 400;
}

.contact-form__success-text {
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    line-height: 1.65;
    max-width: 36ch;
}

.contact-alert {
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    line-height: 1.55;
}

.contact-alert--error {
    background: rgba(217, 79, 79, 0.08);
    border: 1px solid rgba(217, 79, 79, 0.25);
    color: #a83232;
    display: none;
}

.contact-alert--error.is-visible { display: block; }

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }
    .contact-info { position: static; }
}


/* ─── Terms / Privacy pagina ────────────────────────────────────────────── */
.legal-page { padding-bottom: var(--sp-20); }

.legal-page__header {
    margin-bottom: var(--sp-12);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--c-border);
    max-width: 68ch;
}

.legal-page__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 300;
    margin-bottom: var(--sp-3);
}

.legal-page__sub {
    font-size: var(--fs-sm);
    color: var(--c-text-3);
}

.legal-placeholder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
    padding: var(--sp-10) var(--sp-8);
    background: var(--c-surface);
    border-radius: var(--r-lg);
    border: 1.5px dashed var(--c-border);
    max-width: 68ch;
}

.legal-placeholder svg { width: 32px; height: 32px; color: var(--c-text-3); }

.legal-placeholder__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--c-text-2);
}

.legal-placeholder__text {
    font-size: var(--fs-sm);
    color: var(--c-text-3);
    line-height: 1.65;
}


/* ─── 404 pagina (standalone, geen header/footer) ───────────────────────── */
.not-found-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-12) var(--cp);
    background: var(--c-bg);
    position: relative;
}

.not-found-logo {
    position: absolute;
    top: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    opacity: 0.5;
    display: block;
}

.not-found-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 300;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--c-border);
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
}

.not-found-title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 300;
    color: var(--c-text);
    margin-top: var(--sp-2);
    margin-bottom: var(--sp-4);
}

.not-found-text {
    font-size: var(--fs-base);
    color: var(--c-text-2);
    max-width: 44ch;
    line-height: 1.7;
    margin-bottom: var(--sp-8);
}

.not-found-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 600px) {
    .not-found-actions { flex-direction: column; width: 100%; }
    .not-found-actions .btn { width: 100%; justify-content: center; }
}
