/*
 * Modern UI Redesign for Hotel Reservation System
 * Designed with premium aesthetics, fluid animations, and modern typography.
 */

/* --- Import Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-dark: #1e40af;
    --bg-dark: #0f172a;
    --bg-dark-light: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

/* --- Global Overrides --- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--bg-dark);
}

#header {
    transition: all 0.3s ease;
    overflow: visible !important;
}

header #nav-main {
    background-color: var(--bg-dark) !important;
    border-bottom: 1px solid var(--bg-dark-light);
    padding: 3px 0; /* Reduced from 8px to 3px */
}

header .header-top {
    background-color: var(--bg-dark) !important;
    padding: 5px 0 !important; /* Reduced from 10px to 5px */
    box-shadow: var(--shadow-md);
    overflow: visible !important;
}

/* Logo Redesign */
header .row #header_logo {
    padding: 5px 0 !important;
}

header .row #header_logo img {
    max-height: 85px !important; /* Significantly larger logo */
    height: auto;
    width: auto;
    transition: transform 0.3s ease;
}

header .row #header_logo img:hover {
    transform: scale(1.02);
}

header .header-top-item .header-top-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

header .header-top-item .header-top-link:hover {
    color: var(--primary) !important;
    border-bottom: none !important;
}

/* Hamburger Menu */
.header-top-menu .nav-trigger {
    background: var(--primary) !important;
    border-radius: var(--radius-md);
    padding: 10px !important;
    transition: transform 0.2s ease;
}

.header-top-menu .nav-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* --- Homepage Search Panel --- */
.header-top #search_hotel_block_form {
    background: var(--white);
    padding: 30px !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

#search_hotel_block_form .header-rmsearch-input {
    padding-left: 45px !important; /* Fix for icon overlap */
    border-radius: var(--radius-md) !important;
    border: 1px solid #e2e8f0 !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--bg-dark) !important;
    height: 55px !important;
}

#search_hotel_block_form .header-rmsearch-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    outline: none !important;
}

/* Fix specific backgrounds if needed */
#search_hotel_block_form .input-location {
    background-position: 15px center !important;
}

#search_hotel_block_form #id_hotel_button {
    background-position: 15px center, calc(100% - 15px) center !important;
}

#search_hotel_block_form .input-date {
    padding-left: 45px !important;
    display: flex !important;
    align-items: center !important;
}

#search_hotel_block_form .hotel_booking_inputs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#search_hotel_block_form input, 
#search_hotel_block_form select {
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: var(--text-main);
    background-color: #f1f5f9 !important;
    transition: all 0.2s ease;
}

#search_hotel_block_form input:focus, 
#search_hotel_block_form select:focus {
    border-color: var(--primary) !important;
    background-color: var(--white) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

#search_hotel_block_form .search_hotel_button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
    color: var(--white) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md) !important;
    padding: 14px 28px !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

#search_hotel_block_form .search_hotel_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* --- Product List (Sub Pages) --- */
.product_list {
    margin-top: 40px;
}

.product_list .product-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.product_list .product-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product_list .product-image-container {
    position: relative;
    overflow: hidden;
}

.product_list .product-image-container img {
    transition: transform 0.5s ease;
}

.product_list .product-container:hover img {
    transform: scale(1.05);
}

.product_list .product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--bg-dark);
    margin: 15px 0 !important;
}

.product_list .product-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.product_list .content_price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
}

/* Buttons in List */
.product_list .button.ajax_add_to_cart_button,
.product_list .button.lnk_view {
    border-radius: var(--radius-md) !important;
    padding: 10px 20px !important;
    font-weight: 600;
    text-transform: none !important;
    transition: all 0.2s ease;
}

/* --- Footer --- */
#footer {
    background-color: var(--bg-dark) !important;
    color: #94a3b8 !important;
    padding: 60px 0 30px !important;
    margin-top: 80px;
}

#footer h4 {
    color: var(--white) !important;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

#footer a {
    color: #94a3b8 !important;
    transition: color 0.2s ease;
}

#footer a:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#columns {
    animation: fadeIn 0.6s ease-out;
}

/* --- Product Detail Page --- */
.pb-left-column .card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #f1f5f9;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.hotel_name_block h1 {
    font-size: 32px;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.hotel_name_block .hotel_name {
    font-weight: 700;
}

#hotel_rating i {
    color: #f59e0b; /* Golden star */
    margin-right: 2px;
}

