/* ====================================================
   BYBEE BOOKING — DARK LUXURY THEME
   booking-dark.css
   ==================================================== */

/* ---- Google Fonts are loaded in headExtras ----
   Playfair Display (headings), DM Sans (body), JetBrains Mono (numbers) */

/* ---- CSS Variables ---- */
body.bk-dark {
    --bk-bg:        #f6f3ed;
    --bk-card:      #ffffff;
    --bk-card2:     #fbf8f2;
    --bk-gold:      #b9873d;
    --bk-gold-dim:  #93662a;
    --bk-gold-glow: rgba(185, 135, 61, 0.12);
    --bk-text:      #161616;
    --bk-text-sec:  #5f635f;
    --bk-text-mut:  #7b7f79;
    --bk-border:    rgba(255, 255, 255, 0.06);
    --bk-border-g:  rgba(185, 135, 61, 0.2);
    --bk-green:     #25d366;
    --bk-green-bg:  rgba(37, 211, 102, 0.1);
}

/* ---- Base Reset for Dark Page ---- */
body.bk-dark {
    background: #f6f3ed;
    color: #161616;
    font-family: 'Manrope', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

/* Ambient background gradients */
body.bk-dark::before {
    content: '';
    position: fixed;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(185,135,61,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
body.bk-dark::after {
    content: '';
    position: fixed;
    bottom: -300px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(185,135,61,0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ===================================================
   TOPBAR
   =================================================== */
.bk-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 243, 237, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(26,26,26,0.05);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 32px;
}
.bk-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1264px;
    margin: 0 auto;
}
.bk-logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #b9873d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.02em;
    line-height: 1;
}
.bk-logo span { color: #161616; font-weight: 400; font-size: 12px; margin-left: 4px; opacity: 0.5; }
.bk-topbar__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bk-nav-link {
    font-size: 13px;
    font-weight: 500;
    color: #5f635f;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.2s;
}
.bk-nav-link:hover { color: #161616; }
.bk-nav-wa {
    font-size: 13px;
    font-weight: 600;
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.bk-nav-wa:hover { background: rgba(37, 211, 102, 0.16); }

/* ===================================================
   HERO
   =================================================== */
.bk-hero {
    text-align: center;
    padding: 36px 32px 16px;
    position: relative;
    z-index: 1;
}
.bk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(185, 135, 61, 0.1);
    border: 1px solid rgba(185, 135, 61, 0.2);
    font-size: 12px;
    color: #b9873d;
    font-weight: 500;
    margin-bottom: 14px;
}
.bk-hero__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #161616;
    margin: 0 0 10px;
    line-height: 1.25;
}
.bk-hero__sub {
    font-size: 14px;
    color: #5f635f;
    margin: 0 auto;
    max-width: 400px;
    line-height: 1.5;
}

/* ===================================================
   STEPPER
   =================================================== */
.bk-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px 20px;
    position: relative;
    z-index: 1;
}
.bk-step {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bk-step__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(26,26,26,0.04);
    border: 1px solid rgba(26,26,26,0.08);
    color: #7b7f79;
    transition: all 0.3s;
    flex-shrink: 0;
}
.bk-step__num.is-active,
.bk-step__num.active {
    background: #b9873d;
    color: #fff8ed;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(185, 135, 61, 0.3);
}
.bk-step__num.is-done,
.bk-step__num.done {
    background: rgba(185, 135, 61, 0.12);
    color: #b9873d;
    border-color: rgba(185, 135, 61, 0.25);
}
.bk-step__label {
    font-size: 12px;
    font-weight: 500;
    color: #7b7f79;
    transition: color 0.3s;
}
.bk-step__connector {
    width: 36px;
    height: 1px;
    background: rgba(26,26,26,0.07);
    margin: 0 10px;
    flex-shrink: 0;
    transition: background 0.3s;
}
.bk-step__connector.is-filled {
    background: rgba(185, 135, 61, 0.4);
}

/* ===================================================
   MAIN 2-COLUMN LAYOUT
   =================================================== */
.bk-page-shell {
    position: relative;
    z-index: 1;
}
.bk-main {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 120px;
}

/* ===================================================
   SECTION CARDS
   =================================================== */
.bk-card {
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}
.bk-card:last-child { margin-bottom: 0; }

/* ===================================================
   TYPOGRAPHY HELPERS
   =================================================== */
.bk-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #b9873d;
    margin-bottom: 6px;
}
.bk-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin: 0 0 6px;
    line-height: 1.3;
}
.bk-subtitle {
    font-size: 13px;
    color: #5f635f;
    margin: 0 0 20px;
    line-height: 1.5;
}
.bk-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #7b7f79;
    margin-bottom: 7px;
}

/* ===================================================
   STAY TYPE TOGGLE (reusing existing .stay-type-option)
   =================================================== */
body.bk-dark .stay-type-selector {
    display: flex;
    gap: 2px;
    background: rgba(26,26,26,0.03);
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 12px;
    padding: 3px;
    margin-bottom: 20px;
}
body.bk-dark .stay-type-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 8px;
    background: transparent;
}
body.bk-dark .stay-type-option .stay-type-option__radio { display: none; }
body.bk-dark .stay-type-option .stay-type-option__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
body.bk-dark .stay-type-option strong {
    font-size: 13px;
    font-weight: 600;
    color: #5f635f;
    transition: color 0.2s;
}
body.bk-dark .stay-type-option .summary-kicker {
    font-size: 10px;
    color: #7b7f79;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.2s;
}
body.bk-dark .stay-type-option.selected {
    background: #b9873d;
}
body.bk-dark .stay-type-option.selected strong {
    color: #fff8ed;
}
body.bk-dark .stay-type-option.selected .summary-kicker {
    color: rgba(246,243,237,0.65);
}

