/* ============================================================
   APARTMENT ARCHIVE PAGE
============================================================ */

.apartment_archive_page {
    font-family      : 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
}

.apartment_image_link {
    display: block;
    width: 100%;
    height: 100%;
}

.apartment_image_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.apartment_card:hover .apartment_image_link img {
    transform: scale(1.04);
}

.apartment_price_badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.badge_available {
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    text-transform: uppercase;
}

.badge_price {
    background: rgba(177, 139, 33, 0.95);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 0.5px;
}

.badge_price small {
    font-size: 10px;
    opacity: 0.85;
    font-weight: normal;
}

/* ============================================================
   SEARCH SECTION
============================================================ */

.apartment_search_section {
    background    : #fff;
    border-bottom : 1px solid #e5e0d8;
    padding       : 0;
    position      : sticky;
    top           : 0;
    z-index       : 500;
}

.apartment_search_form { width: 100%; }

/* ── Main search row ── */

.search_row {
    display     : flex;
    align-items : stretch;
    border-top  : 1px solid #b18b21;
    border-bottom: 1px solid #b18b21;
    background  : #fff;
    min-height  : 52px;
	justify-content: space-around;
}
	
.search_row .inner_wrap {
	display: flex;
	gap: 10px;
}
.search_row .inner_wrap dev.first_wrap{display:flex;gap:10px;}
.search_divider {
    width      : 1px;
    background : #e5e0d8;
    align-self : stretch;
    margin     : 14px 0;
    flex-shrink: 0;
}

.search_field {
    flex           : 1;
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    padding        : 0;
    position       : relative;
    cursor         : pointer;
}

.search_field--submit {
    padding: 0;
    cursor : default;
}

.search_field--cleardates {
    flex   : 0 0 auto;
    padding: 0 10px;
	 background: #fff;
	transition: 0.3s;
}
.search_field--cleardates:hover {
	background: #6c757d;
	transition: 0.3s;
}
.search_field--cleardates:hover button {
	color: #fff;
	transition: 0.3s;
}

.search_label {
    font-size     : 18px;
    letter-spacing: .5px;
    color         : #000;
    font-weight   : 500;
    text-transform: uppercase;
    display       : block;
}

.search_field input[type="text"],
.search_field input[type="number"] {
    border     : none;
    background : transparent;
    text-align : center;
    font-size  : 14px;
    text-transform: uppercase;
    outline    : none;
    padding    : 0;
    width      : 100%;
    color      : #333;
    cursor     : pointer;
}

.search_field input::placeholder {
    color      : #000;
    font-size  : 16px;
	font-weight: 500;
}

/* ── Guests counter ── */

.search_field.search_field--guests {
    flex-direction : row;
    font-size      : 18px;
    gap            : 16px;
    position       : relative;
    cursor         : default;
    justify-content: center;
}

.guests_display_wrap {
    display    : inline-flex;
    align-items: center;
    gap        : 6px;
}

.guests_display_wrap input[type="number"] {
    width          : 22px;
    text-align     : center;
    font-size      : 18px;
    font-weight    : 500;
    border         : none;
    background     : transparent;
    outline        : none;
    -moz-appearance: textfield;
    font-family    : 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    color          : #000;
    padding        : 0;
    cursor         : default;
}

.guests_display_wrap input[type="number"]::-webkit-inner-spin-button,
.guests_display_wrap input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin            : 0;
}

.guests_counter {
    display        : flex;
    flex-direction : column;
    align-items    : center;
    gap            : 2px;
    margin         : 0;
}

.guests_btn {
    width          : 30px;
    height         : 20px;
    border         : none;
    background     : #f0f0f0;
    color          : #b18b21;
    cursor         : pointer;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : all .2s ease;
    flex-shrink    : 0;
    padding        : 0;
  
}

.guests_btn svg {
    display        : block;
    width          : 8px;
    height         : 5px;
    pointer-events : none;
}

.guests_btn:hover {
    background     : #e5e0d8;
    color          : #8f6d14;
}

/* ── Search submit button ── */

.search_submit_btn {
    width         : 100%;
	height        : 100%;
    border        : none;
    background    : #b18b21;
    color         : #fff;
    cursor        : pointer;
    text-transform: uppercase;
    font-size     : 18px;
    font-weight   : 500;
    transition    : background .25s;
	letter-spacing: 1px;
    font-family   : 'Ivy Mode', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
	padding       : 14px 50px;
    display       : flex;
    align-items   : center;
    justify-content: center;
}