.room_info_heading {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.room_info_heading span {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
}

.rm_ftr_wrapper {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.rm_ftr_wrapper:hover {
    background: #f1f5f9;
}

/* Booking Form on Right Column */
.pb-right-column #booking_block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary);
    position: sticky;
    top: 20px;
}

/* --- Checkout & Cart --- */
.step_line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step_line:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step_line li {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-weight: 600;
    color: var(--text-muted);
}

.step_line li.step_done {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Cart Table */
#cart_summary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

#cart_summary thead {
    background: #f8fafc;
}

#cart_summary th {
    padding: 15px !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border: none !important;
}

#cart_summary td {
    padding: 20px !important;
    vertical-align: middle !important;
    border-top: 1px solid #f1f5f9 !important;
}

/* --- UI Elements --- */
.btn-primary, .button-medium {
    background: var(--primary) !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
/* --- Our Rooms Redesign --- */
#hotelRoomsBlock {
    padding: 40px 0; /* Reduced from 80px */
    background: #ffffff;
}

#hotelRoomsBlock .home_block_heading {
    font-size: 36px; /* Slightly smaller for better fit */
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px; /* Reduced from 15px */
    text-align: center;
}

#hotelRoomsBlock .home_block_description {
    font-size: 16px; /* Slightly smaller */
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 15px; /* Reduced from 40px */
    text-align: center;
    line-height: 1.6;
}

#hotelRoomsBlock .home_block_desc_line {
    border-color: var(--primary);
    width: 40px; /* Smaller line */
    border-width: 3px;
    margin: 0 auto 30px; /* Reduced from 60px */
}

/* Room Card */
#hotelRoomsBlock .margin-btm-30 {
    margin-bottom: 30px;
    padding: 0 15px;
}

#hotelRoomsBlock .margin-btm-30 > a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    height: 220px; /* Fixed height for consistency */
}

#hotelRoomsBlock .margin-btm-30 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#hotelRoomsBlock .margin-btm-30:hover img {
    transform: scale(1.08);
}

#hotelRoomsBlock .hotelRoomDescContainer {
    background: var(--white);
    padding: 20px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: 1px solid #f1f5f9;
    border-top: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    top: -5px;
}

#hotelRoomsBlock .margin-btm-30:hover .hotelRoomDescContainer {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.htlRoomTypeNameText {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 10px !important;
    float: none !important;
    display: block !important;
}

.htlRoomTypePriceText {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-bottom: 10px !important;
    float: none !important;
    display: block !important;
}

.wk_roomType_price_type {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
}

.htlRoomTypeDescText {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
    margin-bottom: 20px !important;
    height: auto !important; /* Allow auto height by default */
    overflow: visible !important;
}

.htlRoomTypeDescText.htlRoomTypeDescTextContainer {
    height: 60px !important; /* Limit height only when truncated */
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

.htlRoomTypeBookNow {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 20px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
}

.htlRoomTypeBookNow:hover {
    background: var(--primary-hover) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3) !important;
    transform: translateY(-2px);
}

.htlRoomTypeDescExtras {
    display: inline-block !important;
    margin-top: 5px !important;
}

.htlRoomTypeDescReadmore, .htlRoomTypeDescReadless {
    color: var(--primary) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-size: 13px !important;
}

/* --- Explore Interiors Redesign --- */
#hotelInteriorBlock {
    padding: 20px 0; /* Further reduced from 40px */
    background: #ffffff;
}

#hotelInteriorBlock .home_block_heading {
    font-size: 32px; /* Slightly smaller to match compact feel */
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 5px; /* Reduced from 8px */
    text-align: center;
}

#hotelInteriorBlock .home_block_description {
    font-size: 15px; /* Slightly smaller */
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 10px; /* Reduced from 15px */
    text-align: center;
    line-height: 1.6;
}

#hotelInteriorBlock .home_block_desc_line {
    border-color: var(--primary);
    width: 30px; /* Smaller line */
    border-width: 3px;
    margin: 0 auto 20px; /* Reduced from 30px */
}

.interiorboxInner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 5px; /* Added gap */
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.interiorbox:hover .interiorboxInner {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.interiorImg {
    transition: transform 0.5s ease;
}

.interiorbox:hover .interiorImg {
    transform: scale(1.1);
}

.interiorHoverBlockWrapper {
    display: none !important; /* Hide old hover block */
}

/* Owl Carousel Nav Modernization */
.htlInterior-owlCarousel .owl-nav button {
    background: var(--white) !important;
    color: var(--bg-dark) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-lg) !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
}

