﻿/* Privespaboeken — professioneel, koel aqua, mobiel eerst */

:root {
    --color-bg: #f1f5f9;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-primary: #00b8d9;
    --color-primary-dark: #0096b5;
    --color-primary-light: #e0f9fe;
    --color-footer: #e4e9ef;
    --color-footer-surface: #eef2f6;
    --color-footer-text: #334155;
    --color-footer-muted: #64748b;
    --color-star: #f59e0b;
    --font: 'Outfit', system-ui, sans-serif;
    --shell: 1120px;
    --shell-catalog: min(1520px, calc(100% - 2.5rem));
    --shell-explore: min(1680px, calc(100% - 2rem));
    --shell-spa: min(1680px, calc(100% - 2.5rem));
    --explore-gap: 0.75rem;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.06);
    --tabbar-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.005em;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--tabbar-h);
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.intro__title,
.explore__title,
.block__title,
.card__title,
.page-top__title,
.catalog-intro__title,
.spa-page__title,
.spa-page__block-title,
.spa-section__title,
.brand__name {
    font-weight: 800;
    letter-spacing: -0.03em;
}

@media (min-width: 900px) {
    html {
        background: var(--color-footer);
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding-bottom: 0;
    }

    .main {
        flex: 1 0 auto;
    }
}


img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.shell {
    width: min(var(--shell), calc(100% - 2rem));
    margin-inline: auto;
}

.shell--catalog {
    width: var(--shell-catalog);
    max-width: none;
}

.shell--explore {
    width: min(var(--shell-explore), calc(100% - 2rem));
    max-width: none;
    margin-inline: auto;
}

.shell--spa {
    width: var(--shell-spa);
    max-width: none;
}

body.page--category .topbar .shell,
body.page--zoek .topbar .shell,
body.page--spa .topbar .shell {
    width: var(--shell-catalog);
    max-width: none;
}

body.page--spa .topbar .shell {
    width: var(--shell-spa);
}

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

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.topbar__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 64px;
}

.brand__name--topbar {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 0;
    flex-shrink: 0;
    z-index: 2;
}

.brand--nav {
    margin-right: auto;
}

.brand__logo {
    display: block;
    width: auto;
    height: 36px;
    max-width: none;
    object-fit: contain;
    vertical-align: middle;
}

.brand__icon { color: var(--color-primary); }

.topbar__nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.topbar__nav .topbar__link {
    pointer-events: auto;
}

.topbar__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-muted);
}

.topbar__link:hover,
.topbar__link.is-active { color: var(--color-primary-dark); }

.topbar__cta { display: none; }

/* Home: topbar boven hero (mobiel normaal, desktop overlay → wit sticky na scroll) */
body.page--home {
    position: relative;
}

body.page--home .topbar--home {
    z-index: 60;
    transition:
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

body.page--home .topbar--home.topbar--scrolled {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 6px 20px rgba(15, 23, 42, 0.06);
}

body.page--home .topbar--home.topbar--scrolled .topbar__link {
    color: var(--color-muted);
}

body.page--home .topbar--home.topbar--scrolled .topbar__link:hover,
body.page--home .topbar--home.topbar--scrolled .topbar__link.is-active {
    color: var(--color-primary-dark);
}

@media (min-width: 900px) {
    .topbar__nav {
        display: flex;
    }

    .topbar__group {
        gap: 0.75rem 2.25rem;
    }

    body.page--home .topbar--home {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(8, 30, 48, 0.55) 0%, transparent 100%);
        border-bottom: none;
        box-shadow: none;
    }

    body.page--home .topbar--home.topbar--scrolled {
        position: fixed;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.08);
    }

    body.page--home .topbar--home .topbar__inner {
        min-height: 64px;
    }

    /* Hero-overlay: logo + naam links, menu midden (wit) */
    body.page--home .topbar--home:not(.topbar--scrolled) .brand__name--topbar {
        color: #fff;
    }

    body.page--home .topbar--home .brand__logo {
        height: 40px;
        width: auto;
        border-radius: 8px;
    }

    body.page--home .topbar--home:not(.topbar--scrolled) .topbar__link {
        color: rgba(255, 255, 255, 0.88);
    }

    body.page--home .topbar--home:not(.topbar--scrolled) .topbar__link:hover,
    body.page--home .topbar--home:not(.topbar--scrolled) .topbar__link.is-active {
        color: #fff;
    }

}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.35rem;
    border: none;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover { background: var(--color-primary-dark); }

.btn--sm {
    min-height: 40px;
    padding: 0 1rem;
    font-size: 0.88rem;
}

.btn--outline {
    background: var(--color-surface);
    color: var(--color-primary-dark);
    border: 1.5px solid var(--color-primary);
}

.text-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
}

.text-link:hover { text-decoration: underline; }

/* Home intro — mobiel: kaart over foto (ongewijzigd) */
.main--home {
    padding-top: 0;
    background: var(--color-bg);
}

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

