/*
 * Custom CSS for Hotel Module Redesign
 * Built with design-taste-frontend guidelines
 */

:root {
    --hotel-primary: #0f294d;
    --hotel-primary-subtle: rgba(15, 41, 77, 0.08);
    --hotel-accent: #ff5b35;
    --hotel-accent-hover: #e04620;
    --hotel-accent-subtle: rgba(255, 91, 53, 0.1);

    --hotel-bg-light: #f8fafc;
    --hotel-border: #e2e8f0;
    --hotel-border-hover: #cbd5e1;

    --hotel-text-dark: #1e293b;
    --hotel-text-muted: #64748b;

    --hotel-radius-sm: 8px;
    --hotel-radius-md: 12px;
    --hotel-radius-lg: 16px;
    --hotel-radius-pill: 9999px;

    --hotel-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --hotel-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --hotel-shadow-lg: 0 10px 15px -3px rgba(15, 41, 77, 0.04), 0 4px 6px -4px rgba(15, 41, 77, 0.04);
    --hotel-shadow-xl: 0 20px 25px -5px rgba(15, 41, 77, 0.07), 0 8px 10px -6px rgba(15, 41, 77, 0.07);

    --hotel-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Spacing & Layout --- */
.hotel-homepage-wrapper,
.search-result-wrapper,
.hotel-review-page {
    color: var(--hotel-text-dark);
}

/* --- Section Typography --- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hotel-primary);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* --- Custom Badge & Eyebrow --- */
.hotel-badge-accent {
    background-color: var(--hotel-accent-subtle);
    color: var(--hotel-accent);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--hotel-radius-pill);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* --- Button Styling --- */
.btn-hotel-pill {
    border-radius: var(--hotel-radius-pill) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: var(--hotel-transition) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-hotel-primary {
    background-color: var(--hotel-accent) !important;
    border: 1px solid var(--hotel-accent) !important;
    color: #ffffff !important;
}

.btn-hotel-primary:hover,
.btn-hotel-primary:focus {
    background-color: var(--hotel-accent-hover) !important;
    border-color: var(--hotel-accent-hover) !important;
    box-shadow: 0 4px 12px rgba(255, 91, 53, 0.25) !important;
}

.btn-hotel-primary:active {
    transform: scale(0.96) !important;
}

.btn-hotel-outline {
    background-color: transparent !important;
    border: 1.5px solid var(--hotel-primary) !important;
    color: var(--hotel-primary) !important;
}

.btn-hotel-outline:hover,
.btn-hotel-outline:focus {
    background-color: var(--hotel-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 41, 77, 0.15) !important;
}

.btn-hotel-outline:active {
    transform: scale(0.96) !important;
}

.btn-hotel-accent-outline {
    background-color: transparent !important;
    border: 1.5px solid var(--hotel-accent) !important;
    color: var(--hotel-accent) !important;
}

.btn-hotel-accent-outline:hover {
    background-color: var(--hotel-accent) !important;
    color: #ffffff !important;
}

.btn-hotel-accent-outline:active {
    transform: scale(0.96) !important;
}

/* --- Card Modernization --- */
.card-hotel-modern {
    background: #ffffff;
    border: 1px solid var(--hotel-border) !important;
    border-radius: var(--hotel-radius-lg) !important;
    box-shadow: var(--hotel-shadow-sm) !important;
    transition: var(--hotel-transition) !important;
    overflow: hidden;
}

.card-hotel-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--hotel-shadow-xl) !important;
    border-color: var(--hotel-border-hover) !important;
}

.card-hotel-image-wrapper {
    position: relative;
    overflow: hidden;
}

.card-hotel-image-wrapper img {
    transition: transform 0.5s ease;
}

.card-hotel-modern:hover .card-hotel-image-wrapper img {
    transform: scale(1.04);
}

/* --- Form & Input Elements --- */
.hotel-form-group {
    margin-bottom: 1.25rem;
}

.hotel-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hotel-primary);
    margin-bottom: 0.4rem;
    display: block;
}

.hotel-form-control {
    border-radius: var(--hotel-radius-sm) !important;
    border: 1px solid var(--hotel-border) !important;
    padding: 10px 14px !important;
    font-size: 0.95rem !important;
    color: var(--hotel-text-dark) !important;
    transition: var(--hotel-transition) !important;
    background-color: #ffffff !important;
}

.hotel-form-control:focus {
    border-color: var(--hotel-accent) !important;
    box-shadow: 0 0 0 3px rgba(255, 91, 53, 0.15) !important;
    outline: none !important;
}

.hotel-form-control::placeholder {
    color: var(--hotel-text-muted);
    opacity: 0.7;
}

/* Custom Checkbox & Radio */
.hotel-checkbox-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--hotel-text-dark);
}

.hotel-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1.5px solid var(--hotel-border);
    border-radius: 4px;
    transition: var(--hotel-transition);
}

.hotel-checkbox-wrapper:hover input ~ .checkmark {
    border-color: var(--hotel-accent);
}

.hotel-checkbox-wrapper input:checked ~ .checkmark {
    background-color: var(--hotel-accent);
    border-color: var(--hotel-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.hotel-checkbox-wrapper input:checked ~ .checkmark:after {
    display: block;
}

.hotel-checkbox-wrapper .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* --- Search Filter Sidebar --- */
.filter-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hotel-primary);
    border-bottom: 1.5px solid var(--hotel-border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.filter-section {
    margin-bottom: 25px;
}

/* --- Room Selection Styling --- */
.room-card-modern {
    border: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius-lg);
    background: #ffffff;
    overflow: hidden;
    padding: 16px;
    transition: var(--hotel-transition);
}

.room-card-modern:hover {
    border-color: var(--hotel-accent);
    box-shadow: 0 8px 24px rgba(255, 91, 53, 0.06);
}

.room-qty-select-modern {
    background-color: var(--hotel-bg-light) !important;
    border: 1.5px solid var(--hotel-border) !important;
    border-radius: var(--hotel-radius-sm) !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
    color: var(--hotel-primary) !important;
    transition: var(--hotel-transition) !important;
}

.room-qty-select-modern:focus {
    border-color: var(--hotel-accent) !important;
    box-shadow: 0 0 0 3px rgba(255, 91, 53, 0.15) !important;
}

/* --- Booking Summary Sidebar --- */
.summary-card-sticky {
    border: 1px solid var(--hotel-border) !important;
    border-radius: var(--hotel-radius-lg) !important;
    box-shadow: var(--hotel-shadow-md) !important;
    overflow: hidden;
}

.summary-header {
    background-color: var(--hotel-primary) !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
}

.summary-body {
    padding: 20px !important;
}

/* --- Step Indicators --- */
.booking-steps-modern {
    background: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid var(--hotel-border);
    margin-bottom: 30px;
}

.step-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-num-modern {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--hotel-bg-light);
    border: 2px solid var(--hotel-border);
    color: var(--hotel-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    z-index: 2;
    transition: var(--hotel-transition);
}

.step-item-modern.completed .step-num-modern {
    background-color: var(--hotel-primary);
    border-color: var(--hotel-primary);
    color: #ffffff;
}

.step-item-modern.active .step-num-modern {
    background-color: var(--hotel-accent);
    border-color: var(--hotel-accent);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 91, 53, 0.15);
}

.step-label-modern {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hotel-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-item-modern.active .step-label-modern,
.step-item-modern.completed .step-label-modern {
    color: var(--hotel-primary);
}

.step-line-modern {
    height: 2px;
    background-color: var(--hotel-border);
    flex-grow: 1;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.step-line-modern.completed {
    background-color: var(--hotel-primary);
}

/* --- Shimmer Loading Skeleton --- */
.hotel-shimmer {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.6s infinite;
}

@keyframes loading-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* --- Responsive Helpers --- */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.6rem;
    }
}

/* --- Map View Styles --- */

.hotel-map-container {
    background: #f8fafc;
    z-index: 10;
}

.hotel-card-item.hover-highlight {
    z-index: 5;
}

.hotel-card-item.hover-highlight .card-hotel-list {
    box-shadow: 0 0 0 2px #0071c2, 0 12px 24px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px);
}

body.map-mode-active .hotel-card-item.hover-highlight .card-hotel-list {
    /* Styles are handled in hotel-card.blade.php for map mode */
}

.marker-hovered .hotel-custom-icon div,
.marker-hovered .hotel-cluster-icon div {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    z-index: 1000 !important;
}

/* Default split view container fallback */
.hotel-list-col {
    flex: 1;
    width: 100%;
}

/* --- Full Map Mode Layout --- */
body.map-mode-active .search-result-wrapper {
    padding: 0 !important;
    height: calc(100vh - 80px); /* Adjust based on global header height */
    overflow: hidden;
}

body.map-mode-active .search-result-wrapper > .container {
    max-width: 100% !important;
    padding: 0 !important;
    height: 100%;
}

