/* ====================================================
   BYBEE BOOKING PREMIUM — Professional UI Layer v3
   booking-premium.css  (loads LAST — highest priority)
   ====================================================
   Scope: body.bk-light only.
   Does NOT touch JS-bound IDs or data-* attributes.
   Does NOT modify booking-dark.css base layout logic.
   Pure visual elevation: spacing, colour, shadow, type.
   ==================================================== */

/* ── 0. DESIGN TOKENS (extend / refine light theme) ─── */
body.bk-light {
    /* Refined shadow system */
    --p-shadow-card:   0 2px 8px rgba(17,20,24,0.04), 0 8px 28px rgba(17,20,24,0.06);
    --p-shadow-hover:  0 4px 14px rgba(17,20,24,0.06), 0 18px 48px rgba(17,20,24,0.09);
    --p-shadow-gold:   0 0 0 3px rgba(185,135,61,0.18);
    --p-radius-card:   20px;
    --p-radius-input:  12px;
    --p-gold:          #b9873d;
    --p-gold-bg:       rgba(185,135,61,0.07);
    --p-gold-border:   rgba(185,135,61,0.28);
    --p-line:          rgba(26,26,26,0.08);
    --p-text:          #161616;
    --p-text-sec:      #4b4e4a;
    --p-text-mute:     #7b7f79;
    --p-surface:       #f8f4ee;
    --p-white:         #ffffff;
    --p-green:         #25d366;
    --p-green-bg:      rgba(37,211,102,0.09);
    --p-green-border:  rgba(37,211,102,0.22);
}

/* ── 1. TOPBAR — cleaner & more premium ──────────────── */
body.bk-light .bk-topbar {
    background: rgba(250, 247, 241, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--p-line);
    height: 62px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

body.bk-light .bk-logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--p-gold);
    letter-spacing: -0.03em;
}
body.bk-light .bk-logo span {
    font-size: 11px;
    font-weight: 400;
    color: var(--p-text-mute);
    letter-spacing: 0.01em;
    opacity: 0.8;
}

body.bk-light .bk-nav-wa {
    background: var(--p-green-bg);
    border-color: var(--p-green-border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1a9b50;
    padding: 7px 14px;
    gap: 6px;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}
body.bk-light .bk-nav-wa:hover {
    background: rgba(37,211,102,0.15);
    box-shadow: 0 2px 8px rgba(37,211,102,0.18);
}

/* ── 2. HERO — more impact ───────────────────────────── */
body.bk-light .bk-hero {
    padding: 40px 32px 24px;
    text-align: center;
    position: relative;
}

body.bk-light .bk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px 5px 10px;
    border-radius: 100px;
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    font-size: 12px;
    color: var(--p-gold);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

body.bk-light .bk-hero__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--p-text);
    line-height: 1.18;
    margin: 0 0 12px;
    letter-spacing: -0.025em;
}

body.bk-light .bk-hero__sub {
    font-size: 15px;
    color: var(--p-text-sec);
    margin: 0 auto;
    max-width: 460px;
    line-height: 1.6;
}

/* ── 3. MAIN LAYOUT — minor refinement ────────────────── */
body.bk-light .bk-main {
    padding: 24px 32px 120px;
    gap: 28px;
    align-items: start;
}

/* ── 4. SURFACE CARDS — premium elevation ────────────── */
body.bk-light .surface-card {
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-radius-card);
    padding: 28px;
    margin-bottom: 14px;
    box-shadow: var(--p-shadow-card);
    transition: box-shadow 0.22s ease;
}
body.bk-light .surface-card:last-child { margin-bottom: 0; }

/* ── 5. STEP 1 LAYOUT — split filter vs results ──────── */
/*
   Desktop (>=860px): 2-col CSS grid
     Col 1 (280px): filter-panel + filter-fields stacked vertically
     Col 2 (1fr):   results-panel — spans both rows via named area

   Named area map:
     "filter  results"
     "fields  results"

   The "results" token repeated on both rows = implicit row-span.
   No grid-row explicit needed.
*/
body.bk-light .booking-step-one-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "filter  results"
        "fields  results";
    gap: 0 18px;
    align-items: stretch; /* results-panel fills full left-col height */
}

