/**
 * Hotel Search UI Modernization Stylesheet
 * Scoped under .hotel-search-modern and .hotel-modern-page
 * Color Palette: Primary #ff6b00, Navy #1d2340, Gold #f59e0b, Neutral #f7f8fb
 */

:root {
    --hotel-primary: #ff6b00;
    --hotel-primary-hover: #e55e00;
    --hotel-primary-light: #fff4ec;
    --hotel-primary-glow: rgba(255, 107, 0, 0.25);

    --hotel-navy: #1d2340;
    --hotel-navy-dark: #111628;
    --hotel-navy-light: #2a3356;
    --hotel-navy-surface: #242c4c;

    --hotel-bg: #f4f6fa;
    --hotel-card: #ffffff;
    --hotel-text: #0f172a;
    --hotel-text-secondary: #475569;
    --hotel-muted: #64748b;

    --hotel-border: #e2e8f0;
    --hotel-border-light: #f1f5f9;
    --hotel-border-focus: #ff6b00;

    --hotel-gold: #f59e0b;
    --hotel-gold-light: #fef3c7;
    --hotel-green: #10b981;
    --hotel-green-light: #ecfdf5;
    --hotel-blue: #2563eb;
    --hotel-blue-light: #eff6ff;

    --hotel-radius: 16px;
    --hotel-radius-sm: 10px;
    --hotel-radius-pill: 9999px;

    --hotel-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --hotel-shadow: 0 10px 25px -5px rgba(29, 35, 64, 0.08), 0 4px 10px -2px rgba(29, 35, 64, 0.03);
    --hotel-shadow-hover: 0 20px 35px -8px rgba(29, 35, 64, 0.12), 0 8px 16px -4px rgba(29, 35, 64, 0.04);
    --hotel-shadow-dropdown: 0 15px 35px rgba(15, 23, 42, 0.15), 0 5px 15px rgba(15, 23, 42, 0.08);
}

/* ==========================================================================
   1. HERO & SEARCH WIDGET CONTAINER
   ========================================================================== */

.top_bg_ofr_sb2other.hotel-search-hero-bg,
.hotel-search-hero-bg {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    margin-top: 0 !important;
    padding-top: 50px !important;
    padding-bottom: 70px !important;
    margin-bottom: 60px !important;
    height: auto !important;
    display: block;
}

.hotel-search-hero-bg::before {
    display: none !important;
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Service Nav Tabs & Cards (.domheading) - Floating across top edge of the white card */
.domheading {
    text-align: center;
    margin: -60px auto 25px !important;
    position: relative;
    z-index: 15;
    display: block;
    width: 100%;
}

.domheading a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background-color: #ffffff;
    color: #444444 !important;
    font-weight: 500;
    font-size: 13.5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    border-radius: 12px;
    min-width: 90px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    vertical-align: top;
}

.domheading a span {
    display: block;
    font-size: 26px;
    margin-bottom: 4px;
    line-height: 30px;
    color: #444444;
}

.domheading a span img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.domheading a:hover {
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.domheading .active,
.domheading a.active {
    background: linear-gradient(135deg, #f52d34, #f88b24) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(245, 45, 52, 0.45) !important;
}

.domheading .active span,
.domheading a.active span,
.domheading .active span i,
.domheading a.active span i {
    color: #ffffff !important;
}

/* Outer Card Container (.flightsearchwihite) */
.flightsearchwihite {
    background-color: #ffffff !important;
    padding: 22px 24px 34px !important;
    border-radius: 20px !important;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    top: 60px !important;
}

/* Modern Search Box */
.hotel-search-card {
    background: transparent !important;
    background-color: transparent !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    position: static !important;
    border: none !important;
    margin-bottom: 0px !important;
    z-index: 10 !important;
}

.hotel-search-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.3fr 1.3fr 1.7fr 1.4fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 12px;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Field Container (Pure White Background with Divider Borders) */
.hotel-field-box {
    position: relative;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none !important;
    border-right: 1px solid #e2e8f0 !important;
    padding: 12px 18px !important;
    cursor: pointer;
    transition: background 0.15s ease;
    min-height: 82px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-field-box:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.hotel-field-box:last-child {
    border-right: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hotel-field-box:hover {
    background: #f8faff;
}

.hotel-field-box.is-focused,
.hotel-field-box:focus-within {
    background: #ffffff;
}

.hotel-field-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.hotel-field-header i {
    font-size: 12px;
    color: var(--hotel-primary);
}

.hotel-field-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #8a99ad;
    margin: 0;
}

.hotel-field-value {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}

.hotel-field-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Custom Input inside Field */
.hotel-field-box input[type="text"] {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    font-family: inherit !important;
    line-height: 1.25 !important;
}

.hotel-field-box input[type="text"]::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Night Badge between Check-in/Check-out */
.hotel-night-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--hotel-navy);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--hotel-radius-pill);
    position: absolute;
    right: 8px;
    top: 8px;
}