body.map-mode-active .search-result-wrapper > .container > .row {
    margin: 0 !important;
    flex-wrap: nowrap !important;
    height: 100%;
}

body.map-mode-active #filterSidebarCol {
    width: 340px !important;
    flex: 0 0 340px !important;
    max-width: 340px !important;
    height: 100%;
    overflow-y: auto;
    padding: 20px 20px 80px 20px;
    background: #fff;
    border-right: 1px solid var(--hotel-border);
    margin-bottom: 0 !important;
}

body.map-mode-active .col-lg-9 {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.map-mode-active #topControlsBar {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    flex-shrink: 0;
}

body.map-mode-active .hotel-split-view-container {
    flex: 1;
    display: flex;
    overflow: hidden;
    height: 100%;
}

body.map-mode-active .hotel-list-col {
    width: 410px !important;
    flex: 0 0 410px !important;
    height: 100%;
    padding: 14px 12px 80px 14px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: var(--hotel-bg-light);
}

body.map-mode-active .hotel-map-col {
    flex: 1 1 auto !important;
    width: auto !important;
    padding-left: 0 !important;
    display: block !important;
    height: 100%;
    position: relative;
}

/* Floating Close Map Button (Góc phải bản đồ) */
.btn-close-map {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1050;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.btn-close-map:hover {
    background-color: #ffffff;
    color: #ff5b35;
    border-color: #ff5b35;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn-close-map:active {
    transform: scale(0.95);
}

body.map-mode-active #hotelMapContainer {
    height: 100% !important;
    top: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Align Top Controls Bar with Hotel List Column in Map Mode */
body.map-mode-active #topControlsBar {
    display: none !important;
}

body.map-mode-active #hotelList {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

body.map-mode-active .hotel-card-item {
    margin-bottom: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.map-mode-active .card-hotel-list {
    flex-direction: row !important;
    display: flex !important;
    min-height: 190px !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 1.25rem !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.map-mode-active .card-hotel-list:hover,
body.map-mode-active .hotel-card-item.hover-highlight .card-hotel-list {
    border: 2px solid #0071c2 !important;
    box-shadow: 0 8px 24px rgba(0, 113, 194, 0.22) !important;
    transform: translateY(-2px) !important;
}

body.map-mode-active .card-hotel-list .hotel-list-image {
    flex: 0 0 140px !important;
    width: 140px !important;
    max-width: 140px !important;
    height: auto !important;
    min-height: 190px !important;
    overflow: hidden !important;
}

body.map-mode-active .card-hotel-list .hotel-list-image .hotel-cover-image,
body.map-mode-active .card-hotel-list .hotel-list-image .d-flex {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

body.map-mode-active .card-hotel-list .card-body {
    flex: 1 1 auto !important;
    width: calc(100% - 140px) !important;
    padding: 12px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

body.map-mode-active .card-hotel-list .card-body .row {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

body.map-mode-active .card-hotel-list .card-body .col-md-8,
body.map-mode-active .card-hotel-list .card-body .col-md-4,
body.map-mode-active .card-hotel-list .card-body .col-12 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    float: none !important;
    padding: 0 !important;
    border: none !important;
}

body.map-mode-active .card-hotel-list .card-body h4 {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
}

body.map-mode-active .card-hotel-list .card-body .col-md-4 {
    margin-top: 8px !important;
    padding-top: 8px !important;
    border-top: 1px dashed #e0e0e0 !important;
    box-sizing: border-box !important;
}

body.map-mode-active .card-hotel-list .card-body .col-md-4,
body.map-mode-active .card-hotel-list .card-body .col-md-4 *,
body.map-mode-active .card-hotel-list .card-body .col-md-4 div {
    align-items: flex-end !important;
    text-align: right !important;
    float: none !important;
}

body.map-mode-active .card-hotel-list .room-details-box {
    display: none !important;
}

body.map-mode-active .card-hotel-list .card-body .col-md-4 .btn {
    display: none !important;
}

.hotel-card-view-map {
    transition: color 0.15s ease, transform 0.15s ease;
}

.hotel-card-view-map:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}



/* Custom Marker Styles */
.hotel-map-icon-wrapper {
    /* No default styles, let leaflet position the wrapper with 0 size */
}

.hotel-marker-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: var(--hotel-transition);
}

.hotel-price-marker {
    background: #ffffff;
    border: 1.5px solid var(--hotel-primary);
    color: var(--hotel-primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--hotel-radius-pill);
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
}

.hotel-price-marker.sold-out {
    color: var(--hotel-text-muted);
    background: #f8fafc;
    border-color: #cbd5e1;
    font-weight: 600;
}

.hotel-price-marker.loading-price {
    border-color: #e2e8f0;
    background: #ffffff;
}

/* Triangle pointer */
.hotel-price-marker::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    margin-left: -6px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--hotel-primary) transparent transparent transparent;
    transition: border-color 0.3s ease;
}

.hotel-price-marker.sold-out::after {
    border-color: #cbd5e1 transparent transparent transparent;
}
.hotel-price-marker.loading-price::after {
    border-color: #e2e8f0 transparent transparent transparent;
}

.marker-hovered .hotel-marker-inner {
    z-index: 1000 !important;
}

.marker-hovered .hotel-price-marker {
    transform: translateY(-8px) scale(1.05);
    background: var(--hotel-accent);
    color: #ffffff;
    border-color: var(--hotel-accent);
    box-shadow: 0 10px 25px rgba(255, 91, 53, 0.4);
}
.marker-hovered .hotel-price-marker::after {
    border-color: var(--hotel-accent) transparent transparent transparent;
}

.marker-selected .hotel-marker-inner {
    z-index: 1100 !important;
}

.marker-selected .hotel-price-marker {
    transform: translateY(-8px) scale(1.05);
    background: var(--hotel-text-dark);
    color: #ffffff;
    border-color: var(--hotel-text-dark);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.4);
}
.marker-selected .hotel-price-marker::after {
    border-color: var(--hotel-text-dark) transparent transparent transparent;
}

.hotel-cluster-icon-wrapper {
    /* To offset leaf cluster icon */
}

.hotel-cluster-marker {
    background: var(--hotel-primary);
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 41, 77, 0.2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-cluster-marker:hover {
    transform: scale(1.1);
    background: var(--hotel-accent);
    box-shadow: 0 6px 16px rgba(255, 91, 53, 0.3);
}

/* Map Popup */
.hotel-map-popup .leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    border: none;
}
.hotel-map-popup .leaflet-popup-content {
    margin: 0;
    width: 260px !important;
}
.hotel-map-popup .leaflet-popup-tip-container {
    margin-top: -1px;
}


/* ==========================================
   AUTO-EXTRACTED CSS FROM BLADE FILES
   ========================================== */

/* --- Extracted from: _faq.blade.php --- */
.custom-faq-accordion .accordion-item {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    background-color: transparent !important;
}
.custom-faq-accordion .accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}
.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #006ce4 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.custom-faq-accordion .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

