/* ========================================
   BOOKING MODAL - MINIMALIST REDESIGN
   Clean, Content-First, Professional
   ======================================== */

:root {
    --booking-primary: var(--bg-btn);
    --booking-primary-hover: var(--hotel-primary);
    --booking-text: #1a1a1a;
    --booking-text-secondary: #666;
    --booking-text-light: #999;
    --booking-border: #e0e0e0;
    --booking-border-light: #e7e7e7;
    --booking-bg: #e3f2fd;
    --booking-white: #ffffff;
    --booking-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --booking-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ==========================================================================
   MODAL OVERLAY & CONTAINER
   ========================================================================== */

.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1055;
    padding: var(--px-16);
    transition: opacity 0.2s ease;
    overflow: hidden;
}

    .booking-modal-overlay.opacity-0 {
        opacity: 0;
    }

.booking-modal-container {
    background: var(--booking-white);
    border-radius: 12px;
    box-shadow: var(--booking-shadow-lg);
    max-width: 500px;
    width: 100%;
    max-height: 93dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

.booking-modal-wide {
    max-width: 960px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   HEADER - MINIMAL
   ========================================================================== */

.booking-modal-header {
    padding: var(--px-20);
    border-bottom: 1px solid var(--booking-border-light);
    position: relative;
}

.booking-header-content {
    padding-right: 36px;
}

.booking-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--booking-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-title-icon {
    width: 20px;
    height: 20px;
    color: var(--booking-text-secondary);
}

.booking-hotel-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    color: var(--booking-text-secondary);
}

.booking-hotel-logo,
.booking-hotel-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

.booking-hotel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .booking-hotel-icon svg {
        width: 14px;
        height: 14px;
        color: var(--booking-text-light);
    }

.booking-hotel-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--booking-text-secondary);
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--booking-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

    .booking-modal-close:hover {
        background: var(--booking-bg);
    }

    .booking-modal-close svg {
        width: 18px;
        height: 18px;
    }

/* ==========================================================================
   STEP INDICATOR - SIMPLE
   ========================================================================== */

.booking-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--px-16) 20px;
    gap: 8px;
    border-bottom: 1px solid var(--booking-border-light);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--booking-text-light);
    font-size: var(--px-16);
}

    .step-item.active {
        color: var(--bs-orange);
    }

    .step-item[data-step="3"] {
        color: var(--bs-success);
    }

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--booking-border-light);
    color: var(--booking-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.step-item.active .step-number {
    background: var(--bs-orange);
    color: var(--txt-btn);
}

.step-label {
    font-weight: 500;
}

.step-divider {
    width: 40px;
    height: 1px;
    background: var(--booking-border-light);
}

/* ==========================================================================
   CONTENT
   ========================================================================== */

.booking-modal-content {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: var(--px-40);
}

.booking-step {
    overflow: auto;
    display: none;
}

#bookingStep2.booking-step.active {
    overflow: hidden;
}

.booking-step.active {
    display: block;
}

/* ==========================================================================
   STEP 1: FORM - CLEAN
   ========================================================================== */

.booking-form {
    padding: 20px;
}

/* Guest Info - Simple Card */
.booking-guest-info-compact {
    margin-bottom: 20px;
    padding: var(--px-20) var(--px-16);
    border-radius: 8px;
    border: 1px solid var(--hotel-accent-dark);
    background: var(--hotel-pearl);
    border-color: #0671824d;
    background: #0671821c;
}

.guest-info-header {
    font-size: var(--px-16);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--booking-text);
    margin-bottom: 8px;
    display: none;
}

.guest-info-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.guest-name {
    font-size: var(--px-16);
    font-weight: 600;
    color: var(--booking-text);
    margin: 0 0 6px 0;
}

.guest-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--booking-text-secondary);
}

.contact-icon {
    width: 14px;
    height: 14px;
}

/* Form Main */
.booking-form-main {
    border-radius: 8px;
    margin: 0 !important;
}

