/* Multi-step booking flow — agenda + theme */

.book-flow {
    display: flex;
    flex-direction: column;
    max-height: min(88dvh, 920px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.book-flow__header {
    flex-shrink: 0;
    padding: 0.85rem 1rem;
    background: var(--color-primary-dark);
    color: #fff;
    border-radius: 17px 17px 0 0;
}

.book-flow__price-line {
    margin: 0;
    font-size: 1rem;
}

.book-flow__price-line strong {
    font-size: 1.2rem;
    font-weight: 800;
}

.book-flow__steps {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.55rem 0.5rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--color-border);
}

.book-flow__steps::-webkit-scrollbar {
    display: none;
}

.book-flow__step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-width: 0;
    padding: 0.4rem 0.2rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--color-muted);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.1;
    cursor: default;
    opacity: 0.55;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.book-flow__step.is-active {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}

.book-flow__step.is-done {
    opacity: 1;
    color: var(--color-primary-dark);
}

.book-flow__step-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.book-flow__step-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.book-flow__step-label {
    min-width: 0;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 380px) {
    .book-flow__step {
        flex-direction: column;
        gap: 0.15rem;
        padding: 0.35rem 0.15rem;
        font-size: 0.58rem;
    }

    .book-flow__step-icon svg {
        width: 13px;
        height: 13px;
    }
}

.book-panel {
    display: none;
}

.book-panel.is-active {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.book-panel.is-active > :not(.book-flow__nav) {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.book-panel.is-active > :not(.book-flow__nav)::-webkit-scrollbar {
    width: 6px;
}

.book-panel.is-active > :not(.book-flow__nav)::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
}

.book-panel.is-active .book-flow__nav {
    border-radius: 0 0 17px 17px;
}

.book-panel[hidden] {
    display: none !important;
}

/* Tijdslot-paneel */
.book-agenda {
    margin: 0.85rem;
    padding: 1.15rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.book-agenda__head {
    margin-bottom: 1rem;
}

.book-agenda__title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.book-agenda__sub {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-muted);
}

/* Maandkalender (stap datum) */
.book-calendar {
    padding: 1rem 1.05rem 0.55rem;
}

.book-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.95rem;
}

.book-calendar__title {
    margin: 0;
    min-width: 7rem;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-text);
}

.book-calendar__arrow,
.book-calendar__jump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.book-calendar__jump {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.book-calendar__arrow:hover,
.book-calendar__jump:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: var(--color-primary-light);
}

.book-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
    margin-bottom: 0.4rem;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: lowercase;
}

.book-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
}

.book-cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    min-height: 40px;
    padding: 0.3rem 0.12rem 0.42rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: default;
    transition: background 0.12s, border-color 0.12s, transform 0.12s;
}

.book-cal-day:not(:disabled) {
    cursor: pointer;
}

.book-cal-day__num {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-muted);
}

.book-cal-day__mark {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
}

.book-cal-day.is-free .book-cal-day__num {
    color: #16a34a;
}

.book-cal-day.is-free .book-cal-day__mark {
    background: #22c55e;
}

.book-cal-day.is-partial .book-cal-day__num {
    color: #ea580c;
}

.book-cal-day.is-partial .book-cal-day__mark {
    width: 6px;
    height: 6px;
    border-radius: 50% 0 0 50%;
    background: #f97316;
}

.book-cal-day.is-past .book-cal-day__num,
.book-cal-day.is-closed .book-cal-day__num,
.book-cal-day.is-full .book-cal-day__num {
    color: #cbd5e1;
}

.book-cal-day.is-outside.is-free .book-cal-day__num,
.book-cal-day.is-outside.is-partial .book-cal-day__num {
    opacity: 0.55;
}

.book-cal-day.is-outside.is-past .book-cal-day__num,
.book-cal-day.is-outside.is-closed .book-cal-day__num {
    color: #e2e8f0;
}

.book-cal-day.is-outside.is-partial .book-cal-day__num {
    color: #fb923c;
}

.book-cal-day.is-outside.is-partial .book-cal-day__mark {
    background: #fdba74;
}

.book-cal-day.is-free:not(:disabled):hover,
.book-cal-day.is-partial:not(:disabled):hover {
    background: var(--color-primary-light);
    border-color: rgba(0, 184, 217, 0.35);
}