/* --- Extracted from: index.blade.php --- */
.hotel-dest-wrapper {
                    position: relative;
                }
                .hotel-dest-btn {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 44px;
                    height: 44px;
                    background: #fff;
                    border: 1px solid #eaeaea;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
                    cursor: pointer;
                    z-index: 10;
                    color: #0b2b3c;
                    transition: all 0.2s ease;
                }
                .hotel-dest-btn:hover {
                    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
                }
                .hotel-dest-btn.prev {
                    left: -54px;
                }
                .hotel-dest-btn.next {
                    right: -54px;
                }
                @media(max-width: 1400px) {
                    .hotel-dest-btn.prev { left: -22px; }
                    .hotel-dest-btn.next { right: -22px; }
                }
                @media(max-width: 768px) {
                    .hotel-dest-btn.prev { left: 8px; }
                    .hotel-dest-btn.next { right: 8px; }
                }
                .hotel-dest-scroll {
                    display: flex;
                    flex-wrap: nowrap;
                    gap: 1rem;
                    overflow-x: auto;
                    scroll-behavior: smooth;
                    scrollbar-width: none;
                    -ms-overflow-style: none;
                    scroll-snap-type: x mandatory;
                    padding-bottom: 10px;
                    margin: 0; /* Cho thẻ thẳng hàng với nội dung bên dưới */
                }
                .hotel-dest-scroll::-webkit-scrollbar {
                    display: none;
                }
                .hotel-dest-scroll > a {
                    scroll-snap-align: start;
                    flex-grow: 0 !important;
                    flex-shrink: 0 !important;
                    flex-basis: calc((100% - 7 * 1rem) / 8) !important;
                    min-width: 0 !important;
                    max-width: calc((100% - 7 * 1rem) / 8) !important;
                }
                @media(max-width: 1200px) {
                    .hotel-dest-scroll > a {
                        flex-basis: calc((100% - 5 * 1rem) / 6) !important;
                        max-width: calc((100% - 5 * 1rem) / 6) !important;
                    }
                }
                @media(max-width: 992px) {
                    .hotel-dest-scroll > a {
                        flex-basis: calc((100% - 3 * 1rem) / 4) !important;
                        max-width: calc((100% - 3 * 1rem) / 4) !important;
                    }
                }
                @media(max-width: 768px) {
                    .hotel-dest-scroll > a {
                        flex-basis: calc((100% - 1rem) / 2) !important;
                        max-width: calc((100% - 1rem) / 2) !important;
                    }
                }
                .hotel-dest-dots {
                    display: flex;
                    justify-content: center;
                    gap: 8px;
                    margin-top: 16px;
                }
                .hotel-dest-dot {
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background-color: #cbd5e1;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
                .hotel-dest-dot.active {
                    background-color: #0b2b3c;
                }

/* --- Extracted from: detail.blade.php --- */
:root {
            --main-color: rgba(0, 108, 129, 1);
            --ivivu-blue: var(--main-color);
            --hotel-primary: var(--main-color);
            --hotel-accent: var(--main-color);
            --ivivu-orange: #F96D01;
            --ivivu-orange-hover: #e06200;
            --ivivu-gray: #F5F5F5;
            --ivivu-text: #333333;
        }
        body {
            color: var(--ivivu-text);
            font-family: 'Roboto', sans-serif;
        }

        .hotel-detail-page {
            width: 100%;
            max-width: 100%;
            overflow-x: clip;
        }

        /* Đồng nhất Font Chữ mặc định ('Roboto', sans-serif) giống Máy bay & Tàu hỏa cho toàn bộ trang Detail & Modal */
        .hotel-detail-page,
        .hotel-detail-page h1, .hotel-detail-page h2, .hotel-detail-page h3,
        .hotel-detail-page h4, .hotel-detail-page h5, .hotel-detail-page h6,
        .hotel-detail-page p, .hotel-detail-page span, .hotel-detail-page a,
        .hotel-detail-page button, .hotel-detail-page input, .hotel-detail-page select,
        .hotel-detail-page td, .hotel-detail-page th, .hotel-detail-page .nav-link,
        .hotel-detail-page .badge,
        .modal-content, .modal-content * {
            font-family: 'Roboto', sans-serif !important;
        }

        /* Color Overrides cho toàn bộ trang Detail & Modal */
        .hotel-detail-page .text-primary,
        .hotel-detail-page a.text-primary,
        .hotel-detail-page i.text-primary,
        .hotel-detail-page .breadcrumb-link {
            color: var(--main-color) !important;
        }

        .hotel-detail-page .bg-primary,
        .hotel-detail-page .btn-primary,
        .hotel-detail-page .badge-primary,
        .modal-content .bg-primary,
        .modal-content .btn-primary {
            background-color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }

        .hotel-detail-page .btn-outline-primary,
        .modal-content .btn-outline-primary {
            color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }
        .hotel-detail-page .btn-outline-primary:hover,
        .modal-content .btn-outline-primary:hover {
            background-color: var(--main-color) !important;
            color: #ffffff !important;
        }

        .hotel-detail-page .border-primary {
            border-color: var(--main-color) !important;
        }

        /* Modal Room Confirmation Buttons Styling */
        .btn-modal-search-again {
            background-color: #006C81 !important;
            color: #ffffff !important;
            border: none !important;
            border-radius: 999px !important;
            padding: 13px 24px !important;
            font-weight: 700 !important;
            font-size: 1rem !important;
            width: 100% !important;
            box-shadow: 0 4px 14px rgba(0, 108, 129, 0.3) !important;
            transition: all 0.25s ease !important;
            display: inline-block;
            text-align: center;
            text-decoration: none;
        }

        .btn-modal-search-again:hover {
            background-color: #005667 !important;
            color: #ffffff !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 6px 18px rgba(0, 108, 129, 0.4) !important;
        }

        .btn-modal-choose-room {
            background-color: #ffffff !important;
            color: #006C81 !important;
            border: 2px solid #006C81 !important;
            border-radius: 999px !important;
            padding: 12px 24px !important;
            font-weight: 600 !important;
            font-size: 1rem !important;
            width: 100% !important;
            transition: all 0.25s ease !important;
            display: inline-block;
            text-align: center;
            text-decoration: none;
        }

        .btn-modal-choose-room:hover {
            background-color: #f0f9ff !important;
            color: #005667 !important;
            border-color: #005667 !important;
            transform: translateY(-1px) !important;
        }

        /* Custom Text Colors */
        .text-ivivu-orange { color: var(--ivivu-orange) !important; }
        .text-ivivu-blue { color: var(--main-color) !important; }

        /* Custom Buttons */
        .btn-ivivu-orange {
            background-color: var(--ivivu-orange);
            color: white;
            border: none;
        }
        .btn-ivivu-orange:hover {
            background-color: var(--ivivu-orange-hover);
            color: white;
        }

        /* Utilities & Typography Font-Size Hierarchy */
        .star-rating { color: #fadb14; }


   

        /* Breadcrumb */
        .breadcrumb-link {
            color: var(--main-color);
            text-decoration: none;
        }
        .breadcrumb-link:hover { text-decoration: underline; }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: repeat(2, 198px);
            gap: 4px;
            border-radius: 0.5rem;
            overflow: hidden;
        }
        .gallery-main {
            grid-column: 1;
            grid-row: 1 / span 2;
        }
        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .more-photos-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            cursor: pointer;
        }

        /* Combo Box */
        .combo-box {
            background-color: #fff8f0;
            border: 1px solid #ffe8cc;
            border-radius: 0.5rem;
        }

        /* Search Bar */
        .search-bar {
            background-color: #ffffff;
            border-radius: 0.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 1rem;
        }
        .search-input-group {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 0.375rem;
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
        }
        .search-input-group input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
        }

        /* Cards */
        .room-card {
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            background-color: #ffffff;
        }
        .rate-card {
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            background-color: #ffffff;
            display: flex;
            margin-bottom: 1rem;
            position: relative;
        }
        .rate-card.best-seller {
            border-color: #38bdf8;
        }
        .rate-card-left {
            padding: 1rem;
            flex: 2;
            border-right: 1px solid #f1f5f9;
        }
        .rate-card-right {
            padding: 1rem;
            flex: 1;
            background-color: #f8fafc;
            border-radius: 0 0.5rem 0.5rem 0;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
        }
        .badge-best-seller {
            position: absolute;
            top: -1px;
            right: -1px;
            background-color: #38bdf8;
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 0 0.5rem 0 0.5rem;
        }

        /* Lists */
        ul.custom-list {
            padding-left: 1.2rem;
            margin-bottom: 0;
        }
        ul.custom-list li { margin-bottom: 0.25rem; }

        ul.offer-list {
            list-style: none;
            padding-left: 0;
        }
        ul.offer-list li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        ul.offer-list li i {
            margin-top: 0.25rem;
            margin-right: 0.5rem;
        }

        .icon-width { width: 20px; text-align: center; display: inline-block; }

        /* Review images */
        .review-img-scroll {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            padding-bottom: 1rem;
        }
        .review-img-scroll img, .review-img-scroll .more-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 0.375rem;
            flex-shrink: 0;
        }
        .review-img-scroll .more-img {
            background-color: #343a40;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            cursor: pointer;
        }

        /* Responsive max-width: 768px */
        @media (max-width: 768px) {
            /* Container & Layout */
            .hotel-detail-page .container {
                padding-left: 12px !important;
                padding-right: 12px !important;
                max-width: 100% !important;
            }

            /* Header adjustments */
            .header-container {
                flex-direction: column;
            }
            .header-actions {
                align-items: stretch !important;
                margin-top: 1rem;
                width: 100%;
            }
            .header-actions .btn-ivivu-orange {
                width: 100%;
            }
            .header-actions .action-buttons {
                width: 100%;
                justify-content: space-between;
            }

            /* Gallery Grid */
            .gallery-grid {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                grid-template-rows: 200px 100px;
                width: 100%;
                max-width: 100%;
            }
            .gallery-main {
                grid-column: 1 / span 2;
                grid-row: 1;
            }
            .gallery-grid > *:nth-child(3),
            .gallery-grid > *:nth-child(4) {
                display: none; /* Ẩn bớt 2 ảnh nhỏ để tối ưu hiển thị trên mobile */
            }

            /* Search Bar */
            .search-input-group {
                margin-bottom: 0.5rem;
            }
            .search-bar .col-md-1 button {
                padding: 0.75rem;
            }

            /* Rate Card */
            .rate-card {
                flex-direction: column;
                width: 100%;
                max-width: 100%;
            }
            .rate-card-left {
                border-right: none;
                border-bottom: 1px solid #f1f5f9;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .rate-card .rate-card-right {
                border-radius: 0 0 0.5rem 0.5rem;
                align-items: flex-start;
                text-align: left !important;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            /* Room Details Image */
            .room-card img {
                height: 200px !important;
            }
        }

/* --- Extracted from: _favorite_section.blade.php --- */
.btn-remove-favorite-section:hover {
        background-color: #dc3545 !important;
        color: #ffffff !important;
        transform: scale(1.1);
    }

/* --- Extracted from: _popular_destinations.blade.php --- */
.trending-dest-card {
    height: 240px;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trending-dest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12) !important;
}
.trending-dest-img {
    border-radius: 16px !important;
    transition: transform 0.5s ease;
}
.trending-dest-card:hover .trending-dest-img {
    transform: scale(1.03);
}
.trending-dest-overlay {
    border-radius: 16px !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s ease;
}
.trending-dest-title {
    font-size: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 2;
}
@media(max-width: 768px) {
    .trending-dest-card {
        height: 180px;
        border-radius: 12px !important;
    }
    .trending-dest-img, .trending-dest-overlay {
        border-radius: 12px !important;
    }
    .trending-dest-title {
        font-size: 1.25rem;
    }
}