/* Form Row */
.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: var(--px-16);
}

    .booking-form-row:last-child {
        margin-top: var(--px-16);
        margin-bottom: 0;
        grid-template-columns: 1fr;
    }

.booking-form-field,
.booking-form-field-full {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.booking-form-field-full {
    grid-column: 1 / -1;
}

.booking-field-label-compact {
    font-size: var(--px-16);
    font-weight: 600;
    color: var(--booking-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-icon {
    width: var(--px-16);
    height: var(--px-16);
    color: var(--booking-text-secondary);
}

.booking-field-input-compact {
    padding: var(--px-12) var(--px-16);
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    font-size: 15px;
    color: var(--booking-text);
    background: white;
    transition: border-color 0.15s;
    width: 100%;
}

    .booking-field-input-compact:hover {
        border-color: #bbb;
    }

    .booking-field-input-compact:focus {
        outline: none;
        border-color: var(--booking-primary);
    }

    .booking-field-input-compact::placeholder {
        color: var(--booking-text-light);
    }

/* Nights Info - Inline */
.booking-nights-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    background: var(--hotel-pearl);
    border-radius: 4px;
    margin-bottom: var(--px-16);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--hotel-gold);
    border-color: #64b5f6;
    background: #e3f2fd;
    border-color: #0671824d;
    background: #0671820f;
    width: 100%;
}

.nights-icon {
    width: var(--px-16);
    height: var(--px-16);
}

/* Checkbox - Minimal */
.booking-checkbox-wrapper {
    margin-bottom: var(--px-16);
}

.booking-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.booking-checkbox-input {
    display: none;
}

.booking-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--booking-border);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.15s;
    background: white;
    margin-top: 2px;
}

.booking-checkbox-input:checked + .booking-checkbox-custom {
    background: var(--booking-primary);
    border-color: var(--booking-primary);
}

    .booking-checkbox-input:checked + .booking-checkbox-custom::after {
        content: '';
        position: absolute;
        left: 5px;
        top: 2px;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.booking-checkbox-text {
    color: var(--booking-text);
    font: normal normal 500 var(--s-16);
}

    .booking-checkbox-text small {
        display: block;
        font-size: 12px;
        color: var(--booking-text-secondary);
        margin-top: 4px;
        font-weight: 400;
    }

/* Special Requests - Minimal */
.booking-special-requests {
    margin-top: var(--px-16);
}

.special-requests-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: 1px dashed var(--booking-border);
    border-radius: 6px;
    color: var(--booking-text-secondary);
    cursor: pointer;
    transition: all 0.15s;
    font: normal normal 400 var(--s-16);
}

    .special-requests-toggle:hover {
        background: var(--booking-bg);
        border-color: #bbb;
    }

.toggle-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.special-requests-content {
    margin-top: 10px;
}

.booking-textarea-compact {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--booking-text);
    background: white;
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
    line-height: 1.5;
    transition: border-color 0.15s;
}

    .booking-textarea-compact:hover {
        border-color: #bbb;
    }

    .booking-textarea-compact:focus {
        outline: none;
        border-color: var(--booking-primary);
    }

    .booking-textarea-compact::placeholder {
        color: var(--booking-text-light);
    }

/* Date range picker inside booking modal */
body > .daterangepicker {
    z-index: 12000 !important;
}

    body > .daterangepicker.show-calendar {
        max-width: min(96vw, 760px) !important;
        overflow: visible !important;
    }

    body > .daterangepicker .drp-calendar {
        max-width: 100% !important;
    }

    body > .daterangepicker .calendar-table {
        width: 100% !important;
    }

    body > .daterangepicker.booking-single-calendar .drp-calendar.right {
        display: none !important;
    }

    body > .daterangepicker.booking-single-calendar .drp-calendar.left {
        border-right: none !important;
        margin-right: 0 !important;
    }

        body > .daterangepicker.booking-single-calendar .drp-calendar.left .calendar-table {
            border-top-right-radius: 6px !important;
            border-bottom-right-radius: 6px !important;
        }

    body > .daterangepicker.booking-single-calendar {
        width: min(94vw, 360px) !important;
    }

        body > .daterangepicker.booking-single-calendar .drp-buttons {
            display: none !important;
        }

