.range-wrapper__sliders {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 32px;
}

.range-wrapper__range {
    width: 100%;
}

.range-wrapper__inputs {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.range-wrapper__input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.range-wrapper__input {
    width: 80px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    padding: 4px 6px;
    border: 1px solid #ccc;
}


input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #fce4e4;
    border-radius: 4px;
    outline: none;
    position: relative;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 10px;
    background: #fce4e4;
    border-radius: 4px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #e02000;
    border: 4px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 2px #e02000;
    margin-top: -6px;
    position: relative;
    z-index: 2;
}

input[type=range]::-moz-range-track {
    height: 10px;
    background: #fce4e4;
    border-radius: 4px;
}

input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #e02000;
    border: 4px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 2px #e02000;
}

input[type=range].range-progress {
    background: linear-gradient(to right, #e02000 0%, #fce4e4 100%);
}


.filter-box {
    border: 1px solid #e02000;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}
.filter-box h3 {
    font-weight: 800;
    font-size: 20px;
}
.filter-box small {
    color: #e02000;
    font-weight: 500;
    font-size: 15px;
}
.range-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-direction: column;
}
.range-wrapper input[type=number] {
    width: 80px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
}
.range-wrapper .kg-label {
    background: black;
    color: white;
    padding: 4px 8px;
    margin-left: 4px;
    font-size: 13px;
    border-radius: 4px;
}

.filter-checkbox {
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
}

.filter-checkbox__input {
    appearance: none !important;
    width: 30px !important;
    height: 30px !important;
    border: 1px solid #000 !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    cursor: pointer !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out !important;
    position: relative;
}

.filter-checkbox__input:checked {
    background-color: #e02000 !important;
    border-color: #e02000 !important;
    box-shadow: inset 0 0 0 4px #e02000 !important;
    position: relative;
}

.filter-checkbox__input:checked::after {
    content: '';
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 4px;
    top: 0;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox__label {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    vertical-align: middle;
}