body.bk-light .booking-filter-panel  { grid-area: filter; }
body.bk-light .booking-filter-fields { grid-area: fields; }
body.bk-light .booking-results-panel {
    grid-area: results;
    min-height: 400px;
}

body.bk-light .surface-card.booking-filter-fields { margin-bottom: 14px; }
body.bk-light .surface-card.booking-filter-panel  { margin-bottom: 14px; }

@media (max-width: 860px) {
    body.bk-light .booking-step-one-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    body.bk-light .booking-results-panel {
        min-height: unset;
    }
    body.bk-light .bk-main {
        padding: 16px 16px 120px;
    }
    body.bk-light .bk-hero {
        padding: 28px 16px 16px;
    }
}

/* ── 6. STAY TYPE SELECTOR — premium toggle cards ────── */
body.bk-light .stay-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

body.bk-light .stay-type-option {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 14px 14px 12px;
    border: 1.5px solid var(--p-line);
    border-radius: 14px;
    background: var(--p-white);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    position: relative;
}
body.bk-light .stay-type-option:hover {
    border-color: var(--p-gold-border);
    background: var(--p-gold-bg);
}
body.bk-light .stay-type-option.selected {
    border-color: var(--p-gold);
    background: var(--p-gold-bg);
    box-shadow: 0 0 0 3px rgba(185,135,61,0.12);
}

body.bk-light .stay-type-option .stay-type-option__radio { display: none; }

body.bk-light .stay-type-option .stay-type-option__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
body.bk-light .stay-type-option strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--p-text);
    line-height: 1.2;
}
body.bk-light .stay-type-option.selected strong {
    color: var(--p-gold);
}
body.bk-light .stay-type-option .summary-kicker {
    font-size: 11px;
    color: var(--p-text-mute);
    font-weight: 500;
    line-height: 1.35;
}

/* ── 7. FORM INPUTS — polished ───────────────────────── */
body.bk-light .form-input,
body.bk-light .form-select,
body.bk-light .form-textarea,
body.bk-light input[type="text"],
body.bk-light input[type="email"],
body.bk-light input[type="tel"],
body.bk-light input[type="date"],
body.bk-light select,
body.bk-light textarea,
body.bk-light .flatpickr-input {
    height: 46px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--p-text) !important;
    background: var(--p-white) !important;
    border: 1.5px solid rgba(26,26,26,0.12) !important;
    border-radius: var(--p-radius-input) !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
    -webkit-appearance: none;
    appearance: none;
}
body.bk-light .form-textarea,
body.bk-light textarea {
    height: auto;
    padding: 12px 14px;
}
body.bk-light .form-input::placeholder,
body.bk-light input::placeholder { color: var(--p-text-mute); }

body.bk-light .form-input:focus,
body.bk-light .form-select:focus,
body.bk-light .form-textarea:focus,
body.bk-light input:focus,
body.bk-light select:focus,
body.bk-light textarea:focus,
body.bk-light .flatpickr-input:focus {
    border-color: var(--p-gold) !important;
    box-shadow: 0 0 0 3px rgba(185,135,61,0.15) !important;
    outline: none !important;
}

/* Label + field stacking */
body.bk-light .contact-form-grid label > .summary-kicker,
body.bk-light label > .summary-kicker {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--p-text-mute);
    margin-bottom: 7px;
}

/* Quick select buttons */
body.bk-light .quick-select-btn,
body.bk-light .button.button-secondary.quick-select-btn {
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    padding: 5px 14px !important;
    border: 1.5px solid rgba(26,26,26,0.1) !important;
    background: var(--p-white) !important;
    color: var(--p-text-sec) !important;
    transition: all 0.16s ease !important;
}
body.bk-light .quick-select-btn:hover,
body.bk-light .button.button-secondary.quick-select-btn:hover,
body.bk-light .quick-select-btn.is-active {
    border-color: var(--p-gold) !important;
    color: var(--p-gold) !important;
    background: var(--p-gold-bg) !important;
}