/* ===================================================
   FORM INPUTS
   =================================================== */
body.bk-dark .form-input,
body.bk-dark .form-select,
body.bk-dark input[type="date"],
body.bk-dark input[type="text"],
body.bk-dark input[type="tel"],
body.bk-dark input[type="email"],
body.bk-dark select.form-select {
    background: #fbf8f2;
    border: 1px solid rgba(26,26,26,0.08);
    border-radius: 10px;
    color: #161616;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
body.bk-dark .form-input::placeholder { color: #7b7f79; }
body.bk-dark .form-input:focus,
body.bk-dark .form-select:focus,
body.bk-dark input[type="date"]:focus,
body.bk-dark input[type="text"]:focus,
body.bk-dark input[type="tel"]:focus,
body.bk-dark input[type="email"]:focus {
    border-color: #b9873d;
    box-shadow: 0 0 0 3px rgba(185, 135, 61, 0.12);
}
body.bk-dark .form-select,
body.bk-dark select.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8692' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
body.bk-dark .form-select option,
body.bk-dark select option { background: #ffffff; color: #161616; }
body.bk-dark .form-textarea,
body.bk-dark textarea {
    background: #fbf8f2;
    border: 1px solid rgba(26,26,26,0.08);
    border-radius: 10px;
    color: #161616;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    width: 100%;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
body.bk-dark .form-textarea:focus,
body.bk-dark textarea:focus {
    border-color: #b9873d;
    box-shadow: 0 0 0 3px rgba(185, 135, 61, 0.12);
}

/* Grid for 2-col date fields */
body.bk-dark .contact-form-grid--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
body.bk-dark .contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.bk-dark label > .summary-kicker {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #7b7f79;
    margin-bottom: 7px;
}
body.bk-dark .summary-kicker {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #7b7f79;
}

/* ===================================================
   POLICY NOTE & LIVE STATUS
   =================================================== */
body.bk-dark .legacy-safe-note {
    background: rgba(26,26,26,0.03);
    border: 1px solid rgba(26,26,26,0.04);
    border-radius: 8px;
    font-size: 12px;
    color: #5f635f;
    padding: 8px 12px;
    line-height: 1.5;
}
body.bk-dark .booking-live-note {
    font-size: 12px;
    color: #5f635f;
    text-align: center;
    padding: 6px 4px;
}

/* ===================================================
   QUICK SELECT BUTTONS
   =================================================== */
body.bk-dark .quick-select-buttons {
    margin-top: 16px;
}
body.bk-dark .quick-select-buttons__list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}
body.bk-dark .quick-select-btn,
body.bk-dark .button.button-secondary.quick-select-btn {
    padding: 6px 14px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(26,26,26,0.08) !important;
    background: transparent !important;
    color: #5f635f !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer;
    font-family: 'Manrope', system-ui, sans-serif;
    transition: all 0.2s !important;
    height: auto !important;
    min-height: unset !important;
}
body.bk-dark .quick-select-btn:hover,
body.bk-dark .button.button-secondary.quick-select-btn:hover {
    border-color: rgba(185,135,61,0.4) !important;
    color: #b9873d !important;
    background: rgba(185,135,61,0.05) !important;
}

/* ===================================================
   STEP MINI SUMMARY (context chips)
   =================================================== */
body.bk-dark .booking-step-mini-summary {
    background: rgba(26,26,26,0.02);
    border: 1px solid rgba(26,26,26,0.04);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 16px;
}
body.bk-dark .booking-step-mini-summary strong {
    font-size: 14px;
    color: #161616;
    display: block;
    margin-bottom: 3px;
}
body.bk-dark .booking-step-mini-summary .body-copy {
    font-size: 12px;
    color: #5f635f;
    margin: 0;
}

/* ===================================================
   ROOMS SECTION HEADER
   =================================================== */
.bk-rooms-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.bk-rooms-head__left .bk-eyebrow { margin-bottom: 4px; }
.bk-rooms-head__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin: 0 0 3px;
}
.bk-rooms-head__copy { font-size: 13px; color: #5f635f; margin: 0; }
.bk-rooms-head__sort { font-size: 11px; color: #7b7f79; white-space: nowrap; margin-top: 4px; }

body.bk-dark .chip-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
body.bk-dark .chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(26,26,26,0.04);
    border: 1px solid rgba(26,26,26,0.07);
    color: #5f635f;
}

/* ===================================================
   ROOM CARDS — HORIZONTAL LAYOUT
   =================================================== */
@keyframes bkFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Override existing booking-room-card with horizontal layout */
body.bk-dark .booking-room-list {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}
body.bk-dark .booking-room-card {
    display: grid !important;
    grid-template-columns: 200px 1fr auto !important;
    grid-template-rows: auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(26,26,26,0.06) !important;
    border-radius: 16px !important;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: bkFadeUp 0.4s ease both;
    min-height: 0;
    padding: 0 !important;
}
/* Neutralize style.css card body grid */
body.bk-dark .booking-room-card__body {
    display: contents !important;
}
body.bk-dark .booking-room-card:nth-child(1) { animation-delay: 0.05s; }
body.bk-dark .booking-room-card:nth-child(2) { animation-delay: 0.12s; }
body.bk-dark .booking-room-card:nth-child(3) { animation-delay: 0.19s; }
body.bk-dark .booking-room-card:hover {
    border-color: rgba(185,135,61,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,26,26,0.08);
}
body.bk-dark .booking-room-card.selected {
    border-color: #b9873d !important;
    box-shadow: 0 0 0 2px #b9873d !important;
    background: #ffffff !important;
}
body.bk-dark .booking-room-card.is-unavailable,
body.bk-dark .booking-room-card.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
body.bk-dark .booking-room-card.is-unavailable:hover,
body.bk-dark .booking-room-card.is-disabled:hover {
    transform: none;
    border-color: rgba(26,26,26,0.06);
    box-shadow: none;
}

/* Checkmark radio indicator */
body.bk-dark .booking-room-card__radio {
    position: absolute;
    top: 12px; right: 12px;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(26,26,26,0.14);
    background: transparent;
    z-index: 3;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
body.bk-dark .booking-room-card.selected .booking-room-card__radio {
    background: #b9873d;
    border-color: #b9873d;
}
body.bk-dark .booking-room-card.selected .booking-room-card__radio::after {
    content: '';
    display: block;
    width: 5px; height: 9px;
    border: 2px solid #f6f3ed;
    border-top: none; border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

/* Image column — override style.css aspect-ratio & border-radius */
body.bk-dark .booking-room-card__media {
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: unset !important;
    border-radius: 0 !important;
    background: #f0ece3 !important;
    grid-row: 1 / -1;
}
body.bk-dark .booking-room-card__media .room-gallery,
body.bk-dark .booking-room-card__media .room-gallery__track {
    height: 100%;
    min-height: 160px;
}
body.bk-dark .booking-room-card__media img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.45s;
}
body.bk-dark .booking-room-card:hover .booking-room-card__media img {
    transform: scale(1.04);
}
body.bk-dark .booking-room-card__badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(246,243,237,0.78);
    color: #b9873d;
    border: 1px solid rgba(185,135,61,0.3);
    backdrop-filter: blur(4px);
    z-index: 2;
}
body.bk-dark .booking-room-card__selected-chip {
    display: none !important;
}

/* Info column (middle) */
body.bk-dark .booking-room-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
body.bk-dark .booking-room-card__top { display: flex; flex-direction: column; gap: 4px; }
body.bk-dark .booking-room-card__headline strong {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    display: block;
}
body.bk-dark .booking-room-card__tagline {
    font-size: 12px;
    color: #5f635f;
    margin: 0;
    line-height: 1.4;
}
body.bk-dark .booking-room-card__meta { margin-top: 4px; }
body.bk-dark .booking-room-card__meta .chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(26,26,26,0.04);
    border: 1px solid rgba(26,26,26,0.06);
    color: #5f635f;
}
body.bk-dark .booking-room-card__status {
    font-size: 12px;
    color: #5f635f;
    margin-top: 4px;
    display: block;
}
body.bk-dark .booking-room-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
body.bk-dark .booking-room-card__detail-toggle,
body.bk-dark .booking-room-card__detail-link {
    background: none;
    border: none;
    color: #5f635f !important;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    font-family: 'Manrope', system-ui, sans-serif;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
body.bk-dark .booking-room-card__detail-toggle:hover,
body.bk-dark .booking-room-card__detail-link:hover { color: #b9873d !important; }
body.bk-dark .booking-room-card__details {
    font-size: 12px;
    color: #5f635f;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(26,26,26,0.05);
}
body.bk-dark .booking-room-card__detail-copy { margin: 0 0 6px; }
body.bk-dark .booking-room-card__points {
    margin: 4px 0 0;
    padding-left: 0;
    list-style: none;
}
body.bk-dark .booking-room-card__points li {
    padding: 1px 0;
}
body.bk-dark .booking-room-card__points li::before {
    content: '✓ ';
    color: #b9873d;
}

/* Visual-only select button in price col */
body.bk-dark .booking-room-card__select-visual {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%);
    color: #fff8ed;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    white-space: nowrap;
    user-select: none;
}
body.bk-dark .booking-room-card:hover .booking-room-card__select-visual {
    box-shadow: 0 4px 14px rgba(185,135,61,0.3);
}
body.bk-dark .booking-room-card.selected .booking-room-card__select-visual {
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%);
    color: #fff8ed;
    box-shadow: none;
}
body.bk-dark .booking-room-card__price-col-action { margin-top: 10px; }

/* Price column (right) */
body.bk-dark .booking-room-card__price-col {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    min-width: 140px;
    border-left: 1px solid rgba(26,26,26,0.03);
}
body.bk-dark .booking-room-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}
body.bk-dark .booking-room-card__price strong,
body.bk-dark [data-room-price] {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    color: #b9873d !important;
    line-height: 1.2;
}
body.bk-dark .booking-room-card__price span,
body.bk-dark [data-room-price-unit] {
    font-size: 11px;
    color: #7b7f79;
}
body.bk-dark .booking-room-card__select-button,
body.bk-dark [data-room-select] {
    padding: 9px 14px !important;
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%) !important;
    color: #fff8ed !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    font-family: 'Manrope', system-ui, sans-serif !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: box-shadow 0.2s !important;
    white-space: nowrap;
}
body.bk-dark .booking-room-card__select-button:hover,
body.bk-dark [data-room-select]:hover {
    box-shadow: 0 4px 14px rgba(185,135,61,0.35) !important;
}
body.bk-dark .booking-room-card__select-button:disabled,
body.bk-dark [data-room-select]:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: none !important;
}
body.bk-dark .booking-room-card.selected .booking-room-card__select-button,
body.bk-dark .booking-room-card.selected [data-room-select] {
    background: rgba(185,135,61,0.12) !important;
    color: #b9873d !important;
    border: 1px solid rgba(185,135,61,0.3) !important;
    box-shadow: none !important;
}

