/* ========================================
   BOOKING PAGES - COMBINED STYLES
   ======================================== */

/* Hide layout elements on booking pages */
.booking-page ~ footer,
body:has(.booking-page) footer,
body:has(.booking-page) .preloader,
body:has(.booking-page) .costom-logo-fp {
    display: none !important;
}

/* Override admin theme sidebar offset for booking pages at all screen sizes */
/* Admin theme applies: [data-layout=vertical] body .page-wrapper { margin-left: 260px } */
[data-layout=vertical] body .booking-page.page-wrapper,
[data-layout=vertical] body[data-sidebartype=mini-sidebar] .booking-page.page-wrapper,
[data-layout=vertical] body[data-sidebartype=full] .booking-page.page-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Hide admin sidebar and topbar on booking pages */
body:has(.booking-page) .left-sidebar,
body:has(.booking-page) .topbar,
body:has(.booking-page) .left-part-btn {
    display: none !important;
}

/* ----------------------------------------
   COMMON STYLES
   ---------------------------------------- */
/* Booking Common Styles - Shared across Securebookings, Checkout, BookingSuccess */

/* CSS Variables - Common Theme */
:root {
    --background: #F3F4F6;
    --foreground: #1F2937;
    --card: #FFFFFF;
    --card-foreground: #1F2937;
    --primary: #0066CC;
    --primary-foreground: #FFFFFF;
    --primary-light: rgba(0, 102, 204, 0.1);
    --secondary: #F3F4F6;
    --secondary-foreground: #1F2937;
    --muted: #E5E7EB;
    --muted-foreground: #6B7280;
    --accent: #008055;
    --accent-foreground: #FFFFFF;
    --accent-light: rgba(5, 150, 105, 0.1);
    --destructive: #EF4444;
    --destructive-foreground: #FFFFFF;
    --border: #D1D5DB;
    --input: #D1D5DB;
    --ring: #0066CC;
    --radius: 0.5rem;
    --cashback: #F5B041;
    --cashback-foreground: #78350F;
    --cashback-bg: #FEF3C7;
    --trust-green: #008055;
    --urgency: #EF4444;
    --rating: #F5B041;
    --discount: #008055;
    --strikethrough: #9CA3AF;
    --badge-bg: #DBEAFE;
    --badge-foreground: #1E40AF;
}

/* Reset and Base Styles for Booking Pages */
.booking-page,
.booking-page *,
.booking-page *::before,
.booking-page *::after {
    box-sizing: border-box;
}

.booking-page {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 0.875rem;
    min-height: 100vh;
}

.booking-page p,
.booking-page h1,
.booking-page h2,
.booking-page h3,
.booking-page h4,
.booking-page h5,
.booking-page h6 {
    margin: 0;
}

/* Container */
.booking-page .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    min-width: 0;
}

@media (min-width: 1024px) {
    .booking-page .container {
        padding: 0 1.5rem;
    }
}

/* Common Header Styles */
.booking-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 0.625rem 0;
}

.booking-page .booking-header .container {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.back-button {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}

.back-button:hover {
    color: var(--foreground);
    border-color: var(--primary);
}

.back-button svg {
    width: 0.875rem;
    height: 0.875rem;
}

.header-info {
    flex: 1;
    min-width: 0;
}

.header-info h1 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
    line-height: 1.3;
}

.header-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    margin-top: 0.125rem;
    line-height: 1.2;
}

.header-location svg {
    width: 0.6875rem;
    height: 0.6875rem;
    flex-shrink: 0;
}

/* Trust Badges */
.header-badges {
    display: flex;
    gap: 0.375rem;
    margin-left: auto;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 600;
    white-space: nowrap;
}

.trust-badge.confirmed {
    background: var(--accent-light);
    color: var(--accent);
}

.trust-badge.secure {
    background: var(--primary-light);
    color: var(--primary);
}

.trust-badge svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Common Card Styles */
.booking-page .card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.booking-page .card-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.booking-page .card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.booking-page .card-body {
    padding: 0.75rem 1rem;
}

/* Info Rows */
.booking-page .info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.375rem 0;
    font-size: 0.8125rem;
    gap: 1rem;
}

.booking-page .info-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--muted-foreground);
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
}

.booking-page .info-label svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--primary);
    flex-shrink: 0;
}

.booking-page .info-value {
    color: var(--foreground);
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

/* Price Rows */
.booking-page .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.booking-page .price-label {
    color: var(--muted-foreground);
}

.booking-page .price-value {
    color: var(--foreground);
    font-weight: 500;
}

.booking-page .price-row.total-row {
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.booking-page .price-row.total-row .price-label,
.booking-page .price-row.total-row .price-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
}

/* Buttons */
.booking-page .btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.booking-page .btn-primary:hover {
    background: #0052a3 !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
}

.booking-page .btn-primary svg {
    width: 1rem;
    height: 1rem;
}

.booking-page .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.booking-page .btn-outline:hover {
    background: var(--primary-light);
}

.booking-page .btn-outline svg {
    width: 1rem;
    height: 1rem;
}

/* Form Inputs */
.booking-page .form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: var(--card);
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-page .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.booking-page .form-input::placeholder {
    color: var(--muted-foreground);
}

.booking-page .form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.375rem;
}

/* Error States */
.booking-page .error-message {
    color: var(--destructive);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.booking-page .form-input.error {
    border-color: var(--destructive);
}

/* Loading Spinner */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking-page .spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Mobile Sticky Footer */
.booking-page .mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .mobile-sticky {
        display: none;
    }
}

/* Utilities */
.booking-page .text-center {
    text-align: center;
}

.booking-page .text-right {
    text-align: right;
}

.booking-page .text-accent {
    color: var(--accent);
}

.booking-page .text-muted {
    color: var(--muted-foreground);
}

.booking-page .font-semibold {
    font-weight: 600;
}

.booking-page .font-bold {
    font-weight: 700;
}

/* Hide on mobile / desktop */
@media (max-width: 1023px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Photo Modal - Shared */
.photo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.photo-modal.active {
    display: flex;
}

.photo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
}

.photo-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.photo-modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.photo-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
}

.photo-modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.photo-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.photo-modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.photo-modal-nav.prev {
    left: 1rem;
}