/* Autocomplete Dropdown */
.searchdestinationboxclass {
    position: absolute;
    top: calc(100% + 6px) !important;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: var(--hotel-radius-sm);
    box-shadow: var(--hotel-shadow-dropdown);
    border: 1px solid var(--hotel-border);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1050;
    padding: 6px;
}

.searchdestinationboxclass .list {
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hotel-navy);
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid var(--hotel-border-light);
}

.searchdestinationboxclass .list:last-child {
    border-bottom: none;
}

.searchdestinationboxclass .list:hover {
    background: var(--hotel-primary-light);
    color: var(--hotel-primary);
}

.searchdestinationboxclass .list div {
    font-size: 11px !important;
    color: var(--hotel-muted) !important;
    font-weight: 400;
}

/* Dropdown Modals (Rooms & Star) */
.hotel-custom-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border-radius: var(--hotel-radius);
    box-shadow: var(--hotel-shadow-dropdown);
    border: 1px solid var(--hotel-border);
    padding: 18px;
    z-index: 1060;
    display: none;
}

#basicDropdownClick {
    width: 440px;
    max-width: 90vw;
}

#basicDropdownClickstar {
    width: 260px;
}

.hotel-popover-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--hotel-border);
}

.hotel-popover-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin: 0;
}

.hotel-popover-close {
    cursor: pointer;
    color: var(--hotel-muted);
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.hotel-popover-close:hover {
    background: var(--hotel-bg);
    color: var(--hotel-text);
}

/* Room Guest Card Inside Popover */
.hotel-room-card {
    background: var(--hotel-bg);
    border: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius-sm);
    padding: 12px;
    margin-bottom: 12px;
    position: relative;
}

.hotel-room-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-room-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
}

.hotel-room-card label {
    font-size: 11px;
    font-weight: 600;
    color: var(--hotel-muted);
    margin-bottom: 4px;
    display: block;
}

.hotel-room-card select.form-control {
    font-size: 13px;
    font-weight: 600;
    color: var(--hotel-text);
    border: 1px solid var(--hotel-border);
    border-radius: 6px;
    padding: 6px 10px;
    background-color: #ffffff;
    height: 36px;
    width: 100%;
}

.hotel-room-card select.form-control:focus {
    border-color: var(--hotel-primary);
    box-shadow: 0 0 0 2px var(--hotel-primary-glow);
}

.hotel-popover-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--hotel-border);
}

.btn-hotel-add-room {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px dashed var(--hotel-primary);
    color: var(--hotel-primary);
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: var(--hotel-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hotel-add-room:hover {
    background: var(--hotel-primary-light);
}

.btn-hotel-apply {
    background: var(--hotel-primary);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--hotel-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hotel-apply:hover {
    background: var(--hotel-primary-hover);
    box-shadow: 0 4px 12px var(--hotel-primary-glow);
}

/* Star Category Selection Pills */
.hotel-star-pills-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hotel-star-pill-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--hotel-bg);
    border: 1px solid var(--hotel-border);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--hotel-navy);
    transition: all 0.15s ease;
}

.hotel-star-pill-label:hover {
    background: var(--hotel-primary-light);
    border-color: #ffd6b3;
}