.intro__desktop {
    display: none;
}

.intro__visual {
    position: relative;
    height: 42vh;
    min-height: 240px;
    max-height: 380px;
    background-color: #0e7490;
    background-image: var(--intro-bg, none);
    background-size: cover;
    background-position: center;
}

.intro__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.5) 100%);
}

.intro__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
}

.intro__panel {
    margin-top: -1.75rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem 1.5rem;
}

.intro__panel-inner {
    background: var(--color-surface);
    border-radius: 20px 20px 16px 16px;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 -4px 40px rgba(15, 23, 42, 0.12), var(--shadow);
    border: 1px solid var(--color-border);
    max-width: 520px;
    margin-inline: auto;
}

.intro__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
    flex-wrap: wrap;
}

.intro__logo {
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.intro__score {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    background: var(--color-primary-light);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.intro__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 4.5vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--color-text);
    text-align: left;
    text-shadow: none;
}

.intro__text {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.5;
    text-align: left;
}

.intro__form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.intro__form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.intro__form-row input {
    width: 100%;
    min-height: 50px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0 1rem;
    font-size: 1rem;
    background: var(--color-bg);
    color: var(--color-text);
}

.intro__form-row input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.18);
}

.intro__form-row .btn {
    width: 100%;
}

.intro__links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.intro__links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.intro__links a:hover {
    text-decoration: underline;
}

/* Explore — categorieën */
.explore {
    padding: 1.75rem 0 2.25rem;
    background: var(--color-bg);
    content-visibility: auto;
    contain-intrinsic-size: auto 380px;
}

.explore__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.explore__title {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--color-text);
}

.explore__aside {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    text-align: right;
}

.explore__count {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
}

.explore__hint {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-muted);
}

.explore__slider {
    position: relative;
    padding-inline: 2.15rem;
}

.explore__track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 0.25rem;
    padding-bottom: 0.25rem;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.explore__track::-webkit-scrollbar {
    display: none;
}

.explore-card {
    flex: 0 0 min(72vw, 260px);
    width: min(72vw, 260px);
    aspect-ratio: 3 / 4;
    height: auto;
    min-height: 0;
    border-radius: 14px;
    background-color: var(--color-border);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    contain: layout style paint;
}

.explore-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.explore-card__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.08) 48%, transparent 72%);
}

.explore-card:hover,
.explore-card:focus-visible {
    box-shadow: 0 0 0 1px rgba(0, 184, 217, 0.35);
}

.explore-card__tag,
.explore-card__cta {
    position: relative;
    z-index: 2;
}

.explore-card__tag {
    align-self: flex-start;
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(15, 23, 42, 0.45);
}

.explore-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    align-self: flex-start;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}

.explore-card__cta-text {
    background-image: linear-gradient(var(--color-primary), var(--color-primary));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 2px;
    transition: background-size 0.22s ease;
}

.explore-card:hover .explore-card__cta-text,
.explore-card:focus-visible .explore-card__cta-text {
    background-size: 100% 2px;
}

.explore__nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-muted);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
    transition: color 0.2s, border-color 0.2s, opacity 0.2s;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.explore__nav:hover {
    color: var(--color-text);
    border-color: #cbd5e1;
}

.explore__nav.is-disabled {
    opacity: 0.35;
    cursor: default;
}

.explore__nav--prev { left: 0; }
.explore__nav--next { right: 0; }
.explore__nav svg { width: 0.9rem; height: 0.9rem; }

/* Zoekformulier op andere pagina's */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 480px;
}

.search-form__input-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0 1.1rem;
    min-height: 52px;
    box-shadow: var(--shadow);
}

.search-form__input-wrap:focus-within {
    border-color: var(--color-primary);
    outline: 3px solid rgba(0, 184, 217, 0.2);
}

.search-form__input-wrap svg {
    width: 20px;
    height: 20px;
    color: var(--color-muted);
    flex-shrink: 0;
}

.search-form__input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    min-width: 0;
}

/* Blocks */
.block {
    padding: 2.5rem 0;
}

.block--muted {
    background: var(--color-surface);
    border-block: 1px solid var(--color-border);
}

.block__head { margin-bottom: 1.25rem; }

.block__head--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.block__title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.25rem;
}

.block__lead {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
}


/* Cards */
.card {
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 0 0 auto;
}

.card__link { display: block; color: inherit; }

.card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 11;
    background: var(--color-border);
    overflow: hidden;
}

body.page--category .card__img-wrap,
body.page--zoek .card__img-wrap {
    aspect-ratio: 16 / 10;
}

.card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.card__tag--deal {
    background: #ea580c;
}

.card__tag--recommended {
    background: #7c3aed;
}

.card__tag--bestseller {
    background: #dc2626;
}

.nearby-prompt {
    display: grid;
    gap: 1rem;
    max-width: 36rem;
}