.search_submit_btn:hover { background: #977416; }

/* ── Clear Dates link ── */

.clear_dates_btn {
    background    : transparent;
    border        : none;
    color         : #6c757d;
    cursor        : pointer;
    font-size     : 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space   : nowrap;
    padding       : 0;
    transition    : color .3s;
}

.clear_dates_btn:hover { color: #b18b21; }

.mobile_toggle_filters_wrap {
    display: none;
}

/* ── Filter row ── */

.filter_row {
    display    : flex;
    align-items: center;
    gap        : 8px;
    padding    : 18px 24px;
    background : #fff;
    border-top : 1px solid #ece8e0;
	justify-content: space-around;
}
	
.filter_row .inner_wrap {
	display: flex;
	gap: 30px;
}

/* ── Selected Filters Tags (Matching Exact Client Screenshot) ── */
.selected_filters_row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 30px 14px;
    background: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
}

.selected_filters_label {
    font-size: 14.5px;
    color: #222;
    font-weight: 500;
}

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

.filter_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border: 1px solid #7c8d9e;
    border-radius: 3px;
    font-size: 13.5px;
    color: #4b6072;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter_tag:hover {
    border-color: #b18b21;
    color: #b18b21;
}

.tag_close {
    font-size: 14px;
    color: #7c8d9e;
    font-weight: 600;
    line-height: 1;
    margin-left: 2px;
    cursor: pointer;
}

.filter_tag:hover .tag_close {
    color: #b18b21;
}

/* ── Properties Loading Indicator (Matching Exact Client Screenshot) ── */
.properties_loading_indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 25px 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
}

.loading_properties_text {
    font-size: 18px;
    color: #0b3b60;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.spoke_spinner {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.spoke_spinner i {
    position: absolute;
    left: 44.5%;
    top: 37%;
    width: 11%;
    height: 26%;
    background: #9aa4af;
    border-radius: 50px;
    animation: spokeFade 1s linear infinite;
}

.spoke_spinner i:nth-child(1)  { transform: rotate(0deg) translate(0, -140%); animation-delay: 0s; }
.spoke_spinner i:nth-child(2)  { transform: rotate(30deg) translate(0, -140%); animation-delay: -0.916s; }
.spoke_spinner i:nth-child(3)  { transform: rotate(60deg) translate(0, -140%); animation-delay: -0.833s; }
.spoke_spinner i:nth-child(4)  { transform: rotate(90deg) translate(0, -140%); animation-delay: -0.75s; }
.spoke_spinner i:nth-child(5)  { transform: rotate(120deg) translate(0, -140%); animation-delay: -0.666s; }
.spoke_spinner i:nth-child(6)  { transform: rotate(150deg) translate(0, -140%); animation-delay: -0.583s; }
.spoke_spinner i:nth-child(7)  { transform: rotate(180deg) translate(0, -140%); animation-delay: -0.5s; }
.spoke_spinner i:nth-child(8)  { transform: rotate(210deg) translate(0, -140%); animation-delay: -0.416s; }
.spoke_spinner i:nth-child(9)  { transform: rotate(240deg) translate(0, -140%); animation-delay: -0.333s; }
.spoke_spinner i:nth-child(10) { transform: rotate(270deg) translate(0, -140%); animation-delay: -0.25s; }
.spoke_spinner i:nth-child(11) { transform: rotate(300deg) translate(0, -140%); animation-delay: -0.166s; }
.spoke_spinner i:nth-child(12) { transform: rotate(330deg) translate(0, -140%); animation-delay: -0.083s; }

@keyframes spokeFade {
    0% { opacity: 1; }
    100% { opacity: 0.15; }
}

.filter_item {
    position   : relative;
    display    : flex;
    align-items: center;
}

/* Standard select (Sort by Price) */
.filter_item select {
    appearance       : none;
    -webkit-appearance: none;
    height           : 44px;
    min-width        : 165px;
    border           : 1px solid #c8c4bc;
    background       : #fff;
    padding          : 0 40px 0 20px;
    font-size        : 18px;
    font-family      : 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    text-transform   : uppercase;
    letter-spacing   : .5px;
    color            : #000;
    outline          : none;
    cursor           : pointer;
    transition       : border-color .2s;
	text-align: center;
}

