/* ═══════════════════════════════════════════════════════════════════════
   BOOKING CRÙ — CSS prenotazioni (prefisso .bk-*)
   Estende il CSS del sito principale, MA è autosufficiente: include un
   reset minimo + tipografia + bottoni, così il mockup si rende corretto
   anche se il CSS del sito (path relativo) non è raggiungibile sul device
   di test. In produzione queste basi arriveranno dal CSS condiviso.
   Mobile-first (360–430px). Identità: scura, premium, mediterranea.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --bk-font-body: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bk-font-serif: "Playfair Display", Georgia, serif;
    --bk-font-script: "Dancing Script", "Brush Script MT", cursive;
    --bk-bg:          #080d16;
    --bk-bg-deeper:   #040a10;
    --bk-text:        #e8ebee;
    --bk-muted:       #9ba6b0;
    --bk-accent:      #6a8391;
    --bk-accent-soft: #84a0b0;
    --bk-gold:        #c8a876;
    --bk-danger:      #d99a8c;
    --bk-border:      rgba(255,255,255,.08);
    --bk-border-mid:  rgba(255,255,255,.14);
    --bk-border-str:  rgba(255,255,255,.22);
    --bk-surface:     rgba(255,255,255,.03);
    --bk-surface-2:   rgba(255,255,255,.05);
    --bk-accent-tint: rgba(106,131,145,.16);
    --bk-radius:      8px;
    --bk-radius-sm:   6px;
}

/* ─── Reset minimo (autosufficienza) ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
input, textarea, select, button { letter-spacing: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
[hidden] { display: none !important; }
.script { font-family: var(--bk-font-script); }

/* ─── Barra DEMO (solo mockup) ───────────────────────────────────────── */
.bk-demo {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .4rem .75rem;
    background: rgba(4,10,16,.85);
    border-bottom: 1px solid var(--bk-border);
}
.bk-demo__label {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--bk-gold);
    white-space: nowrap;
}
.bk-demo__select {
    appearance: none;
    -webkit-appearance: none;
    max-width: 240px;
    padding: .35rem 1.9rem .35rem .65rem;
    background-color: var(--bk-surface-2);
    border: 1px solid var(--bk-border-mid);
    border-radius: var(--bk-radius-sm);
    color: var(--bk-text);
    font-size: .78rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ba6b0' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .6rem center;
}
.bk-demo__select:focus { outline: none; border-color: var(--bk-accent); }
.bk-demo__select optgroup,
.bk-demo__select option { background: var(--bk-bg); color: var(--bk-text); }

.bk-body {
    background-color: var(--bk-bg-deeper);
    color: var(--bk-text);
    font-family: var(--bk-font-body);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ─── Sfondo fotografico sfumato ─────────────────────────────────────── */
.bk-bg { position: fixed; inset: 0; z-index: -2; background: var(--bk-bg-deeper); }
.bk-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    filter: brightness(.4) saturate(.9) blur(2px);
    transform: scale(1.05);
}
.bk-bg__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(106,131,145,.12), transparent 55%),
        linear-gradient(180deg, rgba(8,13,22,.82) 0%, rgba(4,10,16,.94) 60%, var(--bk-bg-deeper) 100%);
}

/* ─── Header: logo del sito centrato (3 colonne: spazio · logo · controlli) ── */
.bk-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1.25rem;
    max-width: 1100px;
    margin-inline: auto;
}
.bk-header__side { min-width: 0; }
.bk-header__brand { justify-self: center; display: inline-flex; align-items: center; }
.bk-header__logo { height: 72px; width: auto; display: block; }
.bk-header__brand-text { display: inline-flex; align-items: baseline; gap: .4rem; }
.bk-header__brand-main {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--bk-text);
}
.bk-header__brand-sub {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--bk-accent-soft);
    font-weight: 600;
}
.bk-header__back {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--bk-muted);
    transition: color .15s ease-out;
    white-space: nowrap;
}
.bk-header__back:hover { color: var(--bk-accent-soft); }
.bk-header__actions { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.bk-lang { display: inline-flex; align-items: stretch; border: 1px solid var(--bk-border-mid); border-radius: 999px; overflow: hidden; }
.bk-lang__btn { padding: .3rem .68rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--bk-muted); cursor: pointer; background: transparent; transition: background .15s ease-out, color .15s ease-out; }
.bk-lang__btn + .bk-lang__btn { border-left: 1px solid var(--bk-border-mid); }
.bk-lang__btn.is-active { background: var(--bk-accent); color: var(--bk-bg); }
.bk-lang__btn:not(.is-active):hover { color: var(--bk-text); }
@media (max-width: 560px) {
    .bk-header { padding: .6rem 1rem; }
    .bk-header__logo { height: 58px; }
    .bk-header__brand-main { font-size: 1.35rem; }
    .bk-header__back { display: none; }
}

/* ─── Layout principale ──────────────────────────────────────────────── */
.bk-main {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    padding: .5rem .75rem 3rem;   /* card mai attaccata ai bordi (12px) */
}
@media (min-width: 640px) {
    .bk-main { padding: 1rem 1.5rem 4rem; }
}

