.property-search-section{
    padding: 30px 0 0 0;
    text-align: left;
}

/* SEARCH RESULT HEADER */
.search-result-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    margin-bottom: 20px;
}

.search-result-title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.search-result-label {
    color: #717171;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    word-wrap: break-word;
}

.search-result-keyword {
    color: #3E3A39;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    word-wrap: break-word;
}

.search-result-count-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.search-result-showing-label {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.search-result-listing-count {
    color: #EE4733;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.property-title-header {
    color: #1D4656;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.property-count .label-showing {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.property-count .count {
    color: #EE4733;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.property-toolbar {
    width: 100%;
    margin-top: 18px;
    position: relative;
}

/* CHIP (Buy / Rent / Advanced) */
.property-type-filter {
    margin-right: 24px;
}

.property-chip {
    padding: 10px 18px;
    border-radius: 24px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #717171;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.property-chip:hover {
    color: #77CCD1;
}

.property-chip.active {
    background-color: #50C3CB;
    color: #FFFFFF;
}

.property-search-input {
    position: relative;
    flex: 1;
}

.property-search-input input {
    width: 100%;
    z-index: 1;
    position: relative;
    background: transparent;
    color: #151314;
}

/* SEARCH BOX */
.search-box {
    width: 621px;
    padding: 16px;
    background: #F7F7F7;
    border-radius: 24px;
    gap: 16px;
}

/* ICON (dummy circle dulu) */
.search-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #50C3CB;
    border-radius: 50%;
    position: relative;
}

.search-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background: #50C3CB;
    bottom: -4px;
    right: -4px;
    transform: rotate(45deg);
}

/* divider */
.divider {
    width: 1px;
    height: 24px;
    background: #E8E8E8;
}

/* placeholder text */
.search-placeholder {
    color: #717171;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.property-search-input .form-control:focus {
    background: transparent;
}

.property-search-input .form-control {
    padding: 0;
}

/* advanced */
.advanced-search {
    padding: 10px 18px;
    border-radius: 24px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #717171;
    cursor: pointer;
}

.advanced-search:hover {
    color: #77CCD1;
}

/* SORT BOX */
/* SORT DROPDOWN */
.sort-dropdown-container {
    position: relative;
    width: max-content;
    z-index: 100;
}

.sort-box {
    width: 246px;
    padding: 12px 18px;
    border-radius: 24px;
    border: 1px solid #E8E8E8;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sort-box.active {
    outline: none;
    box-shadow: 0 0 0 1px #50C3CB, 0 0 10px rgba(119, 204, 209, 0.6);
}

.sort-box.sort-trigger {
    user-select: none;
}

