.sn-property-listing-container {
    position: relative;
}

/* Loader Styles */
#sn-loader {
    text-align: center;
    padding: 20px;
}
.sn-loader-icon {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #0073e6;
    border-radius: 50%;
    animation: sn-spin 1s linear infinite;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Masonry Layout */
.sn-property-listing {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: auto;
}

/* Helper for Masonry Column Sizing */
.grid-sizer {
    width: 32%; /* Adjust based on column count */
}
/* Fix empty spaces above rows */
.masonry {
    transition: height 0.4s ease-in-out;
}

.sn-property-item {
    width: 32%; /* Adjust column width */
    margin-bottom: 24px;
    display: inline-block;
    padding: 15px 15px 20px 15px;
    background: #fff;
    border: 1px solid #c7d5e1;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
}

/* Fix container height issue */
.sn-property-listing:after {
    content: "";
    display: block;
    clear: both;
}

/* Ensure images load correctly without cropping */
.sn-property-img-wrapper {
    border-radius: 20px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sn-property-img-wrapper::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
}

img.sn-property-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease-in-out !important;
    border-radius: 0 !important;
    z-index: 0;
}
.sn-property-item:hover img.sn-property-img {
    transform: scale(1.1);
}

.sn-property-badges {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
}

.sn-property-location {
    display: block;
    width: auto;
    border-radius: 999px;
    padding: 3px 10px 2px 10px;
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 500;
    color: #000;
    background-color: var(--e-global-color-accent);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sn-property-type,
.sn-property-brokerage {
    font-size: 15px;
    line-height: 1.5em;
    font-weight: bold;
    color: #171717;
}

.sn-property-content {
    padding: 20px 8px 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.sn-property-title {
    width: 100%;
    margin: 0;
    font-size: 18px !important;
    line-height: 1.6em !important;
    text-align: left !important;
    color: #171717 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease-in-out;
}
.sn-property-item:hover .sn-property-title {
    text-decoration: underline;
}
.sn-property-item:hover .sn-property-title.skeleton {
    text-decoration: none;
}

ul.sn-property-features {
    padding: 15px 0 0 0;
    border-top: 1px solid #c7d5e1;
    margin: 0;
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}
li.sn-property-features-item {
    position: relative;
    text-align: left;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

li.sn-property-features-item:not(:last-child) {
    padding-right: 10px;
}
li.sn-property-features-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 1px;
    height: 60%;
    top: 20%;
    background-color: #c7d5e1;
}

/* Highlighting the price */
.sn-property-price {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 0 9px rgba(0,0,0,0.3);
    font-weight: bold;
    z-index: 2;
}

/* Laptop (<= 1024px) */
@media only screen and (max-width: 1024px) {
    .grid-sizer, .sn-property-item {
        width: 48%;
    }
}

/* Mobile (<= 767px) */
@media only screen and (max-width: 767px) {
    .grid-sizer, .sn-property-item {
        width: 100%;
    }
}

@keyframes sn-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#load-more-btn {
    width: 100%;
    margin: 20px auto;
    padding: 20px 15px;
    background-color: #0073e6;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    display: none; /* block */
}

#load-more-btn:hover {
    background-color: #005bb5;
}

#load-more-spinner {
    margin-left: 8px; /* Space between text and spinner */
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: sn-spin 0.8s linear infinite;
}

/* Semi-Transparent Overlay While Fetching Data */
#sn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EAF0F5;
    opacity: 0.5;
    display: none;
    z-index: 1000;
}

.sn-active-filters-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
}

/* Active Filters Display */
.sn-active-filters {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0 0;
}

.sn-active-filters-label {
    font-weight: bold;
    margin-right: 4px;
}

.sn-sort-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 300px;
    flex: 1;
}
.sn-sort-container label {
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1.5em !important;
    text-transform: normal !important;
    text-transform: none !important;
}
.sn-sort-container select#sort-filter {
    max-width: 220px;
    padding: 10px 15px !important;
    cursor: pointer !important;
    width: 100% !important;
    background-color: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    line-height: 1.4em !important;
    color: #5C727D !important;
    text-align: left !important;
}