.htlInterior-owlCarousel:hover .owl-nav button {
    opacity: 1;
}

.htlInterior-owlCarousel .owl-nav .owl-prev {
    left: -20px !important;
}

.htlInterior-owlCarousel .owl-nav .owl-next {
    right: -20px !important;
}

.htlInterior-owlCarousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.htlInterior-owlCarousel .owl-dots {
    margin-top: 25px !important;
}

.htlInterior-owlCarousel .owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.htlInterior-owlCarousel .owl-dots .owl-dot.active span {
    width: 24px !important;
    background: var(--primary) !important;
}

.btn-primary:hover, .button-medium:hover {
    background: var(--primary-hover) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* Back to Top */
#oh-back-to-top {
    background-color: var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
}

#oh-back-to-top:hover {
    background-color: var(--primary-hover) !important;
    transform: scale(1.1) !important;
}

/* Alerts */
.alert {
    border-radius: var(--radius-md) !important;
    border: none !important;
    padding: 15px 20px !important;
    font-weight: 500 !important;
}

.alert-info { background-color: #e0f2fe !important; color: #0369a1 !important; }
.alert-success { background-color: #dcfce7 !important; color: #15803d !important; }
.alert-warning { background-color: #fef9c3 !important; color: #a16207 !important; }
.alert-danger { background-color: #fee2e2 !important; color: #b91c1c !important; }

/* --- Amenities / Features Redesign --- */
#hotelAmenitiesBlock {
    padding: 30px 0 40px;
    background: #f8fafc;
}

#hotelAmenitiesBlock .home_block_heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.01em;
}

#hotelAmenitiesBlock .home_block_description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: center;
    line-height: 1.8;
}

#hotelAmenitiesBlock .home_block_desc_line {
    border: none;
    height: 3px;
    background: var(--primary);
    width: 40px;
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Container for cards - Compact 2-Column Grid */
.home_amenities_wrapper .homeAmenitiesBlock {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -15px !important;
}

.homeAmenitiesBlock .col-md-6 {
    width: 50% !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.amenity_content {
    background: var(--white);
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: flex !important;
    flex-direction: row !important;
    min-height: 400px;
}

.amenity_content:hover {
    box-shadow: none;
    transform: none;
}

.amenity_content > div {
    width: 50% !important;
    flex: 0 0 50% !important;
}

.amenity_img_primary, .amenity_img_secondary {
    height: 100% !important;
    min-height: 400px !important;
    width: 100% !important;
}

.amenity_img_secondary {
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.8s ease !important;
}

.amenity_content:hover .amenity_img_secondary {
    transform: scale(1.1);
}

.amenity_desc_cont {
    padding: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: var(--white);
}

.amenity_heading {
    font-family: 'Outfit', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.amenity_description {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

.amenity_desc_hr {
    border: none !important;
    height: 1px !important;
    background: #e2e8f0 !important;
    width: 60px !important;
    margin: 25px 0 0 0 !important;
    display: block !important;
}

/* Ensure images and text take full height even if content is short */
.amenity_desc_primary {
    width: 100%;
}

/* --- Testimonials Redesign --- */
#hotelTestimonialBlock {
    padding-top: 10px !important;
    padding-bottom: 15px !important; /* Increased for breathing room */
    background: #ffffff;
}

#hotelTestimonialBlock .home_block_heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 3px;
    text-align: center;
}

#hotelTestimonialBlock .home_block_description {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 5px;
    text-align: center;
    line-height: 1.5;
}

#hotelTestimonialBlock .home_block_desc_line {
    border-color: var(--primary);
    width: 30px;
    border-width: 3px;
    margin: 0 auto 10px; /* Reduced from 20px */
}

.htlTestemonial-owlCarousel .owl-carousel .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
}

.htlTestemonial-owlCarousel .col-xs-4, 
.htlTestemonial-owlCarousel .col-sm-2 {
    width: auto !important;
    margin: 0 0 5px 0 !important; /* Reduced from 10px */
    float: none !important;
}

.col-sm-7 {
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    float: none !important;
}