.nearby-prompt__text {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.card__price-old {
    margin-right: 0.35rem;
    color: var(--color-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.page-top__meta {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.card__pin {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-text);
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.card__pin svg {
    flex-shrink: 0;
    color: var(--color-primary-dark);
}

.card__body { padding: 1.1rem; }

body.page--category .card__body,
body.page--zoek .card__body {
    padding: 1rem 1.05rem 1.1rem;
}

.card__title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.15rem;
    line-height: 1.25;
}

body.page--category .card__title,
body.page--zoek .card__title {
    font-size: clamp(1.02rem, 1.15vw, 1.15rem);
}

body.page--category .card__desc,
body.page--zoek .card__desc {
    font-size: 0.875rem;
}

body.page--category .card__price,
body.page--zoek .card__price {
    font-size: 0.9rem;
}

.card__loc {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0 0 0.5rem;
}

.card__desc {
    font-size: 0.84rem;
    color: var(--color-muted);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.card__price {
    font-size: 0.86rem;
    font-weight: 600;
}

.card__score {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.card__score strong { color: var(--color-text); }

.star { color: #cbd5e1; font-size: 0.68rem; }
.star--filled { color: var(--color-star); }

/* Slider — horizontale carousel (mobiel: swipe, desktop: pijlen) */
.slider {
    position: relative;
}

.slider__track {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.slider__track::-webkit-scrollbar {
    display: none;
}

.slider .card {
    width: min(300px, 82vw);
    scroll-snap-align: start;
}

.slider__btn {
    display: none;
}

/* Gift */
.gift-block {
    display: grid;
    gap: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.gift-block__media {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.check-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.gift-block .btn { margin-top: 1rem; }

/* Page sub */
.page-top {
    background:
        radial-gradient(900px 280px at 20% -20%, rgba(0, 184, 217, 0.22), transparent 55%),
        radial-gradient(700px 240px at 90% 10%, rgba(12, 74, 110, 0.16), transparent 55%),
        linear-gradient(180deg, #ffffff, #fbfdff);
    border-bottom: 1px solid var(--color-border);
    padding: 1.1rem 0 0.9rem;
}

.page-top__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.page-top__text {
    margin: 0 0 1rem;
    color: var(--color-muted);
    font-size: 0.92rem;
}

/* Category page — titel + filters als pagina-inhoud (geen tweede navbar) */
.catalog-intro {
    margin-bottom: 1.35rem;
}

.catalog-intro__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.catalog-intro__title {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.catalog-intro__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

@media (max-width: 899px) {
    .catalog-intro__pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.15rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .catalog-intro__pills::-webkit-scrollbar {
        display: none;
    }
}

.catalog-intro__count {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-muted);
    white-space: nowrap;
}

.catalog-filter {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.catalog-filter:hover {
    border-color: rgba(0, 184, 217, 0.45);
    background: #fff;
}

.catalog-filter.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.page-body {
    padding: 1.1rem 0 2.5rem;
}

body.page--category .page-body--category {
    padding: 1.35rem 0 2.5rem;
}

body.page--zoek .page-body {
    padding: 1rem 0 2.5rem;
}

.results-meta {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin: 0 0 1rem;
}

.card-list {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .card-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .card-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.card {
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08), 0 16px 40px rgba(15, 23, 42, 0.10);
    border-color: rgba(0, 184, 217, 0.35);
}

.empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px dashed var(--color-border);
}

.empty h1 {
    font-size: 4rem;
    color: var(--color-primary);
    margin: 0;
}

.empty p { color: var(--color-muted); margin: 0 0 1rem; }

/* Spa product page */
body.page--spa {
    background: #fff;
}

body.page--spa .main {
    padding-bottom: 0;
}

.spa-page {
    padding-bottom: 0;
}

.spa-related {
    margin-top: 0.5rem;
    padding: 1.75rem 0 2.5rem;
    border-top: 1px solid var(--color-border);
    background: #f8fafc;
}

.spa-related .block__head {
    margin-bottom: 1rem;
}

.spa-related .block__title {
    font-size: 1.15rem;
}

.site-crumbs {
    margin: 0.85rem 0 1rem;
}

.site-crumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    color: var(--color-muted);
}

.site-crumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-crumbs__item:not(:last-child)::after {
    content: '›';
    color: var(--color-muted);
    pointer-events: none;
}

.site-crumbs a {
    color: var(--color-muted);
    text-decoration: none;
}

.site-crumbs a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.page-top .site-crumbs,
.page-body--category .site-crumbs {
    margin-top: 0;
}

.spa-page__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.spa-page__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.spa-page__title-sep {
    font-weight: 400;
    color: var(--color-muted);
    margin: 0 0.15em;
}

.spa-page__location {
    font-weight: 600;
}

.spa-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.spa-page__score {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.spa-page__score strong {
    font-size: 0.95rem;
    color: var(--color-text);
}

.spa-page__reviews {
    color: var(--color-muted);
}

.spa-page__badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.spa-page__badge--hot {
    background: #fef3c7;
    color: #b45309;
}

.spa-page__badge--recommended {
    background: #ede9fe;
    color: #6d28d9;
}

.spa-page__share {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    min-height: 40px;
    padding: 0 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.spa-page__share:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow);
}

/* Bento gallery */
.spa-page__gallery {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .spa-page__gallery {
        grid-template-columns: 2.1fr 1.1fr;
        min-height: 400px;
        max-height: 520px;
        gap: 0.6rem;
        border-radius: 18px;
    }
}

@media (min-width: 1100px) {
    .spa-page__gallery {
        grid-template-columns: 2.15fr 1.1fr;
        min-height: 440px;
        max-height: 560px;
        gap: 0.65rem;
    }
}

@media (min-width: 1400px) {
    .spa-page__gallery {
        min-height: 480px;
        max-height: 600px;
    }
}

.spa-page__gallery-main {
    position: relative;
    min-height: 260px;
    background: #e2e8f0;
}

@media (min-width: 768px) {
    .spa-page__gallery-main {
        min-height: 100%;
    }
}

.spa-page__gallery-hit {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .spa-page__gallery-hit {
        min-height: 400px;
    }
}

@media (min-width: 1100px) {
    .spa-page__gallery-hit {
        min-height: 440px;
    }
}

@media (min-width: 1400px) {
    .spa-page__gallery-hit {
        min-height: 480px;
    }
}

.spa-page__gallery-hit img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.spa-page__gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
}

.spa-page__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.spa-page__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.spa-page__all-photos {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: var(--color-text);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.spa-page__gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    min-height: 0;
}

@media (min-width: 768px) {
    .spa-page__gallery-side {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.55rem;
        min-width: 0;
    }
}

@media (min-width: 1100px) {
    .spa-page__gallery-side {
        gap: 0.65rem;
        min-width: 250px;
    }
}

@media (min-width: 1400px) {
    .spa-page__gallery-side {
        min-width: 280px;
    }
}

.spa-page__gallery-cell {
    position: relative;
    min-height: 140px;
}

@media (min-width: 768px) {
    .spa-page__gallery-cell {
        min-height: 0;
        height: 100%;
    }
}

.spa-page__gallery-cell--stack .spa-page__gallery-side-hit {
    height: 100%;
}

.spa-page__gallery-side-hit {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    overflow: hidden;
}

.spa-page__gallery-side-hit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.spa-page__gallery-side-hit:hover img {
    transform: scale(1.03);
}

.spa-page__gallery-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(15, 23, 42, 0.5);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
}

/* Layout */
.spa-page__layout {
    display: grid;
    gap: 2rem;
    align-items: start;
    margin-top: 0.25rem;
}

/* Content sections onder foto's */
.spa-section {
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--color-border);
}

.spa-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spa-section--title {
    padding-top: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.spa-section__head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.spa-section--title .spa-page__title {
    margin: 0;
}

.spa-section--title .spa-page__meta {
    margin-top: 0.65rem;
}

.spa-section__title {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.spa-section__body {
    max-width: 62rem;
}

.spa-section__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;
    color: #334155;
}

.spa-section__facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-muted);
}

.spa-section__facts li:not(:last-child)::after {
    content: none;
}

.spa-section__list {
    margin: 0;
    padding: 0 0 0 1.1rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
}

.spa-section--muted {
    background: transparent;
}

.spa-section--location {
    margin-top: 0.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    border-bottom: none;
}

.spa-location__facts {
    margin: 0 0 1rem;
    padding-left: 1.15rem;
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.spa-location__facts li + li {
    margin-top: 0.35rem;
}

.spa-map {
    width: 100%;
    height: min(360px, 55vw);
    min-height: 240px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #eef2f7;
}

.spa-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.spa-map--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.spa-map__fallback {
    margin: 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.spa-location__route {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    align-items: center;
}

.spa-location__route a {
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.spa-location__route a:hover {
    text-decoration: underline;
}

/* Beoordelingen */
.spa-review {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.spa-review__main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.spa-review__star {
    color: var(--color-star);
    font-size: 1.15rem;
    line-height: 1;
}

.spa-review__main strong {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.spa-review__scale,
.spa-review__count {
    color: var(--color-muted);
    font-weight: 600;
}

.spa-review__dot {
    color: var(--color-muted);
}

.spa-review__stars {
    display: inline-flex;
    align-items: center;
}

.spa-review__stars .star {
    font-size: 0.95rem;
}

.spa-section--guest-reviews {
    margin-top: 0.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
}

.spa-guest-reviews__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-bottom: 1.25rem;
}

.spa-guest-reviews__empty {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9375rem;
}

.spa-guest-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spa-guest-review {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    background: #fafbfc;
}

.spa-guest-review__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.35rem;
}

.spa-guest-review__author {
    font-size: 0.98rem;
}

.spa-guest-review__meta {
    color: var(--color-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.spa-guest-review__score {
    color: var(--color-text);
}

.spa-guest-review__stars {
    margin-bottom: 0.55rem;
}

.spa-guest-review__stars .star {
    font-size: 0.9rem;
}

.spa-guest-review__text {
    margin: 0;
    line-height: 1.55;
    font-size: 0.9375rem;
}

.review-page {
    padding: 2.5rem 0 3.5rem;
}

.shell--narrow {
    max-width: 640px;
}

.review-card {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
    background: #fff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.review-card__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
}

.review-card h1 {
    margin: 0 0 0.5rem;
    font-size: 1.65rem;
}

.review-card__lead {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.5;
}

.review-form {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form .field textarea {
    min-height: 140px;
    resize: vertical;
}

.review-card--done,
.review-card--error {
    text-align: center;
}

.review-card--done p,
.review-card--error p {
    color: var(--color-muted);
    line-height: 1.55;
}

.review-page .notice {
    margin: 1rem 0 0;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.92rem;
}

.review-page .field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.review-page .field span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.review-page .field input,
.review-page .field select,
.review-page .field textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font: inherit;
    background: #fff;
}

.review-page .field input:focus,
.review-page .field select:focus,
.review-page .field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.review-page .btn--primary {
    align-self: flex-start;
    background: var(--color-primary);
    color: #fff;
}

.review-page .btn--primary:hover {
    background: var(--color-primary-dark);
}

.review-page .btn--ghost {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-border);
}

.review-page .btn--ghost:hover {
    background: #f8fafc;
}

/* Faciliteiten grid */
.spa-facility-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem 1.5rem;
}

@media (min-width: 520px) {
    .spa-facility-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.spa-facility-grid__item.is-collapsed {
    display: none;
}

.spa-section--facilities.is-expanded .spa-facility-grid__item.is-collapsed {
    display: list-item;
}

.spa-facility {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2rem;
}

.spa-facility__icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    color: var(--color-text);
}

.spa-facility__label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
}

.spa-show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    padding: 0.55rem 1rem;
    border: 1.5px solid var(--color-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.spa-show-more:hover {
    background: var(--color-primary-light);
}

.spa-section--facilities.is-expanded .spa-show-more {
    display: none;
}

/* Annuleringsvoorwaarden */
.spa-cancel__intro {
    margin: 0 0 1.25rem;
    max-width: 42rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
}

.spa-cancel__timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.35rem;
    border-left: 2px dashed #cbd5e1;
}

.spa-cancel__step {
    position: relative;
    padding: 0 0 1.35rem 1.15rem;
}

.spa-cancel__step:last-child {
    padding-bottom: 0;
}

.spa-cancel__step::before {
    content: '';
    position: absolute;
    left: -1.42rem;
    top: 0.2rem;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px #fff;
}

.spa-cancel__step-title {
    margin: 0 0 0.55rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.spa-cancel__rules {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.spa-cancel__rule {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.spa-cancel__rule-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--color-primary-dark);
}

.spa-cancel__rule-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    color: #334155;
}

.spa-cancel__rule-text.is-emphasis {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.spa-cancel__footnote {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-muted);
}

.spa-cancel__full-link {
    display: inline-block;
    margin-top: 0.35rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.spa-cancel__full-link:hover {
    color: var(--color-primary);
}

@media (min-width: 900px) {
    .spa-page__layout {
        grid-template-columns: 1fr min(420px, 35%);
        gap: 2.25rem;
    }
}

@media (min-width: 1200px) {
    .spa-page__layout {
        grid-template-columns: 1fr 430px;
        gap: 2.5rem;
    }
}

.spa-page__block {
    margin-bottom: 2rem;
}

.spa-page__block--muted {
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius);
    background: #f8fafc;
    border: 1px solid var(--color-border);
}

.spa-page__block-title {
    margin: 0 0 0.85rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.spa-page__lead {
    margin: 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #334155;
}

.spa-page__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spa-page__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
}

.spa-page__highlight-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.spa-page__facilities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spa-page__facilities li {
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.spa-page__info-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.spa-page__extras {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 520px) {
    .spa-page__extras {
        grid-template-columns: repeat(2, 1fr);
    }
}

.spa-page__extra {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
}

.spa-page__extra-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.spa-page__extra-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.spa-page__extra-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.88rem;
}

.spa-page__extra-body strong {
    font-weight: 600;
}

.spa-page__extra-body span {
    color: var(--color-primary-dark);
    font-weight: 600;
}

/* Booking card */
.spa-page__book-card {
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.35rem 1.35rem 1.15rem;
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.06);
}

.spa-page__book-price {
    margin: 0 0 0.35rem;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.spa-page__book-from {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

.spa-page__book-meta {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.spa-page__book-note {
    margin: 0 0 1rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: #ecfdf5;
    color: #047857;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.spa-page__field {
    display: block;
    margin-bottom: 0.85rem;
}

.spa-page__field span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
}

.spa-page__field input,
.spa-page__field select {
    width: 100%;
    min-height: 46px;
    padding: 0 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.92rem;
    color: var(--color-text);
}

.spa-page__book-btn {
    width: 100%;
    margin-top: 0.25rem;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
}

.spa-page__book-footer {
    margin: 0.85rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-muted);
}

/* Lightbox */
.spa-lightbox[hidden] {
    display: none !important;
}

.spa-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
}

.spa-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
}

.spa-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    pointer-events: none;
}

.spa-lightbox__dialog > * {
    pointer-events: auto;
}

.spa-lightbox__figure {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    max-height: min(78vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spa-lightbox__img {
    max-width: min(1100px, 92vw);
    max-height: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.spa-lightbox__nav,
.spa-lightbox__close {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    border-radius: 999px;
}

.spa-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
    line-height: 1;
}

.spa-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    z-index: 2;
}

.spa-lightbox__count {
    grid-column: 1 / -1;
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
}

.search-filter {
    width: 100%;
    max-width: 440px;
    min-height: 44px;
    margin-top: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0 1rem;
    background: var(--color-bg);
    color: var(--color-text);
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

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

/* Legal pages */
.shell--legal {
    width: var(--shell-catalog);
    max-width: none;
}

.page-body--legal {
    padding-top: 1.35rem;
    padding-bottom: 2.75rem;
}

.legal-head {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-head__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.legal-head__intro {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;
    color: #334155;
}

.legal-head__meta {
    margin: 0 0 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-muted);
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    font-size: 0.86rem;
}

.legal-nav__sep {
    color: #cbd5e1;
    user-select: none;
}

.legal-nav__link {
    color: var(--color-muted);
    text-decoration: none;
}

.legal-nav__link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.legal-nav__link.is-active {
    color: var(--color-text);
    font-weight: 700;
}

.legal-layout {
    display: grid;
    gap: 2rem;
}

.legal-toc {
    font-size: 0.84rem;
    line-height: 1.45;
}

.legal-toc__label {
    margin: 0 0 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.legal-toc__track {
    position: relative;
}

.legal-toc__indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 1.25rem;
    border-radius: 999px;
    background: var(--color-primary);
    transform: translateY(0);
    transition: transform 0.22s ease, height 0.22s ease, opacity 0.15s ease;
    pointer-events: none;
}

.legal-toc__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.35rem;
}

.legal-toc__list a {
    display: block;
    padding: 0.12rem 0;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease;
}

.legal-toc__list a.is-active {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.legal-toc__list a:hover {
    color: var(--color-primary-dark);
}

.legal-main {
    min-width: 0;
}

.legal-summary {
    margin: 0 0 2rem;
    padding: 0;
}

.legal-summary__caption {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
}

.legal-summary__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.legal-summary__table th,
.legal-summary__table td {
    padding: 0.65rem 0.75rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-border);
}

.legal-summary__table th {
    font-weight: 700;
    color: var(--color-text);
    background: #f8fafc;
}

.legal-summary__table tr:last-child td,
.legal-summary__table tr:last-child th {
    border-bottom: 0;
}

.legal-summary__table td:first-child {
    font-weight: 600;
    color: var(--color-text);
    width: 34%;
}

.legal-doc {
    max-width: 46rem;
}

.legal-section {
    padding: 0 0 1.5rem 0.9rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    border-left: 3px solid #e2e8f0;
    scroll-margin-top: 5.5rem;
}

.legal-section--flexible,
.legal-section--partial,
.legal-section--strict,
.legal-section--info,
.legal-section--key {
    padding-left: 0.9rem;
}

.legal-section--flexible {
    border-left-color: #16a34a;
}

.legal-section--partial {
    border-left-color: #d97706;
}

.legal-section--strict {
    border-left-color: #dc2626;
}

.legal-section--info {
    border-left-color: var(--color-primary);
}

.legal-section--key {
    border-left-color: #0c4a6e;
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-section__title {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0 0 0.75rem;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.legal-section__num {
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    color: var(--color-muted);
}

.legal-section__text {
    margin: 0 0 0.75rem;
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.7;
    color: #334155;
}

.legal-section__text--lead {
    font-weight: 600;
    color: var(--color-text);
}

.legal-section__text:last-child,
.legal-section__list:last-child,
.legal-section__note:last-child,
.legal-outcomes:last-child,
.legal-points:last-child {
    margin-bottom: 0;
}

.legal-outcomes {
    margin: 0 0 0.75rem;
    display: grid;
    gap: 0.55rem;
}

.legal-outcomes__row {
    display: grid;
    gap: 0.15rem;
    padding: 0.65rem 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.legal-outcomes__row dt {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.legal-outcomes__row dd {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
    color: #334155;
}

.legal-points {
    margin: 0 0 0.75rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.legal-points__item {
    padding: 0.6rem 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
    color: #334155;
}

.legal-section__list {
    margin: 0 0 0.75rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.4rem;
}

.legal-section__list li {
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.6;
    color: #334155;
}

.legal-section__note {
    margin: 0.85rem 0 0;
    padding-left: 0.75rem;
    border-left: 2px solid #cbd5e1;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-muted);
}

@media (min-width: 900px) {
    .legal-layout {
        grid-template-columns: 12.5rem minmax(0, 1fr);
        gap: 3rem 3.5rem;
        align-items: start;
    }

    .legal-toc {
        position: sticky;
        top: 5rem;
    }

    .legal-summary__table td:first-child {
        width: 28%;
    }
}

/* Giftcards page */
.gift-grid {
    display: grid;
    gap: 1rem;
}

.gift-option {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.25rem;
}

.gift-option--hot {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.gift-option__img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.gift-option h3 { margin: 1rem 0 0.35rem; font-size: 1.05rem; }
.gift-option p { margin: 0 1rem 1rem; font-size: 0.88rem; color: var(--color-muted); }

/* Tabbar */
.tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    justify-content: space-around;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    min-height: var(--tabbar-h);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--color-muted);
    min-width: 56px;
    padding: 0.35rem;
}

.tabbar__item svg { width: 22px; height: 22px; }

.tabbar__item.is-active { color: var(--color-primary-dark); }

/* Footer */
.footer {
    display: none;
    background: var(--color-footer-surface);
    color: var(--color-footer-text);
    margin: 0;
    border-top: 1px solid var(--color-border);
}

.footer__top {
    padding: 2.75rem 0 2.25rem;
}

.shell--footer {
    width: min(1200px, calc(100% - 2.5rem));
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 2.5rem;
}

.footer__col--brand {
    min-width: 0;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    color: var(--color-text);
    font-weight: 800;
    font-size: 1.05rem;
}

.footer__brand-logo {
    display: block;
    width: auto;
    height: 34px;
    max-width: 140px;
    object-fit: contain;
}

.footer__brand-mark {
    display: inline-flex;
    color: var(--color-primary);
}

.footer__brand-mark--sm {
    transform: translateY(1px);
}

.footer__heading {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer__list a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--color-footer-muted);
    line-height: 1.45;
    transition: color 0.15s ease;
}

.footer__list a:hover {
    color: var(--color-primary-dark);
}

.footer__list--contact a {
    color: var(--color-text);
    font-weight: 600;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: #fff;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.footer__social-link svg {
    width: 1.15rem;
    height: 1.15rem;
}

.footer__social-link:hover {
    color: var(--color-primary);
    border-color: #bae6fd;
    transform: translateY(-1px);
}

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer__payment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.4rem;
    height: 3.1rem;
    padding: 0.35rem 0.45rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dde3ea;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.footer__payment img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__bottom {
    background: var(--color-footer);
    border-top: 1px solid #d7dee7;
    padding: 0.95rem 0 1.15rem;
}

.footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.footer__bottom-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-footer-muted);
}

.footer__bottom-logo {
    display: block;
    width: auto;
    height: 24px;
    max-width: 110px;
    object-fit: contain;
    opacity: 0.9;
}

.footer__copy {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-footer-muted);
}

.footer p {
    margin: 0;
}

/* Desktop */
@media (min-width: 900px) {
    .topbar__cta { display: inline-flex; }

    .main--home {
        background: var(--color-bg);
    }

    /* Hero desktop: panorama edge */
    .intro {
        display: block;
    }

    .intro__visual,
    .intro__panel {
        display: none;
    }

    .intro__desktop {
        display: block;
    }

    .intro__desktop .hero-pan__bar {
        margin-bottom: 1.5rem;
        padding-top: 0.15rem;
    }

    .intro__desktop .hero-pan__trust {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        max-width: min(100%, 22rem);
    }

    .intro__desktop .banner-stars {
        display: flex;
        gap: 0.15rem;
        line-height: 1;
    }

    .intro__desktop .banner-stars__star {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.28);
    }

    .intro__desktop .banner-stars__star.is-filled {
        color: #fbbf24;
        text-shadow: 0 1px 6px rgba(251, 191, 36, 0.35);
    }

    .intro__desktop .hero-pan__trust-text {
        margin: 0;
        font-size: 0.8rem;
        font-weight: 500;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.88);
    }

    .intro__desktop .hero-pan__trust-text strong {
        font-weight: 800;
        color: #fff;
    }

    .intro__desktop .hero-pan__trust-reviews {
        font-weight: 600;
    }

    .intro__desktop .hero-pan--edge .hero-pan__stage {
        position: relative;
        isolation: isolate;
        min-height: min(680px, 68vh);
        background-color: #0c4a6e;
        background-image: var(--hero-bg, none);
        background-size: cover;
        background-position: center 32%;
    }

    .intro__desktop .hero-pan--edge .hero-pan__stage::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            linear-gradient(180deg, rgba(8, 30, 48, 0.4) 0%, transparent 28%),
            linear-gradient(
                90deg,
                rgba(8, 30, 48, 0.84) 0%,
                rgba(8, 30, 48, 0.58) 38%,
                rgba(8, 30, 48, 0.32) 100%
            );
        pointer-events: none;
    }

    .intro__desktop .hero-pan--edge .hero-pan__wrap {
        position: relative;
        z-index: 1;
        min-height: min(680px, 68vh);
        display: flex;
        flex-direction: column;
        padding: calc(64px + 2.25rem) 0 2.75rem;
        box-sizing: border-box;
    }

    .intro__desktop .hero-pan--edge .hero-pan__body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 560px;
    }

    .intro__desktop .hero-pan__kicker {
        margin: 0 0 0.45rem;
        font-size: 0.86rem;
        font-weight: 600;
        color: #7ee8f7;
    }

    .intro__desktop .hero-pan__title {
        margin: 0;
        font-size: clamp(2rem, 3vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.08;
        color: #fff;
    }

    .intro__desktop .hero-pan__text {
        margin: 0.65rem 0 1.15rem;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.86);
        max-width: 30em;
    }

    .intro__desktop .hero-pan__search {
        display: flex;
        align-items: stretch;
        width: 100%;
        background: #fff;
        border-radius: 999px;
        overflow: hidden;
        box-shadow: 0 10px 28px rgba(8, 30, 48, 0.22);
    }

    .intro__desktop .hero-pan__search-icon {
        display: flex;
        align-items: center;
        padding-left: 1rem;
        color: #94a3b8;
        flex-shrink: 0;
    }

    .intro__desktop .hero-pan__search input {
        flex: 1;
        min-width: 0;
        min-height: 50px;
        padding: 0 0.65rem 0 0.25rem;
        border: none;
        background: transparent;
        color: #0f172a;
        font-size: 0.98rem;
        font-weight: 500;
    }

    .intro__desktop .hero-pan__search input::placeholder {
        color: #94a3b8;
    }

    .intro__desktop .hero-pan__search input:focus {
        outline: none;
    }

    .intro__desktop .hero-pan__btn {
        flex-shrink: 0;
        min-height: 50px;
        margin: 3px;
        border-radius: 999px;
        padding-inline: 1.35rem;
        font-weight: 700;
    }

    .intro__desktop .hero-pan__promise {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        margin: 0.7rem 0 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
    }

    .intro__desktop .hero-pan__promise svg {
        flex-shrink: 0;
        color: #7ee8f7;
    }

    .intro__desktop .hero-pan__links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        margin-top: 1.1rem;
        font-size: 0.86rem;
        font-weight: 600;
    }

    .intro__desktop .hero-pan__links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: rgba(255, 255, 255, 0.35);
    }

    .intro__desktop .hero-pan__links a:hover {
        color: #fff;
    }

    .explore {
        --explore-gap: 1rem;
        padding: 2.5rem 0 3rem;
    }

    .explore__head {
        margin-bottom: 1.25rem;
        align-items: baseline;
    }

    .explore__title {
        font-size: 1.75rem;
    }

    .explore__slider {
        padding-inline: 2.5rem;
    }

    .explore__track {
        gap: var(--explore-gap);
    }

    /* 5 kaarten zichtbaar; 6e via scroll */
    .explore-card {
        flex: 0 0 calc((100% - (4 * var(--explore-gap))) / 5);
        width: calc((100% - (4 * var(--explore-gap))) / 5);
        max-width: none;
        aspect-ratio: 3 / 4;
        height: auto;
        padding: 1rem;
    }

    .explore-card__tag {
        font-size: 1.1rem;
    }

    .explore-card__cta {
        font-size: 0.88rem;
    }

    .explore__nav {
        width: 2rem;
        height: 2rem;
    }

    .explore__nav svg { width: 1rem; height: 1rem; }

    .search-form {
        flex-direction: row;
        align-items: stretch;
    }

    .search-form .btn {
        flex-shrink: 0;
    }

    .slider__track {
        gap: 1.25rem;
        padding: 0.25rem 3rem 1rem;
    }

    .slider .card {
        width: 300px;
    }

    .slider__btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 44px;
        height: 44px;
        border: 1px solid var(--color-border);
        border-radius: 50%;
        background: var(--color-surface);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: var(--shadow);
    }

    .slider__btn--prev { left: 0; }
    .slider__btn--next { right: 0; }

    .slider__btn svg { width: 20px; height: 20px; }

    .gift-block {
        grid-template-columns: 1fr 280px;
        align-items: center;
    }

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

    /* Sticky boeking: scroll binnen book-flow, niet de hele pagina */
    .spa-page__book {
        position: sticky;
        top: 4.75rem;
        align-self: start;
    }

    .spa-page__book-card,
    .spa-page__book-card--flow {
        max-height: none;
        overflow: visible;
    }

    .tabbar { display: none; }
    .footer {
        display: block;
        flex-shrink: 0;
    }

    .card-list .card { width: 100%; }
}

@media (min-width: 900px) and (max-width: 1099px) {
    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 2rem;
    }
}