.hotel-star-pill-label input[type="checkbox"] {
    accent-color: var(--hotel-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.hotel-star-pill-label .stars-icons {
    color: var(--hotel-gold);
    font-size: 12px;
    margin-left: auto;
}

/* Centered Pill Search Button (Matches Flight Page) - Floating halfway across bottom border */
.flightsearchwihite .flightsearchbtn,
.flightsearchbtn.hotelsearchbtn,
.hotel-search-btn-wrap {
    width: 100% !important;
    text-align: center !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -26px !important;
    z-index: 25 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.redbuttonsearch.hotelseachbtn,
.btn-hotel-search-cta {
    font-size: 20px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #f52d34, #f88b24) !important;
    width: auto !important;
    min-width: 270px !important;
    height: auto !important;
    padding: 14px 48px !important;
    outline: none !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 24px rgba(245, 45, 52, 0.45) !important;
    cursor: pointer !important;
    text-transform: capitalize !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.25s ease !important;
    letter-spacing: 0.3px !important;
}

.redbuttonsearch.hotelseachbtn i,
.btn-hotel-search-cta i {
    font-size: 18px !important;
}

.redbuttonsearch.hotelseachbtn:hover,
.btn-hotel-search-cta:hover {
    background: linear-gradient(135deg, #e01f26, #f37d12) !important;
    box-shadow: 0 12px 28px rgba(245, 45, 52, 0.6) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

.redbuttonsearch.hotelseachbtn:active,
.btn-hotel-search-cta:active {
    transform: translateY(0) !important;
}

/* ==========================================================================
   2. SEARCH RESULTS PAGE TOP BAR & MODIFY BAR
   ========================================================================== */

.mobilefilterbtn {
    display: none !important;
}

.mobilefilterheader {
    display: none !important;
}

.hotel-results-page-wrap {
    background-color: var(--hotel-bg);
    min-height: 100vh;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    body.hotel-results-page-wrap {
        padding-top: 65px !important;
        /* Desktop fixed header offset */
    }
}

.hotel-results-header-strip {
    background: var(--hotel-navy) !important;
    color: #ffffff !important;
    padding: 18px 0 20px !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    z-index: 5 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hotel-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.hotel-summary-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hotel-summary-destination {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-summary-destination i {
    color: var(--hotel-primary);
}

.hotel-summary-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hotel-chip-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-size: 12.5px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: var(--hotel-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hotel-chip-pill i {
    color: #94a3b8;
}

.btn-modify-search-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--hotel-radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-modify-search-toggle:hover {
    background: #ffffff;
    color: var(--hotel-navy);
}

/* Collapsible Modify Search Drawer */
.hotel-modify-search-collapse {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Sorting & Results Filter Bar */
.hotel-sort-bar-card {
    background: #ffffff;
    border-radius: var(--hotel-radius-sm);
    padding: 12px 18px;
    margin-bottom: 20px;
    box-shadow: var(--hotel-shadow-sm);
    border: 1px solid var(--hotel-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.hotel-results-count {
    font-size: 15px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-results-count .count-badge {
    background: var(--hotel-primary-light);
    color: var(--hotel-primary);
    padding: 2px 8px;
    border-radius: var(--hotel-radius-pill);
    font-size: 13px;
    font-weight: 800;
}

.hotel-sort-pills-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hotel-sort-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hotel-muted);
    margin-right: 4px;
}

.hotel-sort-btn {
    background: var(--hotel-bg);
    border: 1px solid var(--hotel-border);
    color: var(--hotel-text-secondary);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--hotel-radius-pill);
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hotel-sort-btn:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    color: var(--hotel-navy);
}

.hotel-sort-btn.active {
    background: var(--hotel-navy);
    color: #ffffff;
    border-color: var(--hotel-navy);
}

.hotel-sort-btn.active i {
    color: var(--hotel-primary);
}

/* ==========================================================================
   3. FILTER SIDEBAR
   ========================================================================== */

.hotel-sidebar-card {
    background: #ffffff;
    border-radius: var(--hotel-radius);
    border: 1px solid var(--hotel-border);
    box-shadow: var(--hotel-shadow-sm);
    position: sticky;
    top: 20px;
    overflow: hidden;
}

.hotel-sidebar-header {
    padding: 16px 20px;
    background: var(--hotel-bg);
    border-bottom: 1px solid var(--hotel-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reset-filters {
    background: transparent;
    border: none;
    color: var(--hotel-primary);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease;
}

.btn-reset-filters:hover {
    color: var(--hotel-primary-hover);
    text-decoration: underline;
}

.hotel-filter-section {
    padding: 18px 20px;
    border-bottom: 1px solid var(--hotel-border);
}

.hotel-filter-section:last-child {
    border-bottom: none;
}

.hotel-filter-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--hotel-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Filter Search Input */
.hotel-filter-search-box {
    position: relative;
}

.hotel-filter-search-box input {
    width: 100%;
    background: var(--hotel-bg);
    border: 1px solid var(--hotel-border);
    border-radius: var(--hotel-radius-sm);
    padding: 9px 12px 9px 34px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hotel-text);
    outline: none;
    transition: all 0.2s ease;
}

.hotel-filter-search-box input:focus {
    background: #ffffff;
    border-color: var(--hotel-primary);
    box-shadow: 0 0 0 3px var(--hotel-primary-glow);
}

.hotel-filter-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hotel-muted);
    font-size: 13px;
    pointer-events: none;
}

/* Price Slider Modern Styling */
.hotel-price-range-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hotel-price-chip {
    background: var(--hotel-bg);
    border: 1px solid var(--hotel-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--hotel-navy);
}

.ui-slider-horizontal {
    height: 6px !important;
    background: #e2e8f0 !important;
    border: none !important;
    border-radius: 4px !important;
    margin: 10px 6px !important;
}

.ui-slider-horizontal .ui-slider-range {
    background: linear-gradient(90deg, #ff6b00, #ff8800) !important;
    border-radius: 4px !important;
}

.ui-slider-horizontal .ui-slider-handle {
    width: 18px !important;
    height: 18px !important;
    background: #ffffff !important;
    border: 2px solid var(--hotel-primary) !important;
    border-radius: 50% !important;
    top: -6px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    outline: none !important;
    transition: transform 0.15s ease !important;
}

.ui-slider-horizontal .ui-slider-handle:hover,
.ui-slider-horizontal .ui-slider-handle:focus {
    transform: scale(1.15) !important;
    box-shadow: 0 0 0 4px var(--hotel-primary-glow) !important;
}

/* Filter Checkbox Rows */
.hotel-filter-options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 4px;
}

.hotel-filter-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hotel-text-secondary);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.15s ease;
    user-select: none;
    margin: 0;
}

.hotel-filter-check-item:hover {
    background: var(--hotel-bg);
    color: var(--hotel-navy);
}

.hotel-filter-check-item input[type="checkbox"] {
    accent-color: var(--hotel-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.hotel-filter-check-item .star-rating-preview {
    color: var(--hotel-gold);
    font-size: 11.5px;
}

/* ==========================================================================
   4. HOTEL CARDS
   ========================================================================== */

.hotel-card-item {
    background: #ffffff;
    border-radius: var(--hotel-radius);
    border: 1px solid var(--hotel-border);
    box-shadow: var(--hotel-shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
}

.hotel-card-item:hover {
    box-shadow: var(--hotel-shadow-hover);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Card Image Gallery Box */
.hotel-card-gallery {
    width: 280px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.hotel-card-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.hotel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hotel-card-item:hover .hotel-card-img {
    transform: scale(1.05);
}

.hotel-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(17, 22, 40, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--hotel-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hotel-badge-deal {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    background: #e11d48;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Card Center Details */
.hotel-card-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px dashed var(--hotel-border);
}

.hotel-card-top {
    margin-bottom: 12px;
}

.hotel-card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.hotel-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin: 0;
    line-height: 1.35;
    transition: color 0.15s ease;
}

.hotel-card-item:hover .hotel-card-name {
    color: var(--hotel-primary);
}

.hotel-card-stars {
    color: var(--hotel-gold);
    font-size: 12px;
    display: inline-flex;
    gap: 2px;
    margin-top: 4px;
}

.hotel-card-location {
    font-size: 13px;
    color: var(--hotel-muted);
    margin: 6px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.4;
}

.hotel-card-location i {
    color: var(--hotel-primary);
    font-size: 12px;
}

/* Amenities Chips */
.hotel-amenities-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.hotel-amenity-chip {
    background: var(--hotel-bg);
    border: 1px solid var(--hotel-border);
    color: var(--hotel-text-secondary);
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hotel-amenity-chip i {
    color: var(--hotel-muted);
    font-size: 11px;
}

/* Perks List */
.hotel-perks-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hotel-perk-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--hotel-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card Price & CTA Column */
.hotel-card-action-col {
    width: 220px;
    min-width: 220px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
    background: #fafbfc;
}

.hotel-card-rating-badge-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-rating-score-box {
    background: var(--hotel-navy);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
}

.hotel-rating-text-wrap {
    text-align: right;
}

.hotel-rating-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin: 0;
}

.hotel-rating-sub {
    font-size: 11px;
    color: var(--hotel-muted);
    margin: 0;
}

.hotel-pricing-box {
    margin: auto 0 14px;
    text-align: right;
}

.hotel-price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hotel-muted);
    margin: 0 0 2px;
}

.hotel-price-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--hotel-navy);
    line-height: 1.1;
    margin: 0;
}

.hotel-price-tax-note {
    font-size: 11px;
    color: var(--hotel-muted);
    margin: 2px 0 0;
    font-weight: 500;
}

.btn-hotel-view-room {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--hotel-radius-sm);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px var(--hotel-primary-glow);
    text-decoration: none;
}

.btn-hotel-view-room:hover {
    background: linear-gradient(135deg, #e55e00 0%, #ff7700 100%);
    box-shadow: 0 6px 16px var(--hotel-primary-glow);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ==========================================================================
   5. SHIMMER SKELETON LOADING
   ========================================================================== */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hotel-skeleton-card {
    background: #ffffff;
    border-radius: var(--hotel-radius);
    border: 1px solid var(--hotel-border);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    height: 220px;
}

.hotel-skeleton-img {
    width: 280px;
    min-width: 280px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.hotel-skeleton-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-skeleton-action {
    width: 220px;
    min-width: 220px;
    padding: 20px;
    background: #fafbfc;
    border-left: 1px dashed var(--hotel-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.skeleton-bone {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

/* ==========================================================================
   6. EMPTY STATE & POPULAR DESTINATIONS
   ========================================================================== */

.hotel-empty-state-card {
    background: #ffffff;
    border-radius: var(--hotel-radius);
    border: 1px solid var(--hotel-border);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--hotel-shadow-sm);
    margin: 20px 0;
}

.hotel-empty-icon {
    width: 72px;
    height: 72px;
    background: var(--hotel-primary-light);
    color: var(--hotel-primary);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.hotel-empty-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--hotel-navy);
    margin-bottom: 8px;
}

.hotel-empty-desc {
    font-size: 14.5px;
    color: var(--hotel-muted);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1199.98px) {
    .hotel-search-grid {
        grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr 1.2fr auto;
    }

    .hotel-card-gallery {
        width: 240px;
        min-width: 240px;
    }

    .hotel-card-action-col {
        width: 190px;
        min-width: 190px;
        padding: 16px;
    }
}

@media (max-width: 991.98px) {
    .hotel-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hotel-search-grid .hotel-field-box:nth-child(1) {
        grid-column: span 2;
    }

    .btn-hotel-search-cta {
        grid-column: span 2;
        width: 100%;
        height: 54px;
        flex-direction: row;
    }

    .hotel-card-item {
        flex-direction: column;
    }

    .hotel-card-gallery {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .hotel-card-details {
        border-right: none;
        border-bottom: 1px dashed var(--hotel-border);
    }

    .hotel-card-action-col {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 14px 20px;
    }

    .hotel-pricing-box {
        margin: 0;
        text-align: left;
    }

    .btn-hotel-view-room {
        width: auto;
        min-width: 140px;
    }

    .hotel-sidebar-card {
        position: static;
        margin-bottom: 24px;
    }

    .hotel-skeleton-card {
        flex-direction: column;
        height: auto;
    }

    .hotel-skeleton-img {
        width: 100%;
        height: 180px;
    }

    .hotel-skeleton-action {
        width: 100%;
        border-left: none;
        border-top: 1px dashed var(--hotel-border);
        flex-direction: row;
    }
}

@media (max-width: 767.98px) {

    /* Mobile body padding reset */
    body.hotel-results-page-wrap,
    body.hotel-modern-page,
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Top Service Tabs Navigation on Mobile */
    .domheading {
        display: none !important;
    }

    /* Mobile Service Carousel / Icon Strip */
    .hotel-mobile-services-strip {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 14px 14px 12px !important;
        padding-top: 14px !important;
        margin: 0 -14px 12px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #ffffff !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .hotel-mobile-services-strip::-webkit-scrollbar {
        display: none !important;
    }

    .hotel-mobile-services-strip a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 15px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 20px !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        text-decoration: none !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03) !important;
        flex-shrink: 0 !important;
        transition: all 0.2s ease !important;
    }

    .hotel-mobile-services-strip a.active {
        background: linear-gradient(135deg, #f52d34, #ff6b00) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        box-shadow: 0 3px 10px rgba(245, 45, 52, 0.35) !important;
    }

    .hotel-mobile-services-strip a i {
        font-size: 14px !important;
    }

    .hotel-mobile-services-strip a.active i {
        color: #ffffff !important;
    }

    /* Hero Background & Outer Card - Flush with Header */
    #header ~ div.top_bg_ofr_sb.hotel-search-hero-bg,
    #header ~ .hotel-search-hero-bg,
    .top_bg_ofr_sb2other.hotel-search-hero-bg,
    .hotel-search-hero-bg {
        padding-top: 0 !important;
        padding-bottom: 10px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        min-height: auto !important;
        height: auto !important;
        background-image: none !important;
        background-color: #ffffff !important;
        border-radius: 0 !important;
    }

    .mobilecontainer {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .flightsearchwihite {
        top: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 14px 18px !important;
        border-radius: 0 0 20px 20px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
        background-color: #ffffff !important;
    }

    .hotel-hero-title {
        font-size: 19px !important;
    }

    /* Top Tabs Switcher (Upto 5 Rooms vs Group Booking) */
    .searchtabs,
    .hotel-search-top-tabs {
        margin-bottom: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .hotel-tabs-switch-row {
        display: flex !important;
        width: 100% !important;
        gap: 6px !important;
        background: #f1f5f9 !important;
        padding: 3px !important;
        border-radius: 24px !important;
    }

    .hotel-tabs-switch-row a {
        flex: 1 1 50% !important;
        text-align: center !important;
        padding: 7px 10px !important;
        border-radius: 20px !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        text-decoration: none !important;
        color: #475569 !important;
        transition: all 0.2s ease !important;
        white-space: nowrap !important;
    }

    .hotel-tabs-switch-row a.active {
        background: linear-gradient(135deg, #f52d34, #ff6b00) !important;
        color: #ffffff !important;
        box-shadow: 0 2px 8px rgba(245, 45, 52, 0.35) !important;
    }

    .hotel-trust-badge-row,
    .searchtabs .mobdme2 {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        font-size: 11px !important;
        color: #64748b !important;
        font-weight: 500 !important;
        margin-top: 2px !important;
        text-align: center !important;
    }

    /* 1. Mobile Search Card Layout (hotelpage.php) */
    .hotel-search-card {
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }

    .hotel-search-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Destination field spans both columns */
    .hotel-field-box#fromflightdestination {
        grid-column: span 2 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        padding: 10px 14px !important;
        min-height: 66px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    }

    .hotel-field-box#fromflightdestination input[type="text"] {
        font-size: 16px !important;
        font-weight: 800 !important;
    }

    /* Dates, Rooms, & Star fields in neat 2-column grid */
    .hotel-field-box:nth-child(2),
    .hotel-field-box:nth-child(3),
    .hotel-field-box#travellers_box_trigger,
    .hotel-field-box#starcategory_box_trigger {
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        padding: 9px 10px !important;
        min-height: 66px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
        position: relative !important;
        overflow: visible !important;
    }

    .hotel-field-header {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        margin-bottom: 2px !important;
        position: relative !important;
    }

    .hotel-field-box:nth-child(3) .hotel-field-header {
        justify-content: space-between !important;
    }

    .hotel-field-label {
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.4px !important;
        color: #8a99ad !important;
        white-space: nowrap !important;
    }

    .hotel-field-box input[type="text"] {
        font-size: 14px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
    }

    #travellersshow,
    #starcategory {
        font-size: 13.5px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .hotel-field-sub {
        font-size: 11px !important;
        font-weight: 500 !important;
        color: #64748b !important;
        margin-top: 1px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Night badge positioned cleanly in check-out header */
    .hotel-night-chip {
        position: static !important;
        display: inline-flex !important;
        align-items: center !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        padding: 1px 5px !important;
        border-radius: 999px !important;
        background: #1d2340 !important;
        color: #ffffff !important;
        margin-left: auto !important;
    }

    /* Modal Backdrop for Mobile Popovers */
    .hotel-modal-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(15, 23, 42, 0.5) !important;
        backdrop-filter: blur(2px) !important;
        z-index: 99990 !important;
        display: none;
    }

    /* Dropdown Popovers as Bottom-Sheets on Mobile */
    #basicDropdownClick,
    #basicDropdownClickstar {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25) !important;
        z-index: 99999 !important;
        padding: 18px 16px 24px !important;
        max-height: 82vh !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border: none !important;
        display: none;
        animation: hotelSlideUpSheet 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    @keyframes hotelSlideUpSheet {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .hotel-popover-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-bottom: 12px !important;
        margin-bottom: 14px !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .hotel-popover-title {
        font-size: 15px !important;
        font-weight: 800 !important;
        color: #1d2340 !important;
    }

    .hotel-popover-actions {
        display: flex !important;
        gap: 10px !important;
        margin-top: 14px !important;
    }

    .btn-hotel-add-room {
        flex: 1 !important;
        padding: 10px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        border-radius: 8px !important;
        border: 1px dashed #ff6b00 !important;
        background: #fff4ec !important;
        color: #ff6b00 !important;
        text-align: center !important;
        cursor: pointer !important;
    }

    .btn-hotel-apply {
        flex: 1 !important;
        padding: 10px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        border-radius: 8px !important;
        border: none !important;
        background: linear-gradient(135deg, #f52d34, #ff6b00) !important;
        color: #ffffff !important;
        text-align: center !important;
        cursor: pointer !important;
        box-shadow: 0 4px 12px rgba(245, 45, 52, 0.3) !important;
    }

    /* Bottom Quick Filters & Trending Bar */
    .hotel-bottom-bar {
        margin-top: 12px !important;
        margin-bottom: 6px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .hotel-quick-filters {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding-bottom: 2px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .hotel-quick-filters::-webkit-scrollbar {
        display: none !important;
    }

    .hotel-filter-pill-label {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        padding: 5px 10px !important;
        border-radius: 20px !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        cursor: pointer !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        transition: all 0.15s ease !important;
    }

    .hotel-filter-pill-label input[type="checkbox"] {
        accent-color: #f52d34 !important;
        margin: 0 !important;
    }

    .hotel-trending-bar {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding-bottom: 2px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .hotel-trending-bar::-webkit-scrollbar {
        display: none !important;
    }

    .hotel-trending-title {
        font-size: 11.5px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        flex-shrink: 0 !important;
    }

    .hotel-trending-chip {
        display: inline-block !important;
        background: #f1f5f9 !important;
        padding: 3px 9px !important;
        border-radius: 6px !important;
        color: #334155 !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 11.5px !important;
        flex-shrink: 0 !important;
    }

    /* Search CTA Button */
    .flightsearchbtn.hotelsearchbtn,
    .hotel-search-btn-wrap {
        position: static !important;
        width: 100% !important;
        margin-top: 14px !important;
        text-align: center !important;
    }

    .redbuttonsearch.hotelseachbtn,
    .btn-hotel-search-cta {
        width: 100% !important;
        min-width: 100% !important;
        height: 48px !important;
        line-height: 48px !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        padding: 0 20px !important;
        border-radius: 50px !important;
        background: linear-gradient(135deg, #f52d34 0%, #ff6b00 100%) !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 6px 20px rgba(245, 45, 52, 0.4) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        cursor: pointer !important;
    }

    /* Lower Feature Boxes (.chooseusall) on Mobile */
    .chooseusall {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .chooseusall .col-lg-3 {
        width: 100% !important;
        padding: 0 !important;
    }

    .chooseusall .yellowbox,
    .chooseusall .bluebox,
    .chooseusall .greenbox,
    .chooseusall .redbox {
        border-radius: 12px !important;
        padding: 10px 12px !important;
        background: #ffffff !important;
        border: 1px solid #eef2f6 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
    }

    /* 2. Mobile Hotel Search Results & Loading Bar (hotelsearch.php) */
    body.hotel-results-page-wrap .hotel-results-header-strip,
    #header~.hotel-results-header-strip,
    .hotel-results-header-strip {
        margin-top: 0 !important;
        padding-top: 22px !important;
        padding-bottom: 16px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .hotel-summary-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .hotel-summary-destination {
        font-size: 18px !important;
        line-height: 1.35 !important;
        margin-top: 0 !important;
        padding-top: 2px !important;
        margin-bottom: 8px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: #ffffff !important;
    }

    .hotel-summary-chips {
        gap: 6px !important;
    }

    .hotel-chip-pill {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }

    .btn-modify-search-toggle {
        width: 100% !important;
        justify-content: center !important;
        font-size: 12px !important;
        padding: 7px 12px !important;
    }

    /* Loading Hero Banner on Mobile */
    .hotel-loading-hero-banner {
        border-radius: 12px !important;
        margin-bottom: 16px !important;
    }

    .hotel-loading-banner-inner {
        padding: 14px 14px 12px !important;
        gap: 10px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .hotel-loading-brand-group {
        gap: 12px !important;
        width: 100% !important;
    }

    .hotel-loading-icon-badge {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }

    .hotel-loading-title {
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
    }

    .hotel-loading-subtext {
        font-size: 11.5px !important;
        line-height: 1.3 !important;
    }

    .hotel-loading-badges-group {
        width: 100% !important;
        gap: 5px !important;
        flex-wrap: wrap !important;
    }

    .hotel-loading-chip {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }

    .hotel-loading-progress-track {
        height: 3px !important;
    }

    /* Floating Filter Button on Mobile */
    .mobilefilterbtn {
        background: linear-gradient(135deg, #ff6b00, #f52d34) !important;
        color: #ffffff !important;
        position: fixed !important;
        bottom: 25px !important;
        right: 20px !important;
        left: auto !important;
        width: 52px !important;
        height: 52px !important;
        line-height: 52px !important;
        border-radius: 50% !important;
        z-index: 9990 !important;
        box-shadow: 0 6px 20px rgba(245, 45, 52, 0.45) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        cursor: pointer !important;
    }

    .mobilefilterbtn i {
        color: #ffffff !important;
        font-size: 20px !important;
    }

    .mobilefilterheader {
        background: linear-gradient(135deg, #ff6b00, #f52d34) !important;
        color: #ffffff !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        padding: 14px 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }

    /* Fullscreen Off-Canvas Filter Drawer on Mobile */
    .filtersidebar.hotelfilter {
        display: none;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        z-index: 99999 !important;
        background-color: #ffffff !important;
        height: 100% !important;
        left: 0 !important;
        top: 0 !important;
        position: fixed !important;
        padding: 0 !important;
        border: none !important;
        overflow-y: auto !important;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2) !important;
    }

    .filtersidebar.hotelfilter .card {
        padding: 14px !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Skeleton filter sidebar hidden during loading on mobile */
    .hotel-sidebar-skeleton {
        display: none !important;
    }

    .cardresult {
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hotel-sort-bar-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 14px;
        gap: 8px;
    }

    .hotel-sort-pills-group {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    /* Skeleton Cards on Mobile */
    .hotel-skeleton-card {
        flex-direction: column !important;
        border-radius: 14px !important;
        margin-bottom: 14px !important;
    }

    .hotel-skeleton-img {
        width: 100% !important;
        min-width: 100% !important;
        height: 160px !important;
    }

    .hotel-skeleton-details {
        padding: 14px !important;
    }

    .hotel-skeleton-action {
        width: 100% !important;
        min-width: 100% !important;
        border-left: none !important;
        border-top: 1px dashed #e2e8f0 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 14px !important;
        background: #fafcff !important;
    }

    .hotel-skeleton-action-bottom {
        width: auto !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .hotel-skeleton-cta-btn {
        width: 110px !important;
        height: 36px !important;
    }
}

@media (max-width: 575.98px) {
    .hotel-card-action-col {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-hotel-view-room {
        width: 100%;
    }

    .hotel-summary-destination {
        font-size: 16px !important;
    }
}

/* ==========================================================================
   4. ULTRA-MODERN HOTEL SEARCH LOADING & SHIMMER SKELETON SYSTEM
   ========================================================================== */

@keyframes hotelShimmerWave {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes hotelProgressBar {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes hotelPulseGlow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
}

@keyframes hotelFloatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* 4.1. Top Search Loading Status Banner */
.hotel-loading-hero-banner {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -5px rgba(29, 35, 64, 0.07), 0 4px 10px -2px rgba(29, 35, 64, 0.03);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.hotel-loading-banner-inner {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hotel-loading-brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hotel-loading-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff6b00 0%, #f52d34 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    animation: hotelPulseGlow 2s infinite ease-in-out;
}

.hotel-loading-icon-badge i {
    animation: hotelFloatIcon 2.5s infinite ease-in-out;
}

.hotel-loading-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hotel-loading-title {
    font-size: 17px;
    font-weight: 800;
    color: #1d2340;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-loading-destination-highlight {
    color: #ff6b00;
    font-weight: 800;
}

.hotel-loading-subtext {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hotel-loading-ticker-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ff6b00;
    border-radius: 50%;
}

.hotel-loading-badges-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hotel-loading-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 9999px;
}

.hotel-loading-chip i {
    color: #ff6b00;
}

.hotel-loading-progress-track {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.hotel-loading-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #ff6b00, #f52d34, #f59e0b, #ff6b00);
    background-size: 200% 100%;
    animation: hotelProgressBar 1.8s infinite linear;
}

/* 4.2. Core Skeleton Bone Shimmer Styling */
.skeleton-bone {
    background: linear-gradient(90deg, #edf2f7 0%, #e2e8f0 35%, #ffffff 50%, #e2e8f0 65%, #edf2f7 100%);
    background-size: 200% 100%;
    animation: hotelShimmerWave 1.6s infinite ease-in-out;
    border-radius: 6px;
    display: block;
    transform: translateZ(0);
    will-change: background-position;
}

.skeleton-bone-round {
    border-radius: 50% !important;
}

.skeleton-bone-pill {
    border-radius: 9999px !important;
}

/* 4.3. Skeleton Filter Sidebar */
.hotel-sidebar-skeleton {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.hotel-sidebar-skeleton-header {
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-sidebar-skeleton-section {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.hotel-sidebar-skeleton-section:last-child {
    border-bottom: none;
}

.skeleton-filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.skeleton-filter-row:last-child {
    margin-bottom: 0;
}

/* 4.4. Skeleton Top Sort Bar */
.hotel-skeleton-sort-bar {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

/* 4.5. Skeleton Hotel Result Cards */
.hotel-skeleton-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    margin-bottom: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.hotel-skeleton-img {
    width: 260px;
    min-width: 260px;
    height: 210px;
    background: linear-gradient(90deg, #edf2f7 0%, #e2e8f0 35%, #ffffff 50%, #e2e8f0 65%, #edf2f7 100%);
    background-size: 200% 100%;
    animation: hotelShimmerWave 1.6s infinite ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-skeleton-img-icon {
    font-size: 32px;
    color: #cbd5e1;
    opacity: 0.7;
}

.hotel-skeleton-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 6px;
}

.hotel-skeleton-details {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-skeleton-details-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-skeleton-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-skeleton-amenities-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hotel-skeleton-action {
    width: 220px;
    min-width: 220px;
    padding: 18px 20px;
    background: #fafcff;
    border-left: 1px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    text-align: right;
}

.hotel-skeleton-action-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hotel-skeleton-cta-btn {
    width: 100%;
    height: 42px;
    background: linear-gradient(90deg, #ff6b00 0%, #f52d34 100%);
    opacity: 0.25;
    border-radius: 10px;
    animation: hotelPulseGlow 2s infinite ease-in-out;
}