.htlTestemonial-owlCarousel img[src*="icon-double-codes"] {
    width: 35px !important; /* Slightly smaller */
    opacity: 0.15;
    margin-bottom: 10px !important; /* Reduced */
}

.testimonialContentText {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important; /* Slightly smaller for compactness */
    font-style: italic !important;
    line-height: 1.7 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 15px !important; /* Reduced from 30px */
    position: relative;
}

.testimonialPersonDetail {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 10px !important; /* Reduced from 20px */
}

.testimonialPersonImg {
    width: 70px !important; /* Slightly smaller */
    height: 70px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-bottom: 10px !important; /* Reduced */
    border: 3px solid #f1f5f9 !important;
    box-shadow: var(--shadow-sm) !important;
}

.testimonialPersonName {
    font-family: 'Outfit', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--bg-dark) !important;
    margin: 0 !important;
}

.testimonialPersonDesig {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin: 3px 0 0 0 !important;
}

/* Owl Carousel Dots Modernization */
.htlTestemonial-owlCarousel .owl-dots {
    margin-top: 20px !important; /* Reduced from 40px */
    text-align: center !important;
}

.htlTestemonial-owlCarousel .owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #e2e8f0 !important;
    transition: all 0.3s ease !important;
    margin: 5px 7px !important;
}

.htlTestemonial-owlCarousel .owl-dots .owl-dot.active span {
    width: 24px !important;
    background: var(--primary) !important;
}
.home_block_seperator {
    display: none !important; /* Eliminate extra lines and space */
}

/* --- Footer Redesign --- */
.footer-container {
    background-color: var(--bg-dark) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: none !important;
}

#footer {
    background-color: transparent !important;
    padding-top: 25px !important; /* Increased for breathing room */
    padding-bottom: 10px !important;
}

#footer_notification, .footer-block {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#footer .row.margin-btm-50 {
    margin-bottom: 0 !important;
}

.footer-block h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15px !important; /* Slightly smaller */
    font-weight: 700 !important;
    color: var(--white) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 15px !important; /* Reduced from 20px */
    border: none !important;
}

.footer-block ul li {
    padding: 6px 0 !important;
}

.footer-block ul li a {
    color: var(--text-muted) !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.footer-block ul li a:hover {
    color: var(--primary) !important;
    padding-left: 5px !important;
}

/* Newsletter in Footer */
#newsletter_block_left .form-group {
    margin-bottom: 15px !important;
}

#newsletter_block_left .inputNew {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    height: 40px !important;
    padding-left: 12px !important;
    width: 100% !important;
    max-width: 250px !important;
    font-size: 13px !important;
}

#newsletter_block_left .btn-primary {
    width: fit-content !important;
    min-width: 100px !important;
    height: 38px !important;
    padding: 0 18px !important;
    border-radius: 6px !important;
    background: var(--primary) !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    margin-top: 10px !important;
    transition: all 0.3s ease !important;
}

#newsletter_block_left .btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
}

/* Social icons */
#social_block ul li {
    padding: 0 !important;
    margin-right: 10px !important;
}

#social_block ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

#social_block ul li a:hover {
    background: var(--primary) !important;
    transform: translateY(-3px);
}

/* Copyright area */
#displayAfterDefautlFooterHook,
.copyRightWrapper {
    background: transparent !important; /* Remove different grey background */
    margin-top: 15px !important; /* Reduced from 40px */
    padding-top: 15px !important; /* Reduced from 20px */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center !important;
}

.copyRightWrapper p,
.copyRightWrapper a {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    margin: 0 !important;
}

/* Fix for the blue inner container shown in screenshot */
.footer-container .container, 
#footer_notification,
.footer-block {
    background: transparent !important;
    border: none !important;
}

/* --- Occupancy Guest Selection Modal --- */
#search_occupancy_wrapper {
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    width: 380px !important;
    margin-top: 5px !important;
    z-index: 1000000 !important;
    background: #ffffff !important;
    position: absolute !important;
    top: 100% !important; /* Force it below the button */
    right: 0 !important;   /* Align to right */
    max-height: 500px !important;
    overflow-y: auto !important;
    min-height: 100px !important;
    display: none; /* JS will toggle this, but we ensure it's absolute when shown */
}

/* Ensure it doesn't push parents */
.booking_guest_occupancy_conatiner #search_occupancy_wrapper {
    position: absolute !important;
    top: 55px !important;
    right: 0 !important;
}

