
html:has(body.bshms-booking-document),
body.bshms-booking-document {
    margin: 0 !important;
    min-height: 100% !important;
    background: #faf7fa !important;
}

body.bshms-booking-document {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    color: #241f25 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1.4 !important;
}

body.bshms-booking-document *,
body.bshms-booking-document *::before,
body.bshms-booking-document *::after {
    box-sizing: border-box !important;
}

.bshms-book-page {
    --bshms-page-purple: var(--bshms-purple, #5e1668);
    --bshms-page-gold: var(--bshms-gold, #c19127);
    --bshms-page-copper: var(--bshms-copper, #c1844d);
    --bshms-page-ink: #241f25;
    --bshms-page-muted: #766e77;
    --bshms-page-border: #e8dfe9;
    --bshms-page-surface: #fff;
    --bshms-page-canvas: #faf7fa;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 42px clamp(16px, 3vw, 46px) 72px;
    background: var(--bshms-page-canvas);
    color: var(--bshms-page-ink);
    font-family: inherit;
}

.bshms-book-page *,
.bshms-book-page *::before,
.bshms-book-page *::after {
    box-sizing: border-box;
}

.bshms-book-page__shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.bshms-book-page__back {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--bshms-page-purple);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.bshms-book-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 30px;
    align-items: start;
}

.bshms-book-page__room,
.bshms-book-page__booking {
    min-width: 0;
}

.bshms-book-page__gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(140px, .7fr);
    grid-template-rows: repeat(2, minmax(155px, 1fr));
    gap: 8px;
    min-height: 430px;
    overflow: hidden;
    border-radius: 20px;
    background: #eee7ef;
}

.bshms-book-page__gallery figure {
    margin: 0;
    min-width: 0;
    overflow: hidden;
}

.bshms-book-page__gallery figure.is-primary {
    grid-row: 1 / -1;
}

.bshms-book-page__gallery img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.bshms-book-page__image-placeholder {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(193,145,39,.22), transparent 28%),
        linear-gradient(135deg, rgba(94,22,104,.18), rgba(193,145,39,.13)),
        #f2ebf2;
}

.bshms-book-page__room-copy {
    padding: 26px 4px 0;
}

.bshms-book-page__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--bshms-page-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bshms-book-page__room-copy h1 {
    margin: 0 0 12px;
    color: var(--bshms-page-purple);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.04;
}

.bshms-book-page__room-copy > p {
    max-width: 760px;
    margin: 0;
    color: var(--bshms-page-muted);
    font-size: 15px;
    line-height: 1.7;
}

.bshms-book-page__facts,
.bshms-book-page__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.bshms-book-page__facts span,
.bshms-book-page__amenities span {
    padding: 8px 11px;
    border: 1px solid var(--bshms-page-border);
    border-radius: 999px;
    background: #fff;
    color: var(--bshms-page-ink);
    font-size: 12px;
    font-weight: 650;
}

.bshms-book-page__booking {
    position: sticky;
    top: 28px;
}

.bshms-book-form,
.bshms-reviewed-booking,
.bshms-book-page__notice {
    border: 1px solid var(--bshms-page-border);
    border-radius: 18px;
    background: var(--bshms-page-surface);
    box-shadow: 0 18px 45px rgba(64, 24, 67, .08);
}

.bshms-book-form {
    padding: 24px;
}

.bshms-book-form__heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.bshms-book-form__heading span {
    color: var(--bshms-page-muted);
    font-size: 12px;
    font-weight: 700;
}

.bshms-book-form__heading strong {
    color: var(--bshms-page-purple);
    font-size: 22px;
}

.bshms-book-form__dates,
.bshms-book-form__guest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bshms-book-form label {
    display: block;
    margin-bottom: 13px;
}

.bshms-book-form label > span {
    display: block;
    margin-bottom: 6px;
    color: var(--bshms-page-muted);
    font-size: 12px;
    font-weight: 700;
}

.bshms-book-form input,
.bshms-book-form select,
.bshms-book-form textarea {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--bshms-page-border);
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: var(--bshms-page-ink);
    font: inherit;
    font-size: 14px;
    box-shadow: none;
}

.bshms-book-form textarea {
    min-height: 90px;
    resize: vertical;
}