/* Booking live note / legacy-safe-note */
body.bk-light .booking-live-note {
    font-size: 12px;
    color: var(--p-text-mute);
    line-height: 1.5;
    padding: 10px 12px;
    background: var(--p-surface);
    border-radius: 10px;
    border: 1px solid var(--p-line);
    margin-top: 6px;
}
body.bk-light .legacy-safe-note {
    font-size: 12.5px;
    color: var(--p-text-sec);
    line-height: 1.55;
    padding: 10px 14px;
    background: var(--p-gold-bg);
    border-radius: 10px;
    border: 1px solid var(--p-gold-border);
}

/* ── 8. FILTER PANEL HEADER ──────────────────────────── */
body.bk-light .booking-filter-panel__head .eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--p-gold);
    margin-bottom: 6px;
    display: block;
}
body.bk-light .booking-filter-panel__head .section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--p-text);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.25;
}
body.bk-light .booking-filter-panel__head .body-copy {
    font-size: 13px;
    color: var(--p-text-sec);
    line-height: 1.5;
}

/* Mini-summary inside filter area */
body.bk-light .booking-step-mini-summary {
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 12px;
}
body.bk-light .booking-step-mini-summary strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--p-text);
    display: block;
    margin-bottom: 4px;
}
body.bk-light .booking-step-mini-summary .body-copy {
    font-size: 12px;
    color: var(--p-text-sec);
    margin: 0;
    line-height: 1.45;
}

/* ── 9. RESULTS PANEL HEADER ────────────────────────── */
body.bk-light .booking-results-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
body.bk-light .booking-results-head .eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--p-gold);
    display: block;
    margin-bottom: 4px;
}
body.bk-light .booking-results-head .section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--p-text);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
body.bk-light .booking-results-head__sort {
    font-size: 11px;
    color: var(--p-text-mute);
    font-weight: 500;
    white-space: nowrap;
    padding-top: 2px;
    flex-shrink: 0;
}

/* Context chips */
body.bk-light .chip-row.booking-results-head__chips {
    margin-bottom: 16px;
    gap: 6px;
    flex-wrap: wrap;
}
body.bk-light .chip {
    font-size: 12px;
    font-weight: 600;
    color: var(--p-text-sec);
    background: var(--p-surface);
    border: 1px solid var(--p-line);
    border-radius: 100px;
    padding: 4px 12px;
    white-space: nowrap;
}

/* Wait banner */
body.bk-light .booking-results-wait-banner {
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 12px;
    color: #8a6520;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    gap: 10px;
}

/* ── 10. ROOM CARDS — MAJOR REDESIGN ─────────────────── */
/*
   Layout (desktop):
   ┌────────────┬──────────────────────────────┐
   │            │  Room Name + tagline         │
   │  GALLERY   │  [chip] [chip] [chip]        │
   │  (spans    │  ✓ AC  ✓ WiFi  ✓ Smart TV   │
   │  full h)   │  • Lihat detail              │
   │            ├──────────────────────────────┤
   │            │  Rp 250.000/malam   [Pilih]  │
   └────────────┴──────────────────────────────┘
*/
body.bk-light .booking-room-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.bk-light .booking-room-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "media  content"
        "media  price";
    min-height: 196px;
    background: var(--p-white);
    border: 1.5px solid var(--p-line);
    border-radius: var(--p-radius-card);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
    box-shadow: var(--p-shadow-card);
    position: relative;
}

body.bk-light .booking-room-card:hover {
    border-color: var(--p-gold-border);
    box-shadow: var(--p-shadow-hover);
    transform: translateY(-2px);
}
body.bk-light .booking-room-card.selected,
body.bk-light .booking-room-card.is-selected {
    border-color: var(--p-gold);
    box-shadow: 0 0 0 3px rgba(185,135,61,0.16), var(--p-shadow-hover);
    transform: translateY(-2px);
}