.occupancy_info_head {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: var(--bg-dark) !important;
    font-size: 15px !important;
    margin-bottom: 15px !important;
}

.occupancy_count_block label {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.occupancy_count span {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--bg-dark) !important;
}

.btn.occupancy_quantity_up, 
.btn.occupancy_quantity_down {
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 5 !important;
}

.btn.occupancy_quantity_up:hover, 
.btn.occupancy_quantity_down:hover {
    background: #e2e8f0 !important;
}

.label-desc-txt {
    font-size: 12px !important;
    color: #94a3b8 !important;
    margin-top: 5px !important;
}

/* Child Age Dropdown Fix */
.children_age_info_block label {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-top: 15px !important;
}

.guest_child_age {
    display: block !important;
    width: 100% !important;
    height: 44px !important; /* Increased height for better visibility */
    padding: 0 12px !important;
    font-size: 15px !important; /* Slightly larger font */
    color: var(--bg-dark) !important;
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    margin-bottom: 5px !important;
    transition: border-color 0.2s ease !important;
    line-height: normal !important; /* Reset line-height */
}

.guest_child_age:focus {
    border-color: var(--primary) !important;
    outline: none !important;
}

/* Actions */
.occupancy_block_actions {
    margin-top: 10px !important; /* Reduced from 20px */
    padding-top: 10px !important; /* Reduced from 15px */
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.occupancy-info-separator {
    margin: 10px 0 !important; /* Tighten separator */
}

#add_new_occupancy a {
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
}

#add_new_occupancy a i {
    margin-right: 5px !important;
}

.submit_occupancy_btn {
    padding: 8px 25px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

/* --- Hero Section Fixes --- */
.header-desc-welcome,
.header-hotel-name,
.header-desc-tsec {
    color: #ffffff !important; /* Ensure visibility on hero background */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
}

.header-hotel-name {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.heasder-desc-hr-first,
.heasder-desc-hr-second {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* --- Category Page Redesign --- */
.cat_cont {
    padding-top: 30px !important;
}

/* Sidebar Styling */
#left_column {
    background: #f8fafc !important;
    padding: 0 !important;
    border-radius: var(--radius-lg) !important;
}

#left_column .block {
    background: #ffffff !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 25px !important;
    padding: 20px !important;
}

#left_column h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 20px !important;
    border-bottom: 2px solid var(--primary) !important;
    display: inline-block !important;
    padding-bottom: 5px !important;
}

/* Amenities Filters */
#filter_block_left .list-group-item {
    border: none !important;
    padding: 8px 0 !important;
    font-family: 'Inter', sans-serif !important;
}

#filter_block_left .checker {
    margin-right: 10px !important;
}

/* Sort Bar */
.catSortBlock {
    background: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    margin-bottom: 30px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
}

.sortBlockHeading p {
    font-weight: 600 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

.filter_dw_cont .btn-default {
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    font-size: 14px !important;
    width: 200px !important;
    text-align: left !important;
}

/* Room Cards */
.room_cont {
    background: #ffffff !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 25px !important;
    padding: 0 !important;
    overflow: visible !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important; /* Base z-index */
}

.room_cont:hover,
.room_cont:focus-within {
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-5px);
    z-index: 50 !important; /* Lift it above other cards when active */
}

#category_data_cont,
.room_listing_container {
    overflow: visible !important; /* Ensure main container doesn't clip */
}

.room-type-image {
    border-radius: 12px 0 0 12px !important;
    object-fit: cover !important;
    height: 100% !important;
    min-height: 250px !important;
}

.room_info_cont {
    padding: 25px !important;
}

.rm_heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 10px !important;
}

.rm_left {
    background: #fee2e2 !important;
    color: #ef4444 !important;
    padding: 6px 15px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    width: fit-content !important;
    max-width: 100% !important;
    float: right !important;
    margin-right: 20px !important; /* Prevent cutting off at the edge */
    margin-top: 5px !important;
    text-align: center !important;
}

.rm_desc {
    color: var(--text-muted) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.rm_amen {
    width: 24px !important;
    margin-right: 12px !important;
    opacity: 0.7 !important;
    transition: opacity 0.3s ease !important;
}

.rm_amen:hover {
    opacity: 1 !important;
}

.rm_price_cont {
    text-align: right !important;
    margin-bottom: 15px !important;
}

.rm_price_val {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--bg-dark) !important;
    font-family: 'Outfit', sans-serif !important;
}