.bk-intro { text-align: center; margin: .4rem 0 .75rem; }
.bk-intro__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.4rem);   /* mobile ≈ 30px, max 38px */
    font-weight: 400;
    line-height: 1.1;
    color: var(--bk-text);
}
.bk-intro__sub { color: var(--bk-muted); font-size: .88rem; margin: .25rem 0 0; }
@media (min-width: 640px) { .bk-intro { margin: .6rem 0 1.4rem; } }

/* ─── Pannello (superficie unica) ────────────────────────────────────── */
.bk-panel {
    background: rgba(8,13,22,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bk-border);
    border-radius: 14px;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
@media (min-width: 640px) {
    .bk-panel { padding: 1.75rem 2.25rem 1.5rem; border-radius: 16px; }
}

/* ─── Stepper minimale (3 fasi: Ospiti · Data · Conferma) — quasi impercettibile ── */
.bk-stepper { margin-bottom: .9rem; }
.bk-stepper__track { display: flex; gap: .3rem; }
.bk-stepper__seg {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    min-width: 0;
}
.bk-stepper__bar {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--bk-border-mid);
    transition: background .3s ease-out;
}
.bk-stepper__name {
    font-size: .58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--bk-muted);
    white-space: nowrap;
    transition: color .3s ease-out;
}
.bk-stepper__seg.is-done .bk-stepper__bar,
.bk-stepper__seg.is-current .bk-stepper__bar { background: var(--bk-accent); }
.bk-stepper__seg.is-current .bk-stepper__name { color: var(--bk-text); }
.bk-stepper__seg.is-done .bk-stepper__name { color: var(--bk-accent-soft); }

/* ─── Summary bar (selezione persistente) ────────────────────────────── */
/* Riepilogo: intera card cliccabile (porta a modificare la selezione), compatta */
.bk-summary-bar {
    display: flex;
    align-items: center;
    gap: .6rem;
    width: 100%;
    padding: .5rem .8rem;
    background: var(--bk-accent-tint);
    border: 1px solid rgba(106,131,145,.3);
    border-radius: var(--bk-radius);
    margin-bottom: 1rem;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease-out, background .15s ease-out;
}
.bk-summary-bar:hover { border-color: var(--bk-accent); background: rgba(106,131,145,.22); }
.bk-summary-bar:focus-visible { outline: 2px solid var(--bk-accent-soft); outline-offset: 2px; }
.bk-summary-bar__text { flex: 1; min-width: 0; font-size: .84rem; font-weight: 500; color: var(--bk-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bk-summary-bar__icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--bk-accent-soft); transition: color .15s ease-out; }
.bk-summary-bar:hover .bk-summary-bar__icon { color: var(--bk-text); }

/* ─── Step (transizione) ─────────────────────────────────────────────── */
.bk-step { animation: bkFade .28s ease-out; }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.bk-step__title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    text-align: center;
    margin: 0 0 .3rem;
    color: var(--bk-text);
}
.bk-step__help { text-align: center; color: var(--bk-muted); font-size: .88rem; margin: 0 0 1rem; }
/* [CRÙ] guida flusso giorno → orario: hint sotto le date + label sopra gli orari */
.bk-when-hint { margin: .25rem 0 1rem; color: var(--bk-gold); font-style: italic; }
.bk-slots__label { margin: 0 0 .6rem; text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bk-gold); }

/* ─── STEP 1 — Ospiti (tile coerenti: 1 · 2 · … · soglia · (soglia+1)+) ──
   Colonne dinamiche per-locale (--bk-people-cols, impostata dal JS): 5 tile→3,
   7 tile→4. Flex centrato così l'ultima riga incompleta resta simmetrica; il
   contenitore si stringe a "colonne × 8rem" e si centra → tile sempre della
   stessa dimensione su ogni locale, niente grandi aree vuote. */