.bshms-book-form input:focus,
.bshms-book-form select:focus,
.bshms-book-form textarea:focus {
    border-color: rgba(94, 22, 104, .55);
    box-shadow: 0 0 0 3px rgba(94, 22, 104, .09);
}

.bshms-book-form__separator {
    height: 1px;
    margin: 7px 0 18px;
    background: var(--bshms-page-border);
}

.bshms-book-summary {
    margin: 18px 0;
    padding: 16px;
    border-radius: 12px;
    background: #faf7fa;
}

.bshms-book-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 5px 0;
    font-size: 13px;
}

.bshms-book-summary span {
    color: var(--bshms-page-muted);
}

.bshms-book-summary__total {
    margin-top: 7px;
    padding-top: 12px !important;
    border-top: 1px solid var(--bshms-page-border);
}

.bshms-book-summary__total strong {
    color: var(--bshms-page-purple);
    font-size: 18px;
}

.bshms-book-form__submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 11px;
    background: var(--bshms-page-purple);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.bshms-book-form__submit:hover {
    filter: brightness(.94);
}

.bshms-book-form__security {
    margin: 10px 0 0;
    color: var(--bshms-page-muted);
    font-size: 11px;
    text-align: center;
}

.bshms-book-page__notice {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    padding: 14px 16px;
    font-size: 13px;
}

.bshms-book-page__notice--error {
    border-color: #e8c9cd;
    background: #fff7f7;
    color: #8b2f39;
}

.bshms-book-page__notice--success {
    border-color: rgba(193,145,39,.34);
    background: #fffbf1;
    color: #65490e;
}

.bshms-reviewed-booking {
    margin-top: 14px;
    padding: 22px;
}

.bshms-reviewed-booking h2 {
    margin: 0 0 14px;
    color: var(--bshms-page-purple);
    font-size: 18px;
}

.bshms-reviewed-booking dl {
    margin: 0;
}

.bshms-reviewed-booking dl > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    border-bottom: 1px solid var(--bshms-page-border);
}

.bshms-reviewed-booking dl > div:last-child {
    border-bottom: 0;
}

.bshms-reviewed-booking dt {
    color: var(--bshms-page-muted);
}

.bshms-reviewed-booking dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 960px) {
    .bshms-book-page__grid {
        grid-template-columns: 1fr;
    }

    .bshms-book-page__booking {
        position: static;
    }
}

@media (max-width: 640px) {
    .bshms-book-page {
        padding: 26px 14px 48px;
    }

    .bshms-book-page__gallery {
        display: block;
        min-height: 0;
        border-radius: 14px;
    }

    .bshms-book-page__gallery figure:not(.is-primary) {
        display: none;
    }

    .bshms-book-page__gallery figure.is-primary,
    .bshms-book-page__image-placeholder {
        min-height: 270px;
    }

    .bshms-book-page__gallery figure.is-primary img {
        min-height: 270px;
    }

    .bshms-book-form {
        padding: 18px;
    }

    .bshms-book-form__dates,
    .bshms-book-form__guest-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.bshms-reviewed-booking__confirm {
    margin-top: 18px;
}


.bshms-payment-choice {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--bshms-page-border);
}

.bshms-payment-choice__label {
    display: block;
    margin-bottom: 10px;
    color: var(--bshms-page-ink);
    font-size: 13px;
    font-weight: 800;
}

.bshms-payment-choice__options {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.bshms-payment-choice__option {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--bshms-page-border);
    border-radius: 12px;
    background: #fff;
}

.bshms-payment-choice__option.is-selected {
    border-color: rgba(94,22,104,.42);
    background: rgba(94,22,104,.035);
}

.bshms-payment-choice__option.is-disabled {
    opacity: .52;
}

.bshms-payment-choice__radio {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    border: 2px solid #bcb2bd;
    border-radius: 999px;
}

.bshms-payment-choice__option.is-selected .bshms-payment-choice__radio {
    border: 5px solid var(--bshms-page-purple);
}

.bshms-payment-choice__option strong,
.bshms-payment-choice__option small {
    display: block;
}

.bshms-payment-choice__option strong {
    margin-bottom: 3px;
    color: var(--bshms-page-ink);
    font-size: 13px;
}

.bshms-payment-choice__option small {
    color: var(--bshms-page-muted);
    font-size: 11px;
    line-height: 1.45;
}