.rm_price_txt {
    font-size: 14px !important;
    color: var(--text-muted) !important;
}

.capa_txt {
    font-size: 13px !important;
    color: var(--text-muted) !important;
}

.capa_data {
    font-weight: 600 !important;
    color: var(--bg-dark) !important;
}

/* Booking actions in card */
.booking_room_fields {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important; /* Slightly reduced gap */
    margin-top: 15px !important;
    flex-wrap: nowrap !important;
    position: relative !important;
    width: 100% !important;
}

/* Occupancy Button in listing */
.booking_guest_occupancy_conatiner {
    position: relative !important;
}

#guest_occupancy {
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    height: 48px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--bg-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-width: 140px !important; /* Slightly more compact */
    max-width: 200px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.ajax_add_to_cart_button {
    background: var(--primary) !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-align: center !important;
    white-space: nowrap !important; /* Never wrap "BOOK NOW" */
    flex-shrink: 0 !important;      /* Never squash this button */
}

.ajax_add_to_cart_button span {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #ffffff !important;
    display: inline !important;
    box-shadow: none !important;
}

.ajax_add_to_cart_button:hover {
    background: var(--primary-dark) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Search Block in Sidebar */
#search_hotel_block_form .form-group {
    margin-bottom: 15px !important;
}

#search_hotel_block_form .header-rmsearch-input {
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    height: 48px !important;
}

/* --- Product (Room Detail) Page Redesign --- */
.product_wrapper {
    padding-top: 20px !important;
}

/* Search results info banner */
.searched_results_info_block {
    background: #f8fafc !important;
    border-radius: 12px !important;
    padding: 15px 25px !important;
    margin-bottom: 30px !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.searched_results_info_block p {
    margin: 0 !important;
    color: var(--text-muted) !important;
    font-size: 14px !important;
}

.searched_results_info_block b {
    color: var(--bg-dark) !important;
}

.edit_search {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    color: var(--bg-dark) !important;
    transition: all 0.2s ease !important;
}

.edit_search:hover {
    background: #f1f5f9 !important;
    border-color: #94a3b8 !important;
}

/* Room Titles & Rating */
.hotel_name_block h1 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 5px !important;
}

#hotel_rating {
    display: inline-block !important;
    margin-left: 15px !important;
    vertical-align: middle !important;
}

#hotel_rating i {
    color: #fbbf24 !important; /* Gold stars */
    font-size: 16px !important;
}

/* Gallery Styling */
.room_type_img_containter {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: var(--shadow-sm) !important;
    margin-bottom: 30px !important;
}

#image-block {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-sm) !important;
}

#bigpic {
    border-radius: 12px !important;
}

#thumbs_list_frame li {
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
    transition: all 0.2s ease !important;
}

#thumbs_list_frame li:hover,
#thumbs_list_frame li.shown {
    border-color: var(--primary) !important;
}

/* Booking Sidebar Widget */
.pb-right-column .booking_room_fields {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: block !important; /* Reset from flex if inherited */
}

.pb-right-column label {
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 8px !important;
}

.pb-right-column .form-control {
    border-radius: 10px !important;
    height: 48px !important;
    border: 1px solid #e2e8f0 !important;
}

.price_detail_block {
    margin-top: 25px !important;
    padding-top: 20px !important;
    border-top: 1px solid #f1f5f9 !important;
}

.total_price_block {
    font-family: 'Outfit', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--bg-dark) !important;
    margin-bottom: 20px !important;
}

.total_price_block span {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}

/* Book Now Button on Product Page */
#add_to_cart .exclusive {
    background: var(--primary) !important;
    border: none !important;
    width: 100% !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
}

#add_to_cart .exclusive:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4) !important;
    color: #ffffff !important;
}

/* Tabs & Info - Ultra Broad Reset */
.product_description_tabs,
.nav-tabs,
.nav-tabs > li,
.nav-tabs > li > a,
.product_description_tabs > li,
.product_description_tabs > li > a {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    outline: none !important;
    background-image: none !important;
}

.product_description_tabs,
.nav-tabs {
    margin-bottom: 25px !important;
    display: flex !important;
    gap: 8px !important;
    padding-bottom: 10px !important;
    background: transparent !important;
}

.product_description_tabs li a,
.nav-tabs li a {
    font-weight: 700 !important;
    color: #64748b !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: block !important;
}

