#search-and-filter {

    font-family: 'Open Sans';
    /* width: max-content; */

    .filter-level {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 15px 0px;
        list-style: none;
    }
    
    .filter-item {
        margin: 0;
    }
    
    .filter-btn {
        background: #f6f6f6;
        border: 1px solid #ddd;
        padding: 5px 10px;
        font-weight: 500;
        text-transform: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.15s ease;
    }


    
    .filter-btn:focus  {
        background: #eaeaea;
        color: var( --e-global-color-fe36771 );
    }
    
    .filter-count {
        font-size: 0.8em;
        opacity: 0.6;
    }

    .reset-filters {
        display: flex;
        gap: 5px;
        margin-top: 15px;
        text-decoration: none;
        p  {
            margin: 0;
        }

        &.hide {
            display: none;
        }
        i {
            display: flex;
            align-items: center;
        }
    }

    .filter-level:not(.filter-level-1) {
        .filter-btn {
            color: #333333;
        }
        .filter-btn.is-active, .filter-btn:hover {
            background-color: #333333;
            color: white;
        }
    }
    .filter-level-1 {
        .filter-btn {
            font-weight: 600;
        }
        .filter-btn.is-active, .filter-btn:hover {
            background-color: #CC141E;
            color: white;
        }
    }
    .filter-level {
        display: none;
        &:has(.filter-item) {
            display: flex;
        }
        &:not(:first-child) {
            border-top: 1px solid #f6f6f6;
        }
    }
    .aronda-product-search__input {
        width: 30%;
        border-radius: 4px;
        height: 100%;
    }
    .aronda-product-search__button {
        padding: 5px 10px;
        height: 100%;
        border-radius: 4px; 
    }
    .aronda-product-search {
        height: 45px;
        display: flex;
        gap: 15px;
        align-items: center;
        margin-top: 15px;
    }
}