/* Global booking bottom sheet */
.bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 26, 34, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1999;
    display: none;
}

.bottom-sheet-overlay.show {
    display: block;
}

.booking-bottom-sheet {
    max-height: 90vh;
    overflow-y: auto;
    background: #fef7ff;
    box-shadow: 0 -12px 32px rgba(29, 26, 34, 0.08);
}

.booking-bottom-sheet .booking-handle {
    width: 48px;
    height: 6px;
    border-radius: 999px;
    background: rgba(122, 116, 132, 0.35);
    margin: 0 auto 0.5rem;
}

.booking-date-row {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
}

.booking-date-card {
    flex: 0 0 auto;
    width: 5rem;
    height: 6rem;
    border-radius: 0.85rem;
    border: 2px solid transparent;
    background: #f3ebf7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.75rem;
    color: #4a4453;
}

.booking-date-card.is-selected {
    border-color: #673ab7;
    background: #f9f1fc;
    color: #673ab7;
}

.booking-date-card .booking-date-num {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.booking-slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-slot-btn {
    border: none;
    border-radius: 0.65rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: #ede6f1;
    color: #1d1a22;
    transition: background 0.2s, color 0.2s;
}

.booking-slot-btn.is-selected {
    background: #673ab7;
    color: #fff;
    box-shadow: 0 2px 8px rgba(103, 58, 183, 0.35);
}

.booking-field,
textarea.booking-field {
    border: none;
    border-radius: 0.85rem;
    padding: 0.75rem 1rem;
    width: 100%;
    background: #f9f1fc;
    font-size: 0.95rem;
}

textarea.booking-field {
    min-height: 4.5rem;
    resize: vertical;
}

.booking-field:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(103, 58, 183, 0.45);
}

.btn-booking-submit {
    width: 100%;
    border: none;
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    font-weight: 800;
    font-size: 1.05rem;
    background: #4f1c9e;
    color: #fff;
    transition: transform 0.15s, background 0.2s;
}

.btn-booking-submit:hover {
    background: #673ab7;
    color: #fff;
}

.btn-booking-submit:active {
    transform: scale(0.98);
}

.booking-service-line {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
}

#bookingBottomSheetOverlay {
    z-index: 2100;
}

#bookingBottomSheet {
    z-index: 2101;
}

.booking-confirm-step .booking-confirm-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(145deg, #673ab7 0%, #4f1c9e 100%);
    box-shadow: 0 8px 24px rgba(103, 58, 183, 0.35);
}

.booking-ref-card {
    max-width: 16rem;
    padding: 1rem 1.25rem;
    border-radius: 0.85rem;
    background: #f3ebf7;
    border: 2px dashed rgba(103, 58, 183, 0.35);
}

.booking-ref-digits {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #4f1c9e;
}