/* --- Extracted from: hotel-card.blade.php --- */
.transition-hover {
        transition: all 0.3s ease;
    }

    .transition-hover:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
    }

    /* Skeleton Loading Animation */
    @keyframes skeleton-loading {
        0% {
            background-color: #e2e5e7;
        }

        100% {
            background-color: #f1f3f5;
        }
    }

    .skeleton-box {
        animation: skeleton-loading 1s linear infinite alternate;
    }

    .hydrate-fade-in {
        animation: fadeIn 0.5s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @media (min-width: 768px) {
        .border-start-md {
            border-left: 1px dashed #e0e0e0;
        }
    }

    .hotel-list-image {
        flex: 0 0 240px;
        width: 240px;
        position: relative;
        overflow: hidden;
        align-self: stretch;
        border-top-left-radius: 1.25rem;
        border-bottom-left-radius: 1.25rem;
    }

    .hotel-list-image .hotel-cover-image,
    .hotel-list-image .d-flex {
        position: absolute;
        top: 0;
        left: 0;
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        border-top-left-radius: 1.25rem;
        border-bottom-left-radius: 1.25rem;
    }

    @media (max-width: 767.98px) {
        .hotel-list-image {
            flex: 0 0 auto;
            width: 100%;
            height: 200px;
            min-height: 200px;
            position: relative;
            border-bottom-left-radius: 0;
            border-top-right-radius: 1.25rem;
        }

        .hotel-list-image .hotel-cover-image,
        .hotel-list-image .d-flex {
            position: absolute;
            top: 0;
            left: 0;
            height: 200px !important;
            border-bottom-left-radius: 0;
            border-top-right-radius: 1.25rem;
        }
    }

    body.map-mode-active .hotel-card-item {
        margin-bottom: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.map-mode-active .card-hotel-list {
        flex-direction: row !important;
        display: flex !important;
        min-height: 190px !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 1.25rem !important;
        border: 1px solid #e2e8f0 !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    body.map-mode-active .card-hotel-list:hover,
    body.map-mode-active .hotel-card-item.hover-highlight .card-hotel-list {
        border: 2px solid #0071c2 !important;
        box-shadow: 0 8px 24px rgba(0, 113, 194, 0.22) !important;
        transform: translateY(-2px) !important;
    }

    body.map-mode-active .card-hotel-list .hotel-list-image {
        flex: 0 0 140px !important;
        width: 140px !important;
        max-width: 140px !important;
        height: auto !important;
        min-height: 190px !important;
        overflow: hidden !important;
    }

    body.map-mode-active .card-hotel-list .hotel-list-image .hotel-cover-image,
    body.map-mode-active .card-hotel-list .hotel-list-image .d-flex {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
    }

    body.map-mode-active .card-hotel-list .card-body {
        flex: 1 1 auto !important;
        width: calc(100% - 140px) !important;
        padding: 12px 14px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }

    body.map-mode-active .card-hotel-list .card-body .row {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }

    body.map-mode-active .card-hotel-list .card-body .col-md-8,
    body.map-mode-active .card-hotel-list .card-body .col-md-4,
    body.map-mode-active .card-hotel-list .card-body .col-12 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        float: none !important;
        padding: 0 !important;
        border: none !important;
    }

    body.map-mode-active .card-hotel-list .card-body h4 {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
    }

    body.map-mode-active .card-hotel-list .card-body .col-md-4 {
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 1px dashed #e0e0e0 !important;
        box-sizing: border-box !important;
    }

    body.map-mode-active .card-hotel-list .card-body .col-md-4,
    body.map-mode-active .card-hotel-list .card-body .col-md-4 *,
    body.map-mode-active .card-hotel-list .card-body .col-md-4 div {
        align-items: flex-end !important;
        text-align: right !important;
        float: none !important;
    }

    body.map-mode-active .card-hotel-list .room-details-box {
        display: none !important;
    }

    body.map-mode-active .card-hotel-list .card-body .col-md-4 .btn {
        display: none !important;
    }

/* --- Extracted from: index.blade.php --- */
:root {
        --main-color: rgba(0, 108, 129, 1);
        --hotel-primary: var(--main-color);
        --hotel-accent: var(--main-color);
        --bs-primary: var(--main-color);
    }

    .search-result-wrapper,
    .filter-sidebar,
    #mobileFilterCanvas {
        font-family: 'Roboto', sans-serif !important;
    }

    .search-result-wrapper .text-primary,
    .search-result-wrapper a.text-primary,
    .search-result-wrapper i.text-primary,
    #mobileFilterCanvas .text-primary,
    .filter-sidebar .text-primary {
        color: var(--main-color) !important;
    }

    .search-result-wrapper .bg-primary,
    #mobileFilterCanvas .bg-primary,
    .filter-sidebar .bg-primary {
        background-color: var(--main-color) !important;
    }

    .search-result-wrapper .btn-primary,
    #btnMobileMapToggle,
    #btnToggleMapSidebar {
        background-color: var(--main-color) !important;
        border-color: var(--main-color) !important;
    }

    .search-result-wrapper .btn-primary:hover,
    #btnMobileMapToggle:hover,
    #btnToggleMapSidebar:hover {
        background-color: rgba(0, 90, 108, 1) !important;
        border-color: rgba(0, 90, 108, 1) !important;
    }

    .search-result-wrapper .btn-outline-primary {
        color: var(--main-color) !important;
        border-color: var(--main-color) !important;
    }

    .search-result-wrapper .btn-outline-primary:hover,
    .search-result-wrapper .btn-outline-primary:active,
    .search-result-wrapper .btn-outline-primary.active {
        background-color: var(--main-color) !important;
        border-color: var(--main-color) !important;
        color: #ffffff !important;
    }

    .search-result-wrapper .form-check-input:checked {
        background-color: var(--main-color) !important;
        border-color: var(--main-color) !important;
    }

    .search-result-wrapper .form-select:focus,
    .search-result-wrapper .form-control:focus {
        border-color: var(--main-color) !important;
        box-shadow: 0 0 0 0.25rem rgba(0, 108, 129, 0.25) !important;
    }

    /* Animations and Skeletons */
    .skeleton-card {
        position: relative;
        overflow: hidden;
    }

    .skeleton-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        background-image: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.4) 20%,
                rgba(255, 255, 255, 0.6) 60%,
                rgba(255, 255, 255, 0) 100%);
        animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
        100% {
            transform: translateX(100%);
        }
    }

/* --- Extracted from: confirmation.blade.php --- */
:root {
            --main-color: rgba(0, 108, 129, 1);
            --hotel-primary: var(--main-color);
            --hotel-accent: var(--main-color);
        }
        .btn-hotel-primary {
            background-color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }
        .btn-hotel-outline {
            color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }

/* --- Extracted from: _filter_sidebar.blade.php --- */
.hotel-map-widget-card:hover #btnToggleMapSidebar {
        background-color: rgba(0, 90, 108, 1) !important;
        border-color: rgba(0, 90, 108, 1) !important;
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 108, 129, 0.55) !important;
    }
    .hotel-map-widget-card:hover {
        border-color: var(--main-color) !important;
        box-shadow: 0 8px 24px rgba(0, 108, 129, 0.18) !important;
    }
    /* Hide Leaflet default controls on mini map */
    #hotelSidebarMiniMap .leaflet-control-container {
        display: none !important;
    }
