.propstack-search-filter-section {
    .tab-icon
    {
        display: none !important
    }
    .search-filter-tabs {
        /* overflow: hidden; */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    }
    .tab-navigation {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
        display: flex;
        background: #f1f5f9;
        border-bottom: 1px solid #e5e7eb;
    }

    .tab-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        background: none;
        border: none;
        color: var(--greyDark, darkgrey);
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;

        &:not(.active) {
            background: var(--greyVeryLight, lightgrey);
        }
    }

    .tab-btn:hover {
        background: #e2e8f0;
        color: #475569;
    }

    .tab-btn.active {
        background: var(--mainColor, orange);
        color: var(--contrastColorInverted, white);
        /* box-shadow: 0 -2px 0 #3b82f6 inset; */
    }

    .tab-icon {
        font-size: 1.125rem;
    }

    .tab-content {
        position: relative;
    }

    .tab-panel {
        display: none;
    }

    .tab-panel.active {
        display: block;
    }

    .location-search-stats {
        display: flex;
        column-gap: 2rem;
        row-gap: .5rem;
        flex-wrap: wrap;
    }

    .location-search-loading {
        padding-bottom: .5rem;
        color: var(--mainColor, orange);
    }

    .location-search-container {
        display: flex;
        gap: 2rem;
    }
    /* Tab Responsive Design */
    @media (min-width: 769px) {
        /* .propstack-location-search-form {
            padding: 0 2rem 2rem 2rem;
        } */
        .location-status {
            margin-bottom: -2rem
        }
        .location-search-stats {
            padding: 0 2rem 2rem 2rem;
        }
        .location-search-loading{
            padding-left: 2rem
        }
        .propstack-location-search-form,
        .propstack-filter-form {
            padding: 2rem;
        }
        .location-status {
            padding-left: 2rem
        }
    }
    @media (max-width: 768px) {
        .search-filter-tabs .tab-navigation {
            flex-direction: column;
        }

        .tab-btn {
            justify-content: flex-start;
            padding: 0.75rem 1rem;
        }

        /* .propstack-location-search-form {
            padding: 0 1.5rem 1.5rem 1.5rem;
        } */
         .location-status {
            margin-bottom: -1.5rem
         }
        .location-search-loading{
            padding-left: 1.5rem
        }
        .location-search-stats {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        .propstack-location-search-form,
        .propstack-filter-form {
            padding: 1.5rem;
        }
        .location-status {
            padding-left: 1.5rem
        }

        .search-filter-actions {
            padding: 1rem;
        }
    }

    @media (max-width: 480px) {
        .propstack-property-header,
        .propstack-archive-header,
        .propstack-taxonomy-header {
            padding: 20px 0;
        }

        /* .property-title,
        .archive-title,
        .taxonomy-title {
            font-size: 1.5rem;
        } */

        .propstack-properties-grid {
            padding: 20px 0;
        }

        .sidebar-section {
            padding: 20px;
        }

        .property-content {
            padding: 15px;
        }
    }

    .location-search-title {
        font-size: clamp(20px, 1.6vw, 30px);
    }
    /* .propstack-filter-group {
        margin-bottom: 10px;
    } */

    .propstack-location-search {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .location-input-group,
    .radius-input-group {
        flex-grow: 1;
    }
    /* .propstack-filter-group, */
    .location-input-section {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        flex-grow: 1;
        
        /* > label {
            flex-basis: 300px;
            
            + * {
                flex-grow: 1;
                flex-basis: calc(100% - 300px)
            }
        } */
    }

    .status-info {
        flex-basis: 100%;
        display: flex;
        gap: 10px;
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, .8);
        padding: 10px;
        background: var(--mainColor, orange);
        color: var(--contrastColorInverted, white);
        border-radius: 10px;
    }

    input, select {
        border-radius: var(--borderRadius, 10px);
        border: 1px solid var(--greyVeryLight, lightgrey);
        background-color: var(--contrastColorInverted, white);
        min-height: 40px;
        padding: 0 10px
    }
    /* .location-input-group {
        margin-bottom: 10px;

    } */

    label {
        font-size: 14px
    }
    .location-input-wrapper {
        display: flex;
        align-items: center;
        gap: .5rem
    }
    .location-clear-btn,
    .location-current-btn {
        background: var(--contrastColorInverted, white);
        border: 1px solid var(--mainColor, orange);
        border-radius: 10px;
        width: 40px;
        height: 40px;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mainColor, orange);
        cursor: pointer;
        transition: .3s background ease, .3s color ease;

        &:hover {
            background: var(--mainColor, orange);
            color: var(--contrastColorInverted, white);
        }
    }

    .propstack-filter-actions {
        margin-top: var(--fl-margin-before-extra-small, 30px);
        margin-bottom: var(--fl-margin-before-extra-small, 30px);
    }
    
    .propstack-filter-actions,
    .location-search-actions {
        gap: 1rem;
    }
    .propstack-filter-actions,
    .location-search-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        
        > * {
            flex-grow: 1
        }
    }

    .btn-reset {
        display: inline-block;
        position: relative;
        border: none;
        cursor: pointer;
        padding: 12px 40px;
        color: var(--contrastColorInverted, white);
        background: var(--primaryGradient, linear-gradient(180deg, #EB8B26 0%, #D2720D 100%));
        transition: .3s background ease, .3s color ease; 
        line-height: 120%;
        box-shadow: 0px -4px 14px 0px rgba(0, 0, 0, 0.25) inset;
        border-radius: 50px;
        border: 1px solid var(--mainColor, orange);
        font-family: var(--headline, sans-serif);
        font-size: 17px;
        font-weight: 500;

        &:hover {
            background: var(--contrastColorInverted, white);
            color: var(--mainColor, orange);
            box-shadow: none;
        }

    }

    .search-filter-actions {
        padding: 1rem 2rem;
        border-top: 1px solid #e5e7eb;
        text-align: center;
    }

    .propstack-filter-results {
        margin-top: var(--fl-margin-before-extra-small, 30px);
        /* margin-bottom: var(--fl-margin-before-extra-small, 30px); */
        display: flex;
        gap: 1rem;

        .propstack-filter-loading {
            color: var(--mainColor, orange)
        }
    }
    .propstack-filter-advanced-toggle,
    .propstack-filter-toggle-btn,
    .propstack-btn-secondary {
        background: transparent;
        border: 1px solid var(--mainColor, orange);
        border-radius: 50px;
        color: var(--mainColor, orange);
        box-shadow: none;
        cursor: pointer;
        padding: 10px 40px;
        font-weight: 500;
        transition: .3s background-color ease, .3s color ease;
        
        &::before {
            background-color: var(--mainColor, orange);
        }
        &:hover {
            background: var(--mainColor, orange);
            color: var(--contrastColorInverted, white);
            &::before {
                background-color: var(--contrastColorInverted, white);
            }
        }
    }
    .reset-icon {
        font-size: 1.4rem
    }
    .search-tips-summary{
        cursor: pointer;

        &::marker {
            color: var(--mainColor, orange)
        }
    }
    .location-status {
        display: flex;
        gap: .5rem;
        align-items: center;
        height: 2rem;
        font-size: 14px;
    }
    .suggestions-list {
        .suggestion-item {
            padding: 5px;
            cursor: pointer;
            transition: .3s background-color ease, .3s color ease;
            &:nth-child(odd) {
                background-color: var(--greyVeryLight, lightgrey);
            }
            &:first-child {
                border-top: 1px solid var(--grey, grey)
            }
            &:nth-child(even) {
                background-color: var(--contrastColorInverted, white);
            }
            &:hover {
                background-color: var(--mainColor, orange);
                color: var(--contrastColorInverted, white);
            }
        }
    }
    .select-wrapper {
        width: 100%;
        position: relative
    }
    .location-suggestions {
        border: 1px solid var(--greyVeryLight, lightgrey);
        border-top: none;
        margin-right: 10px;
        position: absolute;
        top: calc(100% - 5px);
        left: 0;
        width: 100%;
        border-radius: 0 0 10px 10px;
	    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        z-index: 99;
        min-width: 200px;
    }

    .propstack-filter-grid{
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;

        > * {
            flex-grow: 1;
            flex-basis: 300px;

            /* &:not(.propstack-filter-group-price):not(.propstack-filter-group-area) {
            } */
            &.propstack-filter-group-price, 
            &.propstack-filter-group-area {
                /* flex-basis: 100%; */

                > div {
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    > input {
                        flex-basis: 300px;
                        flex-grow: 1;
                    }
                }
            }
        }
    }
}