#active-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

#active-filters > .active-filter{
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 4px 6px 4px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#active-filters > .active-filter::after {
    content: 'X';
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    font-size: 10px;
    line-height: 1em;
    font-weight: 400;
}

#active-filters > .active-filter:hover {
    background: #cc0000;
    color: #fff;
}

.active-filters-none {
    cursor: default !important;
    background: none !important;
    color: #555555 !important;
    padding: 0;
    font-weight: 400;
}
.active-filters-none::after {
    display: none;
    content: '';
}

/* Filter */ 
.sn-filter-container {
    position: relative;
    z-index: 10;

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 0 43px 0 rgba(7.0000000000000036, 152.0000000000005, 255, 0.25);
    margin: 0 auto -50px;
    transform: translateY(-50%);
}

/* Sorting Dropdown */
.sn-filter-container select {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="range"] {
    width: 100%;
}

#price-value, #sqft-value {
    font-weight: bold;
}

/* 
 * SKELETON
 */
#sn-property-listing-skeleton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sn-property-item-skeleton {
    width: 100% !important;
    margin: 0 !important;
}

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

.skeleton-text {
    width: 100%;
    height: 0.9rem;
    border-radius: .125rem;
    min-width: 40px;
}

.sn-property-type.skeleton-text,
.sn-property-brokerage.skeleton-text,
.sn-property-location.skeleton-text,
.sn-property-price.skeleton-text,
.sn-property-features-item.skeleton-list-item {
    width: 30%;
    max-width: 30%;
}
.sn-property-price.skeleton-text {
    height: 2rem;
}

.sn-property-img.skeleton {
    width: 100%;
    height: 200px;
}