/* Radio chip — overlaid on top-left of image */
body.bk-light .booking-room-card__radio {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.bk-light .booking-room-card.selected .booking-room-card__radio,
body.bk-light .booking-room-card.is-selected .booking-room-card__radio {
    background: var(--p-gold);
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(185,135,61,0.45);
}
body.bk-light .booking-room-card.selected .booking-room-card__radio::after,
body.bk-light .booking-room-card.is-selected .booking-room-card__radio::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: block;
}

/* Media / Gallery */
body.bk-light .booking-room-card__media {
    grid-area: media;
    position: relative;
    overflow: hidden;
    max-height: none;
    min-height: unset;
}

body.bk-light .room-gallery {
    height: 100%;
    display: flex;
    flex-direction: column;
}
body.bk-light .room-gallery__track {
    display: flex;
    flex: 1;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
body.bk-light .room-gallery__slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Gallery nav arrows — show on hover */
body.bk-light .room-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
body.bk-light .booking-room-card:hover .room-gallery__nav {
    opacity: 1;
}
body.bk-light .room-gallery__nav--prev { left: 6px; }
body.bk-light .room-gallery__nav--next { right: 6px; }
body.bk-light .room-gallery__nav svg { width: 14px; height: 14px; color: var(--p-text); }

/* Gallery dots */
body.bk-light .room-gallery__dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 4;
}
body.bk-light .room-gallery__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
body.bk-light .room-gallery__dot.is-active {
    background: #fff;
    transform: scale(1.35);
}

/* ── Content area (top-right of card) ── */
body.bk-light .booking-room-card__mobile-price { display: none !important; }

body.bk-light .booking-room-card__content {
    grid-area: content;
    padding: 20px 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.bk-light .booking-room-card__headline strong {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--p-text);
    letter-spacing: -0.015em;
    line-height: 1.2;
}
body.bk-light .booking-room-card__tagline {
    font-size: 12.5px;
    color: var(--p-text-sec);
    line-height: 1.4;
    margin-top: 4px;
    margin-bottom: 0;
}

body.bk-light .booking-room-card__meta {
    margin-top: 10px;
    gap: 5px;
}
body.bk-light .booking-room-card__meta .chip {
    font-size: 11px;
    padding: 3px 10px;
    font-weight: 600;
}

body.bk-light .booking-room-card__quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    margin-top: 10px;
    padding: 0;
    list-style: none;
    font-size: 12px;
    color: var(--p-text-sec);
}
body.bk-light .booking-room-card__quick-features li::before {
    content: "✓ ";
    color: var(--p-gold);
    font-weight: 800;
}

body.bk-light .booking-room-card__status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 10px;
    align-self: flex-start;
}
body.bk-light .booking-room-card__status.is-open {
    background: rgba(37,211,102,0.08);
    color: #15803d;
    border: 1px solid rgba(37,211,102,0.22);
}
body.bk-light .booking-room-card__status.is-closed {
    background: rgba(239,68,68,0.07);
    color: #b91c1c;
    border: 1px solid rgba(239,68,68,0.18);
}

/* Actions row inside content */
body.bk-light .booking-room-card__actions {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.bk-light .booking-room-card__detail-toggle,
body.bk-light .booking-room-card__detail-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--p-gold);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(185,135,61,0.4);
    transition: color 0.15s, text-decoration-color 0.15s;
}
body.bk-light .booking-room-card__detail-toggle:hover {
    color: #8a6225;
    text-decoration-color: var(--p-gold);
}

/* "Pilih Kamar" button inside __actions (hide on desktop — price-col has the CTA) */
body.bk-light .booking-room-card__select-button {
    display: none;
}

