.filter-menu-header{
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
}
.filter-menu{
    width: 100%;
    margin: auto;
    padding-inline: 16px;
    padding-block: 24px;
    max-width: 600px;
    max-height: 500px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    direction: ltr !important;
}

.filter-menu.show {
    transform: translateY(0);
} 
.filter-menu-body{
    margin-top: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.filter-menu-body-row{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-inline: 10px;
}
.filter-menu-body-row-head{
    direction: rtl;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.filter-menu-body-row-body{
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 12px;
}
.filter-menu-body-row-body.open{
    max-height: 200px;
    padding-bottom: 16px;
}
.filter-menu-input-container {
    position: relative;
    width: 100%;
    height: 50px;
}
input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: var(--gray-0);
    border: 1px solid var(--brand-700);
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--brand-700);
    pointer-events: auto;
    border: none;
}
input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--brand-700);
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid var(--brand-700);
}
.filter-menu-value-container {
    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 4px 0;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: var(--gray-1000);
}
.filter-menu-value-container-item{
    display: flex;
    align-items: center;
    direction: rtl;
}

.filter-menu-button-container{
    width: 100%;
    display: flex;
    padding-block: 24px;
    
    flex-direction: column;
    gap: 12px;
}
.filter-verify-button{
    width: 100%;
    height: 40px;
    border-radius: 8px;
    background-color: var(--brand-600);
    border: none;
    outline: none;
}
.filter-remove-button{
    width: 100%;
    height: 38px;
    border-radius: 8px;
    background-color: var(--brand-50);
    border: none;
    outline: none;
    border: 1px solid var(--brand-600);
}
.filter-menu-food-type-item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
    margin-bottom: 12px;
}