.filter_item select:hover,
.filter_item select:focus { border-color: #b18b21; }

.filter_arrow {
    position      : absolute;
    right         : 40px;
    pointer-events: none;
    color         : #000;
    font-size     : 16px;
}

/* ── Apartment Type custom dropdown button ── */

.filter_item--apt-type { position: relative; }

.apt_type_btn {
    height        : 44px;
    padding       : 0 22px;
    background    : #fff;
    color         : #000;
    border        : 1px solid rgba(171,134,26,.5);
    cursor        : pointer;
    font-size     : 18px;
    font-family   : 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display       : flex;
    align-items   : center;
    white-space   : nowrap;
    transition    : background .2s;
    user-select   : none;
}

.apt_type_btn:hover         { background: #e8e8e8; color: #fff; border-color: #565e64;}
.apt_type_btn.has-selection { background: #b18b21; }
.apt_type_btn[aria-expanded="true"] { background: #e8e8e8; color: #fff; border-color: #565e64; }

.apt_type_caret {
    font-size : 16px;
    transition: transform .2s ease;
    line-height: 1;
}

.apt_type_btn[aria-expanded="true"] .apt_type_caret {
    transform: rotate(180deg);
}

/* ── Apartment Type custom dropdown panel ── */

.apt_type_dropdown {
    display   : none;
    position  : absolute;
    top       : calc(100% + 2px);
    left      : 0;
    background: #fff;
    border    : 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    min-width : 190px;
    z-index   : 600;
    padding   : 6px 0;
}

.apt_type_dropdown.is-open { display: block; }

.apt_type_option {
    display    : flex;
    align-items: center;
    gap        : 11px;
    padding    : 2px 10px;
    cursor     : pointer;
    font-size  : 16px;
    color      : #333;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    transition : background .15s;
    user-select: none;
}

.apt_type_option:hover { background: #f8f5f0; }

.apt_type_option input[type="checkbox"] {
    width        : 15px;
    height       : 15px;
    cursor       : pointer;
    accent-color : #b18b21;
    flex-shrink  : 0;
    margin       : 0;
}

/* ── Clear Filters button ── */

.clear_filters_btn {
    height        : 44px;
    padding       : 0 26px;
    border        : 1px solid #c8c4bc;
    background    : #fff;
    cursor        : pointer;
    font-size     : 18px;
    font-family   : 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color         : #6c757d;
    transition    : all .2s;
}

.clear_filters_btn:hover {
    border-color: #b18b21;
    color       : #b18b21;
}

/* ============================================================
   HEADING SECTION
============================================================ */

.apartment_heading_section {
    text-align: center;
    padding   : 65px 20px 50px;
    position  : relative;
}

.apartment_heading_section h1 {
    margin     : 0 0 16px;
    font-size  : 32px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
}

.apartment_heading_section p {
    margin        : 0;
    font-size     : 16px;
    font-weight   : 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color         : #000;
}

/* ============================================================
   APARTMENTS GRID
============================================================ */

.apartments_listing_section { padding: 0 28px 80px;
	background-image: url('https://whistledemos.com/nellgwynnhouse/wp-content/uploads/2026/06/bg.svg');
	background-size: 250%;
	}

.apartments_grid {
    display              : grid;
    grid-template-columns: repeat(4, 1fr);
    gap                  : 22px;
}

/* ============================================================
   APARTMENT CARD
============================================================ */
.apartment-gallery{background-color:#fff !important;}
.apartment_card {
    background: #e8e8e8;
    position  : relative;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    display   : flex;
    flex-direction: column;
    height    : 100%;
}


/* ── Image / Slider ── */

.apartment_image_wrap {
    display        : block;
    overflow       : hidden;
    position       : relative;
    text-decoration: none;
    flex-shrink    : 0;
}

.apartment_image_wrap img,
.apartment_slider_single img {
    width         : 100%;
    height        : 300px;
    object-fit    : cover;
    display       : block;
    transition    : transform .5s ease;
}


.apartment_slider .slide_item img {
    width     : 100%;
    height    : 250px;
    object-fit: cover;
    display   : block;
}

/* TinySlider nav dots */
.tns-nav {
    position : absolute;
    bottom   : 12px;
    left     : 50%;
    transform: translateX(-50%);
    z-index  : 10;
    display  : flex;
    gap      : 10px;
}

.tns-nav button {
    width        : 8px;
    height       : 8px;
    border-radius: 50%;
    border       : 1.5px solid rgba(255,255,255,0.85);
    background   : transparent;
    padding      : 0;
    cursor       : pointer;
    transition   : background .2s;
}

.tns-nav button.tns-nav-active { background: #fff; }

.card_image_overlay {
    position  : absolute;
    inset     : 0;
    background: linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 55%);
    pointer-events: none;
}

/* ── Card content ── */

.apartment_content {
    padding   : 16px 18px 18px;
    background: #e8e8e8;
    display   : flex;
    flex-direction: column;
    flex      : 1;
}

.apartment_title {
    margin        : 0;
    font-size     : 14px;
    font-weight   : 700;
    text-transform: uppercase;
    line-height   : 1.35;
    letter-spacing: .8px;
    display       : flex;
    align-items   : baseline;
    justify-content: space-between;
    gap           : 8px;
    padding-bottom: 14px;
    border-bottom : 1px solid #ece8e0;
    min-height    : 44px;
}

.apartment_title a {
    color      : #111;
    text-decoration: none;
    transition : color .2s;
	font-weight: 500;
}

.apartment_title a:hover { color: #b18b21; }

.title_arrow {
    color      : #b18b21;
    font-size  : 15px;
    font-weight: 400;
    flex-shrink: 0;
}

/* ── Meta grid ── */

.apartment_meta {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 4px 12px;
    margin-top           : 14px;
    margin-bottom        : 18px;
    flex                 : 1;
}

.meta_item {
    font-size     : 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height   : 1.5;
    color         : #212529;
    display       : flex;
    align-items   : center;
    gap           : 7px;
	font-weight: 500;
}

.meta_icon {
    color      : #b18b21;
    font-size  : 7px;
    flex-shrink: 0;
}

/* ── Explore button ── */

.explore_button_wrap {
    display        : flex;
    justify-content: flex-end;
    margin-top     : auto;
}

.explore_btn {
    display       : inline-flex;
    align-items   : center;
    justify-content: center;
    background    : #b18b21;
    color         : #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size     : 16px;
    letter-spacing: 1px;
    font-weight   : 500;
    transition    : background .25s;
	padding: 7px 30px;
}

.explore_btn:hover { background: #977416; color: #fff; }

/* ============================================================
   PAGINATION
============================================================ */

.navigation.pagination {
    margin-top : 60px;
    text-align : center;
}

.navigation.pagination .page-numbers {
    display        : inline-flex;
    align-items    : center;
    justify-content: center;
    min-width      : 44px;
    height         : 44px;
    border         : 1px solid #ddd;
    text-decoration: none;
    color          : #333;
    margin         : 0 3px;
    font-size      : 13px;
    font-family    : 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    transition     : all .2s;
}

.navigation.pagination .page-numbers:hover {
    border-color: #b18b21;
    color       : #b18b21;
}

.navigation.pagination .current {
    background  : #b18b21;
    color       : #fff;
    border-color: #b18b21;
}

/* ============================================================
   NO POSTS
============================================================ */

.no_posts_found {
    grid-column   : 1 / -1;
    text-align    : center;
    font-size     : 16px;
    padding       : 80px 20px;
    color         : #999;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1400px) {
    .apartments_grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
    .apartments_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .search_row { flex-wrap: wrap; }
    .search_field--submit {
        height: 58px;
        border-left: none;
        border-top : 1px solid #b18b21;
    }
    .search_field--cleardates {
        border-left: none;
        border-top : 1px solid #e5e0d8;
        flex       : 1 1 100%;
        justify-content: center;
        padding    : 12px 20px;
    }
}

@media (max-width: 991px) {
    .search_row .inner_wrap {
        gap: 15px;
    }
    .filter_row .inner_wrap {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .apartments_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* ── Search Row on Mobile (Exact Match to User Screenshot) ── */
    .search_row {
        flex-direction: column !important;
        border-top: 1px solid #b18b21 !important;
        border-bottom: 1px solid #b18b21 !important;
        background: #fff !important;
        padding: 16px 16px 10px !important;
        min-height: auto !important;
    }

    .search_row .inner_wrap {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        column-gap: 16px !important;
        row-gap: 16px !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Check-in: Row 1, Col 1 */
    .search_field.search_field--checkin {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        width: 100%;
        padding: 0;
        border: none;
    }

    /* Check-out: Row 1, Col 2 */
    .search_field.search_field--checkout {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        width: 100%;
        padding: 0;
        border: none;
    }

    .search_field input[type="text"] {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #000 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        padding: 0 !important;
    }

    .search_field input::placeholder {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #000 !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }

    /* Guests: Row 2, Col 1 */
    .search_field.search_field--guests {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        width: 100%;
        padding: 0;
        border: none;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .guests_display_wrap {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .guests_display_wrap input[type="number"] {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #000 !important;
        width: 16px !important;
        text-align: center !important;
    }

    .search_label {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #000 !important;
    }

    .guests_counter {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .guests_btn {
        width: 22px;
        height: 14px;
        background: #f0f0f0;

        color: #b18b21;
    }

    /* Search Submit Button: Row 2, Col 2 */
    .search_field.search_field--submit {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        width: 100%;
        padding: 0;
        height: 48px;
        border: none;
    }

    .search_submit_btn {
        width: 100% !important;
        height: 48px !important;
        background: #b18b21 !important;
        color: #fff !important;
        text-transform: uppercase !important;
        font-family: 'Ivy Mode', 'Gill Sans', sans-serif !important;
        font-size: 17px !important;
        letter-spacing: 1.5px !important;
        font-weight: 500 !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    /* Clear Dates: Row 3, Centered */
    .search_field.search_field--cleardates {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 0 2px !important;
        border: none !important;
        display: flex !important;
        justify-content: center !important;
    }

    .clear_dates_btn {
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #000 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }

    .search_divider {
        display: none !important;
    }

    /* ── Mobile SHOW FILTERS Toggle Button ── */
    .mobile_toggle_filters_wrap {
        display: flex !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        background: #fff !important;
        border-bottom: 1px solid #e5dfd5 !important;
    }

    .mobile_toggle_filters_btn {
        background: #cccccc !important;
        color: #000 !important;
        border: none !important;
        padding: 8px 24px !important;
        font-size: 14px !important;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        cursor: pointer !important;
    }

    /* ── Filter Row on Mobile (Hidden by default, shown when toggled) ── */
    .filter_row {
        display: none;
    }

    .filter_row.is-open-mobile {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding: 14px 16px !important;
        background: #faf8f5 !important;
        border-bottom: 1px solid #e5dfd5 !important;
        box-sizing: border-box !important;
    }

    .filter_row .inner_wrap {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .filter_item--apt-type,
    .filter_item {
        width: 100% !important;
        position: relative !important;
    }

    .apt_type_btn,
    .filter_item select {
        width: 100% !important;
        min-width: unset !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 16px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
        border: 1px solid #d4cdbf !important;
        background: #fff !important;
    }

    .apt_type_dropdown {
        width: 100% !important;
        box-sizing: border-box !important;
        position: static !important;
        box-shadow: none !important;
        border: 1px solid #d4cdbf !important;
        margin-top: 4px !important;
    }

    .clear_filters_btn {
        width: 100% !important;
        height: 40px !important;
        margin-left: 0 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .selected_filters_row {
        padding: 8px 16px 14px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .apartment_heading_section {
        padding: 30px 15px 15px !important;
    }

    .apartment_heading_section h1 {
        font-size: 28px !important;
        font-style: normal !important;
    }

    .apartment_heading_section p {
        font-size: 11px !important;
        line-height: 1.6 !important;
        letter-spacing: 0.5px !important;
    }

    .apartments_listing_section {
        padding: 0 15px 50px !important;
    }
}

/* ============================================================
   DUAL-MONTH LUXURY GOLD FLATPICKR CALENDAR (EXACT SCREENSHOT MATCH)
============================================================ */
.flatpickr-calendar {
    background: #fff !important;
    border: 1px solid #e2ddd5 !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    padding: 18px 16px 14px !important;
    width: auto !important;
}

.flatpickr-months {
    background: #fff !important;
    position: relative;
    margin-bottom: 12px;
}

.flatpickr-months .flatpickr-month {
    background: #fff !important;
    color: #112338 !important;
    fill: #112338 !important;
    height: 38px !important;
}

.flatpickr-current-month {
    background: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding-top: 4px !important;
    color: #112338 !important;
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif, sans-serif !important;
}

.flatpickr-current-month .cur-month {
    font-weight: 600 !important;
}

.flatpickr-current-month input.cur-year {
    font-weight: 600 !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    background: #fff !important;
    border: 1px solid #dcd7cc !important;
    border-radius: 3px !important;
    padding: 6px 8px !important;
    height: 32px !important;
    width: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 3px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: #f5f1e6 !important;
    border-color: #AB861A !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: #666 !important;
    width: 13px !important;
    height: 13px !important;
}

.flatpickr-weekdays {
    background: #fff !important;
    margin-bottom: 6px;
}

span.flatpickr-weekday {
    background: #fff !important;
    color: #555 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.flatpickr-day {
    border: 1px solid #eee9df !important;
    border-radius: 0 !important;
    height: 38px !important;
    line-height: 38px !important;
    max-width: 38px !important;
    margin: 0 !important;
    color: #222 !important;
    font-size: 13.5px !important;
    font-weight: 400 !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #bbb !important;
    border-color: #f7f5f0 !important;
    background: transparent !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #ccc !important;
    border-color: #f5f2ec !important;
    background: #faf9f6 !important;
}

/* Range Start & End: Solid Gold */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
    background: #a8821a !important;
    border-color: #a8821a !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* In Range Days: Soft Sand / Tinted Gold */
.flatpickr-day.inRange {
    background: #cbb577 !important;
    border-color: #cbb577 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.flatpickr-day:hover {
    background: #f0ebe0 !important;
    border-color: #a8821a !important;
}