/* Room availability badge (data-room-status) */
body.bk-dark .booking-room-avail--ok,
body.bk-dark [data-room-status].avail-ok {
    color: #25d366;
    font-size: 11px; font-weight: 600;
}
body.bk-dark .booking-room-avail--low,
body.bk-dark [data-room-status].avail-low {
    color: #fbbf24;
    font-size: 11px; font-weight: 600;
}
body.bk-dark .booking-room-avail--full,
body.bk-dark [data-room-status].avail-full {
    color: #ef4444;
    font-size: 11px; font-weight: 600;
}

/* ===================================================
   EMPTY STATE
   =================================================== */
body.bk-dark .booking-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.05);
    border-radius: 16px;
}
body.bk-dark .booking-empty-state__icon {
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    color: #7b7f79;
}
body.bk-dark .booking-empty-state__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    color: #5f635f;
    margin: 0 0 8px;
}
body.bk-dark .booking-empty-state__reason { font-size: 13px; color: #7b7f79; }
body.bk-dark .booking-empty-state__nearest-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(185,135,61,0.08);
    border: 1px solid rgba(185,135,61,0.15);
    color: #b9873d;
    font-size: 13px;
    margin-top: 14px;
}
body.bk-dark .nearest-date-link { color: #b9873d; text-decoration: underline; }
body.bk-dark .alternative-dates-widget {
    background: rgba(26,26,26,0.03);
    border: 1px solid rgba(26,26,26,0.05);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
}
body.bk-dark .alternative-dates-widget__title { font-size: 11px; color: #7b7f79; margin-bottom: 8px; }

/* ===================================================
   STEP CONTEXT CHIPS (below room list header)
   =================================================== */
body.bk-dark .booking-step-context {
    background: rgba(26,26,26,0.02);
    border: 1px solid rgba(26,26,26,0.04);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0 0 16px;
}
body.bk-dark .booking-step-context__copy { font-size: 12px; color: #5f635f; margin: 6px 0 0; }
body.bk-dark .chip--light {
    background: rgba(26,26,26,0.04);
    border: 1px solid rgba(26,26,26,0.07);
    color: #5f635f;
    border-radius: 20px;
    font-size: 11px;
    padding: 3px 9px;
}

/* ===================================================
   STEP 2 — GUEST FORM
   =================================================== */
body.bk-dark #guest-section .eyebrow { color: #b9873d; }
body.bk-dark .booking-optional-details {
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 10px;
    overflow: hidden;
}
body.bk-dark .booking-optional-details summary {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 13px;
    color: #5f635f;
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    transition: color 0.2s;
    background: rgba(26,26,26,0.02);
    font-family: 'Manrope', system-ui, sans-serif;
}
body.bk-dark .booking-optional-details summary:hover { color: #161616; }
body.bk-dark .booking-optional-details summary::-webkit-details-marker { display: none; }
body.bk-dark .booking-optional-details__chevron { transition: transform 0.2s; flex-shrink: 0; }
body.bk-dark .booking-optional-details[open] .booking-optional-details__chevron { transform: rotate(180deg); }
body.bk-dark .booking-optional-details__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid rgba(26,26,26,0.05);
    background: #fbf8f2;
}

/* ===================================================
   WIZARD NAV BUTTONS
   =================================================== */
body.bk-dark .wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0 4px;
}
body.bk-dark .wizard-nav__back,
body.bk-dark .button.button-secondary.wizard-nav__back {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 16px !important;
    background: rgba(26,26,26,0.04) !important;
    border: 1px solid rgba(26,26,26,0.08) !important;
    border-radius: 10px !important;
    color: #5f635f !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.2s !important;
}
body.bk-dark .wizard-nav__back:hover,
body.bk-dark .button.button-secondary.wizard-nav__back:hover {
    border-color: rgba(26,26,26,0.14) !important;
    color: #161616 !important;
}
body.bk-dark .wizard-nav__next,
body.bk-dark #btn-submit {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%) !important;
    color: #fff8ed !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: 'Manrope', system-ui, sans-serif !important;
    cursor: pointer;
    transition: all 0.2s !important;
}
body.bk-dark .wizard-nav__next:hover:not(:disabled),
body.bk-dark #btn-submit:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(185,135,61,0.3) !important;
}
body.bk-dark .wizard-nav__next:disabled,
body.bk-dark #btn-submit:disabled {
    opacity: 0.38 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* ===================================================
   STEP 3 — REVIEW & PAYMENT
   =================================================== */