/* Details expanded section */
body.bk-light .booking-room-card__details {
    background: var(--p-surface);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 12px;
    border: 1px solid var(--p-line);
}
body.bk-light .booking-room-card__detail-copy {
    font-size: 13px;
    color: var(--p-text-sec);
    line-height: 1.6;
    margin-bottom: 8px;
}
body.bk-light .booking-room-card__points {
    font-size: 12.5px;
    color: var(--p-text-sec);
    padding-left: 18px;
    margin-top: 6px;
    line-height: 1.7;
}

/* ── Price bar (bottom-right of card) ── */
body.bk-light .booking-room-card__price-col {
    grid-area: price;
    border-top: 1px solid var(--p-line);
    border-left: none;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: unset;
    background: rgba(248,244,238,0.5);
    transition: background 0.2s;
}
body.bk-light .booking-room-card.selected .booking-room-card__price-col,
body.bk-light .booking-room-card.is-selected .booking-room-card__price-col {
    background: var(--p-gold-bg);
}

body.bk-light .booking-room-card__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
body.bk-light .booking-room-card__price strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--p-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
body.bk-light .booking-room-card__price span {
    font-size: 12px;
    color: var(--p-text-mute);
    font-weight: 500;
}

/* "Pilih kamar" CTA — styled as a real button via the visual span */
body.bk-light .booking-room-card__price-col-action { display: flex; }
body.bk-light .booking-room-card__select-visual {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--p-gold);
    border: 1.5px solid var(--p-gold);
    border-radius: 10px;
    padding: 7px 18px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
body.bk-light .booking-room-card__select-visual:hover {
    background: var(--p-gold-bg);
    box-shadow: 0 2px 10px rgba(185,135,61,0.22);
}
body.bk-light .booking-room-card.selected .booking-room-card__select-visual,
body.bk-light .booking-room-card.is-selected .booking-room-card__select-visual {
    background: var(--p-gold);
    color: #fff;
    border-color: var(--p-gold);
    box-shadow: 0 4px 14px rgba(185,135,61,0.32);
}

/* MOBILE room card: stack vertically */
@media (max-width: 640px) {
    body.bk-light .booking-room-card {
        grid-template-columns: 1fr;
        grid-template-rows: 180px 1fr auto;
        grid-template-areas:
            "media"
            "content"
            "price";
    }
    body.bk-light .booking-room-card__select-button {
        display: inline-flex; /* show on mobile */
        font-size: 13px;
        font-weight: 700;
        background: var(--p-gold);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 8px 18px;
        cursor: pointer;
    }
    body.bk-light .booking-room-card__price-col-action { display: none; }
    body.bk-light .booking-room-card:hover { transform: none; }
    body.bk-light .room-gallery__nav { opacity: 1; }
}

/* ── 11. STEP 2 — GUEST DATA FORM ────────────────────── */
body.bk-light #guest-section .eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--p-gold);
    display: block;
    margin-bottom: 6px;
}
body.bk-light #guest-section .section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--p-text);
    line-height: 1.25;
}
body.bk-light #guest-section .body-copy {
    font-size: 14px;
    color: var(--p-text-sec);
    line-height: 1.55;
}

/* Step context chips */
body.bk-light .booking-step-context {
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 14px;
}
body.bk-light .booking-step-context .chip {
    background: rgba(185,135,61,0.12);
    border-color: var(--p-gold-border);
    color: #8a6225;
}

/* Form grid spacing */
body.bk-light .contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}
body.bk-light .contact-form-grid--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Optional details toggle */
body.bk-light .booking-optional-details {
    border: 1.5px solid var(--p-line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--p-white);
    margin-top: 4px;
}
body.bk-light .booking-optional-details summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--p-text-sec);
    cursor: pointer;
    list-style: none;
    transition: color 0.15s, background 0.15s;
}
body.bk-light .booking-optional-details summary:hover {
    color: var(--p-text);
    background: var(--p-surface);
}
body.bk-light .booking-optional-details summary::-webkit-details-marker { display: none; }
body.bk-light .booking-optional-details__chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
    color: var(--p-text-mute);
}
body.bk-light .booking-optional-details[open] .booking-optional-details__chevron {
    transform: rotate(180deg);
}
body.bk-light .booking-optional-details__body {
    padding: 0 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── 12. WIZARD NAV BUTTONS ──────────────────────────── */
body.bk-light .wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--p-line);
}