.product_description_tabs li a:hover,
.nav-tabs li a:hover {
    background: #f1f5f9 !important;
    color: var(--bg-dark) !important;
}

.product_description_tabs li.active a,
.nav-tabs li.active a,
.nav-tabs li.active a:hover,
.nav-tabs li.active a:focus {
    background: var(--bg-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Kill all pseudo-elements that might carry the blue line */
.nav-tabs > li > a:before,
.nav-tabs > li > a:after,
.nav-tabs > li.active > a:before,
.nav-tabs > li.active > a:after,
.product_description_tabs li a:before,
.product_description_tabs li a:after,
.product_description_tabs li:before,
.product_description_tabs li:after {
    display: none !important;
    content: none !important;
    border: none !important;
    height: 0 !important;
    width: 0 !important;
}

.tab-content.card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: var(--shadow-sm) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.room_info_heading {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: var(--bg-dark) !important;
    margin-bottom: 15px !important;
}

.rm_ftr_wrapper {
    background: #f8fafc !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
}

.rm_ftr_wrapper img {
    margin-right: 10px !important;
    width: 20px !important;
}

/* --- Responsive Adjustments for Amenities --- */
@media (max-width: 991px) {
    .amenity_content {
        flex-direction: column !important;
        min-height: auto;
    }
    .amenity_content > div {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    .amenity_img_secondary {
        height: 250px !important;
        min-height: 250px !important;
    }
    .amenity_desc_cont {
        padding: 30px !important;
    }
}

/* --- Mobile Search Form Fixes --- */
@media (max-width: 767px) {
    /* Main container for the search form in mobile modal */
    .header-rmsearch-wrapper#xs_room_search_form {
        background: var(--white) !important;
        padding: 25px 20px !important;
        border-radius: 20px !important;
        position: relative !important;
        max-width: 95% !important;
        margin: 20px auto !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
    }

    .header-rmsearch-inner-wrapper {
        padding: 0 !important;
    }

    /* Force the grid to stack vertically */
    #search_form_fields_wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        grid-template-columns: 1fr !important; /* Force override of inline style */
    }

    /* Override the span styles that cause overlap */
    #search_form_fields_wrapper .grid-item {
        grid-column: span 1 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }

    /* Header styling in mobile search */
    .fancy_search_header_xs {
        display: block !important;
        margin-bottom: 25px !important;
        border: none !important;
    }

    .fancy_search_header_xs p {
        font-family: 'Outfit', sans-serif !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        color: var(--bg-dark) !important;
        margin: 0 !important;
        letter-spacing: -0.02em !important;
    }

    .fancy_search_header_xs hr {
        margin: 10px 0 25px !important;
        border: none !important;
        height: 4px !important;
        background: var(--primary) !important;
        width: 80px !important;
        opacity: 1 !important;
    }

    /* Chosen / Hotel Selector Fix for Mobile */
    .hotel-selector-wrapper, 
    .hotel-selector-wrap,
    .chosen-container {
        width: 100% !important;
    }

    .chosen-container-single .chosen-single {
        height: 55px !important;
        line-height: 55px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        padding-left: 45px !important;
    }

    /* Input styling refinement for mobile */
    #search_hotel_block_form .header-rmsearch-input {
        height: 55px !important;
        font-size: 15px !important;
        width: 100% !important;
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
    }

    /* Guest occupancy button in mobile */
    #guest_occupancy {
        width: 100% !important;
        height: 55px !important;
        border-radius: 12px !important;
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        justify-content: flex-start !important;
        padding-left: 15px !important;
    }

    /* Fix for date range input */
    #daterange_value {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Search Button */
    #search_room_submit {
        width: 100% !important;
        height: 58px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        margin-top: 10px !important;
        border-radius: 12px !important;
        background: var(--primary) !important;
    }

    /* Fix for date picker overlapping */
    #ui-datepicker-div {
        z-index: 9999999 !important;
    }

    /* Close button fix if it exists in the modal */
    .fancybox-close, .close_search_form {
        top: 15px !important;
        right: 15px !important;
        background: #f1f5f9 !important;
        border-radius: 50% !important;
        padding: 5px !important;
        opacity: 1 !important;
    }
}

/* Temporary Hide Requested Menus */
.our_properties_link, 
.our_properties_link_container,
[href*="our-properties"] {
    display: none !important;
}