.bk-people {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin: 0 auto 1rem;
    max-width: calc(var(--bk-people-cols, 4) * 8rem);
}
.bk-people__btn {
    position: relative;
    flex: 0 0 calc(100% / var(--bk-people-cols, 4) - .5rem);
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--bk-border-str);
    background: var(--bk-surface);
    color: var(--bk-text);
    border-radius: var(--bk-radius);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.4rem;
    transition: all .15s ease-out;
}
/* "5+" è una risposta come le altre: stessa tile, glifo un filo più piccolo (due caratteri) */
.bk-people__btn--more { font-size: 1.2rem; }
.bk-people__btn:hover:not(.is-selected) { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
/* Stato selezionato: fill slate BRILLANTE + testo scuro (inversione di polarità) +
   anello e ombra. Unico linguaggio per ospiti/giorni/orari. */
.bk-people__btn.is-selected {
    background: linear-gradient(180deg, #b3c3cc 0%, #8ea5b0 100%);
    border-color: #c2d0d8;
    color: var(--bk-bg);
    box-shadow: 0 0 0 1.5px rgba(178,195,204,.9), 0 8px 20px -10px rgba(140,162,175,.7);
}

/* Le due viste dello step Ospiti si alternano inline (niente modale): transizione morbida su entrambe */
.bk-people-pick { animation: bkFade .25s ease-out; }
.bk-bigroup__form {
    margin-top: .25rem; text-align: left;
    display: flex; flex-direction: column; gap: .8rem;
    animation: bkFade .25s ease-out;
}
/* Ritorno alla scelta numero (link sobrio in alto a sinistra) */
.bk-group__back {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: .35rem;
    margin-bottom: -.35rem;
    padding: .2rem .1rem;
    color: var(--bk-accent-soft);
    font-size: .78rem; font-weight: 600; letter-spacing: .04em;
    transition: color .15s ease-out;
}
.bk-group__back:hover { color: var(--bk-text); }
.bk-group__back svg { width: 16px; height: 16px; flex-shrink: 0; }
.bk-bigroup__help { margin: 0; font-size: .82rem; color: var(--bk-muted); line-height: 1.5; }
.bk-opt { color: var(--bk-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ─── STEP 2 — Date strip ────────────────────────────────────────────── */
.bk-dates {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: .25rem .1rem 1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}
.bk-dates::-webkit-scrollbar { display: none; }
.bk-date {
    flex: 0 0 auto;
    width: 66px;
    padding: .6rem .35rem;
    border: 1.5px solid var(--bk-border-mid);
    background: var(--bk-surface);
    border-radius: var(--bk-radius);
    text-align: center;
    scroll-snap-align: start;
    transition: all .15s ease-out;
}
/* :not(.is-selected) → l'hover non sovrascrive MAI il giorno selezionato.
   Critico su Android: dopo il tap il browser mantiene :hover finché non tocchi
   altrove; senza questa esclusione il fill spariva e il giorno sembrava disabilitato. */
.bk-date:hover:not(.is-disabled):not(.is-selected) { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
.bk-date__dow { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--bk-muted); }
.bk-date__num { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.4rem; line-height: 1.25; color: var(--bk-text); }
.bk-date__mon { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .05em; color: var(--bk-muted); }
.bk-date__status { display: flex; align-items: center; justify-content: center; }
/* Giorno selezionato: l'elemento più evidente del calendario. Fill slate BRILLANTE
   + testo scuro (inversione di polarità rispetto ai giorni disponibili, testo chiaro
   su fondo scuro) + anello e ombra. Leggibile anche su Android ad alta luminosità.
   Stesso linguaggio di ospiti e orari. */
.bk-date.is-selected {
    border-color: #c2d0d8;
    background: linear-gradient(180deg, #b3c3cc 0%, #8ea5b0 100%);
    box-shadow: 0 0 0 1.5px rgba(178,195,204,.9), 0 10px 22px -10px rgba(140,162,175,.7);
    transform: translateY(-1px);
}
.bk-date.is-selected .bk-date__dow,
.bk-date.is-selected .bk-date__mon { color: #16202a; opacity: .92; font-weight: 700; }
.bk-date.is-selected .bk-date__num { color: var(--bk-bg); font-weight: 700; }
/* Giorno non disponibile/chiuso: defilato e piatto, attira meno dello stato disponibile */
.bk-date.is-disabled { opacity: .32; cursor: not-allowed; background: transparent; border-color: var(--bk-border); }
.bk-date__closed { display: block; margin-top: .3rem; font-size: .54rem; text-transform: uppercase; letter-spacing: .04em; color: var(--bk-muted); }

/* ─── Accesso rapido al calendario mensile ───────────────────────────── */
.bk-dates-tools { display: flex; justify-content: flex-end; margin: -.15rem 0 .35rem; }
.bk-cal-open {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .4rem .75rem; border: 1px solid var(--bk-border-mid);
    border-radius: 999px; background: var(--bk-surface); color: var(--bk-text);
    font-size: .76rem; font-weight: 600; cursor: pointer;
    transition: border-color .15s ease-out, background .15s ease-out;
}
.bk-cal-open:hover { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
.bk-cal-open svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ─── Calendario mensile (overlay) ───────────────────────────────────── */
.bk-cal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.bk-cal[hidden] { display: none; }
@keyframes bkCalBgIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bkCalIn { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
/* Backdrop: scuro e sfocato → il contenuto dietro diventa secondario (modalità dedicata). */
.bk-cal__backdrop {
    position: absolute; inset: 0;
    background: radial-gradient(130% 100% at 50% 28%, rgba(8, 13, 22, .84) 0%, rgba(3, 6, 11, .95) 100%);
    -webkit-backdrop-filter: blur(7px) saturate(.85); backdrop-filter: blur(7px) saturate(.85);
    animation: bkCalBgIn .2s ease-out;
}
/* Dialog: card SOLIDA (niente effetto vetro) con profondità. */
.bk-cal__dialog {
    position: relative; width: 100%; max-width: 360px;
    background: linear-gradient(180deg, #1a2531 0%, #0f1823 100%);
    border: 1px solid var(--bk-border-str);
    border-radius: 16px; padding: 1.15rem 1.15rem 1.05rem;
    box-shadow:
        0 32px 72px -20px rgba(0, 0, 0, .85),
        0 2px 0 rgba(0, 0, 0, .4),
        inset 0 1px 0 rgba(255, 255, 255, .07);
    animation: bkCalIn .24s cubic-bezier(.2, .7, .3, 1);
}
.bk-cal__head {
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
    padding-bottom: .8rem; margin-bottom: .85rem; border-bottom: 1px solid var(--bk-border);
}
.bk-cal__title {
    flex: 1; text-align: center;
    font-family: "Playfair Display", Georgia, serif; font-size: 1.2rem; font-weight: 600;
    color: var(--bk-text); text-transform: capitalize; letter-spacing: .01em;
}
.bk-cal__nav {
    flex: 0 0 auto; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--bk-border-mid); border-radius: 12px; background: var(--bk-surface-2);
    color: var(--bk-text); cursor: pointer; transition: border-color .15s ease-out, background .15s ease-out;
}
.bk-cal__nav:hover:not(:disabled) { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
.bk-cal__nav svg { width: 18px; height: 18px; }
.bk-cal__nav:disabled { opacity: .3; cursor: not-allowed; }
.bk-cal__dows { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; margin-bottom: .4rem; }
.bk-cal__dows span { text-align: center; font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--bk-muted); }
.bk-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.bk-cal__cell {
    aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
    border: 1.5px solid transparent; border-radius: 10px; background: rgba(255, 255, 255, .045);
    color: var(--bk-text); font-size: .92rem; cursor: pointer;
    transition: border-color .12s ease-out, background .12s ease-out, box-shadow .12s ease-out;
}
.bk-cal__cell--empty { background: transparent; border: 0; cursor: default; }
.bk-cal__cell:hover:not(.is-disabled):not(.is-selected):not(.bk-cal__cell--empty) { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
.bk-cal__cell.is-today { box-shadow: inset 0 0 0 1.5px var(--bk-accent); color: var(--bk-accent-soft); font-weight: 700; }
.bk-cal__cell.is-selected {
    background: linear-gradient(180deg, #c2d2db 0%, #93aab6 100%); color: #14202a; font-weight: 700; border-color: #cfdbe2;
    box-shadow: 0 0 0 2px rgba(132, 160, 176, .35), 0 8px 18px -6px rgba(0, 0, 0, .55);
}
.bk-cal__cell.is-disabled { opacity: .26; cursor: not-allowed; }
.bk-cal__close { width: 100%; margin-top: 1rem; }

/* ─── Annulla prenotazione (schermata finale) ────────────────────────── */
.bk-cancel-row { display: flex; justify-content: center; margin-top: 1.1rem; }
.bk-cancel-link {
    background: transparent; border: 0; cursor: pointer;
    font-size: .76rem; font-weight: 600; letter-spacing: .02em;
    color: var(--bk-muted); text-decoration: underline; text-underline-offset: 3px;
    transition: color .15s ease-out;
}
.bk-cancel-link[hidden] { display: none; }
.bk-cancel-link:hover { color: #e98b8b; }

/* ─── STEP 2 — Slots ─────────────────────────────────────────────────── */
.bk-slots-area { margin-top: .5rem; padding-top: 1.1rem; border-top: 1px solid var(--bk-border); animation: bkFade .25s ease-out; }
.bk-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: .55rem;
}
@media (max-width: 380px) { .bk-slots { grid-template-columns: repeat(3, 1fr); } }
.bk-slot {
    min-height: 50px;
    border: 1.5px solid var(--bk-border-mid);
    background: var(--bk-surface);
    color: var(--bk-text);
    border-radius: var(--bk-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: all .15s ease-out;
}
/* :not(.is-selected) → come per i giorni: l'hover (anche quello "appiccicoso"
   dopo il tap su Android) non sovrascrive l'orario selezionato. */
.bk-slot:hover:not(:disabled):not(.is-selected) { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
.bk-slot.is-selected {
    background: linear-gradient(180deg, #b3c3cc 0%, #8ea5b0 100%);
    border-color: #c2d0d8;
    color: var(--bk-bg);
    font-weight: 700;
    box-shadow: 0 0 0 1.5px rgba(178,195,204,.9), 0 8px 20px -10px rgba(140,162,175,.7);
}
.bk-slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; color: var(--bk-muted); }
.bk-slots__closed { text-align: center; color: var(--bk-muted); font-size: .9rem; padding: 1.25rem; grid-column: 1 / -1; }

/* ─── STEP 3 — Form ──────────────────────────────────────────────────── */
.bk-form { display: flex; flex-direction: column; gap: .85rem; }
.bk-field { display: flex; flex-direction: column; gap: .3rem; }
.bk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 480px) { .bk-field-row { grid-template-columns: 1fr; gap: .85rem; } }
.bk-label { font-size: .72rem; font-weight: 600; letter-spacing: .05em; color: var(--bk-muted); }
.bk-req { color: var(--bk-accent-soft); margin-left: .2em; }
.bk-input {
    width: 100%;
    min-height: 52px;
    padding: .65rem .85rem;
    background: var(--bk-surface-2);
    border: 1.5px solid var(--bk-border-mid);
    border-radius: var(--bk-radius-sm);
    color: var(--bk-text);
    font-size: 1rem;
    transition: border-color .15s ease-out, box-shadow .15s ease-out;
}
.bk-input::placeholder { color: rgba(155,166,176,.55); }
.bk-input:focus { outline: none; border-color: var(--bk-accent); box-shadow: 0 0 0 3px var(--bk-accent-tint); }
.bk-input.is-error { border-color: var(--bk-danger); }
.bk-textarea { resize: vertical; min-height: 96px; line-height: 1.5; padding-top: .6rem; }
select.bk-input {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ba6b0' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .8rem center;
    padding-right: 2.1rem;
    cursor: pointer;
}
.bk-phone { display: flex; gap: .5rem; }
.bk-phone__num { flex: 1; min-width: 0; }

/* ─── Selettore prefisso con bandiere (dropdown custom) ──────────────── */
.bk-prefix { position: relative; flex: 0 0 auto; }
.bk-prefix__btn { display: flex; align-items: center; gap: .4rem; width: 108px; padding-right: .6rem; cursor: pointer; }
.bk-prefix__flag { width: 22px; height: 15px; flex-shrink: 0; display: inline-flex; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.bk-prefix__flag svg { width: 100%; height: 100%; display: block; }
.bk-prefix__flag--emoji { box-shadow: none; background: none; overflow: visible; font-size: 16px; line-height: 1; align-items: center; justify-content: center; }
.bk-prefix__code { font-size: .95rem; color: var(--bk-text); }
.bk-prefix__chevron { width: 16px; height: 16px; margin-left: auto; flex-shrink: 0; color: var(--bk-muted); transition: transform .2s ease-out; }
.bk-prefix__btn[aria-expanded="true"] .bk-prefix__chevron { transform: rotate(180deg); }
.bk-prefix__panel {
    position: absolute; top: calc(100% + 4px); left: 0; z-index: 50;
    width: 260px; padding: .35rem;
    background: linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.05)), var(--bk-bg);
    border: 1px solid var(--bk-border-mid);
    border-radius: var(--bk-radius-sm); box-shadow: 0 14px 34px rgba(0,0,0,.5);
    animation: bkFade .15s ease-out;
}
.bk-prefix__search {
    width: 100%; box-sizing: border-box; margin-bottom: .35rem;
    padding: .5rem .6rem; font-size: .9rem;
    color: var(--bk-text); background: rgba(255,255,255,.04);
    border: 1px solid var(--bk-border-mid); border-radius: var(--bk-radius-sm);
}
.bk-prefix__search::placeholder { color: var(--bk-muted); }
.bk-prefix__list {
    margin: 0; padding: 0; list-style: none;
    max-height: 240px; overflow-y: auto;
}
.bk-prefix__opt { display: flex; align-items: center; gap: .55rem; padding: .55rem; border-radius: var(--bk-radius-sm); font-size: .9rem; color: var(--bk-text); cursor: pointer; }
.bk-prefix__opt:hover, .bk-prefix__opt.is-active { background: var(--bk-accent-tint); }
.bk-prefix__opt-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bk-prefix__opt-code { color: var(--bk-muted); font-size: .85rem; }

/* ─── Collapse esigenze particolari (chiuso di default) ──────────────── */
.bk-collapse { border: 1px solid var(--bk-border); border-radius: var(--bk-radius); overflow: hidden; background: var(--bk-surface); }
.bk-collapse__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .8rem 1rem;
    color: var(--bk-text);
    font-size: .88rem;
    font-weight: 600;
    text-align: left;
    transition: background .15s ease-out;
}
.bk-collapse__trigger:hover { background: var(--bk-surface-2); }
.bk-collapse__label { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.bk-collapse__title { font-size: .88rem; font-weight: 600; color: var(--bk-text); }
.bk-collapse__hint { font-size: .72rem; font-weight: 400; color: var(--bk-muted); line-height: 1.35; }
.bk-collapse.is-open .bk-collapse__hint { display: none; }
.bk-collapse__chevron { width: 18px; height: 18px; color: var(--bk-muted); flex-shrink: 0; transition: transform .2s ease-out; }
.bk-collapse.is-open .bk-collapse__chevron { transform: rotate(180deg); }
.bk-collapse__body { max-height: 0; overflow: hidden; padding: 0 .9rem; display: flex; flex-direction: column; gap: .75rem; transition: max-height .3s ease-out, padding .2s ease-out; }
.bk-collapse.is-open .bk-collapse__body { max-height: 900px; padding: .25rem .9rem 1rem; }
.bk-collapse__body .bk-textarea { min-height: 72px; }
.bk-collapse__body .bk-field { gap: .25rem; }

/* ─── STEP caparra ───────────────────────────────────────────────────── */
.bk-deposit { text-align: center; padding: 1.4rem; background: var(--bk-surface); border: 1px solid var(--bk-border); border-radius: var(--bk-radius); margin-bottom: 1.1rem; }
.bk-deposit__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--bk-muted); margin: 0 0 .35rem; }
.bk-deposit__amount { font-family: "Playfair Display", Georgia, serif; font-size: 2.5rem; line-height: 1; color: var(--bk-gold); margin: 0; }
.bk-deposit__meta { font-size: .85rem; color: var(--bk-muted); margin: .5rem 0 0; }
.bk-policy { margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: .55rem; }
.bk-policy li { display: flex; align-items: center; gap: .55rem; font-size: .85rem; color: var(--bk-muted); }
.bk-policy svg { width: 16px; height: 16px; color: var(--bk-accent-soft); flex-shrink: 0; }

/* ─── Scelta metodo di pagamento (solo modalità caparra) ─────────────── */
.bk-pay { margin: 1.4rem 0 .25rem; }
.bk-pay__label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bk-muted); margin: 0 0 .7rem; }
.bk-pay__methods { display: flex; flex-direction: column; gap: .65rem; }
.bk-pay__method {
    display: flex; align-items: center; gap: .85rem;
    width: 100%; padding: .95rem 1rem; text-align: left; cursor: pointer;
    background: var(--bk-surface); border: 1.5px solid var(--bk-border-mid);
    border-radius: var(--bk-radius); transition: border-color .15s ease-out, background .15s ease-out;
}
.bk-pay__method:hover { border-color: var(--bk-accent); }
.bk-pay__method.is-selected { border-color: var(--bk-accent); background: var(--bk-accent-tint); }
/* Con un solo provider attivo niente radio: è una semplice scheda informativa */
.bk-pay__methods--single .bk-pay__method { cursor: default; }
.bk-pay__methods--single .bk-pay__radio { display: none; }
.bk-pay__radio { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--bk-border-str); position: relative; transition: border-color .15s ease-out; }
.bk-pay__method.is-selected .bk-pay__radio { border-color: var(--bk-accent); }
.bk-pay__method.is-selected .bk-pay__radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--bk-accent); }
.bk-pay__method-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.bk-pay__method-name { font-size: .95rem; font-weight: 600; color: var(--bk-text); }
.bk-pay__method-sub { font-size: .78rem; color: var(--bk-muted); }
.bk-pay__brands { display: flex; align-items: center; gap: .3rem; flex-shrink: 0; flex-wrap: nowrap; justify-content: flex-end; }
.bk-pay__note { display: flex; align-items: flex-start; gap: .45rem; margin: 1rem 0 0; font-size: .78rem; color: var(--bk-muted); line-height: 1.5; }
.bk-pay__note svg { width: 16px; height: 16px; color: var(--bk-accent-soft); flex-shrink: 0; margin-top: .1rem; }
.bk-pay__empty { font-size: .88rem; color: var(--bk-muted); text-align: center; padding: 1rem; background: var(--bk-surface); border-radius: var(--bk-radius); }

/* Mini-logo brand su tile bianco (carte + PayPal) */
.bk-brand { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 25px; background: #fff; border-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,.25); }
.bk-brand svg { width: 30px; height: 12px; }

/* Spinner schermata di reindirizzamento */
.bk-status__icon--spin svg { animation: bkSpin 1s linear infinite; }
@keyframes bkSpin { to { transform: rotate(360deg); } }

/* ─── STEP 4 — Riepilogo ─────────────────────────────────────────────── */
.bk-review { border: 1px solid var(--bk-border); border-radius: var(--bk-radius); background: var(--bk-surface); overflow: hidden; margin-bottom: 1.1rem; }
/* Presentazione "umana": un blocco principale (locale · quando · ospiti) + dettagli leggeri, niente tabella */
.bk-review__hero { text-align: center; padding: 1.15rem 1rem 1rem; }
.bk-review__venue { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; line-height: 1.2; color: var(--bk-accent-soft); }
.bk-review__when { margin: .4rem 0 0; font-size: 1.02rem; color: var(--bk-text); font-weight: 500; }
.bk-review__people { margin: .12rem 0 0; font-size: .88rem; color: var(--bk-muted); }
.bk-review__who { padding: .25rem 1rem 1rem; border-top: 1px solid var(--bk-border); }
.bk-review__line { display: flex; justify-content: space-between; align-items: baseline; gap: .75rem; margin: 0; padding: .55rem 0; }
.bk-review__line + .bk-review__line { border-top: 1px solid var(--bk-border); }
.bk-review__lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--bk-muted); flex-shrink: 0; }
.bk-review__val { font-size: .92rem; color: var(--bk-text); text-align: right; font-weight: 500; overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
.bk-review--compact { margin: 1rem 0 1.25rem; }
.bk-review--compact .bk-review__hero { padding: 1rem; }
.bk-review__extra { padding: .9rem 1rem; border: 1px dashed var(--bk-border-mid); border-radius: var(--bk-radius); margin-bottom: 1.1rem; }
.bk-review__extra-title { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--bk-muted); margin: 0 0 .45rem; }
.bk-review__extra p { font-size: .86rem; color: var(--bk-text); margin: .25rem 0; overflow-wrap: anywhere; }
.bk-review__extra strong { color: var(--bk-muted); font-weight: 600; }

/* ─── Privacy (compatta, allineata) ──────────────────────────────────── */
.bk-privacy { display: flex; align-items: flex-start; gap: .55rem; padding: .15rem .1rem; cursor: pointer; }
.bk-privacy input { width: 18px; height: 18px; margin-top: .1rem; flex-shrink: 0; accent-color: var(--bk-accent); cursor: pointer; }
.bk-privacy span { font-size: .78rem; color: var(--bk-muted); line-height: 1.4; }
.bk-privacy a { color: var(--bk-accent-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ─── Errori (sobri) ─────────────────────────────────────────────────── */
.bk-error { color: var(--bk-danger); font-size: .83rem; text-align: center; margin: .65rem 0 0; }

/* ─── Bottoni (stile Crù, autosufficienti) ───────────────────────────── */
.bk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .8rem 1.5rem;
    border-radius: 100px;
    border: 1.5px solid transparent;
    font-family: "Source Sans Pro", -apple-system, sans-serif;
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease-out, color .2s ease-out, border-color .2s ease-out, transform .15s ease-out;
}
.bk-btn:hover { transform: translateY(-1px); }
.bk-btn:active { transform: translateY(0); }
.bk-btn--primary { background: var(--bk-accent); color: var(--bk-bg); }
.bk-btn--primary:hover { background: var(--bk-accent-soft); }
.bk-btn--outline { background: transparent; border-color: var(--bk-accent); color: var(--bk-text); }
.bk-btn--outline:hover { background: var(--bk-accent); color: var(--bk-bg); }
.bk-btn--lg { min-height: 52px; padding: .95rem 1.75rem; font-size: .85rem; }
.bk-btn--sm { min-height: 46px; padding: .65rem 1.2rem; font-size: .78rem; }
.bk-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.bk-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.bk-actions { display: flex; align-items: center; gap: .65rem; margin-top: 1.35rem; }
.bk-actions--start { justify-content: flex-start; }
.bk-actions--center { justify-content: center; }
.bk-actions .bk-btn--primary { flex: 1; }
@media (max-width: 480px) {
    .bk-actions { flex-direction: column-reverse; }
    .bk-actions .bk-btn { width: 100%; }
    .bk-actions--start, .bk-actions--center { flex-direction: row; }
    .bk-actions--start .bk-btn, .bk-actions--center .bk-btn { width: auto; }
}
/* Azioni impilate (es. conferma finale): pulsanti a piena larghezza, ordine naturale */
.bk-actions--stack { flex-direction: column; align-items: stretch; }
.bk-actions--stack .bk-btn { width: 100%; flex: none; }

/* Rassicurazione sopra la CTA finale */
.bk-reassure { display: flex; align-items: center; justify-content: center; gap: .45rem; margin: 1.1rem 0 0; font-size: .8rem; color: var(--bk-muted); text-align: center; line-height: 1.4; }
.bk-reassure svg { width: 15px; height: 15px; color: var(--bk-accent-soft); flex-shrink: 0; }

/* ─── Focus visibile (accessibilità) ─────────────────────────────────── */
.bk-people__btn:focus-visible,
.bk-date:focus-visible,
.bk-slot:focus-visible,
.bk-collapse__trigger:focus-visible,
.bk-privacy input:focus-visible,
.bk-btn:focus-visible { outline: 2px solid var(--bk-accent-soft); outline-offset: 2px; }

/* ─── Stato finale successo ──────────────────────────────────────────── */
.bk-status { text-align: center; padding: .75rem 0 .5rem; }
.bk-status__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--bk-accent-tint);
    border: 1px solid rgba(106,131,145,.4);
    color: var(--bk-accent-soft);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.bk-status__icon svg { width: 36px; height: 36px; }
.bk-status--warning .bk-status__icon {
    background: rgba(200,168,118,.14);
    border-color: rgba(200,168,118,.4);
    color: var(--bk-gold);
}
.bk-status--danger .bk-status__icon {
    background: rgba(217,154,140,.12);
    border-color: rgba(217,154,140,.4);
    color: var(--bk-danger);
}
.bk-status--info .bk-status__icon {
    background: rgba(132,160,176,.12);
    border-color: rgba(132,160,176,.38);
    color: var(--bk-accent-soft);
}
.bk-status__title { font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 .5rem; color: var(--bk-text); }
.bk-status__text { color: var(--bk-muted); font-size: .92rem; max-width: 38ch; margin: 0 auto 1.35rem; line-height: 1.6; }
.bk-status__code { display: inline-flex; flex-direction: column; gap: .25rem; padding: .85rem 1.6rem; border: 1px dashed var(--bk-border-str); border-radius: var(--bk-radius); margin-bottom: .5rem; }
.bk-status__code-label { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--bk-muted); }
.bk-status__code-value { font-family: ui-monospace, "SF Mono", Monaco, monospace; font-size: 1.3rem; font-weight: 700; letter-spacing: .06em; color: var(--bk-gold); }

/* Conferma finale: indirizzo nel riepilogo, garanzia caparra, nota di contatto */
.bk-review__addr { display: flex; align-items: center; justify-content: center; gap: .4rem; margin: .55rem 0 0; font-size: .8rem; color: var(--bk-muted); line-height: 1.4; }
.bk-review__addr svg { width: 15px; height: 15px; color: var(--bk-accent-soft); flex-shrink: 0; }
.bk-review__guarantee { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .85rem 1rem; border-top: 1px solid var(--bk-border); }
.bk-review__guarantee svg { width: 22px; height: 22px; color: var(--bk-gold); flex-shrink: 0; }
.bk-review__guarantee-txt { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.bk-review__guarantee-txt strong { font-size: .9rem; font-weight: 600; color: var(--bk-text); }
.bk-review__guarantee-txt span { font-size: .8rem; color: var(--bk-muted); }
.bk-success-note { margin: 1rem auto 0; max-width: 44ch; font-size: .8rem; color: var(--bk-muted); line-height: 1.5; text-align: center; }
.bk-success-note a { color: var(--bk-accent-soft); font-weight: 600; white-space: nowrap; }

/* ─── Trust footer ───────────────────────────────────────────────────── */
.bk-foot-trust { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: 1.25rem 0 .5rem; font-size: .76rem; color: var(--bk-muted); }
.bk-foot-trust svg { width: 16px; height: 16px; color: var(--bk-accent); }

/* ─── Tag locale corrente (contesto) ─────────────────────────────────── */
/* Contesto secondario: niente box, solo una riga sottile con hairline */
.bk-locale-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .85rem;
    padding: 0 .1rem .5rem;
    border-bottom: 1px solid var(--bk-border);
}
.bk-locale-tag__label { font-size: .75rem; font-weight: 400; color: var(--bk-muted); min-width: 0; }
.bk-locale-tag__label strong { color: var(--bk-text); font-weight: 600; }
.bk-locale-tag__change {
    flex-shrink: 0;
    color: var(--bk-muted);
    font-size: .63rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .15rem .25rem;
    border-radius: var(--bk-radius-sm);
    transition: color .15s ease-out;
}
.bk-locale-tag__change:hover { color: var(--bk-accent-soft); }

/* ─── Step "Dove vuoi prenotare?" — card locali ──────────────────────── */
.bk-locales { display: grid; grid-template-columns: 1fr; gap: .7rem; margin-top: .8rem; }
@media (min-width: 560px) { .bk-locales { grid-template-columns: 1fr 1fr; } }
.bk-locale-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: 1.15rem 1.2rem;
    text-align: left;
    border: 1.5px solid var(--bk-border-mid);
    background: var(--bk-surface);
    border-radius: var(--bk-radius);
    cursor: pointer;
    transition: border-color .18s ease-out, background .18s ease-out, transform .18s ease-out, box-shadow .18s ease-out;
}
.bk-locale-card:hover { border-color: var(--bk-accent); background: var(--bk-accent-tint); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.bk-locale-card:active { transform: translateY(0); box-shadow: none; }
.bk-locale-card:focus-visible { outline: 2px solid var(--bk-accent-soft); outline-offset: 2px; }
/* Gerarchia: kicker (tipo di esperienza) → nome → descrizione → CTA */
.bk-locale-card__kicker { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--bk-accent-soft); margin-bottom: .1rem; }
.bk-locale-card__name { font-family: "Playfair Display", Georgia, serif; font-size: 1.6rem; line-height: 1.15; color: var(--bk-text); }
.bk-locale-card__tag { font-size: .85rem; color: var(--bk-muted); line-height: 1.45; }
.bk-locale-card__cta {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: .8rem;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    color: var(--bk-accent-soft);
}
.bk-locale-card__cta svg { width: 14px; height: 14px; transition: transform .18s ease-out; }
.bk-locale-card:hover .bk-locale-card__cta { color: var(--bk-text); }
.bk-locale-card:hover .bk-locale-card__cta svg { transform: translateX(3px); }