.filter-btn-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        .filter-btn-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 8px 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            background-color: #fff;
            user-select: none;
            font-size: 14px;
            color: #475569;
            height: 100%;
        }
        .filter-btn-label:hover {
            border-color: #cbd5e1;
        }
        .filter-btn-input:checked + .filter-btn-label {
            border-color: var(--hotel-accent, #ff5e1f);
            background-color: #fff5f0;
            color: var(--hotel-accent, #ff5e1f);
            font-weight: 600;
        }
        .filter-btn-input:checked + .filter-btn-label .text-warning {
            color: var(--hotel-accent, #ff5e1f) !important;
        }
        .filter-btn-input {
            display: none;
        }

/* --- Extracted from: _pagination.blade.php --- */
.pagination .page-item .page-link {
    border: 1px solid #e5e7eb;
    color: #4b5563;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}
.pagination .page-item.active .page-link {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
.pagination .page-item:hover:not(.active) .page-link {
    background-color: #f3f4f6;
    color: var(--main-color);
}

/* --- Extracted from: search-form-hero.blade.php --- */
/* Scoped styles cho search form hero mới */
        #theme_search_form_hero {
            padding: 4px 0;
            width: 100%;
        }

        #theme_search_form_hero .search-form-container {
            background-color: white;
            border-radius: 16px;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 0 auto;
            width: 100%;
            position: relative;
        }

        #theme_search_form_hero .search-field {
            background-color: #f3f4f6;
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.2s, border 0.2s;
            border: 1px solid transparent;
            height: 64px;
            position: relative;
            overflow: visible;
        }

        #theme_search_form_hero .search-field:hover {
            background-color: #e5e7eb;
        }

        #theme_search_form_hero .search-field.active {
            background-color: white;
            border: 1px solid #ff5e1f;
        }

        #theme_search_form_hero .search-field-icon {
            font-size: 1.2rem;
            color: #4b5563;
            margin-right: 12px;
            width: 24px;
            text-align: center;
            pointer-events: none;
        }

        #theme_search_form_hero .search-field-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            overflow: visible;
            width: 100%;
        }

        #theme_search_form_hero .search-field-label {
            font-size: 0.75rem;
            color: #4b5563;
            font-weight: 600;
            margin-bottom: 2px;
            text-transform: none;
            letter-spacing: normal;
            pointer-events: none;
        }

        #theme_search_form_hero .search-field-value {
            font-size: 0.95rem;
            color: #111827;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border: none;
            background: transparent;
            outline: none;
            padding: 0;
            width: 100%;
        }

        #theme_search_form_hero .search-field-value::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

        /* Check-in / Check-out */
        #theme_search_form_hero .date-field-content {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }

        #theme_search_form_hero .date-block {
            display: flex;
            flex-direction: column;
            flex: unset;
            padding: 0;
            height: auto;
            justify-content: unset;
        }

        #theme_search_form_hero .date-label {
            font-size: 0.75rem;
            color: #4b5563;
            font-weight: 600;
            margin-bottom: 2px;
        }

        #theme_search_form_hero .date-value-wrapper {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        #theme_search_form_hero .date-number {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            line-height: 1;
        }

        #theme_search_form_hero .date-month-day {
            font-size: 0.75rem;
            color: #4b5563;
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        #theme_search_form_hero .date-separator {
            font-size: 0.75rem;
            color: #ff5e1f;
            background-color: white;
            padding: 2px 8px;
            border-radius: 12px;
            border: 1px solid #ff5e1f;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }

        #theme_search_form_hero .date-divider-line {
            height: 1px;
            background-color: #d1d5db;
            flex-grow: 1;
            margin: 0;
        }

        /* Nút Tìm kiếm */
        #theme_search_form_hero .btn-search {
            background-color: #ff5e1f;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 0 24px;
            font-weight: 600;
            font-size: 1rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            transition: background-color 0.2s;
        }

        #theme_search_form_hero .btn-search:hover {
            background-color: #e04a11;
            color: white;
        }

        #theme_search_form_hero .btn-more-options {
            background-color: #f3f4f6;
            border: none;
            border-radius: 12px;
            width: 48px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4b5563;
            transition: background-color 0.2s;
        }

        #theme_search_form_hero .btn-more-options:hover {
            background-color: #e5e7eb;
        }

        /* Dropdowns */
        #theme_search_form_hero .custom-dropdown {
            position: absolute;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            padding: 20px;
            z-index: 1000;
            display: none;
            top: calc(100% + 10px);
            border: 1px solid #f3f4f6;
        }

        #theme_search_form_hero .custom-dropdown.show {
            display: block;
        }

        /* Dropdown Khách & Phòng */
        #theme_search_form_hero #guestsRoomsDropdown {
            right: 15%;
            width: 320px;
        }

        #theme_search_form_hero .guest-option-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        #theme_search_form_hero .guest-option-row:last-child {
            border-bottom: none;
        }

        #theme_search_form_hero .guest-label {
            font-size: 0.95rem;
            color: #111827;
            font-weight: 500;
        }

        #theme_search_form_hero .guest-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #theme_search_form_hero .control-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
        }

        #theme_search_form_hero .control-btn:hover:not(:disabled) {
            border-color: #d1d5db;
            color: #111827;
            background-color: #f9fafb;
        }

        #theme_search_form_hero .control-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: #f9fafb;
        }

        #theme_search_form_hero .guest-count {
            width: 20px;
            text-align: center;
            font-size: 0.95rem;
            font-weight: 600;
            color: #111827;
        }

        /* Autocomplete Result List style */
        #theme_search_form_hero .autocomplete-result-list {
            background: #ffffff !important;
            border-radius: 16px !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid #f3f4f6 !important;
            padding: 10px 0 !important;
            margin-top: 24px !important;
            max-height: 380px !important;
            overflow-y: auto !important;
            z-index: 1050 !important;
            position: absolute;
            left: 0;
            width: 100%;
            min-width: 520px;
        }

        /* Tùy chỉnh màu xám cho các card lịch sử và tag */
        .bg-custom-light {
            background-color: #f7f7f7;
        }

        /* Hiệu ứng hover cho danh sách */
        .hover-bg-light {
            transition: background-color 0.2s ease;
        }
        .hover-bg-light:hover {
            background-color: #f8f9fa !important;
        }

        /* Màu cam đặc trưng cho text nổi bật */
        .text-orange {
            color: #f26a21;
        }
        
        /* Chỉnh lại icon xóa */
        .btn-trash {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 5px !important;
        }
        .btn-trash i {
            font-size: 1.25rem !important;
        }
        .btn-trash:hover {
            color: #dc3545 !important;
        }

        #theme_search_form_hero .autocomplete-result {
            transition: background-color 0.2s !important;
            background-image: none !important;
        }

        #theme_search_form_hero .autocomplete-result:hover,
        #theme_search_form_hero .autocomplete-result[aria-selected="true"] {
            background-color: #f8f9fa !important;
        }

        #theme_search_form_hero .autocomplete-result i {
            width: 24px;
            font-size: 20px !important;
            text-align: center;
        }

        #theme_search_form_hero .autocomplete-header {
            padding: 10px 20px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            color: #9ca3af;
            background-color: #f9fafb;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            gap: 8px;
            pointer-events: none;
        }

        #theme_search_form_hero .destination-input-wrapper {
            position: static;
            width: 100%;
        }

        /* Quick tags */
        #theme_search_form_hero .search-quick-tags {
            margin-top: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding: 0 10px;
        }

        #theme_search_form_hero .quick-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        #theme_search_form_hero .quick-label {
            font-size: 12px;
            font-weight: 600;
            color: #000000;
        }

        #theme_search_form_hero .quick-tag {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            color: #111827;
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
        }

        #theme_search_form_hero .quick-tag:hover {
            background: #ff5e1f;
            border-color: #ff5e1f;
            color: #ffffff;
            transform: translateY(-1px);
        }

        #theme_search_form_hero .quick-tag.active {
            background: #ff5e1f !important;
            border-color: #ff5e1f !important;
            color: #ffffff !important;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(255, 94, 31, 0.2);
        }

        /* History & Hot Destinations styles */
        #theme_search_form_hero .history-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            border: none;
            padding: 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            text-align: left;
            height: 100%;
        }

        #theme_search_form_hero .history-card:hover {
             background-color: #e9ecef;
        }
        
        #theme_search_form_hero .history-card-title {
            font-weight: 600;
            color: #343a40;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        #theme_search_form_hero .history-card-text {
            color: #6c757d;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }
        
        #theme_search_form_hero .btn-delete-history {
            color: #6c757d;
            background: none;
            border: none;
            padding: 0;
            font-size: 1.1rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        #theme_search_form_hero .btn-delete-history:hover {
            color: #dc3545;
        }

        #theme_search_form_hero .hot-destination-tag {
            background-color: #f8f9fa;
            color: #495057;
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            margin-right: 8px;
            margin-bottom: 12px;
            display: inline-block;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }

        #theme_search_form_hero .hot-destination-tag:hover {
            background-color: #e9ecef;
            color: #212529;
        }
        
        #theme_search_form_hero .section-title {
            font-size: 1rem;
            font-weight: 600;
            color: #343a40;
            margin-bottom: 16px;
        }

        #theme_search_form_hero #destinationHistoryDropdown {
            left: 0;
            top: calc(100% + 5px);
            min-width: 520px;
        }

        @media (max-width: 991px) {
            #theme_search_form_hero #destinationHistoryDropdown {
                min-width: 100%;
                width: 100%;
            }
        }

        /* Overrides flatpickr calendar */
        .flatpickr-calendar {
            border-radius: 16px !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid #f3f4f6 !important;
            padding: 6px !important;
        }

        /* Fix: calendar dính vào date field khi dùng appendTo */
        #datePickerGroupTrigger .flatpickr-calendar {
            position: absolute !important;
            top: calc(100% + 10px) !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 9999 !important;
        }

        .flatpickr-day.selected,
        .flatpickr-day.startRange,
        .flatpickr-day.endRange,
        .flatpickr-day.selected.inRange,
        .flatpickr-day.startRange.inRange,
        .flatpickr-day.endRange.inRange,
        .flatpickr-day.selected:focus,
        .flatpickr-day.startRange:focus,
        .flatpickr-day.endRange:focus,
        .flatpickr-day.selected:hover,
        .flatpickr-day.startRange:hover,
        .flatpickr-day.endRange:hover {
            background: #ff5e1f !important;
            border-color: #ff5e1f !important;
        }

        .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
        .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
        .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
            -webkit-box-shadow: -10px 0 0 #ff5e1f !important;
            box-shadow: -10px 0 0 #ff5e1f !important;
        }

        .flatpickr-day.inRange {
            background: #fff0ec !important;
            box-shadow: -5px 0 0 #fff0ec, 5px 0 0 #fff0ec !important;
        }

        /* Responsive */
        @media (max-width: 991px) {
            #theme_search_form_hero .search-form-container {
                padding: 16px;
            }
            #theme_search_form_hero .search-field {
                margin-bottom: 12px;
            }
            #theme_search_form_hero .date-field-content {
                flex-direction: row;
            }
            #theme_search_form_hero #guestsRoomsDropdown {
                right: 0;
                left: 0;
                width: 100%;
                position: fixed;
                top: auto;
                bottom: 0;
                border-radius: 24px 24px 0 0;
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
                padding: 24px;
                transform: translateY(100%);
                visibility: hidden;
                transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            }
            #theme_search_form_hero #guestsRoomsDropdown.show {
                transform: translateY(0);
                visibility: visible;
                display: block;
            }
            #theme_search_form_hero .search-quick-tags {
                margin-top: 10px;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }
            #theme_search_form_hero .quick-label {
                color: #000000;
            }
            #theme_search_form_hero .quick-tag {
                background: #ffffff;
                border: 1px solid #e5e7eb;
                color: #111827;
            }
        }