body.bk-light .wizard-nav__back,
body.bk-light .button.button-secondary.wizard-nav__back {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--p-text-sec) !important;
    background: transparent !important;
    border: 1.5px solid rgba(26,26,26,0.12) !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: border-color 0.18s, color 0.18s !important;
}
body.bk-light .wizard-nav__back:hover {
    border-color: var(--p-gold-border) !important;
    color: var(--p-text) !important;
}

body.bk-light .wizard-nav__next,
body.bk-light #btn-submit,
body.bk-light .button.button-primary.wizard-nav__next {
    font-size: 14px !important;
    font-weight: 700 !important;
    background: var(--p-gold) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 11px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 18px rgba(185,135,61,0.30) !important;
    transition: opacity 0.18s, box-shadow 0.18s, transform 0.18s !important;
    cursor: pointer !important;
}
body.bk-light .wizard-nav__next:hover:not(:disabled),
body.bk-light #btn-submit:hover:not(:disabled) {
    opacity: 0.92 !important;
    box-shadow: 0 6px 24px rgba(185,135,61,0.38) !important;
    transform: translateY(-1px) !important;
}
body.bk-light .wizard-nav__next:disabled,
body.bk-light #btn-submit:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ── 13. STEP 3 — REVIEW & PAYMENT ──────────────────── */
body.bk-light .detail-review-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--p-line);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 16px;
}
body.bk-light .detail-review-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 12px 16px;
    border-bottom: 1px solid var(--p-line);
    font-size: 14px;
    transition: background 0.15s;
}
body.bk-light .detail-review-row:hover { background: var(--p-surface); }
body.bk-light .detail-review-row:last-child { border-bottom: none; }
body.bk-light .detail-review-row .summary-kicker {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--p-text-mute);
    font-weight: 700;
}
body.bk-light .detail-review-row strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--p-text);
    text-align: right;
    max-width: 60%;
}

body.bk-light .detail-review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 14px;
    margin-top: 16px;
}
body.bk-light .detail-review-total span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--p-text-mute);
}
body.bk-light .detail-review-total strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
body.bk-light #review-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p-gold);
}

/* Payment method tabs */
body.bk-light .payment-tabs {
    display: flex;
    gap: 6px;
    padding: 5px;
    background: var(--p-surface);
    border-radius: 14px;
    margin-top: 18px;
    border: 1px solid var(--p-line);
}
body.bk-light .payment-tab {
    flex: 1;
    text-align: center;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--p-text-mute);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    white-space: nowrap;
}
body.bk-light .payment-tab:hover { color: var(--p-text); }
body.bk-light .payment-tab.active {
    background: var(--p-white);
    color: var(--p-text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 700;
}

/* VA result */
body.bk-light .va-number-display {
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 16px;
    padding: 20px 22px;
    margin-top: 16px;
    text-align: center;
}
body.bk-light #va-number-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    color: var(--p-text);
    margin: 10px 0;
    font-family: 'JetBrains Mono', monospace;
}
body.bk-light .payment-countdown {
    font-size: 13px;
    color: var(--p-text-sec);
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
}
body.bk-light .payment-countdown strong {
    font-weight: 800;
    color: #dc2626;
    font-variant-numeric: tabular-nums;
}

/* Primary & secondary buttons — system-wide refinement */
body.bk-light .button-primary,
body.bk-light .button.button-primary {
    background: var(--p-gold) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 11px 22px !important;
    transition: opacity 0.18s, box-shadow 0.18s, transform 0.18s !important;
    box-shadow: 0 4px 16px rgba(185,135,61,0.28) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}