/* ─── Messaggio locale non prenotabile ───────────────────────────────── */
.bk-locale-msg { text-align: center; padding: 1.25rem .5rem; }
.bk-locale-msg__title { font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; color: var(--bk-text); margin: 0 0 .5rem; }
.bk-locale-msg__text { color: var(--bk-muted); font-size: .9rem; margin: 0 0 1.25rem; }

/* ─── Empty state: nessuna disponibilità ─────────────────────────────── */
.bk-empty { text-align: center; padding: 2.5rem 1rem 1rem; }
.bk-empty__icon { display: block; width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--bk-muted); opacity: .7; }
.bk-empty__icon svg { display: block; width: 100%; height: 100%; }
.bk-empty__title { font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; color: var(--bk-text); margin: 0 0 .5rem; }
.bk-empty__text { color: var(--bk-muted); font-size: .9rem; max-width: 40ch; margin: 0 auto 1.5rem; line-height: 1.6; }
.bk-empty__actions { display: flex; justify-content: center; gap: .65rem; flex-wrap: wrap; }

/* Quando non c'è disponibilità l'empty state è l'unico contenuto: via titolo,
   help e la riga "Indietro" in basso, così resta un blocco pulito e centrato. */
.bk-step--empty > .bk-step__title,
.bk-step--empty > .bk-step__help,
.bk-step--empty > .bk-actions { display: none; }

/* ─── Modale conferma cambio locale ──────────────────────────────────── */
.bk-confirm { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.bk-confirm__backdrop { position: absolute; inset: 0; background: rgba(4,10,16,.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.bk-confirm__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    background: var(--bk-bg);
    border: 1px solid var(--bk-border-mid);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    text-align: center;
    animation: bkFade .2s ease-out;
}
.bk-confirm__title { font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; color: var(--bk-text); margin: 0 0 .5rem; }
.bk-confirm__text { color: var(--bk-muted); font-size: .88rem; line-height: 1.5; margin: 0 0 1.25rem; }
.bk-confirm__actions { display: flex; gap: .6rem; }
.bk-confirm__actions .bk-btn { flex: 1; }