.sn-property-icon {
    max-width: 15px;
    margin-right: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.sn-property-icon svg {
    width: 15px;
    height: 15px;
}

.skeleton-list-item,
.skeleton-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.sn-property-badges .skeleton-wrapper {
    width: 33%;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 70%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

/* Dropdowns */ 
.dropdown-container {
    position: relative;
    display: block;
    flex: 1;
}

.dropdown-label {
    font-weight: bold !important;
    display: block !important;
    width: 100% !important;
    font-weight: bold !important;
    font-size: 14px !important;
    line-height: 1.4em !important;
    margin-bottom: 5px !important;
    text-transform: none !important;
    text-align: left !important;
}

.dropdown-inner {
    position: relative;
    display: block;
    width: 100%;
}

button.dropdown-btn {
    padding: 10px 15px !important;
    cursor: pointer !important;
    width: 100% !important;
    background-color: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;

    font-size: 14px !important;
    line-height: 1.4em !important;
    color: #5C727D !important;
    text-align: left !important;
}
button.dropdown-btn:not(.active):hover{
    border-color: #0073E1 !important;
}
button.dropdown-btn.active,
button.dropdown-btn:focus {
    background-color: #efefef !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100% !important;
    width: auto !important;
    background: white;
    display: none;
    border-radius: 6px;
    overflow: hidden !important;
    z-index: 2000;
    box-shadow: 3px 1px 20px 0 rgba(0, 110, 225, 0.08);
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 0;
    margin-top: 2px;
}
.dropdown-menu.active {
    display: block;
}

.dropdown-container.beds-baths-container .dropdown-menu,
.dropdown-container.price-container .dropdown-menu,
.dropdown-container.sqft-container .dropdown-menu {
    padding: 15px 25px 20px !important;
}

.dropdown-menu input,
.dropdown-menu select {
    width: 100%;
}

.dropdown-menu label {
    font-size: 14px !important;
    line-height: 1.4em !important;
    font-weight: bold !important;
    text-align: left !important;
    width: 100% !important;
    text-transform: none !important;
}

.sn-filter-group {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}


/* Checkboxes */

.checkbox-group {
    display: flex;
    align-items: stretch !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;;
}
.checkbox-item {
    display: flex;
    align-items: center;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    text-align: center;
    position: relative;
    flex: 1;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-item span {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 0px !important;
    border: 1px solid #ccc;
    width: 52px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkbox-item:first-child span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.checkbox-item:last-child span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.checkbox-item:hover span, .checkbox-item input[type="checkbox"]:checked + span {
    background: #0073E1 !important;
    border-color: #0073E1 !important;
    color: white !important;
}

.bathrooms-filter-group {
    margin-top: 5px;
}

/* drop down buttons */
.dropdown-buttons {
    margin-top: 15px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.location-container .dropdown-buttons,
.type-container .dropdown-buttons {
    padding: 10px;
    margin-top: 0;
}

button.reset-btn,
button.done-btn {
    border: 1px solid #0073E1 !important;
    color: #0073E1 !important;
    border-radius: 5px !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    width: auto !important;
    font-size: 13px !important;
    line-height: 1.4em;
    text-align: center !important;
    font-weight: bold !important;
    text-transform: none !important;
}

button.reset-btn:hover {
    background: #0073E1 !important;
    color: #fff !important;
}

button.done-btn {
    background: #0073E1 !important;
    color: #fff !important;
}
button.done-btn:hover {
    background: #006ace !important;
    color: #fff !important;
}

/* Price Dropdown */
.range-fields {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.range-fields input {
    width: auto !important;
    max-width: 150px !important;
    flex: 1 !important;

    padding: 10px 15px !important;
    background-color: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;

    font-size: 13px !important;
    line-height: 1.4em !important;
    color: #5C727D !important;
    text-align: left !important;
}

.sqft-filter-group .range-fields input {
    min-width: 100px !important;
}


.range-fields input:hover {
    border-color: #0073E1 !important;
}
.range-fields input:focus {
    outline: none !important;
}

.slider-display {
    display: block;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 500;
}

#price-display {
    color: #0073E1;
}


/* noUiSlider Styles */
.noUi-connect {
    background: #0073E1 !important;
}

.noUi-target {
    background: #053A63 !important;
}

.noUi-horizontal {
    height: 5px !important;
}

.noUi-horizontal .noUi-handle {
    width: 20px !important;
    height: 20px !important;
    right: -17px !important;
    top: -9px !important;
}

.noUi-handle:before,
.noUi-handle:after {
    height: 10px !important;
    left: 7px !important;
    top: 5px !important;
}
.noUi-handle:after {
    left: 17px !important;
}

/* List Style */
#sn_location_search {
    padding: 5px 10px !important;
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1em !important;
    text-transform: none !important;
}
.sn_location_items_wrapper,
.sn_type_items_wrapper {
    max-height: 200px;
    overflow-y: auto;
}
#sn_location_selectedItems {
    border-width: 4px 0;
    border-style: solid;
    border-color: #e9e9e9;
    width: 100%;
    display: block;
}
#sn_location_listContainer,
#sn_type_listContainer {
    display: block;
    width: 100%;
}

.sn_location_list_item.sn_location_list_category {
    font-weight: bold;
    padding: 6px 32px 6px 6px;
}
.sn_location_list_item,
.sn_type_list_item,
.sn_location_selected_item {
    position: relative;
    cursor: pointer;
    padding: 6px 32px 6px 12px;
    display: flex;
    align-items: center;

    font-size: 14px;
    line-height: 1.4em;
    font-weight: normal;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}
.sn_location_list_item:hover,
.sn_type_list_item:hover {
    background-color: #f0f0f0;
}

.sn_location_list_item::after,
.sn_type_list_item::after,
.sn_location_selected_item::after {
    content: '✓';
    position: absolute;
    right: 8px;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    z-index: 2;
    display: none; /* flex */
    font-size: 12px;
    width: 16px;
    height: 16px;
    line-height: 1em;
    background-color: #0073E1;
    border-radius: 50%;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.sn_location_list_item.sn_location_selected::after,
.sn_type_list_item.sn_type_selected::after,
.sn_location_list_item.sn_location_group_selected::after,
.sn_location_selected_item::after {
    display: flex;
}
.sn_location_list_item.sn_location_group_selected::after {
    opacity: 0.5;
}

.sn_location_selected_item:hover {
    background-color: #fff;
}

.sn_hidden_select {
    display: none;
}

.sn-filter-fold-btn {
    width: 100% !important;
    display: block !important;
    position: relative !important;
    padding: 10px !important;
    background-color: #efefef !important;
    border: 1px solid #eee !important;
    border-radius: 7px !important;
    color: #171717 !important;
    display: none !important; /* flex */
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
}
.sn-filter-fold-btn:focus {
    outline: none !important;
    background-color: #efefef !important;
    border: 1px solid #eee !important;
    color: #171717 !important;
}
.sn-filter-fold-btn:hover {
    background-color: #fff !important;
    border-color: #0073E1 !important;
    color: #0073E1 !important;
}

.sn-filter-fold-icon {
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sn-filter-fold-icon svg {
    width: 15px;
    height: 15px;
}

.sn-filter-fold-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
}

@media only screen and (max-width: 1024px) {

    .sn-loader-icon {
        width: 44px;
        height: 44px;
        border-width: 4px;
    }
    
    /* Helper for Masonry Column Sizing */
    .grid-sizer {
        width: 48%; /* Adjust based on column count */
    }
    
    .sn-property-item {
        width: 48%; /* Adjust column width */
        margin-bottom: 20px;
        padding: 15px 15px 20px 15px;
        border-radius: 20px;
    }
    
    /* Ensure images load correctly without cropping */
    .sn-property-img-wrapper {
        border-radius: 16px;
    }
    
    .sn-property-badges {
        left: 16px;
        top: 16px;
        gap: 6px;
    }
    
    .sn-property-location {
        font-size: 14px;
    }
    
    .sn-property-type,
    .sn-property-brokerage {
        font-size: 14px;
    }
    
    .sn-property-content {
        padding: 16px 6px 0 6px;
        gap: 14px;
    }
    
    .sn-property-title {
        font-size: 17px !important;
    }
    
    ul.sn-property-features {
        padding: 12px 0 0 0;
        gap: 8px;
    }
    li.sn-property-features-item {
        font-size: 15px;
    }

    li.sn-property-features-item:not(:last-child) {
        padding-right: 8px;
    }

    /* Dropdowns */ 
    .dropdown-container {
        width: calc(33.33% - 8px);
        min-width: calc(33.33% - 8px);
        flex: 0;
    }
    
    /* Highlighting the price */
    .sn-property-price {
        left: 16px;
        bottom: 16px;
        font-size: 24px;
    }
    
    #load-more-btn {
        margin: 16px auto;
        padding: 16px 12px;
        border-radius: 8px;
    }
    
    #load-more-spinner {
        margin-left: 6px; /* Space between text and spinner */
        width: 15px;
        height: 15px;
    }
    
    .sn-active-filters-wrapper {
        flex-direction: column-reverse;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 16px;
    }
    
    /* Active Filters Display */
    .sn-active-filters {
        font-size: 15px;
        padding: 0;
        margin-bottom: 16px;
    }

    .sn-sort-container {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .sn-sort-container label {
        font-size: 15px !important;
    }
    .sn-sort-container select#sort-filter {
        max-width: 200px;
    }
    
    #active-filters {
        gap: 4px;
    }
    
    #active-filters > .active-filter{
        font-size: 13px;
    }
    
    /* Filter */ 
    .sn-filter-container {
        gap: 12px;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        flex-wrap: wrap;
        transform: translateY(0);
        margin: 0;
        transition: max-height 0.5s ease-in-out !important;
        max-height: 0;
        overflow: hidden !important;
    }
    .sn-filter-container.sn_unfold {
        max-height: 1000px;
        overflow: auto !important;
    }
    
    /* Sorting Dropdown */
    .sn-filter-container select {
        font-size: 15px;
    }
    
    /* 
     * SKELETON
     */
    #sn-property-listing-skeleton {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .sn-property-icon {
        max-width: 14px;
    }
    .sn-property-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .dropdown-label {
        font-size: 13px !important;
    }
    
    button.dropdown-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    .dropdown-menu label {
        font-size: 13px !important;
    }
    
    .checkbox-item span {
        width: 42px;
        height: 28px;
    }
    .checkbox-item:first-child span {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .checkbox-item:last-child span {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    /* drop down buttons */
    .dropdown-buttons {
        margin-top: 12px;
    }
    
    /* Price Dropdown */
    .range-fields {
        gap: 10px;
    }
    
    .range-fields input {
        width: 50%;
        max-width: 50%;
        padding: 8px 12px !important;
    }

    .sqft-filter-group .range-fields input {
        min-width: 90px !important;
    }

    .dropdown-container.beds-baths-container .dropdown-menu {
        left: auto !important;
        right: 0 !important;
    }

    .sn-filter-fold-btn {
        display: flex !important;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {

    .sn-loader-icon {
        width: 42px;
        height: 42px;
    }
    
    /* Helper for Masonry Column Sizing */
    .grid-sizer {
        width: 100%; /* Adjust based on column count */
    }
    
    .sn-property-item {
        width: 100%; /* Adjust column width */
        margin-bottom: 16px;
        padding: 15px 15px 20px 15px;
        border-radius: 16px;
    }
    
    /* Ensure images load correctly without cropping */
    .sn-property-img-wrapper {
        border-radius: 12px;
    }
    
    .sn-property-badges {
        left: 14px;
        top: 14px;
        gap: 5px;
    }
    
    .sn-property-location {
        font-size: 13px;
    }
    
    .sn-property-type,
    .sn-property-brokerage {
        font-size: 13px;
    }
    
    .sn-property-content {
        padding: 16px 6px 0 6px;
        gap: 12px;
    }
    
    .sn-property-title {
        font-size: 16px !important;
    }
    
    ul.sn-property-features {
        padding: 10px 0 0 0;
        gap: 6px;
    }
    li.sn-property-features-item {
        font-size: 14px;
    }

    li.sn-property-features-item:not(:last-child) {
        padding-right: 6px;
    }
    
    /* Highlighting the price */
    .sn-property-price {
        left: 12px;
        bottom: 12px;
        font-size: 20px;
    }
    
    #load-more-btn {
        border-radius: 6px;
    }
    
    #load-more-spinner {
        margin-left: 4px; /* Space between text and spinner */
        width: 14px;
        height: 14px;
    }
    
    .sn-active-filters-wrapper {
        gap: 12px;
        margin-top: 16px;
        margin-bottom: 10px;
    }
    
    /* Active Filters Display */
    .sn-active-filters {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .sn-sort-container select#sort-filter {
        max-width: 100% !important;
        width: 100% !important;
    }

    #active-filters > .active-filter{
        font-size: 12px;
    }

    .sn-sort-container {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-width: 100%;
    }
    .sn-sort-container label {
        font-size: 14px !important;
    }
    
    /* Filter */ 
    .sn-filter-container {
        flex-direction: column;
        gap: 16px;
    }

    /* Dropdowns */ 
    .dropdown-container {
        width: 100%;
    }

    /* 
     * SKELETON
     */
    #sn-property-listing-skeleton {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    
    .range-fields input {
        max-width: 50% !important;
    }

    .sqft-filter-group .range-fields input {
        min-width: 50% !important;
        width: 50% !important;
    }

    .dropdown-container.beds-baths-container .dropdown-menu {
        left: 0 !important;
        right: auto !important;
    }

    .dropdown-container .dropdown-menu {
        left: 0 !important;
        right: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}