@media (max-width: 768px) {
    body > .daterangepicker {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: min(94vw, 340px) !important;
    }

        body > .daterangepicker .drp-calendar.left,
        body > .daterangepicker .drp-calendar.right {
            padding: 8px !important;
        }

        body > .daterangepicker .calendar-table th,
        body > .daterangepicker .calendar-table td {
            min-width: 32px;
            max-width: 32px;
            height: 32px;
            font-size: 13px;
        }
}

/* ==========================================================================
   ACTIONS - SIMPLE
   ========================================================================== */

.booking-modal-actions-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--px-16) 0;
    background: white;
    margin-top: var(--px-24);
    border-top: 1px solid var(--booking-border);
    position: sticky;
    bottom: 0;
}

.booking-btn-cancel-compact,
.booking-btn-submit-compact {
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.booking-btn-cancel-compact {
    background: white;
    color: var(--booking-text);
    border: 1px solid var(--booking-border);
}

    .booking-btn-cancel-compact:hover {
        background: var(--booking-bg);
    }

.booking-btn-submit-compact {
    background: var(--booking-primary);
    color: var(--txt-btn);
    flex: 1;
}

    .booking-btn-submit-compact:hover {
        background: var(--booking-primary-hover);
    }

    .booking-btn-submit-compact:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

.btn-icon {
    width: var(--px-16);
    height: var(--px-16);
}

/* Loading Spinner */
.booking-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   STEP 2: ROOM SELECTION - CLEAN GRID
   ========================================================================== */

/* Room Selection Header - Clean */
.room-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--px-16) 20px;
    border-bottom: 1px solid var(--booking-border-light);
    background: var(--booking-bg);
    gap: 12px;
    border-color: #64b5f6;
    background: #e3f2fd;
    border-color: #0671824d;
    background: #0671821c;
    position: relative;
}

.booking-summary-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-dates {
    font-size: var(--px-16);
    font-weight: 600;
    color: var(--booking-text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-icon {
    width: var(--px-16);
    height: var(--px-16);
}

.summary-dates-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--booking-text-secondary);
    flex-wrap: wrap;
}

    .summary-dates-detail strong {
        color: var(--booking-text);
        font-weight: 600;
    }

.arrow-icon {
    width: 14px;
    height: 14px;
}

.change-info-btn {
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--booking-border);
    color: var(--booking-text);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 4px;
    font: normal normal 600 var(--s-14);
}

    .change-info-btn:hover {
        background: var(--booking-bg);
    }

/* Search & Filter Toolbar */
.room-search-filter {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: var(--px-16) 20px;
    border-bottom: 1px solid var(--booking-border-light);
    background: white;
    flex-wrap: wrap;
}

.room-search-top {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* Search Box */
.search-box {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--booking-text-light);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 9px 12px 9px 38px;
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--booking-text);
    background: white;
    transition: border-color 0.15s;
}

    .search-input:hover {
        border-color: #bbb;
    }

    .search-input:focus {
        outline: none;
        border-color: var(--booking-primary);
    }

    .search-input::placeholder {
        color: var(--booking-text-light);
    }

.clear-search {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--booking-text-light);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

    .clear-search:hover {
        background: var(--booking-bg);
        color: var(--booking-text);
    }

    .clear-search svg {
        width: var(--px-16);
        height: var(--px-16);
    }

.mobile-filter-reset {
    flex: 0 0 auto;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid var(--booking-border);
    background: #fff;
    color: var(--booking-text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

    .mobile-filter-reset:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

/* Price Filter */
.price-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--booking-text);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-input {
    width: 100px;
    padding: 8px 10px;
    border: 1px solid var(--booking-border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--booking-text);
    text-align: right;
}

    .price-input:hover {
        border-color: #bbb;
    }

    .price-input:focus {
        outline: none;
        border-color: var(--booking-primary);
    }

.price-separator {
    color: var(--booking-text-light);
    font-weight: 500;
}

/* Results Count */
.results-count {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    color: var(--bg-btn);
    border-color: #64b5f6;
    /* background: #e3f2fd; */
    font-weight: 600;
    height: var(--px-48);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* No Results Placeholder */
.no-results-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--booking-text-secondary);
}

    .no-results-placeholder svg {
        width: 64px;
        height: 64px;
        margin-bottom: var(--px-16);
        color: var(--booking-border);
    }

    .no-results-placeholder p {
        font-size: 15px;
        margin-bottom: var(--px-16);
    }