.book-cal-day.is-selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.03);
}

.book-cal-day.is-selected .book-cal-day__num {
    color: #fff !important;
}

.book-cal-day.is-selected .book-cal-day__mark {
    background: #fff !important;
    border-radius: 50%;
}

.book-cal-day.is-selected.is-partial .book-cal-day__mark {
    border-radius: 50% 0 0 50%;
}

.book-avail {
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
}

.book-avail--free {
    border-radius: 50%;
    background: #22c55e;
}

.book-avail--partial {
    width: 8px;
    height: 8px;
    border-radius: 50% 0 0 50%;
    background: #f97316;
}

.book-calendar__legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.book-calendar__legend li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.book-calendar__hint {
    margin: 0.85rem 0 0;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
    font-size: 0.86rem;
    color: var(--color-muted);
    text-align: center;
}

.book-calendar__hint.is-set {
    background: var(--color-primary-light);
    border-color: rgba(0, 184, 217, 0.3);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.book-type-tabs {
    display: flex;
    gap: 0;
    margin: 0 0 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    background: #f8fafc;
}

.book-type-tabs__btn {
    flex: 1;
    min-height: 40px;
    border: none;
    background: transparent;
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.book-type-tabs__btn + .book-type-tabs__btn {
    border-left: 1px solid var(--color-border);
}

.book-type-tabs__btn.is-active {
    background: #fff;
    color: var(--color-text);
    font-weight: 600;
    box-shadow: inset 0 -2px 0 var(--color-primary);
}

.book-overnight-panel {
    margin-top: 0.25rem;
}

.book-overnight-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0.2rem 1rem;
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.book-overnight-card:hover {
    border-color: var(--color-primary);
}

.book-overnight-card.is-selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
    background: var(--color-primary-light);
}

.book-time-mode {
    margin-bottom: 1.25rem;
}

.book-time-mode__title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.book-time-mode__hint {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.book-duration--inline {
    margin-bottom: 1rem;
}

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

.book-specials__title {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.book-specials__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.book-special-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 1rem;
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.book-special-card[hidden],
.book-specials__group[hidden] {
    display: none !important;
}

.book-special-card:hover {
    border-color: var(--color-primary);
}

.book-special-card.is-selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
    background: var(--color-primary-light);
}

.book-special-card__range {
    grid-column: 1;
    font-size: 0.95rem;
    font-weight: 700;
}

.book-special-card__name {
    grid-column: 1;
    font-size: 0.88rem;
    font-weight: 600;
}

.book-special-card__meta {
    grid-column: 1;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.book-special-card__price {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    font-weight: 700;
}

.book-overnight-card__type {
    grid-column: 1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
}

.book-overnight-card__range {
    grid-column: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.book-overnight-card__meta {
    grid-column: 1;
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.book-overnight-card__price {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    background: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

.book-agenda__times-wrap {
    margin-top: 0.25rem;
}

.book-agenda__times-label {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.book-agenda__times {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
}

@media (max-width: 380px) {
    .book-agenda__times {
        grid-template-columns: repeat(3, 1fr);
    }
}

.book-time {
    min-height: 40px;
    padding: 0.45rem 0.35rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.book-time.is-available {
    color: var(--color-text);
    background: #fff;
}

.book-time.is-available:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.book-time.is-unavailable {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.85;
}

.book-time.is-selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 184, 217, 0.35);
}

.book-agenda__times-empty {
    margin: 0 0 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px dashed var(--color-border);
    background: #f8fafc;
    color: var(--color-muted);
    font-size: 0.88rem;
    text-align: center;
}

.book-duration__base {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    color: var(--color-muted);
}

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

.book-duration__slider {
    margin-bottom: 0.85rem;
    padding: 0.85rem 0.9rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #f8fafc;
}

.book-duration__slider-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.book-duration__slider-head strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text);
}

.book-duration__fee {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.76rem;
    color: var(--color-muted);
}

.book-duration__extra-summary {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    text-align: right;
}

.book-duration__extra-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.book-duration__extra-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

.book-duration__range {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 6px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--color-primary) 0%,
        var(--color-primary) var(--range-progress, 0%),
        #dbeafe var(--range-progress, 0%),
        #dbeafe 100%
    );
    cursor: pointer;
}

.book-duration__range:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.book-duration__range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: transparent;
}

.book-duration__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -8px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 184, 217, 0.35);
    cursor: grab;
}