body.bk-light .button-primary:hover:not(:disabled) {
    opacity: 0.91 !important;
    box-shadow: 0 6px 22px rgba(185,135,61,0.36) !important;
    transform: translateY(-1px) !important;
}
body.bk-light .button-primary:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

body.bk-light .button-secondary,
body.bk-light .button.button-secondary {
    background: var(--p-white) !important;
    color: var(--p-text-sec) !important;
    border: 1.5px solid rgba(26,26,26,0.12) !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 10px 20px !important;
    transition: border-color 0.18s, color 0.18s, background 0.18s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
}
body.bk-light .button-secondary:hover {
    border-color: var(--p-gold-border) !important;
    color: var(--p-text) !important;
}

/* ── 14. BOOKING SUMMARY SIDEBAR — premium card ───────── */
body.bk-light .booking-summary {
    background: var(--p-white);
    border: 1px solid var(--p-line);
    border-radius: var(--p-radius-card);
    box-shadow: var(--p-shadow-card);
    overflow: hidden;
    position: sticky;
    top: 96px;
}

body.bk-light .booking-summary__card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.bk-light .booking-summary__card > .eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--p-text-mute);
    display: block;
    margin-bottom: -4px;
}

/* Room preview (image + name) */
body.bk-light .booking-summary__preview {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--p-surface);
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid var(--p-line);
}
body.bk-light .booking-summary__preview img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
body.bk-light .booking-summary__preview-copy strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--p-text);
    line-height: 1.25;
}
body.bk-light .booking-summary__preview-copy span {
    font-size: 11.5px;
    color: var(--p-text-mute);
}

/* Status block */
body.bk-light .booking-summary__status-block {
    padding: 14px 16px;
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 14px;
}
body.bk-light .booking-summary__status-block strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--p-text);
    margin-bottom: 4px;
}
body.bk-light .booking-summary__status-block .body-copy {
    font-size: 12px;
    color: var(--p-text-sec);
    margin: 0;
    line-height: 1.5;
}

/* Lines */
body.bk-light .booking-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(26,26,26,0.05);
}
body.bk-light .booking-summary__line:last-of-type { border-bottom: none; }
body.bk-light .booking-summary__line span { color: var(--p-text-mute); font-weight: 500; }
body.bk-light .booking-summary__line strong {
    color: var(--p-text);
    font-weight: 600;
    text-align: right;
    max-width: 55%;
}
body.bk-light #sum-price,
body.bk-light #sum-total { color: var(--p-gold); }

/* Total block */
body.bk-light .booking-summary__total {
    background: var(--p-gold-bg);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--p-gold-border);
}
body.bk-light .booking-summary__total .summary-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--p-text-mute);
}
body.bk-light .booking-summary__total-copy {
    font-size: 11px;
    color: var(--p-text-mute);
    margin: 2px 0 0;
}
body.bk-light .booking-summary__total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

/* Actions */
body.bk-light .booking-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
body.bk-light #btn-step-one-summary {
    width: 100%;
    justify-content: center;
}
body.bk-light .booking-summary__helper {
    text-align: center;
    font-size: 11.5px;
    color: var(--p-text-mute);
}
body.bk-light .booking-summary__secondary-cta {
    justify-content: center;
    width: 100%;
}

/* Trust badges */
body.bk-light .bk-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
    border-top: 1px solid var(--p-line);
    margin-top: 4px;
}
body.bk-light .bk-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    color: var(--p-text-sec);
    line-height: 1.3;
}
body.bk-light .bk-trust-badge svg { color: var(--p-gold); flex-shrink: 0; }

/* Booking-summary note */
body.bk-light .booking-live-note#booking-summary-note {
    font-size: 12px;
    text-align: center;
    background: var(--p-surface);
    border: 1px solid var(--p-line);
    border-radius: 10px;
    padding: 10px 12px;
}