/* --- Extracted from: _navigation.blade.php --- */
#detailNavTabMenu {
    background-color: #ffffff !important;
    padding-top: 14px !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
#detailNavTabMenu .nav-link {
    color: #262626;
    border-bottom: 3px solid transparent !important;
    transition: all 0.2s ease;
    border-radius: 0 !important;
    font-size: 0.925rem;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
#detailNavTabMenu .nav-link:hover {
    color: var(--main-color) !important;
    border-bottom: 3px solid var(--main-color) !important;
}
#detailNavTabMenu .nav-link.active {
    color: var(--main-color) !important;
    border-bottom: 3px solid var(--main-color) !important;
    background: transparent !important;
    font-weight: 600 !important;
}
#detailNavTabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#detailNavTabs::-webkit-scrollbar {
    display: none;
}
@media (max-width: 768px) {
    #detailNavTabs .nav-item {
        flex: 0 0 auto !important;
    }
}

/* --- Extracted from: review.blade.php --- */
:root {
            --main-color: rgba(0, 108, 129, 1);
            --hotel-primary: var(--main-color);
            --hotel-accent: var(--main-color);
        }
        .btn-hotel-primary {
            background-color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }
        .btn-hotel-outline {
            color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }

/* --- Extracted from: search-form.blade.php --- */
/* Premium Hotel Search Box Design System */
        #theme_search_form {
            padding: 4px 0;
        }

        .hotel-search-bar {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: var(--hotel-shadow-soft);
            border: 1px solid var(--hotel-border-light);
            padding: 8px;
            transition: var(--hotel-transition-smooth);
            position: relative;
        }

        .hotel-search-bar:focus-within {
            box-shadow: 0 15px 45px rgba(15, 41, 77, 0.12);
            border-color: rgba(15, 41, 77, 0.15);
        }

        .search-item {
            position: relative;
            padding: 12px 24px;
            cursor: pointer;
            transition: var(--hotel-transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 16px;
            height: 100%;
        }

        .search-item:not(.button-item):hover {
            background-color: var(--hotel-bg-light);
        }

        /* Divider lines between items */
        .search-item:not(:first-child):not(.button-item)::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background-color: var(--hotel-border-light);
            transition: opacity 0.2s ease;
        }

        .search-item:hover::before,
        .search-item:hover + .search-item::before,
        .hotel-search-bar:focus-within .search-item::before {
            opacity: 0;
        }

        .search-item-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--hotel-text-muted);
            letter-spacing: 1px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-item-label i {
            font-size: 14px;
            color: var(--hotel-accent-orange);
        }

        .search-item-content {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        /* Destination block specific */
        .destination-item {
            border-radius: 16px 0 0 16px;
        }

        .destination-input-wrapper {
            width: 100%;
        }

        .destination-input-wrapper input {
            border: none !important;
            padding: 0 !important;
            font-size: 16px !important;
            font-weight: 700 !important;
            color: var(--hotel-text-dark) !important;
            background: transparent !important;
            box-shadow: none !important;
            width: 100%;
        }

        .destination-input-wrapper input::placeholder {
            color: #b0b0b0;
            font-weight: 500;
        }

        .destination-input-wrapper input:focus {
            outline: none !important;
        }

        .autocomplete-result-list {
            background: #ffffff !important;
            border-radius: 16px !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid #f3f4f6 !important;
            padding: 10px 0 !important;
            margin-top: 24px !important;
            max-height: 380px !important;
            overflow-y: auto !important;
            z-index: 1050 !important;
            min-width: 520px;
        }

        /* Tùy chỉnh màu xám cho các card lịch sử và tag */
        .bg-custom-light {
            background-color: #f7f7f7;
        }

        /* Hiệu ứng hover cho danh sách */
        .hover-bg-light {
            transition: background-color 0.2s ease;
        }
        .hover-bg-light:hover {
            background-color: #f8f9fa !important;
        }

        /* Màu cam đặc trưng cho text nổi bật */
        .text-orange {
            color: #f26a21;
        }

        /* Chỉnh lại icon xóa */
        .btn-trash {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 5px !important;
        }
        .btn-trash i {
            font-size: 1.25rem !important;
        }
        .btn-trash:hover {
            color: #dc3545 !important;
        }

        .autocomplete-result {
            transition: var(--hotel-transition-smooth) !important;
            background-image: none !important;
        }

        .autocomplete-result:hover,
        .autocomplete-result[aria-selected="true"] {
            background-color: #f8f9fa !important;
        }

        .autocomplete-result i {
            width: 24px;
            font-size: 20px !important;
            text-align: center;
        }

        .autocomplete-header {
            padding: 10px 24px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            color: #a0a0a0;
            background-color: var(--hotel-bg-light);
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            gap: 8px;
            pointer-events: none;
        }

        /* Date Picker block specific */
        .date-picker-group {
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 !important;
        }

        .date-block {
            flex: 1;
            padding: 12px 24px;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: center;
        }

        .date-display-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .date-value-large {
            font-size: 28px;
            font-weight: 800;
            color: var(--hotel-text-dark);
            line-height: 1;
        }

        .date-value-small {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .date-month {
            font-size: 12px;
            font-weight: 700;
            color: var(--hotel-text-dark);
        }

        .date-dayofweek {
            font-size: 11px;
            color: var(--hotel-text-muted);
        }

        .nights-badge-wrapper {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            pointer-events: none;
        }

        .nights-badge {
            background: #fff8f6;
            border: 1px solid rgba(255, 91, 53, 0.15);
            color: var(--hotel-accent-orange);
            border-radius: 100px;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(255, 91, 53, 0.08);
            display: inline-block;
        }

        /* Guests & Rooms block */
        .guests-summary-text {
            font-size: 16px;
            font-weight: 700;
            color: var(--hotel-text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        /* Guests & Rooms Popup Dropdown */
        .guests-rooms-dropdown {
            position: absolute;
            top: calc(100% + 14px);
            right: 0;
            width: 340px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 15px 45px rgba(15, 41, 77, 0.15);
            border: 1px solid var(--hotel-border-light);
            padding: 24px;
            z-index: 1040;
            cursor: default;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .guests-rooms-dropdown.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .row-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--hotel-text-dark);
        }

        .row-subtitle {
            font-size: 12px;
            color: var(--hotel-text-muted);
            margin-top: 2px;
        }

        .quantity-controller {
            background: var(--hotel-bg-light);
            border-radius: 100px;
            border: 1px solid var(--hotel-border-light);
            padding: 4px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .btn-qty {
            border: none;
            background: #ffffff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 16px;
            font-weight: 700;
            color: var(--hotel-accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
            transition: var(--hotel-transition-smooth);
        }

        .btn-qty:hover:not(:disabled) {
            background: var(--hotel-accent-orange);
            color: #ffffff;
            transform: scale(1.08);
        }

        .btn-qty:active {
            transform: scale(0.95);
        }

        .btn-qty:disabled {
            opacity: 0.35;
            cursor: not-allowed;
            box-shadow: none;
        }

        .qty-value {
            font-size: 15px;
            font-weight: 700;
            color: var(--hotel-text-dark);
            width: 20px;
            text-align: center;
        }

        /* Search Button Block */
        .button-item {
            padding: 6px !important;
            display: flex;
            align-items: stretch;
            justify-content: center;
        }

        .btn-search-hotel {
            background: var(--hotel-accent-orange);
            color: #ffffff;
            border: none;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 600;
            padding: 14px 28px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(255, 91, 53, 0.22);
            transition: var(--hotel-transition-smooth);
            cursor: pointer;
        }

        .btn-search-hotel:hover {
            background: var(--hotel-accent-orange-hover);
            box-shadow: 0 8px 25px rgba(255, 91, 53, 0.32);
            transform: translateY(-1.5px) scale(1.01);
            color: #ffffff;
        }

        .btn-search-hotel:active {
            transform: translateY(0) scale(0.99);
        }

        .btn-search-hotel:disabled {
            background: #cccccc;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }

        /* Quick actions tags below search bar */
        .search-quick-tags {
            margin-top: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding: 0 10px;
        }

        .quick-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .quick-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Dark background color for label when search box is outside hero overlay */
        .search-box-wrapper .quick-label {
            color: var(--hotel-text-muted);
        }

        .quick-tag {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #ffffff;
            border-radius: 100px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--hotel-transition-smooth);
            user-select: none;
        }

        .search-box-wrapper .quick-tag {
            background: #ffffff;
            border: 1px solid var(--hotel-border-light);
            color: var(--hotel-text-dark);
        }

        .quick-tag:hover {
            background: var(--hotel-accent-orange);
            border-color: var(--hotel-accent-orange);
            color: #ffffff;
            transform: translateY(-1px);
        }

        .quick-tag.active {
            background: var(--hotel-accent-orange) !important;
            border-color: var(--hotel-accent-orange) !important;
            color: #ffffff !important;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(255, 91, 53, 0.2);
        }

        /* Flatpickr styling overrides */
        .flatpickr-calendar {
            border-radius: 18px !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
            border: 1px solid rgba(0, 0, 0, 0.05) !important;
            padding: 6px !important;
        }

        .flatpickr-day.selected,
        .flatpickr-day.startRange,
        .flatpickr-day.endRange,
        .flatpickr-day.selected.inRange,
        .flatpickr-day.startRange.inRange,
        .flatpickr-day.endRange.inRange,
        .flatpickr-day.selected:focus,
        .flatpickr-day.startRange:focus,
        .flatpickr-day.endRange:focus,
        .flatpickr-day.selected:hover,
        .flatpickr-day.startRange:hover,
        .flatpickr-day.endRange:hover {
            background: var(--hotel-accent-orange) !important;
            border-color: var(--hotel-accent-orange) !important;
        }

        .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
        .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
        .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
            -webkit-box-shadow: -10px 0 0 var(--hotel-accent-orange) !important;
            box-shadow: -10px 0 0 var(--hotel-accent-orange) !important;
        }

        .flatpickr-day.inRange {
            background: #fff0ec !important;
            box-shadow: -5px 0 0 #fff0ec, 5px 0 0 #fff0ec !important;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .hotel-search-bar {
                display: flex;
                flex-direction: column;
                gap: 10px;
                background: transparent;
                border: none;
                box-shadow: none;
                padding: 0;
            }

            .search-item {
                background: #ffffff;
                border-radius: 16px !important;
                border: 1px solid var(--hotel-border-light);
                padding: 14px 20px;
                width: 100%;
            }

            .search-item:not(.button-item):hover {
                background-color: #ffffff;
            }

            .search-item::before {
                display: none !important;
            }

            .date-picker-group {
                flex-direction: row;
                gap: 0;
            }

            .date-block {
                padding: 0;
            }

            .nights-badge-wrapper {
                position: static;
                transform: none;
                display: flex;
                align-items: center;
                justify-content: center;
                width: auto;
                padding: 0 10px;
            }

            /* Bottom Sheet drawer style for Guests Mobile */
            .guests-rooms-dropdown {
                width: 100%;
                left: 0 !important;
                right: 0 !important;
                position: fixed;
                top: auto;
                bottom: 0;
                border-radius: 24px 24px 0 0;
                box-shadow: 0 -10px 40px rgba(15, 41, 77, 0.15);
                padding: 24px;
                transform: translateY(100%);
                visibility: hidden;
            }

            .guests-rooms-dropdown.show {
                transform: translateY(0);
                visibility: visible;
            }

            .btn-search-hotel {
                padding: 16px;
                border-radius: 16px;
            }

            .search-quick-tags {
                margin-top: 10px;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }

            .quick-label {
                color: var(--hotel-text-muted);
            }

            .quick-tag {
                background: #ffffff;
                border: 1px solid var(--hotel-border-light);
                color: var(--hotel-text-dark);
            }

            /* History & Hot Destinations styles */
            .history-card {
                background-color: #f8f9fa;
                border-radius: 8px;
                border: none;
                padding: 16px;
                cursor: pointer;
                transition: background-color 0.2s ease;
                text-align: left;
                height: 100%;
            }

            .history-card:hover {
                 background-color: #e9ecef;
            }

            .history-card-title {
                font-weight: 600;
                color: #343a40;
                margin-bottom: 8px;
                font-size: 1rem;
            }

            .history-card-text {
                color: #6c757d;
                font-size: 0.85rem;
                margin-bottom: 4px;
            }

            .btn-delete-history {
                color: #6c757d;
                background: none;
                border: none;
                padding: 0;
                font-size: 1.1rem;
                cursor: pointer;
                transition: color 0.2s ease;
            }

            .btn-delete-history:hover {
                color: #dc3545;
            }

            .hot-destination-tag {
                background-color: #f8f9fa;
                color: #495057;
                border-radius: 20px;
                padding: 8px 16px;
                font-size: 0.9rem;
                font-weight: 500;
                text-decoration: none;
                margin-right: 8px;
                margin-bottom: 12px;
                display: inline-block;
                border: 1px solid transparent;
                transition: all 0.2s ease;
            }

            .hot-destination-tag:hover {
                background-color: #e9ecef;
                color: #212529;
            }

            .section-title {
                font-size: 1rem;
                font-weight: 600;
                color: #343a40;
                margin-bottom: 16px;
            }

            #destinationHistoryDropdown {
                position: absolute;
                background: white;
                border-radius: 16px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15);
                padding: 20px;
                z-index: 1000;
                display: none;
                top: calc(100% + 5px);
                border: 1px solid #f3f4f6;
                left: 0;
                min-width: 520px;
            }
            #destinationHistoryDropdown.show {
                display: block;
            }
        }
        @media (max-width: 991px) {
            #destinationHistoryDropdown {
                min-width: 100%;
                width: 100%;
            }
        }

        @media (min-width: 992px) {
            .hotel-search-bar {
                display: grid;
                grid-template-columns: 2.3fr 2.8fr 1.7fr 1.2fr;
                gap: 0;
            }
        }