.book-duration__range:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.06);
}

.book-duration__range::-moz-range-track {
    height: 6px;
    border: none;
    border-radius: 999px;
    background: #dbeafe;
}

.book-duration__range::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--color-primary);
}

.book-duration__range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 184, 217, 0.35);
    cursor: grab;
}

.book-duration__slider-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    color: var(--color-muted);
}

.book-duration__total {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.book-duration__total strong {
    color: var(--color-primary-dark);
}

.book-duration {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.book-duration__label {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
}

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

.book-duration__opt {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    color: var(--color-text);
    font-size: 0.85rem;
}

.book-duration__opt input {
    accent-color: var(--color-primary);
}

.book-duration__opt.is-selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

/* Lichte panelen (gasten, extras, overzicht) */
.book-panel__inner {
    padding: 1rem 1.15rem 0.5rem;
}

.book-stay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0;
    margin-bottom: 0.75rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.book-stay__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
}

.book-stay strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.book-stay span {
    font-size: 0.82rem;
    color: var(--color-muted);
}

.book-stay__col--out {
    text-align: right;
}

.book-guests__intro {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}

.book-guests__title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text);
}

.book-guests__max {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-muted);
    white-space: nowrap;
}

.book-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
}

.book-counter__info {
    min-width: 0;
}

.book-counter:last-of-type {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.book-counter strong {
    display: block;
    font-size: 0.92rem;
}

.book-counter span {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.book-counter__info .book-counter__fee {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--color-primary);
}

.book-counter__ctrl {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.book-counter__ctrl button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.book-counter__ctrl button:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.book-counter__ctrl span {
    min-width: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
}

.book-counter__ctrl--sm button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}

.book-extras-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.book-extra {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fafbfc;
}

.book-extra__img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.book-extra__body {
    flex: 1;
    min-width: 0;
}

.book-extra__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.book-extra__price {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.book-empty {
    margin: 0;
    padding: 1.5rem 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.book-summary__title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.book-summary__lines {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.book-summary__lines li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: 0.88rem;
}

.book-summary__lines li span:last-child {
    font-weight: 600;
    white-space: nowrap;
}

.book-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary-light), #f0f9ff);
    border: 1px solid rgba(0, 184, 217, 0.25);
    font-size: 1rem;
}

.book-summary__total strong {
    font-size: 1.35rem;
    color: var(--color-primary-dark);
}

.book-summary__note {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--color-muted);
    text-align: center;
}

.book-summary__legal-link {
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.book-summary__legal-link:hover {
    color: var(--color-primary);
}

.book-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.book-contact__title {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text);
}

.book-contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.book-contact__field > span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-muted);
}

.book-contact__field input {
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.book-contact__field input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.18);
}

.book-contact__error {
    margin: 0;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-size: 0.82rem;
}

.book-success {
    text-align: center;
    padding: 1.5rem 0.5rem 0.75rem;
}

.book-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.book-success__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.book-success__text {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--color-text);
    white-space: pre-line;
}

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

.book-panel__inner.is-success-only > :not(.book-success) {
    display: none;
}

.book-stay--compact {
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

/* Nav buttons */
.book-flow__nav {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--color-border);
    background: #fafbfc;
}

.book-flow__nav--single {
    grid-template-columns: 1fr;
}

.book-flow__nav--stack {
    grid-template-columns: 1fr;
}

.book-btn {
    min-height: 42px;
    padding: 0 0.85rem;
    border: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s, background 0.15s;
}

.book-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.book-btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 184, 217, 0.3);
}

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

.book-btn--primary:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 184, 217, 0.35);
}

.book-btn--ghost {
    background: #e2e8f0;
    color: var(--color-text);
}

.book-btn--full {
    width: 100%;
}