.sort-box .sort-label {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.sort-box .sort-value {
    flex: 1;
    color: #151314;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.sort-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sort-icon-box {
    width: 24px;
    height: 24px;
    background: #D9D9D9;
    border-radius: 4px;
}

.sort-icon-chevron {
    width: 11.15px;
    height: 6.55px;
    background: #717171;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.sort-dropdown-menu {
    position: fixed;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px;
    display: none;
    flex-direction: column;
    z-index: 30;
    min-width: 246px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.sort-dropdown-menu.show {
    display: flex;
}

.sort-menu-item {
    padding: 8px 14px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sort-menu-item:hover {
    background: #77CCD126;
    color: #3E3A39;
    font-weight: 500;
}

.sort-menu-item.active {
    /* background: #77CCD126; */
    color: #3E3A39;
    font-weight: 500;
}

.property-search-box {
    background: #F7F7F7;
    border-radius: 24px;
    padding: 12px 16px;
    gap: 16px;
    border: 1px solid transparent;
    min-width: 621px;
}

/* ACTIVE FILTERS SECTION */
.active-filters-section {
    width: 100%;
    padding: 20px 64px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background-color: #FAFAFA;
}

.active-filters-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    min-width: 0;
    padding-bottom: 8px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    
    /* Hide scrollbar but keep scrolling functional */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.active-filters-list:active {
    cursor: grabbing;
}

.active-filters-list::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

.active-filter-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
}

.active-filter-group-label {
    color: #717171;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

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

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    color: #3E3A39;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 20px;
    word-wrap: break-word;
}

.active-filter-chip-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    color: #717171;
    font-size: 12px;
    transition: color 0.2s ease;
}

.active-filter-chip-remove i {
    color: #E8E8E8;
    font-size: 14px;
}

.active-filter-chip-remove:hover {
    color: #EE4733;
}

.reset-filters-button {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    color: #717171;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    align-self: center;
    height: fit-content;
}

.reset-filters-button:hover {
    color: #77CCD1;
}

.property-search-clear{
    display:none;
}

.property-search-box .property-search-clear {
    color: #71717180;
}

.property-search-icon {
    color: #50C3CB;
    font-size: 22px;
}

.property-search-divider {
    width: 2px;
    height: 30px;
    background:#E8E8E8;
}

.property-search-input {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    background: transparent;
    font-weight: 400;
    word-wrap: break-word
}

.property-search-input::placeholder{
    color:#717171;
}

.property-search-input:focus {
    background: transparent;
}

.property-search-box:focus-within {
    border-color: #50C3CB;
}

/* responsive */
@media (max-width: 768px) {
    .property-title-header {
        font-size: 24px;
    }
    
    .property-search-section {
        display: flex;
        flex-direction: column;
    }

    .big-container {
        padding: 0 !important;
        order: 1;
    }

    .property-toolbar {
        margin-bottom: 0;
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px;
        width: 100%;
        order: 1;
    }

    .property-toolbar > div:first-child {
        flex-direction: column !important;
        width: 100%;
        gap: 12px;
    }

    .property-type-filter {
        margin-right: 0;
        width: 100%;
        justify-content: space-between;
    }

    .property-search-box {
        margin-top: 0;
        width: 100%;
        min-width: auto;
    }

    .advanced-search {
        align-self: flex-end;
        margin-bottom: 0;
    }

    .sort-dropdown-container {
        width: 100%;
        margin-top: 12px;
        order: 3;
    }

    .sort-box {
        width: 100%;
    }

    .active-filters-section {
        padding: 20px;
        margin: 12px 0;
        background-color: #FAFAFA;
        order: 2;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .active-filters-list {
        padding-bottom: 0;
    }

    .reset-filters-button {
        align-self: flex-end;
        width: auto;
    }

    .property-chip {
        width: 100%;
        text-align: center;
    }

    .search-result-title-wrapper {
        align-items: flex-start;
        gap: 4px;
        flex-direction: column;
    }

    .search-result-header {
        gap: 10px;
    }

    .search-result-label {
        font-size: 14px;
        font-weight: 400;
    }
}

/* ============================================
   PROPERTY CARD SECTION
   ============================================= */

.property-card-section {
    padding: 30px 0;
}

.property-card {
    border-radius: 24px;
    overflow: visible;
    border: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    min-height: 586px;
}

.property-card:hover {
    background: #77CCD11A;
    border: 1px solid transparent;
}

.property-image {
    height: 280px;
    object-fit: cover;
    width: 100%;
    border-radius: 24px;
    padding: 10px;
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgb(62 58 57 / 25%);
    color: white;
    padding: 6px 14px;
    margin: 10px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.property-bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgb(62 58 57 / 25%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    transition: 0.2s ease;
    margin: 10px;
}

.property-bookmark:hover {
    background: rgb(62 58 57 / 45%);
}

.property-bookmark:hover i {
    font-weight: 900;
}

.property-body {
    padding: 8px 20px 10px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 326px;
}

.property-body span {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato';
    font-weight: 400;
    word-wrap: break-word
}

.property-body .info-header {
    margin-bottom: 16px;
}

.property-price {
    color: #06323E;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    letter-spacing: 1.20px;
    word-wrap: break-word;
    text-align: left;
    margin-bottom: 40px;
}

.property-price span {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
}

.property-title {
    color: #3E3A39;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    word-wrap: break-word;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.property-location {
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
    gap: 4px;
    display: flex;
    margin-top: 6px;
}

.property-location i {
    background: linear-gradient(180deg, var(--Tosca-Primary-Tosca-100, #50C3CB) 0%, var(--Tosca-Primary-Tosca-300, #006A81) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: unset;
    text-align: left;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #3E3A39;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.facilities-list li i {
    color: #3E3A39;
    font-size: 14px;
}

.agent-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    border: 1px white solid;
    margin-top: unset !important;
}

.agent-name {
    color: #3E3A39;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.28px;
    word-wrap: break-word;
    text-align: left;
}

.agent-office {
    color: #717171;
    font-size: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 16px;
    word-wrap: break-word;
    text-align: left;
}

.propertySwiper .swiper-slide {
    height: auto;
}

.propertyImageSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.propertyImageSwiper .swiper-wrapper {
    width: 100%;
}

.propertyImageSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

.property-image-pagination {
    display: flex;
    justify-content: center;
}

.property-image-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 4px !important;
    transition: 0.3s;
}

.property-image-pagination .swiper-pagination-bullet-active {
    background: #3E3A39;
    border-radius: 10px;
}

.agent-menu-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.agent-menu-toggle i {
    color: #717171;
}

.agent-menu-toggle:hover {
    background: rgba(113, 113, 113, 0.15);
}

.agent-menu-toggle::after {
    display: none;
}

.agent-dropdown {
    width: 138px;
    padding: 8px 10px;
    border-radius: 18px;
    border: 1px solid #E8E8E8;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
    background: #FFFFFF59;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.agent-dropdown.show {
    opacity: 1;
    pointer-events: auto;
}

.agent-dropdown-title {
    font-size: 13px;
    color: #717171;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
}

.agent-contact-item:hover {
    background: #F7F7F7;
    color: #3E3A39;
}

.agent-contact-item i {
    font-size: 18px;
    color: #717171;
}

/* ============================================
   PAGINATION SECTION
   ============================================= */
.pagination-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: auto;
}

.pagination-showing {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.pagination-showing-text {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.pagination-showing-number {
    color: #EE4733;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.pagination-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}

.pagination-btn-arrow {
    padding: 11px;
    background: transparent;
    border: none;
    overflow: hidden;
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn-arrow:hover:not(.disabled) {
    background: #77CCD126;
}

.pagination-btn-arrow.disabled {
    background: #F7F7F7;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn-arrow.disabled i {
    color: #717171;
}

.pagination-arrow-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.pagination-arrow-icon i {
    width: 18px;
    height: 18px;
    position: relative;
    color: #1C1B1F;
}

.pagination-arrow-bg {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 0;
    background: #D9D9D9;
}

.pagination-numbers {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.pagination-btn-number {
    width: 40px;
    height: 40px;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn-number:hover:not(.active):not(:disabled) {
    background: #77CCD126;
}

.pagination-btn-number.active {
    background: #77CCD1;
    color: white;
    font-weight: 700;
}

.pagination-btn-number:disabled {
    cursor: default;
}

.pagination-go-to {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
}

.pagination-go-to-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.pagination-go-to-text {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.pagination-go-to-input {
    width: 60px;
    padding: 10px;
    background: white;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    text-align: center;
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.pagination-go-to-input:hover,
.pagination-go-to-input:focus {
    border: 1px solid #50C3CB;
}

/* ================================
   ADVANCED SEARCH
================================ */
.advanced-search-wrapper {
    padding: 40px 0;
}

/* Card */
.advanced-search-card {
    width: 500px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.1)
}

.advanced-search-card .modal-header {
    padding: 24px 24px 12px 24px;
}

.advanced-search-card .modal-body {
    padding: 0;
}

/* Header */
.advanced-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.title {
    font-weight: 700;
    color: #00A4CA;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
}

/* Body */
.advanced-body .section {
    padding: 12px 24px;
    scrollbar-width: none;
}

.advanced-body .bg-light {
    background: #F7F7F7;
    padding: 20px 24px;
}

.quick-filters-label {
    font-weight: 500;
    display: block;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
    text-align: left;
}

.section-label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
    text-align: left;
}

/* Pills */
.btn-pill {
    background: #F7F7F7;
    border-radius: 24px;
    border: none;
    padding: 10px 18px;
    color: #717171 !important;
}

.btn-pill:hover {
    background: #eaeaea;
}

.btn-pill:focus,
.btn-pill:active:focus {
    background: #eaeaea;
    outline: none;
}

.btn-pill-outline {
    border: 1px solid #717171;
    border-radius: 24px;
    background: transparent;
    padding: 10px 18px;
    color: #717171 !important;
    font-size: 16px;
    font-family: Lato;
    font-weight: 500;
    word-wrap: break-word;
}

.btn-pill-outline:hover {
    background: #eaeaea;
    border: 1px solid #717171;
}

.btn-pill-outline.btn-pill-active {
    background: #50C3CB;
    border: 1px solid #50C3CB;
    color: white !important;
}

.btn-pill-outline.btn-pill-active:hover {
    background: #50C3CB;
    border: 1px solid #50C3CB;
}

.btn-pill-outline.btn-pill-active:focus,
.btn-pill-outline.btn-pill-active:active,
.btn-pill-outline.btn-pill-active:active:focus {
    background: #50C3CB;
    border: 1px solid #50C3CB;
    outline: none;
}

.btn-pill-active {
    background: #50C3CB;
    color: #fff !important;
    border-radius: 24px;
    padding: 10px 18px;
    border: none;
}

.btn-pill-active:hover {
    background: #50C3CB;
}

.btn-pill-active:focus,
.btn-pill-active:active,
.btn-pill-active:active:focus {
    background: #50C3CB;
    color: #fff !important;
    outline: none;
    box-shadow: none;
}

/* Form rounded */
.form-pill {
    border-radius: 24px;
    background: #F7F7F7;
    border: none;
    padding: 12px 18px;
}

/* Input Group Rounded */
.input-pill-left {
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
    background: #F7F7F7;
    border: none;
}

.input-pill-right {
    border-top-right-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
    background: #F7F7F7;
    border: none;
}

/* ================================
   PRICE INPUT COMPONENT
================================ */

.price-input-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-radius: 24px;
    background: #F7F7F7;
    overflow: hidden;
}

.price-currency {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #F7F7F7;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    border-right: 1px solid #E8E8E8;
    flex-shrink: 0;
}

.price-input {
    flex: 1;
    background: #F7F7F7;
    border: none;
    outline: none;
    padding: 12px 14px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.price-input::placeholder {
    color: #717171;
}

.price-input:focus {
    background: #F7F7F7;
    box-shadow: none;
    outline: none;
}

/* ================================
   AREA INPUT COMPONENT (Land/Building Area)
================================ */

.area-input-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-radius: 24px;
    background: #F7F7F7;
    overflow: hidden;
}

.area-input-field {
    flex: 1;
    background: #F7F7F7;
    border: none;
    outline: none;
    padding: 12px 14px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    width: 100%;
}

.area-input-field::placeholder {
    color: #717171;
}

.area-input-field:focus {
    background: #F7F7F7;
    outline: none;
}

.area-unit-badge {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #F7F7F7;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    border-left: 1px #E8E8E8 solid;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    flex-shrink: 0;
}

/* Search Button */
.btn-search {
    border-radius: 24px;
    padding: 12px;
    font-weight: 500;
    background: linear-gradient(90deg, var(--Tosca-Primary-Tosca-100, #50C3CB) 0%, var(--Tosca-Secondary-Blue-Tosca, #00A4CA) 100%);
    border: unset;
    color: white;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    line-height: 1;
}

.btn-search:hover {
    background: linear-gradient(90deg, var(--Tosca-Primary-Tosca-200, #0A8091) 0%, var(--Tosca-Secondary-Blue-Tosca, #00A4CA) 100%);
}

.advanced-body::-webkit-scrollbar {
    display: none;
}

/* ================================
   ADVANCED SEARCH - RANGE INPUTS
================================ */

.range-inputs-section {
    padding: 12px 24px !important;
}

.custom-select-dropdown .range-inputs-section {
    padding: 10px 12px !important;
}

.range-inputs-container {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.custom-select-options .range-inputs-container {
    flex-direction: column;
}

.range-input-group {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.range-label {
    color: #717171;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    margin: 0;
    text-align: left;
}

.input-with-unit {
    display: flex;
    align-items: center;
    background: #F7F7F7;
    border-radius: 24px;
    overflow: hidden;
    border: none;
}

.input-with-unit-field {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    outline: none;
}

.input-with-unit-field::placeholder {
    color: #717171;
}

.unit-badge {
    padding: 0 16px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    border-left: 1px solid #E8E8E8;
    word-wrap: break-word;
    white-space: nowrap;
}

/* ================================
   ADVANCED SEARCH - NOTIFICATION BADGE
================================ */

.advanced-search-badge {
    width: 100%;
    height: 100%;
    padding: 2px;
    background: #F57F20;
    border-radius: 999px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.advanced-search-badge-text {
    color: white;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

@media (max-width: 600px) {
    .range-inputs-container {
        flex-direction: column;
    }
}

/* ================================
   ADVANCED SEARCH - OPTIONS GRID
================================ */

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
}

.option-pill {
    padding: 10px 18px;
    background: #F7F7F7;
    border-radius: 24px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    flex: 0 0 auto;
    white-space: nowrap;
}

.option-pill:hover {
    background: #eaeaea;
}

.option-pill.active {
    background: #50C3CB;
    color: #fff;
}

.option-pill.btn-pill-active {
    background: #50C3CB;
    color: #fff;
}

.option-pill.btn-pill-active:focus,
.option-pill.btn-pill-active:active {
    background: #50C3CB;
    color: #fff;
    outline: none;
    box-shadow: none;
}

/* Horizontal layout for option-pills in Bedroom/Bathroom filters */
.active-filter-dropdown-group .options-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

/* ================================
   ADVANCED SEARCH - OFFICE FIELD
================================ */

.search-office-field {
    padding: 12px 18px;
    background: #F7F7F7;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    cursor: pointer;
    border: none;
    gap: 6px;
}

.search-office-field:hover {
    background: #eaeaea;
}

/* ================================
   ADVANCED SEARCH - CUSTOM SELECT
================================ */

.custom-select-wrapper {
    width: 100%;
}

.custom-select-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-select-inner {
    padding: 2px;
    /* background: #F7F7F7; */
    border-radius: 26px;
    backdrop-filter: blur(7.50px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.custom-select-trigger {
    padding: 12px 18px;
    background: #F7F7F7;
    border-radius: 24px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
}

.active-filter-dropdown-group .custom-select-trigger {
    padding: 8px 12px !important;
    background: white !important;
    border: 1px solid #E8E8E8;
}

.active-filter-chip:hover {
    background: #eaeaea !important;
}

.custom-select-trigger.is-open {
    outline: none;
    box-shadow: 0 0 0 1px #77CCD1, 0 0 10px rgba(119, 204, 209, 0.6);
}

.custom-select-trigger-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select-trigger-icon svg {
    width: 18px;
    height: 18px;
}

.custom-select-trigger-text {
    flex: 1;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.active-filter-dropdown-group .custom-select-trigger-text {
    font-size: 14px !important;
}

.custom-select-dropdown {
    padding: 4px;
    background: var(--Neutral-White, white);
    box-shadow: 0px 0px 2px rgba(113, 113, 113, 0.50);
    border-radius: 18px;
    display: none;
    flex-direction: column;
}

.active-filter-dropdown-group {
    flex-shrink: 0;
}

.active-filter-dropdown-group .custom-select-dropdown {
    max-height: 175px;
    overflow: auto;
}

/* Custom select options scrollbar */
.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
    margin-top: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: #717171;
    border-radius: 3px;
    margin-top: 10px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Office checkboxes wrapper scrollbar styling */
.office-checkboxes-wrapper::-webkit-scrollbar {
    width: 6px;
}

.office-checkboxes-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.office-checkboxes-wrapper::-webkit-scrollbar-thumb {
    background: #717171;
    border-radius: 3px;
}

.office-checkboxes-wrapper::-webkit-scrollbar-thumb:hover {
    background: #888;
}

.custom-select-search-bar {
    padding: 8px;
    background: #F7F7F7;
    border-radius: 24px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.custom-select-search-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-select-search-icon svg {
    width: 16px;
    height: 16px;
}

.custom-select-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #717171;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
}

.custom-select-search-input::placeholder {
    color: #717171;
}

.custom-select-options {
    display: flex;
    flex-direction: column;
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    padding: 4px 0;
    gap: 4px;
}

.custom-select-option {
    padding: 8px 14px;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 20px;
}

.custom-select-option:hover {
    background: #77CCD126;
    color: #3E3A39;
    border-radius: 20px;
}

.custom-select-option.active {
    background: #50C3CB;
    color: white;
    font-weight: 500;
}

/* Custom select options scrollbar */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
    margin-top: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #717171;
    border-radius: 3px;
    margin-top: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* ================================
   CUSTOM SELECT - DISABLED STATE
================================ */

.custom-select-trigger-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    background: #F7F7F7;
}

.custom-select-trigger-disabled .custom-select-trigger-text {
    color: #717171;
}

.custom-select-option-empty {
    padding: 8px 14px;
    color: #bbb;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: center;
}

/* ================================
   PROPERTY TYPE - CHECKBOXES
================================ */

.property-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 24px;
    background: #F7F7F7;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
    border: 1px solid transparent;
}

.custom-select-dropdown .checkbox-item {
    background: transparent !important;
    border: unset !important;
    box-shadow: unset !important;
    padding: 8px 14px !important;
}

.checkbox-item:hover,
.checkbox-box:hover {
    background: #eaeaea;
}

.checkbox-input {
    display: none;
}

.checkbox-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px #717171 solid;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #F7F7F7;
    position: relative;
}

.checkbox-input:checked+.checkbox-box {
    background: #00A4CA;
    border-color: #00A4CA;
}

.checkbox-input:checked+.checkbox-box::after {
    content: "\f00c";
    font-family: Font Awesome\ 5 Pro;
    font-weight: 900;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.checkbox-label {
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.checkbox-item:has(.checkbox-input:checked) {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.10);
}

.checkbox-item:has(.checkbox-input:checked) .checkbox-label {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}