/* --- Extracted from: _top_area.blade.php --- */
/* Fix broken breadcrumb separator from theme CSS */
            .breadcrumb-item+.breadcrumb-item::before {
                content: "/" !important;
                float: left;
                padding-right: 0.5rem;
                color: #6c757d;
            }

            .autocomplete-result-list {
                background: #ffffff !important;
                border-radius: 12px !important;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
                border: 1px solid #f3f4f6 !important;
                padding: 10px 0 !important;
                margin-top: 14px !important;
                max-height: 380px !important;
                overflow-y: auto !important;
                z-index: 1050 !important;
                position: absolute;
                left: 0;
                width: 100%;
            }

            .autocomplete-result {
                padding: 12px 20px !important;
                font-size: 14px !important;
                color: #111827 !important;
                cursor: pointer !important;
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
                background-image: none !important;
            }

            .autocomplete-result:hover {
                background-color: #f3f4f6 !important;
            }

            /* Flatpickr styling overrides */
            .flatpickr-calendar {
                border-radius: 16px !important;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
                border: 1px solid #f3f4f6 !important;
                padding: 6px !important;
            }

            .flatpickr-day.selected,
            .flatpickr-day.startRange,
            .flatpickr-day.endRange,
            .flatpickr-day.selected.inRange,
            .flatpickr-day.startRange.inRange,
            .flatpickr-day.endRange.inRange,
            .flatpickr-day.selected:focus,
            .flatpickr-day.startRange:focus,
            .flatpickr-day.endRange:focus,
            .flatpickr-day.selected:hover,
            .flatpickr-day.startRange:hover,
            .flatpickr-day.endRange:hover {
                background: #ff5e1f !important;
                border-color: #ff5e1f !important;
            }

            .flatpickr-day.inRange {
                background: #fff0ec !important;
                box-shadow: -5px 0 0 #fff0ec, 5px 0 0 #fff0ec !important;
            }

            /* History & Hot Destinations styles */
            .history-card {
                background-color: #f8f9fa;
                border-radius: 8px;
                border: none;
                padding: 16px;
                cursor: pointer;
                transition: background-color 0.2s ease;
                text-align: left;
                height: 100%;
            }
            .history-card:hover {
                 background-color: #e9ecef;
            }
            .history-card-title {
                font-weight: 600;
                color: #343a40;
                margin-bottom: 8px;
                font-size: 1rem;
            }
            .history-card-text {
                color: #6c757d;
                font-size: 0.85rem;
                margin-bottom: 4px;
            }
            .btn-delete-history {
                color: #6c757d;
                background: none;
                border: none;
                padding: 0;
                font-size: 1.1rem;
                cursor: pointer;
                transition: color 0.2s ease;
            }
            .btn-delete-history:hover {
                color: #dc3545;
            }
            .hot-destination-tag {
                background-color: #f8f9fa;
                color: #495057;
                border-radius: 20px;
                padding: 8px 16px;
                font-size: 0.9rem;
                font-weight: 500;
                text-decoration: none;
                margin-right: 8px;
                margin-bottom: 12px;
                display: inline-block;
                border: 1px solid transparent;
                transition: all 0.2s ease;
            }
            .hot-destination-tag:hover {
                background-color: #e9ecef;
                color: #212529;
            }
            .section-title {
                font-size: 1rem;
                font-weight: 600;
                color: #343a40;
                margin-bottom: 16px;
            }
            #topDestinationHistoryDropdown {
                position: absolute !important;
                background: white !important;
                border-radius: 16px !important;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
                padding: 20px !important;
                z-index: 1050 !important;
                display: none;
                top: calc(100% + 6px) !important;
                border: 1px solid #f3f4f6 !important;
                left: 0 !important;
                min-width: 450px !important;
            }
            #topDestinationHistoryDropdown.show {
                display: block !important;
            }
            @media (max-width: 991px) {
                #topDestinationHistoryDropdown {
                    min-width: 100%;
                    width: 100%;
                }
            }