.reset-filters-btn {
    padding: 8px var(--px-16);
    background: white;
    border: 1px solid var(--booking-border);
    color: var(--booking-text);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

    .reset-filters-btn:hover {
        background: var(--booking-bg);
    }

/* Room Cards Container */
.room-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    padding: 16px;
    max-height: var(--px-800);
    overflow-y: auto;
}

    .room-cards-container::-webkit-scrollbar {
        width: 6px;
    }

    .room-cards-container::-webkit-scrollbar-track {
        background: var(--booking-bg);
    }

    .room-cards-container::-webkit-scrollbar-thumb {
        background: var(--booking-border);
        border-radius: 3px;
    }

        .room-cards-container::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }

/* No Rooms */
.no-rooms-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--booking-text-secondary);
}

    .no-rooms-message svg {
        width: 64px;
        height: 64px;
        margin-bottom: var(--px-16);
        color: var(--booking-border);
    }

    .no-rooms-message p {
        font-size: 15px;
        margin-bottom: var(--px-16);
    }

/* ==========================================================================
   ROOM CARD - CLEAN & MINIMAL
   ========================================================================== */

.room-card {
    background: white;
    border: 1px solid var(--booking-border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    padding: 0;
}

    .room-card:hover {
        border-color: var(--booking-border);
        box-shadow: var(--booking-shadow);
    }

/* Carousel */
.room-card-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    z-index: 2;
}

    .carousel-btn:hover {
        background: white;
        box-shadow: var(--booking-shadow);
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
        color: var(--booking-text);
    }

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel Dots */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

    .indicator-dot:hover {
        background: rgba(255,255,255,0.9);
    }

    .indicator-dot.active {
        background: white;
        width: 20px;
        border-radius: 3px;
    }

/* Room Card Body */
.room-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-name {
    font-size: var(--px-16);
    font-weight: 600;
    color: var(--booking-text);
    margin: 0;
    line-height: 1.3;
}

.room-description {
    font-size: 13px;
    color: var(--booking-text-secondary);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Payment Info */
.room-payment-info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--booking-text-secondary);
}

.payment-icon {
    width: 14px;
    height: 14px;
}

/* Room Card Footer */
.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--booking-border-light);
}

.room-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--booking-text);
    line-height: 1;
}

.price-label {
    font-size: 11px;
    color: var(--booking-text-secondary);
    margin-top: 2px;
}

.btn-book-room {
    padding: 9px 18px;
    background: var(--booking-primary);
    color: var(--txt-btn);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .btn-book-room:hover {
        background: var(--booking-primary-hover);
    }

    .btn-book-room:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

/* ==========================================================================
   STEP 3: CONFIRMATION - CLEAN SUMMARY
   ========================================================================== */

.confirmation-container {
    padding: var(--px-20);
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 0;
}

/* Confirmation Header */
.confirmation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: var(--px-16);
    justify-content: center;
}

.confirmation-icon {
    width: 32px;
    height: 32px;
    color: var(--booking-primary);
    flex-shrink: 0;
}

.confirmation-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--booking-text);
    margin: 0;
}