body.bk-dark .detail-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
body.bk-dark .detail-review-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(26,26,26,0.03);
}
body.bk-dark .detail-review-row .summary-kicker { display: block; margin-bottom: 3px; }
body.bk-dark .detail-review-row strong { font-size: 13px; color: #161616; }
body.bk-dark .detail-review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(185,135,61,0.06);
    border: 1px solid rgba(185,135,61,0.12);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 14px;
    font-size: 14px;
    color: #5f635f;
}
body.bk-dark .detail-review-total strong {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 500;
    color: #b9873d;
}

/* Payment tabs */
body.bk-dark .payment-tabs {
    display: flex;
    gap: 6px;
    margin: 14px 0;
    flex-wrap: wrap;
}
body.bk-dark .payment-tab {
    flex: 1;
    min-width: 90px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid rgba(26,26,26,0.07);
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    background: transparent;
    color: #5f635f;
    font-family: 'Manrope', system-ui, sans-serif;
}
body.bk-dark .payment-tab:hover {
    border-color: rgba(26,26,26,0.12);
    color: #161616;
}
body.bk-dark .payment-tab.active {
    border-color: rgba(185,135,61,0.4);
    background: rgba(185,135,61,0.08);
    color: #b9873d;
}
body.bk-dark .va-number-display {
    text-align: center;
    padding: 20px;
    background: rgba(26,26,26,0.03);
    border: 1px solid rgba(26,26,26,0.05);
    border-radius: 12px;
    margin: 12px 0;
}
body.bk-dark #va-number-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    color: #161616;
    letter-spacing: 0.1em;
    margin: 8px 0;
}
body.bk-dark .payment-countdown {
    text-align: center;
    color: #5f635f;
    font-size: 13px;
    margin: 8px 0;
}
body.bk-dark .payment-countdown strong { color: #ef4444; font-variant-numeric: tabular-nums; }
body.bk-dark .status-badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
body.bk-dark .status-paid    { background: rgba(37,211,102,0.12); color: #25d366; }
body.bk-dark .status-waiting { background: rgba(251,191,36,0.12); color: #fbbf24; }
body.bk-dark .status-expired { background: rgba(239,68,68,0.12); color: #ef4444; }
body.bk-dark .payment-expired-notice { text-align: center; padding: 2rem 1rem; color: #ef4444; }

/* ===================================================
   SIDEBAR (desktop sticky)
   =================================================== */
.bk-sidebar {
    position: sticky;
    top: 76px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bk-sidebar__card {
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 16px;
    overflow: hidden;
}

/* Summary specific: override existing classes */
body.bk-dark .booking-summary { display: contents; }
body.bk-dark .booking-summary__card {
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 16px;
    overflow: hidden;
}
body.bk-dark .booking-summary__card .eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #b9873d;
    padding: 20px 20px 0;
    margin: 0;
}
body.bk-dark .booking-summary__status-block {
    padding: 8px 20px 12px;
    border-bottom: 1px solid rgba(26,26,26,0.04);
}
body.bk-dark .booking-summary__status-block strong {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16px;
    color: #161616;
    margin-bottom: 4px;
}
body.bk-dark .booking-summary__status-block .body-copy { font-size: 12px; color: #5f635f; margin: 0; }
body.bk-dark .booking-summary__preview {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(26,26,26,0.03);
}
body.bk-dark .booking-summary__preview img {
    width: 54px; height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
body.bk-dark .booking-summary__preview-copy strong { font-size: 13px; color: #161616; display: block; }
body.bk-dark .booking-summary__preview-copy span   { font-size: 11px; color: #5f635f; }
body.bk-dark .booking-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(26,26,26,0.03);
}
body.bk-dark .booking-summary__line span { font-size: 12px; color: #5f635f; }
body.bk-dark .booking-summary__line strong { font-size: 12px; color: #161616; font-weight: 500; text-align: right; max-width: 60%; }
body.bk-dark #sum-nights { font-family: 'JetBrains Mono', monospace; }
body.bk-dark #sum-price  { font-family: 'JetBrains Mono', monospace; color: #b9873d; }
body.bk-dark .booking-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(185,135,61,0.05);
    border-top: 1px solid rgba(185,135,61,0.1);
}
body.bk-dark .booking-summary__total-copy { font-size: 11px; color: #7b7f79; margin: 2px 0 0; }
body.bk-dark .booking-summary__total .summary-kicker { color: #5f635f; }
body.bk-dark .booking-summary__total-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    color: #b9873d;
}
body.bk-dark #booking-summary-note { padding: 6px 20px; text-align: left; border-top: 1px solid rgba(26,26,26,0.03); }
body.bk-dark .booking-summary__actions {
    padding: 14px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
body.bk-dark #btn-step-one-summary,
body.bk-dark .button.button-primary.button-block#btn-step-one-summary {
    width: 100% !important;
    padding: 13px 20px !important;
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%) !important;
    color: #fff8ed !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Manrope', system-ui, sans-serif !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.bk-dark #btn-step-one-summary:hover:not(:disabled) {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(185,135,61,0.3) !important;
}
body.bk-dark #btn-step-one-summary:disabled {
    opacity: 0.38 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
body.bk-dark .booking-summary__helper {
    font-size: 11px;
    color: #7b7f79;
    text-align: center;
    margin: 4px 0 0;
    text-transform: none;
    letter-spacing: 0;
}
body.bk-dark .booking-summary__secondary-cta,
body.bk-dark .button.button-secondary.button-block.booking-summary__secondary-cta {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 16px !important;
    background: transparent !important;
    border: 1px solid rgba(37,211,102,0.2) !important;
    border-radius: 10px !important;
    color: #25d366 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-top: 4px;
    display: block !important;
    transition: background 0.2s !important;
}
body.bk-dark .booking-summary__secondary-cta:hover {
    background: rgba(37,211,102,0.06) !important;
}

/* Trust badges */
.bk-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(26,26,26,0.03);
}
.bk-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #7b7f79;
}

/* ===================================================
   SURFACE CARD OVERRIDE
   =================================================== */
body.bk-dark .surface-card {
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.05);
    border-radius: 16px;
    padding: 24px;
    box-shadow: none;
    margin-bottom: 16px;
}
body.bk-dark .surface-card:last-child { margin-bottom: 0; }
body.bk-dark .section-title { font-family: 'Fraunces', Georgia, serif; color: #161616; }
body.bk-dark .section-title--compact { font-size: 18px; margin: 0 0 6px; }
body.bk-dark .body-copy { color: #5f635f; font-size: 13px; }
body.bk-dark .eyebrow { color: #b9873d; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }

/* ===================================================
   GENERAL BUTTON OVERRIDES
   =================================================== */
body.bk-dark .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
body.bk-dark .button.button-primary {
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%);
    color: #fff8ed;
    border: none;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
}
body.bk-dark .button.button-primary:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(185,135,61,0.3);
}
body.bk-dark .button.button-secondary {
    background: rgba(26,26,26,0.04);
    border: 1px solid rgba(26,26,26,0.08);
    color: #5f635f;
    padding: 9px 16px;
    font-size: 13px;
}
body.bk-dark .button.button-secondary:hover {
    border-color: rgba(26,26,26,0.14);
    color: #161616;
}
body.bk-dark .button.button-block {
    width: 100%;
    display: flex;
}
body.bk-dark .button.button-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
}
body.bk-dark .button:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}
body.bk-dark #btn-pay-va,
body.bk-dark #btn-pay-qris,
body.bk-dark #btn-pay-cc,
body.bk-dark #btn-open-checkout {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%);
    color: #fff8ed;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, sans-serif;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
body.bk-dark #btn-pay-va:hover,
body.bk-dark #btn-pay-qris:hover,
body.bk-dark #btn-pay-cc:hover,
body.bk-dark #btn-open-checkout:hover {
    box-shadow: 0 6px 20px rgba(185,135,61,0.3);
}
body.bk-dark #btn-copy-va {
    background: rgba(26,26,26,0.05);
    border: 1px solid rgba(26,26,26,0.08);
    color: #5f635f;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Manrope', system-ui, sans-serif;
    transition: all 0.2s;
}
body.bk-dark #btn-copy-va:hover { color: #161616; border-color: rgba(26,26,26,0.14); }

/* ===================================================
   MOBILE BOTTOM BAR
   =================================================== */
body.bk-dark .booking-mobile-bar {
    background: rgba(246, 243, 237, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(26,26,26,0.08) !important;
    padding: 12px 20px !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom)) !important;
}
body.bk-dark .booking-mobile-bar__label { font-size: 11px; color: #5f635f; }
body.bk-dark .booking-mobile-bar__price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    color: #b9873d;
}
body.bk-dark #btn-step-one-mobile,
body.bk-dark .button#btn-step-one-mobile {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #b9873d 0%, #93662a 100%) !important;
    color: #fff8ed !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: 'Manrope', system-ui, sans-serif !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer;
    white-space: nowrap;
}
body.bk-dark #btn-step-one-mobile:disabled {
    opacity: 0.38 !important;
    cursor: not-allowed !important;
}