/* --- Extracted from: index.blade.php --- */
:root {
            --main-color: rgba(0, 108, 129, 1);
            --hotel-primary: var(--main-color);
            --hotel-accent: var(--main-color);
            --ivivu-blue: var(--main-color);
        }

        /* Color Overrides cho trang Nhập thông tin hành khách (Passenger Information) */
        .text-primary,
        a.text-primary,
        i.text-primary,
        .title-flight,
        .type-label,
        .change-link {
            color: var(--main-color) !important;
        }

        .bg-primary,
        .btn-primary,
        .btn_theme,
        .btn-hotel-primary,
        .score-badge {
            background-color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }

        .btn_theme:hover,
        .btn-primary:hover {
            background-color: rgba(0, 90, 108, 1) !important;
            border-color: rgba(0, 90, 108, 1) !important;
            color: #ffffff !important;
        }

        .btn-outline-primary {
            color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }
        .btn-outline-primary:hover {
            background-color: var(--main-color) !important;
            color: #ffffff !important;
        }

        .form-check-input:checked,
        input[type="checkbox"]:checked+.checkbox_label::after,
        input[type="radio"]:checked+.radio-label::after {
            background-color: var(--main-color) !important;
            border-color: var(--main-color) !important;
        }

        .booking-sidebar {
            /* max-width: 400px; */
            margin: 0 auto;
        }

        .custom-card {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            background-color: #ffffff;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .card-img-top {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            height: 200px; /* Fixed height for consistency */
            object-fit: cover; /* Ensure image covers the area nicely */
        }

        /* Carousel Image Slider Styles */
        .card-img-slider .carousel-indicators [data-bs-target] {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-left: 3px;
            margin-right: 3px;
            background-color: #fff;
            opacity: 0.6;
            transition: all 0.2s ease-in-out;
            border: 0;
        }
        .card-img-slider .carousel-indicators .active {
            opacity: 1;
            width: 16px;
            border-radius: 4px;
            background-color: #fff;
        }
        .card-img-slider .carousel-control-prev,
        .card-img-slider .carousel-control-next {
            opacity: 0.7;
            transition: opacity 0.2s ease-in-out;
        }
        .card-img-slider:hover .carousel-control-prev,
        .card-img-slider:hover .carousel-control-next {
            opacity: 1;
        }

        .custom-card-body {
            padding: 1.25rem;
        }

        /* Hotel Info Card Styles */
        .stars-container i {
            color: #febb02; /* Booking.com style yellow */
            font-size: 0.8rem;
            margin-right: 2px;
        }

        .thumb-icon {
            background-color: #febb02;
            color: white;
            padding: 2px 5px;
            border-radius: 3px;
            font-size: 0.8rem;
            display: inline-block;
            margin-left: 5px;
            vertical-align: middle;
        }

        .hotel-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #262626;
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .address-text {
            font-size: 0.9rem;
            color: #262626;
            margin-bottom: 0.5rem;
        }

        .location-rating {
            font-size: 0.85rem;
            color: #008234; /* Green color for good location */
            margin-bottom: 0.5rem;
        }

        .score-badge {
            background-color: var(--main-color);
            color: white;
            padding: 4px 6px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            border-bottom-left-radius: 0px; /* Distinctive shape */
        }

        .review-text {
            font-size: 0.85rem;
            color: #6b6b6b;
            margin-left: 5px;
            vertical-align: middle;
        }

        .amenities-list {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #262626;
        }

        .amenities-list i {
            margin-right: 5px;
            color: #6b6b6b;
        }

        /* Booking Details Card Styles */
        .details-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #262626;
            margin-bottom: 1.25rem;
        }

        .date-label {
            font-size: 0.85rem;
            color: #262626;
            font-weight: 600;
        }

        .date-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #262626;
            margin-top: 0.25rem;
            margin-bottom: 0.25rem;
        }

        .time-text {
            font-size: 0.85rem;
            color: #6b6b6b;
        }

        .date-divider {
            border-left: 1px solid #e0e0e0;
            height: 100%;
        }

        .alert-message {
            color: #a33300; /* brownish-orange alert color */
            font-size: 0.9rem;
            margin-top: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .alert-message i {
            font-size: 1.2rem;
            margin-right: 8px;
            font-weight: normal; /* Override font-awesome weight if needed */
        }

        .hr-separator {
            border-top: 1px solid #e0e0e0;
            margin: 1.25rem 0;
            opacity: 1;
        }

        .selection-label {
            font-size: 0.9rem;
            color: #262626;
            margin-bottom: 0.25rem;
        }

        .selection-value {
            font-size: 1rem;
            font-weight: 700;
            color: #262626;
            margin-bottom: 0.5rem;
        }

        .room-type {
            font-size: 0.9rem;
            color: #262626;
            margin-bottom: 1rem;
        }

        .change-link {
            font-size: 0.9rem;
            color: var(--main-color);
            text-decoration: none;
            font-weight: 600;
        }

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

/* --- Hotel List Image Sizing (Normal Mode) to prevent CLS --- */
.card-hotel-list .hotel-list-image {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-hotel-list .hotel-list-image {
        flex: 0 0 280px;
        width: 280px;
        height: auto;
        min-height: 220px;
    }
}

/* --- Favorite Toggle Button --- */
.btn-toggle-favorite {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

.btn-toggle-favorite:hover {
    background-color: #ffffff !important;
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    border-color: #cbd5e1 !important;
}

.btn-toggle-favorite:active {
    transform: scale(0.92);
}

.btn-toggle-favorite.is-favorite {
    background-color: #fff5f5;
    border-color: #fecaca;
}

.btn-toggle-favorite.is-favorite i {
    color: #ef4444 !important;
}

/* --- Hotel Consultation Form (No Offers Fallback) --- */
.hotel-consultation-form {
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.hotel-consultation-form .info-box {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background-color: #f9fafb !important;
    padding: 10px 12px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hotel-consultation-form .info-box:hover {
    border-color: #cbd5e1 !important;
}

.hotel-consultation-form .form-control {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-consultation-form .form-control:focus {
    border-color: #006c81 !important;
    box-shadow: 0 0 0 3px rgba(0, 108, 129, 0.15) !important;
}

.hotel-consultation-form .policy {
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    background-color: #f9fafb !important;
}

.hotel-consultation-form .policy-item svg {
    color: #006c81;
}

.hotel-consultation-form .book-button {
    border-radius: 8px !important;
    background-color: #006c81 !important;
    transition: all 0.2s ease;
}

.hotel-consultation-form .book-button:hover {
    background-color: #005667 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 108, 129, 0.25);
}


