.bew-booking {
    --bew-booking-gold: #d4af37;
    --bew-booking-gold-light: #f4d46d;
    --bew-booking-bg: #0f0f0f;
    --bew-booking-panel: rgba(255, 255, 255, .055);
    --bew-booking-border: rgba(212, 175, 55, .24);
    --bew-booking-muted: #b8b8b8;
    padding: 72px 0 !important;
    background: #0f0f0f !important;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .18)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E") !important;
    color: #fff !important;
}

.bew-booking,
.bew-booking * {
    box-sizing: border-box;
}

.bew-booking .bew-heading {
    margin-bottom: 48px;
}

.bew-booking .bew-heading h2 {
    margin: 0 0 16px !important;
    font-size: clamp(34px, 4vw, 48px) !important;
    line-height: 1.15 !important;
}

.bew-booking .bew-heading p {
    color: var(--bew-booking-muted) !important;
}

.bew-booking .bew-panel {
    border: 1px solid var(--bew-booking-border) !important;
    border-radius: 24px !important;
    background: var(--bew-booking-panel) !important;
    box-shadow: none !important;
    backdrop-filter: blur(10px);
}

.bew-booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.bew-booking-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.bew-booking-nav h3,
.bew-booking .bew-panel > h3 {
    margin: 0 !important;
    color: #fff !important;
    text-align: center;
}

.bew-booking .bew-panel > h3 {
    margin-bottom: 18px !important;
    text-align: left;
}

.bew-booking-days,
.bew-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.bew-booking-days {
    margin-bottom: 10px;
    color: #aaa;
    font-size: 13px;
}

.bew-booking button.bew-calendar-day,
.bew-booking .bew-calendar-day {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: #fff !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
}

.bew-booking button.bew-calendar-day:hover,
.bew-booking button.bew-calendar-day.is-selected,
.bew-booking .bew-calendar-day:hover,
.bew-booking .bew-calendar-day.is-selected {
    background: var(--bew-booking-gold) !important;
    color: #050505 !important;
    border-color: var(--bew-booking-gold) !important;
}

.bew-booking button.bew-calendar-day.is-disabled,
.bew-booking .bew-calendar-day.is-disabled {
    background: rgba(255, 255, 255, .055) !important;
    color: rgba(255, 255, 255, .55) !important;
    opacity: .32;
    cursor: not-allowed;
}

.bew-booking-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
    color: #aaa;
    font-size: 13px;
}

.bew-booking-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bew-swatch {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
}

.bew-swatch--selected {
    background: var(--bew-booking-gold);
    border-color: var(--bew-booking-gold);
}

.bew-swatch--past {
    background: #555;
    opacity: .35;
}

.bew-booking-form input,
.bew-booking-form select,
.bew-booking-form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #fff !important;
    padding: 14px 16px !important;
    font: inherit !important;
    outline: none !important;
    box-shadow: none !important;
}

.bew-booking-form option {
    background: #111;
    color: #fff;
}

.bew-booking-form input::placeholder,
.bew-booking-form textarea::placeholder {
    color: #8f8f8f !important;
}

.bew-booking-form input:focus,
.bew-booking-form select:focus,
.bew-booking-form textarea:focus {
    border-color: var(--bew-booking-gold) !important;
    background: rgba(255, 255, 255, .11) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .16) !important;
}

.bew-booking-form input:invalid,
.bew-booking-form select:invalid,
.bew-booking-form textarea:invalid {
    border-color: rgba(255, 255, 255, .14) !important;
    box-shadow: none !important;
    outline-color: transparent !important;
}

.bew-time-slots {
    display: grid;
    gap: 8px;
    max-height: 390px;
    overflow: auto;
    padding-right: 2px;
}

.bew-booking button.bew-time-slot,
.bew-booking .bew-time-slot {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: #fff !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
}

.bew-booking button.bew-time-slot:hover,
.bew-booking button.bew-time-slot.is-selected,
.bew-booking .bew-time-slot:hover,
.bew-booking .bew-time-slot.is-selected {
    background: var(--bew-booking-gold) !important;
    color: #050505 !important;
    border-color: var(--bew-booking-gold) !important;
}

.bew-booking .bew-time-slot strong {
    color: inherit !important;
}

.bew-booking-summary {
    display: none;
    margin-top: 24px;
}

.bew-booking-summary .bew-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.bew-booking-summary [data-bew-summary-room],
.bew-booking-summary [data-bew-summary-price] {
    color: var(--bew-booking-gold) !important;
}

.bew-payment-info {
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, .3) !important;
    border-radius: 14px !important;
    background: rgba(212, 175, 55, .1) !important;
    color: #d8d8d8 !important;
    line-height: 1.55;
}

.bew-payment-info strong {
    display: block;
    margin-bottom: 6px;
    color: #ffe8a3 !important;
}

.bew-booking-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.bew-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bew-paypal-container {
    display: none;
    margin-top: 4px;
}

.bew-booking button.bew-btn,
.bew-booking .bew-btn {
    border-color: var(--bew-booking-gold) !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.bew-booking button.bew-btn--outline,
.bew-booking .bew-btn--outline {
    min-width: 72px;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: var(--bew-booking-gold) !important;
}

.bew-booking button.bew-btn--outline:hover,
.bew-booking .bew-btn--outline:hover {
    background: var(--bew-booking-gold) !important;
    color: #050505 !important;
}

.bew-booking button.bew-btn--primary,
.bew-booking .bew-btn--primary {
    width: 100%;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #d4af37, #f4d46d) !important;
    color: #050505 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase;
}

.bew-booking button.bew-btn--primary:hover,
.bew-booking .bew-btn--primary:hover {
    background: linear-gradient(135deg, #f4d46d, #d4af37) !important;
    color: #050505 !important;
}

.bew-booking-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
}

.bew-booking-alert--sent {
    background: rgba(22, 163, 74, .18);
    color: #d9ffe5;
}

.bew-booking-alert--error {
    background: rgba(212, 175, 55, .13);
    border: 1px solid rgba(212, 175, 55, .32);
    color: #ffe8a3;
}

.bew-booking [data-bew-message]:empty {
    display: none;
}

.bew-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bew-booking-modal.is-open {
    display: flex;
}

.bew-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(4px);
}

.bew-booking-modal__dialog {
    position: relative;
    width: min(520px, 100%);
    padding: 34px;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 20px;
    background: #101010;
    color: #fff;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.bew-booking-modal__x {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.bew-booking-modal__icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .16);
    color: var(--bew-booking-gold);
    font-size: 28px;
}

.bew-booking-modal.is-error .bew-booking-modal__icon {
    background: rgba(212, 175, 55, .12);
    color: #ffe8a3;
}

.bew-booking-modal__dialog h3 {
    margin: 0 0 12px !important;
    color: var(--bew-booking-gold) !important;
    font-size: 28px !important;
}

.bew-booking-modal__dialog p {
    margin: 0 0 24px;
    color: #d8d8d8;
    line-height: 1.6;
}

.bew-booking-modal__dialog .bew-btn {
    width: 100%;
}

@media (max-width: 900px) {
    .bew-booking-grid,
    .bew-form-grid,
    .bew-booking-summary .bew-grid--4 {
        grid-template-columns: 1fr;
    }
}