.bshms-book-confirmed {
    padding: 28px;
    border: 1px solid rgba(193,145,39,.34);
    border-radius: 18px;
    background: #fffdf7;
    box-shadow: 0 18px 45px rgba(64,24,67,.08);
    text-align: center;
}

.bshms-book-confirmed__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--bshms-page-purple);
    color: #fff;
    font-size: 27px;
    font-weight: 800;
}

.bshms-book-confirmed__eyebrow {
    display: block;
    color: var(--bshms-page-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.bshms-book-confirmed h2 {
    margin: 5px 0 9px;
    color: var(--bshms-page-purple);
    font-size: 23px;
}

.bshms-book-confirmed > p {
    margin: 0 auto 18px;
    max-width: 390px;
    color: var(--bshms-page-muted);
    font-size: 13px;
    line-height: 1.55;
}

.bshms-book-confirmed dl {
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    text-align: left;
}

.bshms-book-confirmed dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 1px solid var(--bshms-page-border);
}

.bshms-book-confirmed dl > div:last-child {
    border-bottom: 0;
}

.bshms-book-confirmed dt {
    color: var(--bshms-page-muted);
}

.bshms-book-confirmed dd {
    margin: 0;
    color: var(--bshms-page-ink);
    font-weight: 800;
    text-align: right;
}

.bshms-reviewed-booking__confirm--paystack { margin-top: 18px; }
.bshms-book-form__submit--paystack {
    background: var(--bshms-page-gold);
    color: #241f25;
}
.bshms-book-form__submit--paystack:hover { filter: brightness(.97); }
.bshms-book-confirmed__whatsapp{margin:16px 0 0}
.bshms-book-confirmed__whatsapp a{display:inline-flex;align-items:center;justify-content:center;padding:11px 16px;border-radius:10px;background:#25D366;color:#fff;font-weight:800;text-decoration:none}


/* ================================================================
   v0.36.0 — Checkout state architecture
   Details -> Review & Payment -> Confirmation
   ================================================================ */
.bshms-checkout-progress {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
    margin:0 0 14px;
    padding:10px 12px;
    border:1px solid var(--bshms-page-border);
    border-radius:12px;
    background:#fff;
}

.bshms-checkout-progress > span {
    position:relative;
    display:flex;
    align-items:center;
    gap:7px;
    min-width:0;
    color:#948b95;
}

.bshms-checkout-progress > span:not(:last-child)::after {
    content:"";
    position:absolute;
    top:50%;
    right:-5px;
    width:10px;
    height:1px;
    background:#ded5df;
}

.bshms-checkout-progress i {
    display:grid;
    place-items:center;
    width:24px;
    height:24px;
    flex:0 0 24px;
    border:1px solid #d8ced9;
    border-radius:50%;
    background:#fff;
    color:#8b828d;
    font-size:10px;
    font-style:normal;
    font-weight:800;
}

.bshms-checkout-progress b {
    overflow:hidden;
    font-size:10px;
    font-weight:800;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.bshms-checkout-progress > span.is-active {
    color:var(--bshms-page-purple);
}

.bshms-checkout-progress > span.is-active i,
.bshms-checkout-progress > span.is-complete i {
    border-color:var(--bshms-page-purple);
    background:var(--bshms-page-purple);
    color:#fff;
}

.bshms-checkout-step[hidden] {
    display:none !important;
}

.bshms-reviewed-booking {
    margin-top:0;
}

.bshms-reviewed-booking__head {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
}

.bshms-reviewed-booking__head > div > span {
    display:block;
    margin-bottom:3px;
    color:var(--bshms-page-gold);
    font-size:9px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.bshms-reviewed-booking__head h2 {
    margin:0;
}

.bshms-reviewed-booking__edit {
    flex:0 0 auto;
    margin:0;
    padding:7px 9px;
    border:1px solid var(--bshms-page-border);
    border-radius:8px;
    background:#fff;
    color:var(--bshms-page-purple);
    font:inherit;
    font-size:10px;
    font-weight:800;
    cursor:pointer;
}

.bshms-reviewed-booking__edit:hover,
.bshms-reviewed-booking__edit:focus {
    border-color:rgba(94,22,104,.45);
    background:#faf7fb;
    outline:0;
}

@media (max-width:640px) {
    .bshms-checkout-progress {
        gap:4px;
        padding:9px;
    }

    .bshms-checkout-progress b {
        font-size:8px;
    }

    .bshms-checkout-progress i {
        width:22px;
        height:22px;
        flex-basis:22px;
    }

    .bshms-reviewed-booking__head {
        align-items:stretch;
        flex-direction:column;
    }

    .bshms-reviewed-booking__edit {
        align-self:flex-start;
    }
}


/* ================================================================
   v0.36.2 — Payment method state
   Real radio controls + one active checkout action at a time.
   ================================================================ */
.bshms-payment-choice__option {
    position:relative;
    cursor:pointer;
    user-select:none;
}

.bshms-payment-choice__option > input[type="radio"] {
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
    border:0;
}

.bshms-payment-choice__option:has(input:focus-visible) {
    border-color:rgba(94,22,104,.58);
    box-shadow:0 0 0 3px rgba(94,22,104,.09);
}

.bshms-payment-choice__option.is-disabled {
    cursor:not-allowed;
}

.bshms-payment-choice__option.is-disabled .bshms-payment-choice__copy {
    opacity:.7;
}

.bshms-payment-choice__copy {
    display:block;
    min-width:0;
}

.bshms-payment-choice__option input:checked + .bshms-payment-choice__radio {
    border:5px solid var(--bshms-page-purple);
}

.bshms-payment-choice__option:has(input:checked) {
    border-color:rgba(94,22,104,.42);
    background:rgba(94,22,104,.035);
}

.bshms-reviewed-booking__confirm[hidden] {
    display:none !important;
}

.bshms-payment-choice__unavailable {
    margin-top:14px;
    padding:12px 14px;
    border:1px solid #ead6d8;
    border-radius:10px;
    background:#fff7f7;
    color:#81343c;
    font-size:12px;
    line-height:1.5;
}


/* v0.36.8 — final booking outcome UI */
.bshms-book-confirmed__reference{
    margin:18px 0 14px;padding:14px 16px;border:1px solid rgba(94,22,104,.14);
    border-radius:12px;background:#faf7fb;text-align:left
}
.bshms-book-confirmed__reference span{display:block;margin-bottom:4px;color:var(--bshms-page-muted);font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.bshms-book-confirmed__reference strong{display:block;color:var(--bshms-page-purple);font-size:17px;letter-spacing:.03em;overflow-wrap:anywhere}
.bshms-book-confirmed__note{margin:14px 0 0!important;padding:11px 12px;border-radius:10px;background:#f8f5f8;color:var(--bshms-page-muted)!important;font-size:11px!important;line-height:1.55!important;text-align:left}
.bshms-book-confirmed__return{display:flex;align-items:center;justify-content:center;width:100%;margin-top:15px;padding:12px 15px;border-radius:10px;background:var(--bshms-page-purple);color:#fff!important;font-size:12px;font-weight:800;text-decoration:none!important}
@media(max-width:640px){
 .bshms-book-confirmed dl>div{align-items:flex-start;flex-direction:column;gap:3px}
 .bshms-book-confirmed dd{text-align:left}
 .bshms-book-confirmed__reference strong{font-size:15px}
}
.bshms-gift-card{margin:18px 0;padding:16px;border:1px solid #e7dde8;border-radius:14px;background:#fff}.bshms-gift-card__head{display:flex;justify-content:space-between;gap:12px;align-items:baseline;margin-bottom:10px}.bshms-gift-card__head span{font-weight:800;color:#5e1668}.bshms-gift-card__head small{color:#756d76}.bshms-gift-card__entry{display:flex;gap:8px}.bshms-gift-card__entry input{min-width:0;flex:1;padding:11px 12px;border:1px solid #d9cfd9;border-radius:9px;background:#fff}.bshms-gift-card__entry button{padding:11px 15px;border:0;border-radius:9px;background:#5e1668;color:#fff;font-weight:800;cursor:pointer}.bshms-gift-card__message{margin-top:9px;color:#5f5660;font-size:13px}.bshms-gift-card__summary{margin:12px 0 0;padding:11px 12px;border-radius:10px;background:#faf7fa}.bshms-gift-card__summary div{display:flex;justify-content:space-between;gap:16px;padding:4px 0}.bshms-gift-card__summary dd{margin:0;font-weight:800}.bshms-book-form__submit--gift{background:#5e1668!important}