/* ===================================================
   FLATPICKR DARK OVERRIDE
   =================================================== */
body.bk-dark .flatpickr-calendar {
    background: #f1ebe1 !important;
    border: 1px solid rgba(26,26,26,0.08) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55) !important;
    border-radius: 12px !important;
}
body.bk-dark .flatpickr-months .flatpickr-month,
body.bk-dark .flatpickr-weekdays,
body.bk-dark span.flatpickr-weekday {
    background: #f1ebe1 !important;
    color: #5f635f !important;
    fill: #5f635f !important;
}
body.bk-dark .flatpickr-day { color: #161616 !important; border-radius: 8px !important; }
body.bk-dark .flatpickr-day:hover {
    background: rgba(185,135,61,0.12) !important;
    border-color: transparent !important;
}
body.bk-dark .flatpickr-day.selected,
body.bk-dark .flatpickr-day.startRange,
body.bk-dark .flatpickr-day.endRange {
    background: #b9873d !important;
    border-color: #b9873d !important;
    color: #fff8ed !important;
}
body.bk-dark .flatpickr-day.inRange {
    background: rgba(185,135,61,0.1) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
body.bk-dark .flatpickr-day.disabled { color: #c8c4bb !important; }
body.bk-dark .flatpickr-current-month input.cur-year,
body.bk-dark .flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #161616 !important; background: transparent !important;
}
body.bk-dark .flatpickr-prev-month svg,
body.bk-dark .flatpickr-next-month svg { fill: #5f635f !important; }
body.bk-dark .flatpickr-prev-month:hover svg,
body.bk-dark .flatpickr-next-month:hover svg { fill: #b9873d !important; }
body.bk-dark .flatpickr-input { color-scheme: light; }

/* ===================================================
   FOOTER OVERRIDE
   =================================================== */
body.bk-dark .site-footer,
body.bk-dark footer {
    background: #f1ebe1 !important;
    color: #7b7f79 !important;
    border-top: 1px solid rgba(26,26,26,0.05) !important;
}
body.bk-dark .site-footer a,
body.bk-dark footer a { color: #5f635f !important; }
body.bk-dark .site-footer a:hover,
body.bk-dark footer a:hover { color: #161616 !important; }

/* ===================================================
   CC IFRAME & PAYMENT PANEL
   =================================================== */
body.bk-dark #cc-iframe-container {
    border: 1px solid rgba(26,26,26,0.05);
    border-radius: 12px;
    overflow: hidden;
}
body.bk-dark .payment-panel .body-copy { color: #5f635f; font-size: 13px; }
body.bk-dark #payment-loading { color: #5f635f; }
body.bk-dark #payment-error { color: #ef4444; font-size: 13px; }
body.bk-dark #cc-fallback-link {
    width: 100%;
    display: block;
    text-align: center;
}
body.bk-dark #va-bank-select { margin-top: 6px; }

/* ===================================================
   BOOKING STEP ONE LAYOUT
   =================================================== */
body.bk-dark .booking-step-one-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}
body.bk-dark .booking-filter-panel { margin-bottom: 16px; }
body.bk-dark .booking-filter-panel__head { margin-bottom: 20px; }
body.bk-dark .booking-filter-panel__head .eyebrow { color: #b9873d; }
body.bk-dark .booking-filter-fields { margin-bottom: 16px; }
body.bk-dark .booking-filter-fields__single { display: flex; flex-direction: column; }
body.bk-dark .booking-filter-fields__group { margin-bottom: 14px; }

/* Check availability button */
body.bk-dark .booking-results-panel { }
body.bk-dark .booking-results-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
body.bk-dark .booking-results-head__copy { flex: 1; }
body.bk-dark .booking-results-head__sort { font-size: 11px; color: #7b7f79; white-space: nowrap; padding-top: 4px; }
body.bk-dark .booking-results-head__chips { margin-bottom: 14px; }

/* Rooms panel waiting state — prompts user to pick dates first */
.booking-results-wait-banner {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin: -4px 0 14px;
    background: rgba(185, 135, 61, 0.08);
    border: 1px solid rgba(185, 135, 61, 0.22);
    border-radius: 10px;
    color: #7a5a2a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.booking-results-panel[data-rooms-state="waiting"] .booking-results-wait-banner { display: flex; }
.booking-results-panel[data-rooms-state="waiting"] .booking-room-list { opacity: 0.55; pointer-events: none; filter: grayscale(0.2); transition: opacity .25s, filter .25s; }
.booking-results-panel[data-rooms-state="ready"] .booking-room-list { opacity: 1; pointer-events: auto; filter: none; transition: opacity .25s, filter .25s; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1000px) {
    .bk-main { grid-template-columns: 1fr 320px; }
}
@media (max-width: 900px) {
    .bk-main {
        grid-template-columns: 1fr;
        padding: 0 16px 120px;
    }
    .bk-sidebar,
    body.bk-dark .booking-summary { display: none; } /* mobile uses bottom bar instead */
    [data-wizard-panel="2"] .booking-step-context { display: none; } /* hide mini-summary on mobile step 2 */
    .bk-topbar { padding: 0 16px; }
    .bk-hero { padding: 24px 16px 12px; }
    .bk-hero__title { font-size: 24px; }
    .bk-stepper { padding: 12px 16px 16px; }

    /* Room card mobile: 2-col grid [image | content], price-col below content */
    body.bk-dark .booking-room-card {
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto;
    }
    /* radio stays top-right */
    body.bk-dark .booking-room-card__radio {
        grid-column: 2; grid-row: 1;
        position: absolute;
    }
    body.bk-dark .booking-room-card__media {
        grid-column: 1; grid-row: 1 / 3;
        min-height: 120px;
    }
    body.bk-dark .booking-room-card__content {
        grid-column: 2; grid-row: 1;
        padding: 10px 10px 4px;
    }
    /* Price col repositioned below content on mobile */
    body.bk-dark .booking-room-card__price-col {
        grid-column: 2; grid-row: 2;
        border-left: none;
        border-top: 1px solid rgba(26,26,26,0.03);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 6px 10px 8px;
        min-width: 0;
    }
    body.bk-dark .booking-room-card__price { flex-direction: row; align-items: baseline; gap: 4px; }
    body.bk-dark .booking-room-card__price strong,
    body.bk-dark [data-room-price] { font-size: 15px !important; }
    /* Hide visual select button on mobile (not needed in price col row) */
    body.bk-dark .booking-room-card__price-col-action { display: none; }

    body.bk-dark .booking-room-card__select-button,
    body.bk-dark [data-room-select] {
        padding: 7px 12px !important;
        font-size: 11px !important;
    }
    body.bk-dark .contact-form-grid--two { grid-template-columns: 1fr; }
    body.bk-dark .detail-review-grid { grid-template-columns: 1fr; }
    body.bk-dark .payment-tabs { flex-wrap: wrap; }
    body.bk-dark .payment-tab { min-width: calc(50% - 4px); }
    body.bk-dark .booking-room-card__headline strong { font-size: 15px; }
    body.bk-dark .surface-card { padding: 16px; }
}
@media (max-width: 480px) {
    .bk-hero__title { font-size: 20px; }
    .bk-step__label { display: none; }
    body.bk-dark .booking-room-card { grid-template-columns: 110px 1fr; }
    body.bk-dark .booking-room-card__headline strong { font-size: 15px; }
    body.bk-dark .booking-room-card__media { min-height: 120px; }
    body.bk-dark .surface-card { padding: 16px; }
    body.bk-dark .bk-card { padding: 16px; }
}

/* ════════════════════════════════════════════════
   Room Gallery — swipeable image carousel
   ════════════════════════════════════════════════ */

body.bk-dark .room-gallery {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 150px;
    border-radius: 12px 0 0 12px;
}
body.bk-dark .room-gallery__track {
    display: flex;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
body.bk-dark .room-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
body.bk-dark .room-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}
body.bk-dark .room-gallery:hover .room-gallery__nav,
body.bk-dark .room-gallery:focus-within .room-gallery__nav {
    opacity: 1;
}
body.bk-dark .room-gallery__nav--prev { left: 6px; }
body.bk-dark .room-gallery__nav--next { right: 6px; }
body.bk-dark .room-gallery__dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}
body.bk-dark .room-gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(26,26,26,0.12);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
body.bk-dark .room-gallery__dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* ════════════════════════════════════════════════
   Quick features inline list
   ════════════════════════════════════════════════ */

body.bk-dark .booking-room-card__quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    list-style: none;
    padding: 0;
    margin: 6px 0 4px;
    font-size: 11px;
    color: rgba(26,26,26,0.45);
}
body.bk-dark .booking-room-card__quick-features li::before {
    content: '\2713 ';
    color: rgba(212,175,55,0.7);
    font-weight: 700;
}

/* ════════════════════════════════════════════════
   Mobile price bar (name + price above content)
   ════════════════════════════════════════════════ */

body.bk-dark .booking-room-card__mobile-price {
    display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
    /* Mobile: vertical card — foto di atas, info di bawah */
    body.bk-dark .booking-room-card {
        grid-template-columns: 1fr !important;
        grid-template-rows: 180px auto auto !important;
    }
    body.bk-dark .booking-room-card__media {
        grid-column: 1 !important;
        grid-row: 1 !important;
        min-height: 160px;
        max-height: 200px;
    }
    body.bk-dark .booking-room-card__media .room-gallery,
    body.bk-dark .booking-room-card__media .room-gallery__track {
        min-height: 160px;
        max-height: 200px;
    }
    body.bk-dark .room-gallery__nav { opacity: 0.7; }

    /* Mobile price bar — nama + harga antara foto dan content */
    body.bk-dark .booking-room-card__mobile-price {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        grid-column: 1;
        grid-row: 2;
        padding: 10px 14px 0;
        background: #ffffff;
    }
    body.bk-dark .booking-room-card__mobile-price strong {
        font-size: 15px;
        color: #161616;
    }
    body.bk-dark .booking-room-card__mobile-badge {
        display: block;
        font-size: 11px;
        color: #7b7f79;
    }
    body.bk-dark .booking-room-card__mobile-price-amount {
        text-align: right;
    }
    body.bk-dark .booking-room-card__mobile-price-amount strong {
        color: #b9873d;
        font-family: 'JetBrains Mono', monospace;
        font-size: 16px;
    }
    body.bk-dark .booking-room-card__mobile-price-amount span {
        display: block;
        font-size: 10px;
        color: #7b7f79;
    }

    body.bk-dark .booking-room-card__content {
        grid-column: 1 !important;
        grid-row: 3 !important;
        padding: 10px 14px 14px !important;
    }
    /* Hide desktop headline on mobile (shown in mobile-price bar) */
    body.bk-dark .booking-room-card__headline {
        display: none;
    }
    body.bk-dark .booking-room-card__price-col {
        display: none !important; /* replaced by mobile-price */
    }
    /* Radio indicator: top-right on foto */
    body.bk-dark .booking-room-card__radio {
        top: 10px !important;
        right: 10px !important;
        bottom: auto !important;
    }
    /* Selected chip stays in foto area */
    body.bk-dark .booking-room-card__selected-chip {
        bottom: 8px; left: 8px;
    }
}

/* ===================================================
   NO-PHOTO MODE — room cards tanpa foto
   Aktif hanya jika body punya class .no-photo-mode
   =================================================== */
body.bk-dark.no-photo-mode .booking-room-card {
    grid-template-columns: 1fr auto;
}
body.bk-dark.no-photo-mode .booking-room-card__media {
    display: none;
}
body.bk-dark.no-photo-mode .booking-room-card__radio {
    top: 12px;
    right: 12px;
    position: absolute;
}
body.bk-dark.no-photo-mode .booking-room-card__content {
    padding-right: 40px;
}
@media (max-width: 900px) {
    body.bk-dark.no-photo-mode .booking-room-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    body.bk-dark.no-photo-mode .booking-room-card__content {
        grid-column: 1;
        grid-row: 1;
        padding: 12px 44px 8px 14px;
    }
    body.bk-dark.no-photo-mode .booking-room-card__price-col {
        grid-column: 1;
        grid-row: 2;
        border-left: none;
        border-top: 1px solid rgba(26,26,26,0.05);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 14px;
        min-width: 0;
    }
}