.photo-modal-nav.next {
    right: 1rem;
}

.photo-modal-nav svg {
    width: 1.5rem;
    height: 1.5rem;
}

.photo-modal-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}


/* ----------------------------------------
   SECUREBOOKINGS PAGE STYLES
   ---------------------------------------- */
/* Securebookings Page-Specific Styles */
        
        /* Header */
        .booking-page .hotel-header {
            background: var(--card);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }

        .booking-page .hotel-header-content {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        @media (min-width: 768px) {
            .booking-page .hotel-header-content {
                flex-direction: row;
                align-items: flex-start;
                justify-content: space-between;
            }
        }

        .booking-page .hotel-title-section h1 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 0.375rem;
            line-height: 1.3;
        }

        @media (min-width: 768px) {
            .booking-page .hotel-title-section h1 {
                font-size: 1.5rem;
            }
        }

        .booking-page .hotel-address {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin: 0;
            line-height: 1.5;
        }

        .booking-page .hotel-address svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            vertical-align: middle;
            margin-right: 0.25rem;
            margin-top: -2px;
            display: inline;
        }

        .address-text {
            color: var(--muted-foreground);
        }

        .view-map-link {
            color: var(--primary);
            text-decoration: none;
            white-space: nowrap;
            margin-left: 0.35rem;
            font-size: inherit;
        }

        .view-map-link:hover {
            text-decoration: underline;
        }

        /* Hotel Rating Section */
        .booking-page .hotel-rating-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }

        @media (min-width: 768px) {
            .booking-page .hotel-rating-section {
                align-items: flex-end;
                text-align: right;
                gap: 0.25rem;
            }
        }

        .booking-page .google-rating-box {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: #F0FDF4;
            border: 1px solid #86EFAC;
            border-radius: 0.75rem;
            padding: 0.125rem 0.5rem;
            font-size: 0.6875rem;
        }

        .booking-page .google-rating-box .rating-value {
            font-size: 0.75rem;
            font-weight: 700;
            color: #166534;
        }

        .google-rating-label {
            font-size: 0.6875rem;
            color: #166534;
            font-weight: 500;
        }

        .booking-page .trusted-by {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        @media (min-width: 768px) {
            .booking-page .trusted-by {
                text-align: right;
            }
        }

        /* Hero Gallery */
        .hero-section {
            margin-top: 1rem;
        }

        .booking-page .hero-gallery {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .booking-page .hero-gallery {
                grid-template-columns: 2fr 1fr;
            }
        }

        .booking-page .hero-main-image {
            width: 100%;
            height: 224px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        @media (min-width: 768px) {
            .booking-page .hero-main-image {
                height: 320px;
            }
        }

        .booking-page .hero-side-images {
            display: none;
        }

        @media (min-width: 768px) {
            .booking-page .hero-side-images {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                height: 320px;
            }
        }

        .hero-side-image {
            width: 100%;
            height: calc(50% - 0.25rem);
            object-fit: cover;
            object-position: center;
            border-radius: 0.5rem;
        }

        /* Mobile Carousel */
        .booking-page .hero-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 0.5rem;
        }

        .hero-carousel-track {
            display: flex;
            transition: transform 0.3s ease;
        }

        .hero-carousel-slide {
            min-width: 100%;
            height: 224px;
        }

        .hero-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 0.5rem;
        }

        .hero-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .hero-carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--muted);
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .hero-carousel-dot.active {
            background: var(--primary);
        }

        @media (min-width: 768px) {
            .booking-page .hero-carousel {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .booking-page .hero-gallery {
                display: none;
            }
        }

        /* Intro Section - same width as gallery above, 3 lines + Read more */
        .intro-section {
            margin-top: 1.25rem;
            margin-bottom: 0;
        }

        .intro-card {
            width: 100%;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            padding: 1.25rem 1.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        }

        .booking-page .intro-content {
            position: relative;
        }

        .booking-page .intro-text {
            color: #374151;
            font-size: 0.7rem;
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            padding-right: 5rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .booking-page .intro-content.expanded .intro-text {
            -webkit-line-clamp: unset;
            overflow: visible;
            padding-right: 0;
        }

        .intro-read-more {
            position: absolute;
            right: 1.5rem;
            bottom: 0;
            background: var(--card);
            color: var(--primary);
            font-size: 0.8125rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            padding: 0 0 0 0.25rem;
        }

        .booking-page .intro-content.expanded .intro-read-more {
            position: static;
            display: inline-block;
            margin-top: 0.5rem;
            background: none;
        }

        .intro-read-more:hover {
            text-decoration: underline;
        }

        @media (min-width: 1024px) {
            .booking-page .intro-text {
                font-size: 0.875rem;
            }
        }

        /* Search Bar */
        .search-section {
            margin-top: 1rem;
            overflow: visible;
            position: relative;
            z-index: 200;
        }

        .search-bar {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            padding: 1rem;
            overflow: visible;
            position: relative;
            z-index: 200;
        }

        .booking-page .search-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
            min-width: 0;
        }

        @media (min-width: 640px) {
            .booking-page .search-grid {
                grid-template-columns: 1.5fr 1fr auto;
            }
        }

        .booking-page .search-grid > * {
            min-width: 0;
        }

        .search-field label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--muted-foreground);
            margin-bottom: 0.25rem;
        }

        .search-field input,
        .search-field select {
            width: 100%;
            padding: 0.5rem 0.75rem;
            border: 1px solid var(--input);
            border-radius: 0.375rem;
            background: var(--card);
            color: var(--foreground);
            font-size: 0.875rem;
        }

        .search-field input:focus,
        .search-field select:focus {
            outline: none;
            border-color: var(--ring);
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
        }

        /* Date field with calendar icon */
        .date-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .date-input-wrapper input {
            padding-left: 2.25rem;
            padding-right: 0.75rem;
            background: var(--card);
            cursor: pointer;
        }

        .date-input-wrapper .date-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: var(--muted-foreground);
            width: 18px;
            height: 18px;
        }

        .date-range-input {
            width: 100%;
            font-size: 0.875rem;
        }

        .date-range-field {
            min-width: 200px;
        }

        /* Options Dropdown */
        .options-dropdown {
            position: relative;
            overflow: visible;
        }

        .options-trigger {
            width: 100%;
            padding: 0.5rem 0.75rem;
            border: 1px solid var(--input);
            border-radius: 0.375rem;
            background: var(--card);
            color: var(--foreground);
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .options-trigger:hover {
            border-color: var(--ring);
        }

        .options-trigger svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-left: 0.25rem;
            color: var(--muted-foreground);
        }

        .options-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin-top: 0.25rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 100;
            min-height: 0;
            overflow: visible;
        }

        .options-menu.active {
            display: block;
        }

        .option-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.375rem 0;
            min-height: 2.25rem;
        }

        .option-label {
            font-size: 0.875rem;
            color: var(--foreground);
            font-weight: 500;
        }

        .option-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .option-btn {
            width: 2rem;
            height: 2rem;
            border-radius: 0.25rem;
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--foreground);
            font-size: 1.125rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.2s, color 0.2s;
        }

        .option-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .option-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .option-value {
            min-width: 1.5rem;
            text-align: center;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .search-button-container {
            display: flex;
            align-items: flex-end;
        }

        .search-button-container .btn-primary {
            width: 100%;
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            white-space: nowrap;
            border-radius: 0.375rem;
            min-height: 2.25rem;
        }

        .search-button-container .btn-primary:hover,
        .search-button-container .btn-primary:focus,
        .search-button-container .btn-primary:active {
            background: #0052a3 !important;
            color: #FFFFFF !important;
            opacity: 1 !important;
        }

        .btn-primary {
            width: 100%;
            padding: 0.625rem 1rem;
            background: #0066CC !important;
            color: #FFFFFF !important;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
            text-transform: none;
            box-shadow: none;
        }

        .btn-primary:hover {
            opacity: 0.9;
            background: #0066CC !important;
            color: #FFFFFF !important;
        }
        
        /* Force override any external button styles */
        button.btn-primary,
        .btn-primary:focus,
        .btn-primary:active {
            background: #0066CC !important;
            color: #FFFFFF !important;
            border: none !important;
        }

        button.btn-primary:hover,
        .btn-primary:hover,
        .booking-page a.btn-primary:hover {
            background: #0052a3 !important;
            color: #FFFFFF !important;
            opacity: 1 !important;
        }

        /* Cashback Banner - match screenshot: light yellow, rounded, subtle shadow */
        .cashback-section {
            margin-top: 0.5rem;
        }

        .cashback-banner {
            background: #FFFBEB !important;
            border: 1px solid #FDE68A !important;
            border-radius: 0.5rem;
            padding: 0.5rem 0.75rem !important;
            display: flex;
            align-items: center;
            gap: 0.5rem !important;
            box-shadow: 0 1px 2px rgba(253, 230, 138, 0.25);
        }

        .cashback-banner > div {
            line-height: 1.35;
        }

        .cashback-emoji {
            font-size: 1.15rem !important;
            flex-shrink: 0;
        }

        .cashback-text {
            font-size: 0.875rem;
            color: #92400E !important;
            font-weight: 600;
            margin: 0;
        }

        .cashback-text .muted {
            font-weight: 400;
            color: #6B7280 !important;
        }

        .cashback-timeline {
            font-size: 0.75rem;
            color: #6B7280 !important;
            margin: 0.125rem 0 0 0;
        }

        /* Navigation Pills - no horizontal line below */
        .nav-section {
            margin-top: 1rem;
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            background: var(--background);
            z-index: 20;
            padding: 0.5rem 0;
        }

        .pill-nav {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .pill-nav::-webkit-scrollbar {
            display: none;
        }

        .pill-button {
            white-space: nowrap;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--muted-foreground);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pill-button:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .pill-button.active {
            background: var(--primary);
            color: var(--primary-foreground);
            border-color: transparent;
        }

        /* Main Layout */
        .main-layout {
            margin-top: 1rem;
            overflow-x: hidden;
        }

        .booking-page .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            min-width: 0;
        }

        @media (min-width: 1024px) {
            .booking-page .main-grid {
                grid-template-columns: 2.3fr 1fr;
            }
        }

        .main-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            min-width: 0;
        }

        .booking-page .sidebar {
            min-width: 0;
        }

        /* Section Titles */
        .section-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 1rem;
        }

        .no-rooms-empty {
            background: #FDFBFB;
            border: 1px solid #e9547d;
            border-radius: 0.5rem;
            padding: 1.5rem 1.25rem;
            text-align: center;
            margin-top: 0.5rem;
        }

        .no-rooms-empty .no-rooms-title {
            color: #e9547d;
            font-size: 1rem;
            font-weight: 500;
            margin: 0 0 0.5rem 0;
        }

        .no-rooms-empty .no-rooms-hint {
            color: #e9547d;
            font-size: 0.9375rem;
            margin: 0;
        }

        /* Room Cards */
        .booking-page .room-card {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .booking-page .room-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            min-width: 0;
        }

        @media (min-width: 640px) {
            .booking-page .room-grid {
                grid-template-columns: minmax(120px, 200px) 1fr minmax(200px, 240px) !important;
            }
        }

        .booking-page .room-grid > * {
            min-width: 0;
            overflow: hidden;
        }

        .booking-page .room-image-container {
            height: 176px;
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 640px) {
            .booking-page .room-image-container {
                height: 100%;
                min-height: 200px;
            }
        }

        .booking-page .room-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .booking-page .room-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .booking-page .room-carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.3s ease-in-out;
        }

        .booking-page .room-carousel-slide {
            min-width: 100%;
            height: 100%;
        }

        .booking-page .room-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .booking-page .room-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 1.5rem;
            height: 1.5rem;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .booking-page .room-image-container:hover .room-carousel-btn {
            opacity: 1;
        }

        .booking-page .room-carousel-btn svg {
            width: 0.75rem;
            height: 0.75rem;
            color: #333;
        }

        .booking-page .room-carousel-prev {
            left: 0.375rem;
        }

        .booking-page .room-carousel-next {
            right: 0.375rem;
        }

        .booking-page .room-carousel-dots {
            position: absolute;
            bottom: 0.375rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.25rem;
            z-index: 2;
        }

        .booking-page .room-carousel-dot {
            width: 0.375rem;
            height: 0.375rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .booking-page .room-carousel-dot.active {
            background: #fff;
        }

        .booking-page .room-view-more {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background: rgba(0,0,0,0.7);
            color: #fff;
            border: none;
            border-radius: 0.25rem;
            padding: 0.25rem 0.5rem;
            font-size: 0.625rem;
            cursor: pointer;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .booking-page .room-view-more:hover {
            background: rgba(0,0,0,0.85);
        }

        .booking-page .room-view-more svg {
            width: 0.75rem;
            height: 0.75rem;
        }

        /* Bootstrap Room Photo Modal Styles */
        #roomDetailPop .modal-content {
            border: none;
            border-radius: 0.75rem;
            overflow: hidden;
        }

        #roomDetailPop .modal-header {
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
            padding: 1rem 1.25rem;
        }

        #roomDetailPop .modal-title {
            font-size: 1.125rem;
            color: #1f2937;
        }

        #roomDetailPop .modal-.booking-page {
            background: #f8f9fa;
        }

        #roomDetailPop .carousel-inner {
            background: #000;
        }

        #roomDetailPop .carousel-item img {
            max-height: 70vh;
            object-fit: contain;
            background: #f8f9fa;
        }

        #roomDetailPop .carousel-control-prev,
        #roomDetailPop .carousel-control-next {
            width: 3rem;
            opacity: 0.8;
        }

        #roomDetailPop .carousel-control-prev:hover,
        #roomDetailPop .carousel-control-next:hover {
            opacity: 1;
        }

        #roomDetailPop .carousel-control-prev-icon,
        #roomDetailPop .carousel-control-next-icon {
            background-color: rgba(0,0,0,0.5);
            border-radius: 50%;
            padding: 1.25rem;
            background-size: 50%;
        }

        /* Keep old styles for hotel photos modal */
        .booking-page .room-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .booking-page .room-modal-overlay.active {
            display: flex;
        }

        .booking-page .room-modal {
            position: relative;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
        }

        .booking-page .room-modal-close {
            position: absolute;
            top: -2.5rem;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 10;
        }

        .booking-page .room-modal-title {
            color: #fff;
            font-size: 1rem;
            margin: 0 0 0.75rem 0;
            text-align: center;
        }

        .booking-page .room-modal-carousel {
            position: relative;
            width: 100%;
            background: #000;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .booking-page .room-modal-track {
            display: flex;
            transition: transform 0.3s ease-in-out;
        }

        .booking-page .room-modal-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .booking-page .room-modal-slide img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
        }

        .booking-page .room-modal-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .booking-page .room-modal-btn svg {
            width: 1.25rem;
            height: 1.25rem;
            color: #333;
        }

        .booking-page .room-modal-prev {
            left: 1rem;
        }

        .booking-page .room-modal-next {
            right: 1rem;
        }

        .booking-page .room-modal-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 0;
        }

        .booking-page .room-modal-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .booking-page .room-modal-dot.active {
            background: #fff;
        }

        .booking-page .room-modal-counter {
            color: rgba(255,255,255,0.7);
            font-size: 0.75rem;
            text-align: center;
            margin-top: 0.5rem;
        }

        .booking-page .room-details {
            padding: 0.75rem 1rem;
            display: flex !important;
            flex-direction: column;
            justify-content: space-between;
            min-height: 200px;
            flex: 1;
            min-width: 0;
            overflow: hidden;
            width: 100%;
        }

        .booking-page .room-name {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--foreground);
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }

        .booking-page .room-qty {
            background: var(--primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.125rem 0.375rem;
            border-radius: 0.25rem;
            margin-bottom: 0.375rem;
            line-height: 1.3;
        }

        .booking-page .room-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .amenity-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
            font-size: 0.6875rem;
            background: var(--secondary);
            color: var(--muted-foreground);
            padding: 0.2rem 0.4rem;
            border-radius: 9999px;
        }

        .amenity-tag svg {
            width: 10px;
            height: 10px;
        }

        .plan-section {
            margin-top: 0.5rem;
        }

        .plan-label {
            font-size: 0.6875rem;
            font-weight: 500;
            color: var(--muted-foreground);
            margin-bottom: 0.25rem;
        }

        .plan-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
            max-width: 100%;
        }

        .plan-button {
            padding: 0.25rem 0.625rem;
            border: 1px solid var(--border);
            border-radius: 9999px;
            background: var(--card);
            color: var(--muted-foreground);
            font-size: 0.6875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
            white-space: nowrap;
            text-align: center;
        }

        .plan-button:hover {
            border-color: var(--primary);
        }

        .plan-button.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--primary-foreground);
        }

        .plan-inclusion {
            font-size: 0.6875rem;
            color: var(--accent);
            font-weight: 500;
            margin: 0.375rem 0 0 0;
            display: inline-block;
            background: rgba(0, 128, 85, 0.1);
            padding: 0.15rem 0.4rem;
            border-radius: 9999px;
            min-height: 1.25rem;
            line-height: 1.25rem;
            vertical-align: middle;
        }

        .inclusions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem;
            margin-top: 0.5rem;
        }

        .inclusion-tag {
            font-size: 11px;
            background: rgba(0, 128, 85, 0.1);
            color: var(--accent);
            padding: 0.125rem 0.5rem;
            border-radius: 0.25rem;
            font-weight: 500;
        }

        .urgency-text {
            color: var(--urgency);
            font-size: 0.6875rem;
            font-weight: 500;
            margin-top: auto;
            padding-top: 0.375rem;
            min-height: 1.25rem;
        }

        .booking-page .room-price-section {
            padding: 0.75rem 1rem;
            display: flex !important;
            flex-direction: column;
            align-items: flex-end;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            min-width: 200px;
        }

        @media (min-width: 640px) {
            .booking-page .room-price-section {
                border-top: none;
                border-left: 1px solid var(--border);
            }
        }

        .price-container {
            text-align: right;
            line-height: 1.2;
        }

        .price-container p {
            margin: 0;
        }

        .discount-badge {
            display: inline-block;
            background: rgba(0, 128, 85, 0.1);
            color: var(--accent);
            padding: 0.1rem 0.3rem;
            border-radius: 9999px;
            font-size: 0.6875rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            min-height: 1.125rem;
        }

        .discount-badge.hidden {
            visibility: hidden;
        }

        .original-price {
            text-decoration: line-through;
            color: var(--strikethrough);
            font-size: 0.75rem;
            margin: 0 0 0.125rem 0;
            min-height: 1rem;
        }

        .original-price.hidden {
            visibility: hidden;
        }

        .current-price {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--foreground);
            margin: 0;
            line-height: 1.1;
        }

        .per-night {
            font-size: 0.6875rem;
            color: var(--muted-foreground);
            margin: 0;
        }

        .price-breakdown {
            font-size: 0.6875rem;
            color: var(--muted-foreground);
            margin: 0.25rem 0 0.375rem 0;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.05));
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            border: 1px solid rgba(34, 197, 94, 0.15);
        }

        .price-breakdown .price-amount {
            font-weight: 600;
            color: var(--foreground);
        }

        .price-breakdown .price-tax {
            font-weight: 600;
            color: var(--accent);
        }

        .book-at-price {
            margin: 0.25rem 0 0 0;
            padding: 0.25rem 0.5rem;
            background: #ecfdf5;
            border-radius: 0.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
        }

        .book-at-label {
            font-size: 0.6875rem;
            color: #059669;
            font-weight: 500;
        }

        .book-at-amount {
            font-size: 0.8125rem;
            color: #047857;
            font-weight: 700;
        }

        .book-at-tax {
            font-size: 0.5625rem;
            color: #6b7280;
        }

        .pay-at-hotel {
            font-size: 0.625rem;
            color: #6b7280;
            margin: 0.125rem 0 0 0;
        }

        .book-button-container {
            margin-top: 0.5rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .cashback-note {
            font-size: 0.625rem;
            color: var(--accent);
            text-align: center;
            font-weight: 500;
        }

        /* Amenities Section */
        .amenities-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .amenity-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            font-size: 0.875rem;
            color: var(--foreground);
        }

        .amenity-item i {
            font-size: 1rem;
            color: var(--primary);
            width: 1.25rem;
            text-align: center;
        }

        .amenity-item svg {
            width: 16px;
            height: 16px;
        }

        /* Photos Section */
        .photos-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .view-all-photos-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.5rem 0.875rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.8125rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .view-all-photos-btn:hover {
            opacity: 0.9;
        }

        .view-all-photos-btn svg {
            width: 1rem;
            height: 1rem;
        }

        .booking-page .photo-item {
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .photo-item:hover {
            opacity: 0.85;
        }

        .booking-page .photos-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }

        @media (min-width: 640px) {
            .booking-page .photos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .booking-page .photo-item {
            width: 100%;
            height: 128px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        @media (min-width: 640px) {
            .booking-page .photo-item {
                height: 160px;
            }
        }

        /* Reviews Section */
        .review-photos {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            overflow-x: auto;
        }

        .review-photo-item {
            width: 80px;
            height: 80px;
            border-radius: 0.5rem;
            object-fit: cover;
            flex-shrink: 0;
        }

        .review-photos-caption {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-bottom: 1rem;
        }

        .review-scores {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem 0.5rem;
            margin-bottom: 1.5rem;
        }

        .score-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .score-label {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            width: 80px;
        }

        .score-bar {
            flex: 1;
            height: 8px;
            background: var(--muted);
            border-radius: 9999px;
            overflow: hidden;
        }

        .score-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 9999px;
        }

        .score-value {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--foreground);
            width: 24px;
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .review-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            padding: 1rem;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(0, 102, 204, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .review-info {
            flex: 1;
        }

        .review-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
        }

        .review-date {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        .review-stars {
            display: flex;
            gap: 0.125rem;
        }

        .star-filled {
            width: 12px;
            height: 12px;
            color: #FFA500;
        }

        .star-empty {
            width: 12px;
            height: 12px;
            color: var(--muted-foreground);
        }

        .review-text {
            font-size: 0.875rem;
            color: rgba(var(--foreground-rgb), 0.85);
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        .review-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
        }

        .review-tag {
            font-size: 11px;
            background: var(--badge);
            color: var(--badge-foreground);
            padding: 0.125rem 0.5rem;
            border-radius: 0.25rem;
        }

        /* Policies Section */
        .policieslist {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .policieslist li {
            display: flex;
            align-items: start;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: rgba(var(--foreground-rgb), 0.85);
        }

        .policy-bullet {
            color: var(--primary);
            margin-top: 0.125rem;
        }

        /* FAQ Section */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .faq-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--muted);
        }

        .faq-icon {
            width: 16px;
            height: 16px;
            color: var(--muted-foreground);
            transition: transform 0.2s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            display: none;
            padding: 0 1rem 1rem 1rem;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-answer p {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin: 0;
        }

        /* Location Section Main */
        .location-section-main {
            margin-top: 2rem;
        }

        .location-map-main {
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .location-address {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-bottom: 0.75rem;
        }

        /* Sidebar */
        .booking-page .sidebar {
            display: none;
        }

        @media (min-width: 1024px) {
            .booking-page .sidebar {
                display: block;
            }
        }

        .sidebar-card {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .sidebar-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 0.75rem;
        }

        .location-map {
            background: var(--muted);
            height: 200px;
            min-height: 200px;
            border-radius: 0.375rem;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .location-map-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .location-map-placeholder svg {
            width: 20px;
            height: 20px;
            margin-right: 0.25rem;
        }

        .text-link {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.875rem;
        }

        .text-link:hover {
            text-decoration: underline;
        }

        .why-book-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .why-book-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.375rem 0;
            font-size: 0.875rem;
            color: rgba(31, 41, 55, 0.85);
        }

        .why-book-list .check {
            color: var(--accent);
            font-weight: bold;
            flex-shrink: 0;
        }

        .cashback-terms {
            background: var(--cashback-bg);
            border: 1px solid rgba(245, 176, 65, 0.3);
            border-radius: 0.5rem;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .cashback-terms h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--cashback-foreground);
            margin-bottom: 0.5rem;
        }

        .cashback-terms ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cashback-terms li {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            padding: 0.125rem 0;
        }

        .support-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .support-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.875rem;
        }

        .support-link:hover {
            text-decoration: underline;
        }

        .support-link svg {
            width: 16px;
            height: 16px;
        }

        /* Mobile Sticky Footer */
        .booking-page .mobile-sticky-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card);
            border-top: 1px solid var(--border);
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 30;
        }

        @media (min-width: 1024px) {
            .booking-page .mobile-sticky-footer {
                display: none;
            }
            
            .page-wrapper {
                padding-bottom: 0;
            }
        }

        .page-wrapper {
            min-height: 100vh;
            padding-bottom: 80px;
        }

        .sticky-info {
            flex: 1;
            min-width: 0;
        }

        .sticky-room-name {
            font-size: 0.8125rem;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .sticky-meal-plan {
            font-size: 0.6875rem;
            color: #6b7280;
            margin: 0;
        }

        .sticky-price {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--foreground);
        }

        .sticky-price .per-night {
            font-size: 0.75rem;
            font-weight: 400;
        }

        .sticky-cashback {
            font-size: 11px;
            color: var(--accent);
            font-weight: 500;
        }

        .btn-continue {
            padding: 0.625rem 1.5rem;
            background: #0066CC !important;
            color: #FFFFFF !important;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .btn-continue:hover {
            opacity: 0.9;
            background: #0066CC !important;
            color: #FFFFFF !important;
        }

        .sticky-info {
            flex: 1;
            min-width: 0;
        }

        .sticky-room-name {
            font-size: 0.6875rem;
            color: var(--foreground);
            font-weight: 500;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        /* Selected room card state */
        .booking-page .room-card.selected {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }

        .booking-page .room-card .select-room-btn {
            display: none;
        }

        @media (max-width: 1023px) {
            .booking-page .room-card .btn-primary {
                display: none;
            }

            .booking-page .room-card .select-room-btn {
                display: inline-block;
                padding: 0.5rem 1rem;
                background: var(--primary);
                color: #fff;
                border: none;
                border-radius: 0.375rem;
                font-size: 0.8125rem;
                font-weight: 600;
                cursor: pointer;
            }

            .booking-page .room-card.selected .select-room-btn {
                background: var(--accent);
            }
        }
    

/* Daterangepicker custom styling */
        .daterangepicker {
            border: 1px solid #e5e7eb !important;
            border-radius: 0.5rem !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        }

        .daterangepicker td.off,
        .daterangepicker td.disabled {
            text-decoration: none !important;
        }

        /* Footer - single line layout */
        .daterangepicker .drp-buttons {
            border-top: 1px solid #e5e7eb !important;
            padding: 10px 15px !important;
            display: flex !important;
            flex-wrap: nowrap !important;
            align-items: center !important;
            justify-content: flex-end !important;
            gap: 10px !important;
            clear: both !important;
        }

        .daterangepicker .drp-buttons .drp-selected {
            display: inline-block !important;
            float: none !important;
            padding: 0 !important;
            margin-right: auto !important;
            font-size: 13px !important;
            color: #374151 !important;
            white-space: nowrap !important;
        }

        .daterangepicker .drp-buttons .btn {
            display: inline-block !important;
            float: none !important;
            margin: 0 !important;
            padding: 7px 18px !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            border-radius: 20px !important;
            white-space: nowrap !important;
        }

        .daterangepicker .drp-buttons .cancelBtn {
            background: #fff !important;
            color: #0066CC !important;
            border: 1px solid #0066CC !important;
        }

        .daterangepicker .drp-buttons .applyBtn {
            background: #0066CC !important;
            color: #fff !important;
            border: none !important;
            min-width: 100px !important;
        }

        .daterangepicker .drp-buttons .cancelBtn:hover {
            background: #f0f7ff !important;
        }

        .daterangepicker .drp-buttons .applyBtn:hover {
            background: #0055b3 !important;
        }
    


/* ----------------------------------------
   CHECKOUT PAGE STYLES
   ---------------------------------------- */
/* Checkout Page Styles */

        :root {
            --background: #F3F4F6;
            --foreground: #1F2937;
            --card: #FFFFFF;
            --border: #E5E7EB;
            --primary: #0066CC;
            --primary-foreground: #FFFFFF;
            --muted-foreground: #6B7280;
            --accent: #008055;
            --destructive: #EF4444;
            --ring: #0066CC;
        }

        .booking-page .checkout-page {
            min-height: 100vh;
            background: var(--background);
            padding-bottom: 6rem;
        }

        @media (min-width: 1024px) {
            .booking-page .checkout-page {
                padding-bottom: 2rem;
            }
        }

        .checkout-header {
            background: var(--card);
            border-bottom: 1px solid var(--border);
            padding: 0.625rem 0;
        }

        .checkout-header .booking-page .container {
            display: flex;
            align-items: center;
            gap: 0.625rem;
        }

        .back-button {
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.375rem;
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--muted-foreground);
            cursor: pointer;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .back-button:hover {
            color: var(--foreground);
            border-color: var(--primary);
        }

        .back-button svg {
            width: 0.875rem;
            height: 0.875rem;
        }

        .header-info h1 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--foreground);
            margin: 0;
            line-height: 1.3;
        }

        .header-location {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.6875rem;
            color: var(--muted-foreground);
            margin-top: 0.125rem;
            line-height: 1.2;
        }

        .header-location svg {
            width: 0.6875rem;
            height: 0.6875rem;
        }

        .header-rating {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            background: rgba(251, 191, 36, 0.1);
            padding: 0.25rem 0.625rem;
            border-radius: 0.5rem;
        }

        .header-rating svg {
            width: 0.875rem;
            height: 0.875rem;
            fill: #FBBF24;
            color: #FBBF24;
        }

        .header-rating span {
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--foreground);
        }

        .trust-badges {
            display: flex;
            gap: 0.375rem;
            overflow-x: auto;
            padding: 0;
            margin-top: 0.125rem;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.1875rem 0.5rem;
            border-radius: 0.25rem;
            background: #EEF2FF;
            color: #4338CA;
            font-size: 0.6875rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .trust-badge svg {
            width: 0.6875rem;
            height: 0.6875rem;
        }

        .checkout-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }

        .booking-page .checkout-grid {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .checkout-col-left {
            order: 2;
        }

        .checkout-col-right {
            order: 1;
        }

        @media (min-width: 1024px) {
            .booking-page .checkout-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .checkout-col-left {
                order: 1;
            }

            .checkout-col-right {
                order: 2;
            }
        }

        .checkout-card {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            padding: 1rem;
            margin-bottom: 0.75rem;
        }

        .checkout-card h2 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--foreground);
            margin: 0 0 0.625rem 0;
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .checkout-card h2 svg {
            width: 0.875rem;
            height: 0.875rem;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 0.625rem;
        }

        .form-group label {
            display: block;
            font-size: 0.6875rem;
            font-weight: 500;
            color: var(--muted-foreground);
            margin-bottom: 0.25rem;
        }

        .form-input {
            width: 100%;
            padding: 0.5rem 0.625rem;
            border-radius: 0.375rem;
            border: 1px solid var(--border);
            background: var(--card);
            color: var(--foreground);
            font-size: 0.8125rem;
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--ring);
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
        }

        .form-input::placeholder {
            color: var(--muted-foreground);
        }

        .booking-page .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.625rem;
        }

        @media (min-width: 640px) {
            .booking-page .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .phone-input-group {
            display: flex;
        }

        .phone-prefix {
            display: inline-flex;
            align-items: center;
            padding: 0 0.5rem;
            border: 1px solid var(--border);
            border-right: none;
            border-radius: 0.375rem 0 0 0.375rem;
            background: #F9FAFB;
            color: var(--muted-foreground);
            font-size: 0.8125rem;
        }

        .phone-input-group .form-input {
            border-radius: 0 0.375rem 0.375rem 0;
            flex: 1;
        }

        .payment-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 0.375rem;
        }

        .payment-option:hover {
            border-color: rgba(0, 102, 204, 0.4);
        }

        .payment-option.selected {
            border-color: var(--primary);
            background: rgba(0, 102, 204, 0.05);
        }

        .payment-info {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            flex: 1;
            pointer-events: none;
        }

        .payment-logo {
            height: 1.25rem;
            width: auto;
            max-width: 70px;
            object-fit: contain;
            pointer-events: none;
        }

        .payment-logo[alt="razorpay"] {
            height: 2rem;
            max-width: 100px;
        }

        .payment-methods {
            font-size: 0.6875rem;
            color: var(--muted-foreground);
            margin: 0;
            pointer-events: none;
        }

        .payment-radio {
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            pointer-events: none;
        }

        .payment-option.selected .payment-radio {
            border-color: var(--primary);
        }

        .payment-radio-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: var(--primary);
            display: none;
        }

        .payment-option.selected .payment-radio-dot {
            display: block;
        }

        .booking-page .pay-button-desktop {
            display: none;
            width: 100%;
            padding: 0.75rem;
            background: var(--primary);
            color: var(--primary-foreground);
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        @media (min-width: 1024px) {
            .booking-page .pay-button-desktop {
                display: flex;
            }
        }

        .pay-button-desktop:hover {
            opacity: 0.9;
        }

        .booking-page .pay-button-desktop svg {
            width: 1rem;
            height: 1rem;
        }

        .pay-button-desktop:disabled,
        .mobile-pay-button:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            opacity: 0.7;
        }

        .terms-agreement {
            margin-bottom: 0.75rem;
        }

        .terms-text {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            text-align: center;
            margin: 0;
        }

        .terms-text a {
            color: var(--primary);
            text-decoration: none;
        }

        .terms-text a:hover {
            text-decoration: underline;
        }

        .payment-secure-note {
            text-align: center;
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-top: 0.5rem;
            margin-bottom: 0;
        }

        .booking-summary-card {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            padding: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .booking-summary-top {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .summary-thumb {
            width: 160px;
            height: 160px;
            border-radius: 0.375rem;
            object-fit: cover;
            flex-shrink: 0;
        }

        .summary-info {
            flex: 1;
            min-width: 0;
        }

        .summary-info-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .summary-room-name {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--foreground);
            margin: 0;
            line-height: 1.3;
        }

        .summary-modify {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.6875rem;
            color: var(--primary);
            text-decoration: none;
            white-space: nowrap;
            font-weight: 500;
            padding: 0.25rem 0.625rem;
            border: 1px solid var(--primary);
            border-radius: 0.25rem;
            background: transparent;
            transition: all 0.2s ease;
        }

        .summary-modify:hover {
            background: var(--primary);
            color: #fff;
        }

        .summary-meal-plan {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.625rem;
            padding: 0.125rem 0.375rem;
            border-radius: 0.1875rem;
            background: rgba(0, 102, 204, 0.1);
            color: var(--primary);
            font-weight: 500;
            margin-top: 0.375rem;
        }

        .stay-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            border-top: 1px dashed var(--border);
        }

        .stay-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.625rem;
            padding: 0.1875rem 0.375rem;
            border-radius: 0.1875rem;
            background: var(--background);
            color: var(--foreground);
            font-weight: 500;
        }

        .stay-chip svg {
            width: 0.625rem;
            height: 0.625rem;
            color: var(--muted-foreground);
        }

        .price-card {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            padding: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .price-card h3 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--foreground);
            margin: 0 0 0.75rem 0;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .price-row.total {
            border-top: 1px solid var(--border);
            padding-top: 0.5rem;
            margin-top: 0.5rem;
        }

        .price-label {
            color: var(--muted-foreground);
        }

        .price-value {
            color: var(--foreground);
            font-weight: 500;
        }

        .price-row.total .price-label,
        .price-row.total .price-value {
            font-weight: 700;
            color: var(--foreground);
        }

        .price-row.total .price-value {
            font-size: 1.125rem;
        }

        .price-row.total-row {
            border-top: 1px solid var(--border);
            padding-top: 0.75rem;
            margin-top: 0.5rem;
        }

        .price-row.total-row .price-label,
        .price-row.total-row .price-value {
            font-weight: 700;
            font-size: 1rem;
            color: var(--foreground);
        }

        .cashback-note {
            font-size: 0.6875rem;
            color: var(--accent);
            font-weight: 500;
            text-align: right;
        }

        .cancellation-card {
            background: rgba(0, 128, 85, 0.05);
            border: 1px solid rgba(0, 128, 85, 0.2);
            border-radius: 0.5rem;
            padding: 0.625rem 0.75rem;
        }

        .cancellation-title {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.375rem;
            margin: 0;
        }

        .cancellation-title svg {
            width: 0.875rem;
            height: 0.875rem;
        }

        .cancellation-text {
            font-size: 0.6875rem;
            color: var(--muted-foreground);
            margin: 0.25rem 0 0 0;
        }

        .mobile-sticky {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card);
            border-top: 1px solid var(--border);
            padding: 0.75rem 1rem;
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            z-index: 9998;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }

        @media (min-width: 1024px) {
            .mobile-sticky {
                display: none !important;
            }
        }

        .mobile-price {
            font-weight: 700;
            color: var(--foreground);
        }

        .mobile-price-note {
            font-size: 0.6875rem;
            color: var(--muted-foreground);
        }

        .mobile-pay-button {
            padding: 0.625rem 1.5rem;
            background: var(--primary);
            color: var(--primary-foreground);
            border: none;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mobile-pay-button svg {
            width: 1rem;
            height: 1rem;
        }

        .error-text {
            font-size: 0.75rem;
            color: var(--destructive);
            margin-top: 0.25rem;
        }
    


    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    #pageLoader.d-none { display: none !important; }



/* ----------------------------------------
   BOOKING SUCCESS PAGE STYLES
   ---------------------------------------- */
/* BookingSuccess Page Styles */

        :root {
            --background: #f5f7fa;
            --foreground: #1a2332;
            --card: #ffffff;
            --primary: #0066cc;
            --primary-foreground: #ffffff;
            --primary-light: rgba(0, 102, 204, 0.1);
            --muted: #e8ecf0;
            --muted-foreground: #64748b;
            --accent: #059669;
            --accent-light: rgba(5, 150, 105, 0.1);
            --border: #d1d9e0;
        }

        

        .booking-page {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--background);
            color: var(--foreground);
            line-height: 1.5;
            font-size: 0.875rem;
        }

        .booking-page .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        .booking-page .header {
            background: var(--card);
            border-bottom: 1px solid var(--border);
            padding: 0.625rem 0;
        }

        .header-content {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .back-button {
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.375rem;
            border: 1px solid var(--border);
            color: var(--muted-foreground);
            text-decoration: none;
            transition: all 0.2s;
            margin-top: 0.125rem;
        }

        .back-button:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .back-button svg {
            width: 1rem;
            height: 1rem;
        }

        .header-info {
            flex: 1;
        }

        .header-info h1 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--foreground);
            margin: 0;
        }

        .header-location {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-top: 0.125rem;
        }

        .header-location svg {
            width: 0.75rem;
            height: 0.75rem;
        }

        .trust-badges {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.375rem;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.6875rem;
            color: var(--accent);
            font-weight: 500;
        }

        .trust-badge svg {
            width: 0.6875rem;
            height: 0.6875rem;
        }

        .header-actions {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .btn-header {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            border-radius: 0.375rem;
            font-size: 0.75rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }

        .btn-header svg {
            width: 0.875rem;
            height: 0.875rem;
        }

        .btn-header-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-header-primary:hover {
            opacity: 0.9;
        }

        .btn-header-outline {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }

        .btn-header-outline:hover {
            background: var(--accent-light);
        }

        /* Success Banner - Compact */
        .success-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.625rem 1rem;
            background: var(--accent-light);
            border: 1px solid rgba(5, 150, 105, 0.25);
            border-radius: 0.5rem;
            margin: 0.75rem auto;
            max-width: 1100px;
        }

        .success-icon {
            width: 1.75rem;
            height: 1.75rem;
            color: var(--accent);
            flex-shrink: 0;
        }

        .success-content {
            text-align: left;
        }

        .success-title-row {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            flex-wrap: wrap;
        }

        .success-title {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--foreground);
        }

        .booking-id {
            font-size: 0.8125rem;
            font-weight: 400;
            color: var(--muted-foreground);
        }

        .success-subtitle {
            font-size: 0.6875rem;
            color: var(--muted-foreground);
            margin-top: 0.125rem;
        }


        /* Main Content */
        .main-content {
            padding: 0rem;
        }

        .booking-page .main-grid {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 1rem;
        }

        /* Cards */
        .booking-page .card {
            background: var(--card);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            margin-bottom: 0.75rem;
        }

        .card-.booking-page {
            padding: 0.875rem;
        }

        .card-title {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 0.625rem;
        }

        .card-subtitle {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        /* Info Rows */
        .info-row {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.375rem;
            font-size: 0.8125rem;
        }

        .info-label {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            color: var(--muted-foreground);
            font-weight: 500;
            min-width: 120px;
            flex-shrink: 0;
        }

        .info-label svg {
            width: 0.875rem;
            height: 0.875rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .info-value {
            color: var(--foreground);
            font-weight: 500;
        }

        /* Payment Table */
        .payment-card {
            border: 1px solid var(--primary-light);
        }

        .payment-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8125rem;
            margin-bottom: 0.75rem;
        }

        .payment-table th,
        .payment-table td {
            padding: 0.5rem;
            text-align: left;
            border: 1px solid var(--border);
        }

        .payment-table th {
            background: var(--background);
            font-weight: 600;
            color: var(--foreground);
        }

        .payment-table td {
            color: var(--foreground);
        }

        /* Payment Summary */
        .payment-summary {
            border: 1px solid var(--border);
            border-radius: 0.25rem;
            overflow: hidden;
        }

        .payment-row {
            display: flex;
            font-size: 0.8125rem;
        }

        .payment-row .label {
            flex: 2;
            padding: 0.5rem;
            text-align: right;
            border: 1px solid var(--border);
            color: var(--foreground);
        }

        .payment-row .value {
            flex: 1;
            padding: 0.5rem;
            text-align: right;
            border: 1px solid var(--border);
            font-weight: 500;
            color: var(--foreground);
        }

        /* Policy Section */
        .policy-section {
            margin-top: 0.75rem;
        }

        .policy-title {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 0.25rem;
        }

        .policy-text {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .booking-page .main-grid {
                grid-template-columns: 1fr;
            }

            .info-label {
                min-width: 100px;
            }

            .header-actions {
                gap: 0.375rem;
            }

            .btn-header {
                padding: 0.375rem 0.5rem;
                font-size: 0.6875rem;
            }

            .btn-header span {
                display: none;
            }
        }

        @media print {
            .action-section {
                display: none;
            }

            .booking-page {
                background: #fff;
            }

            .booking-page .card {
                break-inside: avoid;
            }
        }
    