/* Confirmation Sections */
.confirmation-section {
    background: white;
    border: 1px solid var(--booking-border-light);
    border-radius: 8px;
    margin-bottom: var(--px-16);
    overflow: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px var(--px-16);
    background: var(--booking-bg);
    border-bottom: 1px solid var(--booking-border-light);
    border-color: #0671824d;
    background: #0671821c;
}

    .section-header svg {
        width: 18px;
        height: 18px;
        color: var(--booking-text-secondary);
    }

    .section-header span {
        font-size: 13px;
        font-weight: 600;
        color: var(--booking-text);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

.section-content {
    padding: 4px var(--px-16);
}

/* Info Rows */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4px 0;
    gap: 6px;
    margin-bottom: var(--px-12);
}

    .info-row:not(:last-child) {
        border-bottom: 1px solid var(--booking-border-light);
    }

.info-label {
    font-size: 13px;
    color: var(--booking-text-secondary);
    flex-shrink: 0;
    min-width: 100px;
}

.info-value {
    font-size: 14px;
    font-weight: 500 !important;
    color: var(--booking-text) !important;
    text-align: right;
    word-break: break-word;
}

/* Room Summary */
.room-summary {
    padding: 8px;
    /* background: var(--booking-bg); */
    /* border-radius: 6px; */
}

.room-summary-name {
    font-size: var(--px-16);
    font-weight: 600;
    color: var(--booking-text);
    margin: 0 0 6px 0;
}

.room-summary-desc {
    font-size: 13px;
    color: var(--booking-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Price Summary */
.price-summary-section .section-content {
    padding: 12px var(--px-16);
}

.price-breakdown {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--booking-border-light);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--booking-text);
    padding: 6px 0;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--px-16);
    /* background: var(--booking-bg); */
    border-radius: 6px;
    margin: 0 -var(--px-16) -12px -var(--px-16);
}

    .price-total span:first-child {
        font-size: 15px;
        font-weight: 600;
        color: var(--booking-text);
    }

.total-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--booking-primary);
}

/* Confirmation Actions */
.confirmation-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--booking-border-light);
    position: sticky;
    bottom: 0;
    padding: var(--px-20) 0;
    background: white;
}

.btn-back,
.btn-confirm {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-back {
    background: white;
    color: var(--booking-text);
    border: 1px solid var(--booking-border);
    padding: 0 var(--px-12);
    width: fit-content;
}

    .btn-back:hover {
        background: var(--booking-bg);
    }

    .btn-back svg {
        width: var(--px-16);
        height: var(--px-16);
    }

.btn-confirm {
    background: var(--booking-primary);
    color: white;
    flex: 1;
}

    .btn-confirm:hover {
        background: var(--booking-primary-hover);
    }

    .btn-confirm:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .btn-confirm svg {
        width: 18px;
        height: 18px;
    }

/* ==========================================================================
   HOTEL SELECTION MODAL
   ========================================================================== */

.hotel-selection-subtitle {
    font-size: 13px;
    color: var(--booking-text-secondary);
    text-align: center;
    margin: 12px 0 var(--px-16);
    padding: 0 20px;
}

.hotel-selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 20px 20px;
    max-height: 60dvh;
    overflow-y: auto;
}

.hotel-selection-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border: 1px solid var(--booking-border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}

    .hotel-selection-card:hover {
        border-color: var(--booking-border);
        box-shadow: var(--booking-shadow);
    }

.hotel-card-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--booking-bg);
}

.hotel-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hotel-logo-placeholder svg {
        width: 32px;
        height: 32px;
        color: var(--booking-text-light);
    }

.hotel-card-content {
    flex: 1;
    min-width: 0;
}

.hotel-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--booking-text);
    margin: 0 0 4px;
}

.hotel-card-address {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 12px;
    color: var(--booking-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.address-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hotel-card-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--booking-text-light);
    transition: transform 0.15s;
}