/* ── 15. MOBILE BOTTOM BAR ───────────────────────────── */
body.bk-light .booking-mobile-bar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--p-line);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
body.bk-light .booking-mobile-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    gap: 12px;
}
body.bk-light .booking-mobile-bar__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--p-text-mute);
    line-height: 1.3;
}
body.bk-light .booking-mobile-bar__price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--p-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
body.bk-light #mobile-total { font-size: 1.15rem; font-weight: 800; color: var(--p-gold); }
body.bk-light #btn-step-one-mobile {
    flex-shrink: 0;
    padding: 10px 22px !important;
}

/* ── 16. STEPPER REFINEMENT ─────────────────────────── */
body.bk-light .bprogress {
    background: rgba(250,247,241,0.90);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--p-line);
    padding: 0.8rem 0;
}
body.bk-light .bprogress__step.is-active .bprogress__bubble {
    background: var(--p-gold);
    border-color: var(--p-gold);
    box-shadow: 0 4px 16px rgba(185,135,61,0.32);
}
body.bk-light .bprogress__step.is-active .bprogress__label {
    color: #7a5510;
    font-weight: 800;
}

/* ── 17. EMPTY STATE ────────────────────────────────── */
body.bk-light .booking-empty-state {
    text-align: center;
    padding: 40px 24px;
    background: var(--p-surface);
    border: 2px dashed rgba(185,135,61,0.22);
    border-radius: var(--p-radius-card);
}
body.bk-light .booking-empty-state__icon svg { color: var(--p-gold); opacity: 0.6; }
body.bk-light .booking-empty-state__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--p-text);
    margin-top: 12px;
}
body.bk-light .booking-empty-state__reason {
    font-size: 13px;
    color: var(--p-text-sec);
    margin-top: 8px;
    line-height: 1.55;
}
body.bk-light .booking-empty-state__nearest-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--p-gold-bg);
    border: 1px solid var(--p-gold-border);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    color: #8a6225;
    margin-top: 14px;
}
body.bk-light .nearest-date-link {
    color: var(--p-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── 18. STATUS BADGE — booking code + waiting ───────── */
body.bk-light .status-badge.status-waiting {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.28);
    color: #92400e;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
}

/* ── 19. FLATPICKR — refined calendar ───────────────── */
body.bk-light .flatpickr-calendar {
    background: var(--p-white) !important;
    border: 1px solid var(--p-line) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
    overflow: hidden;
    font-family: 'Manrope', system-ui, sans-serif !important;
}
body.bk-light .flatpickr-months { padding: 8px; background: var(--p-surface); }
body.bk-light .flatpickr-day.selected,
body.bk-light .flatpickr-day.startRange,
body.bk-light .flatpickr-day.endRange {
    background: var(--p-gold) !important;
    border-color: var(--p-gold) !important;
    color: #fff !important;
    border-radius: 8px !important;
}
body.bk-light .flatpickr-day.inRange {
    background: rgba(185,135,61,0.12) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
body.bk-light .flatpickr-day:hover {
    background: var(--p-gold-bg) !important;
    border-color: var(--p-gold-border) !important;
}

/* ── 20. RESPONSIVE POLISH ──────────────────────────── */
@media (max-width: 640px) {
    body.bk-light .contact-form-grid--two {
        grid-template-columns: 1fr;
    }
    body.bk-light .booking-room-card__content {
        padding: 16px 16px 12px;
    }
    body.bk-light .booking-room-card__price-col {
        padding: 10px 16px;
    }
    body.bk-light .surface-card {
        padding: 20px 18px;
    }
    body.bk-light .booking-step-one-layout .surface-card {
        border-radius: 16px;
    }
}

/* Reduce motion: disable all transitions */
@media (prefers-reduced-motion: reduce) {
    body.bk-light .booking-room-card,
    body.bk-light .booking-room-card:hover,
    body.bk-light .booking-room-card__select-visual,
    body.bk-light .button-primary,
    body.bk-light .button-secondary,
    body.bk-light .stay-type-option {
        transition: none !important;
        transform: none !important;
    }
}