/* Sidebar: booking card wrapper */
.spa-page__book-card--flow {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.book-flow__step.is-active .book-flow__step-label {
    display: inline;
}

@media (max-width: 520px) {
    .book-flow__step:not(.is-active) .book-flow__step-label {
        display: none;
    }

    .book-flow__step.is-active {
        padding: 0.45rem 0.95rem;
    }
}

@media (min-width: 900px) {
    /* Sticky sidebar: vaste hoogte, scroll binnen het paneel */
    .spa-page__book .book-flow {
        max-height: calc(100vh - 5.75rem);
        border-radius: 16px;
        box-shadow: 0 10px 32px rgba(15, 23, 42, 0.09);
    }

    .spa-page__book .book-flow__header {
        padding: 0.7rem 0.9rem;
    }

    .spa-page__book .book-flow__price-line {
        font-size: 0.95rem;
    }

    .spa-page__book .book-flow__price-line strong {
        font-size: 1.15rem;
    }

    .spa-page__book .book-flow__steps {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.25rem;
        padding: 0.5rem 0.5rem;
        overflow-x: visible;
    }

    .spa-page__book .book-flow__step {
        justify-content: center;
        min-width: 0;
        padding: 0.38rem 0.2rem;
        font-size: 0.62rem;
    }

    .spa-page__book .book-flow__step:not(.is-active):not(.is-done) .book-flow__step-label {
        display: none;
    }

    .spa-page__book .book-flow__step.is-active {
        padding: 0.38rem 0.55rem;
        font-size: 0.66rem;
    }

    .spa-page__book .book-flow__step-icon svg {
        width: 13px;
        height: 13px;
    }

    /* Datum-stap: ruimer; tijd-stap blijft compacter */
    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar {
        padding: 0.95rem 1rem 0.55rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar__nav {
        margin-bottom: 0.8rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar__title {
        font-size: 0.98rem;
        min-width: 7rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar__arrow,
    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar__jump {
        min-width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-cal-day {
        min-height: 42px;
        padding: 0.32rem 0.12rem 0.45rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-cal-day__num {
        font-size: 0.92rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-cal-day__mark {
        height: 6px;
        margin-top: 0.25rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar__legend {
        margin-top: 0.65rem;
        font-size: 0.8rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-calendar__hint {
        margin-top: 0.65rem;
        padding: 0.6rem 0.8rem;
        font-size: 0.86rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-flow__nav {
        padding: 0.75rem 1rem 1rem;
    }

    .spa-page__book .book-panel[data-book-panel="date"] .book-btn {
        min-height: 44px;
        font-size: 0.92rem;
    }

    .spa-page__book .book-agenda {
        margin: 0.65rem;
        padding: 0.95rem;
        border-radius: 14px;
    }

    .spa-page__book .book-agenda__head {
        margin-bottom: 0.75rem;
    }

    .spa-page__book .book-agenda__title {
        font-size: 0.98rem;
    }

    .spa-page__book .book-agenda__sub {
        font-size: 0.8rem;
    }

    .spa-page__book .book-agenda__times-label {
        margin-bottom: 0.5rem;
        font-size: 0.66rem;
    }

    .spa-page__book .book-agenda__times {
        gap: 0.4rem;
    }

    .spa-page__book .book-time {
        min-height: 38px;
        padding: 0.35rem 0.25rem;
        font-size: 0.8rem;
        border-radius: 9px;
    }

    .spa-page__book .book-duration {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .spa-page__book .book-duration__label,
    .spa-page__book .book-duration__base {
        font-size: 0.8rem;
        margin-bottom: 0.55rem;
    }

    .spa-page__book .book-duration__slider-head {
        font-size: 0.84rem;
    }

    .spa-page__book .book-duration__total {
        margin-top: 0.55rem;
        font-size: 0.85rem;
    }

    .spa-page__book .book-panel__inner {
        padding: 0.8rem 0.9rem 0.45rem;
    }

    .spa-page__book .book-guests__intro {
        margin-bottom: 0.75rem;
    }

    .spa-page__book .book-counter {
        padding: 0.65rem 0;
    }

    .spa-page__book .book-flow__nav {
        padding: 0.65rem 0.85rem 0.85rem;
        gap: 0.45rem;
    }

    .spa-page__book .book-btn {
        min-height: 40px;
        font-size: 0.86rem;
        border-radius: 9px;
    }
}