.hotel-selection-card:hover .hotel-card-arrow {
    transform: translateX(2px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .booking-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .booking-modal-container {
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        animation: slideUp 0.2s ease;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .booking-modal-wide {
        max-width: 100%;
    }

    .booking-modal-header {
        padding: var(--px-20) var(--px-16);
    }

    .booking-modal-title {
        font-size: 18px;
    }

    .booking-step-indicator {
        padding: 10px var(--px-16);
    }

    .step-label {
        font-size: 12px;
    }

    .booking-form {
        padding: var(--px-16);
    }

    .booking-form-row {
    }

    .booking-field-input-compact {
        font-size: var(--px-16);
    }

    .booking-modal-actions-compact {
    }

    /* Room Selection */
    .room-selection-header {
        padding: 10px 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .summary-dates-detail {
        font-size: 12px;
    }

    .change-info-btn {
        justify-content: center;
        min-height: var(--px-36);
        position: absolute;
        top: 50%;
        right: var(--px-8);
        padding: 0 12px;
        transform: translateY(-50%);
    }

    /* Search & Filter */
    .room-search-filter {
        position: sticky;
        top: 0;
        z-index: 3;
        padding: 10px 12px;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box {
    }

    .search-input {
        height: 42px;
        border-radius: 10px;
    }

    .price-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        justify-content: start;
        padding: 8px 10px;
        border-radius: 10px;
    }

    .price-range-inputs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .price-input {
        width: inherit;
        min-height: 38px;
        border-radius: 8px;
    }

    .results-count {
        text-align: center;
        background: #f0f9ff;
        border: 1px solid #bae6fd;
        border-radius: 8px;
    }

    .room-cards-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 12px 14px;
        max-height: calc(94dvh - 290px);
    }

    .room-card-carousel {
        height: 150px;
    }

    .room-card-body {
        padding: 10px;
        gap: 8px;
    }

    .room-name {
        font-size: 14px;
    }

    .room-description {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .room-card-footer {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
    }

    .btn-book-room {
        width: auto;
        min-width: 112px;
        min-height: 36px;
        border-radius: 8px;
        padding: 8px 12px;
    }

    .hotel-selection-grid {
        padding: 0 var(--px-16) var(--px-16);
    }

    /* Step 3 Confirmation */
    .confirmation-container {
        padding-top: 0;
    }

    .confirmation-header {
        padding: 12px 0;
        margin-bottom: 0;
    }

        .confirmation-header h3 {
            font-size: var(--px-20);
        }

    .confirmation-icon {
        width: 28px;
        height: 28px;
    }

    .info-label {
        min-width: 80px;
        font-size: 12px;
    }

    .info-value {
        font-size: 13px;
    }

    .room-summary-name {
        font-size: 15px;
    }

    .total-amount {
        font-size: 20px;
    }

    .confirmation-actions {
    }

    .btn-back,
    .btn-confirm {
        padding: 11px 20px;
    }
}

@media (max-width: 480px) {
    .step-label {
        display: none;
    }

    .booking-form {
        padding: var(--px-20);
        padding-bottom: 0;
    }

    .room-cards-container {
        padding: 8px 10px 12px;
        max-height: calc(94dvh - 280px);
    }

    .room-selection-header {
        padding: 8px 10px;
    }

    .summary-dates {
        font-size: 14px;
    }

    .summary-dates-detail {
        font-size: 10px;
    }

    .room-search-filter {
        padding: 8px 10px;
    }

    .search-input {
        height: 40px;
        font-size: 13px;
    }

    .mobile-filter-reset {
        height: var(--px-48);
        padding: 0 10px;
        font-size: 12px;
    }

    .info-row {
        flex-direction: column;
        gap: 4px;
    }

    .info-label {
        min-width: auto;
    }

    .info-value {
        text-align: left;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .booking-modal-wide {
        max-width: 1080px;
    }

    .room-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.booking-field-input-compact:focus-visible,
.booking-textarea-compact:focus-visible,
.booking-btn-submit-compact:focus-visible,
.btn-book-room:focus-visible,
.btn-confirm:focus-visible {
    outline: 2px solid var(--booking-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print */
@media print {
    .booking-modal-overlay {
        display: none;
    }
}


.outlet-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

    .outlet-image-placeholder svg {
        width: var(--px-64);
        height: var(--px-64);
        color: #bdbdbd;
        margin-bottom: var(--px-12);
    }

    .outlet-image-placeholder p {
        font: normal normal 500 var(--s-14);
        color: #9e9e9e;
    }

/* ============================================
   PRE-SELECTED ROOM INFO
   ============================================ */

.pre-selected-room-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: var(--px-16);
    margin: var(--px-20);
    margin-bottom: 0;
}

.pre-selected-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #065f46;
    font-weight: 600;
    font-size: 13px;
}

    .pre-selected-header svg {
        width: 18px;
        height: 18px;
    }

.pre-selected-content h3 {
    font-size: var(--px-16);
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.pre-selected-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.pre-selected-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(6, 113, 130, 0.2);
}

    .pre-selected-price strong {
        font-size: 18px;
        font-weight: 700;
        color: #067182;
    }

    .pre-selected-price span {
        font-size: 12px;
        color: #6b7280;
    }

/* ============================================
   HOTEL CAROUSEL SELECTION - BOOKING MODAL
   ============================================ */

.hotel-carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.hotel-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.hotel-carousel-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--px-20);
    text-align: center;
}

    .hotel-carousel-header svg {
        width: 32px;
        height: 32px;
    }

.hotel-carousel-container {
    position: relative;
    width: 100%;
}

.hotel-carousel {
    position: relative;
    width: 100%;
    height: 75dvh;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hotel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

    .hotel-slide.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

.hotel-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

.hotel-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 60px 40px 40px;
    border-radius: 0 0 20px 20px;
}

.hotel-slide-content {
    text-align: center;
    color: white;
}

.hotel-slide-name {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hotel-slide-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hotel-slide-select-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-btn);
    color: var(--txt-btn);
    border: none;
    border-radius: 50px;
    padding: var(--px-16) 32px;
    font-size: var(--px-16);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

    .hotel-slide-select-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        background: #f0f0f0;
    }

    .hotel-slide-select-btn svg {
        width: 24px;
        height: 24px;
    }

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

    .carousel-nav:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .carousel-dot.active {
        background: white;
        border-color: white;
        width: 32px;
        border-radius: 6px;
    }

    .carousel-dot:hover {
        border-color: white;
    }

/* Hotel Count Info */
.hotel-count-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--px-20);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

    .hotel-count-info svg {
        width: 18px;
        height: 18px;
        color: rgba(255, 255, 255, 0.7);
    }

/* Close Button */
.hotel-carousel-close {
    position: fixed;
    top: var(--px-20);
    right: var(--px-20);
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .hotel-carousel-close:hover {
        background: white;
        transform: rotate(90deg);
    }

    .hotel-carousel-close svg {
        width: 20px;
        height: 20px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hotel-carousel-wrapper {
        max-width: 90%;
        padding: 10px;
    }

    .hotel-carousel {
    }

    .hotel-slide-name {
        font-size: 24px;
    }

    .hotel-slide-overlay {
        padding: 40px 20px 30px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .hotel-carousel-header {
        font-size: 20px;
        margin-bottom: var(--px-20);
    }
}

@media (max-width: 480px) {
    .hotel-carousel {
        border-radius: var(--px-16);
    }

    .hotel-slide-name {
        font-size: 20px;
    }

    .hotel-slide-select-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hotel-carousel-header {
        font-size: 18px;
    }

    .hotel-count-info {
        font-size: 12px;
        padding: 10px var(--px-16);
    }
}

/* Animation for modal entrance */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hotel-carousel-wrapper {
    animation: slideInUp 0.4s ease-out;
}

/* Carousel */
.room-card-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--booking-bg);
}

.carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

    .carousel-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 1;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Default image styling */
    .carousel-slide .room-default-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 20px;
        background: white;
    }

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    z-index: 2;
}

    .carousel-btn:hover {
        background: white;
        box-shadow: var(--booking-shadow);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
        color: var(--booking-text);
    }

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel Dots */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

    .indicator-dot:hover {
        background: rgba(255,255,255,0.9);
        transform: scale(1.2);
    }

    .indicator-dot.active {
        background: white;
        width: 20px;
        border-radius: 3px;
    }

.carousel-slide.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.booking-ticket-detail_header {
    display: flex;
    align-items: center;
    padding: var(--px-16);
    justify-content: space-between;
}
