.product-category-filter {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.product-category-filter li {
    margin-bottom: 12px;
}

.product-category-filter li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

.product-category-filter .cat-radio {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: inline-block;
}

.product-category-filter li.active .cat-radio {
    border: 5px solid #333;
}

.product-category-filter li.active a {
    font-weight: 600;
}
.mp-price-filter {
    margin-top: 15px;
}

.mp-price-slider-box {
    background: #fff;
    padding: 15px 5px;
}

.mp-slider {
    height: 6px;
    position: relative;
    background: #ddd;
    border-radius: 10px;
    margin: 25px 10px 20px;
}

.mp-slider .mp-progress {
    height: 100%;
    position: absolute;
    border-radius: 10px;
    background: #f56a00;
    left: 0;
    right: 0;
}

.mp-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

.mp-slider input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #f56a00;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

.mp-slider input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #f56a00;
    pointer-events: auto;
    cursor: pointer;
}

.mp-price-values {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 18px;
    margin-top: 10px;
}

.mp-filter-btn {
    margin-top: 15px;
    width: 100%;
    background: #f56a00;
    color: #fff;
    border: none;
    padding: 9px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.mp-rating-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-rating-filter li {
    margin-bottom: 10px;
}

.mp-rating-filter li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.rating-radio {
    width: 18px;
    height: 18px;
    border: 1px solid #bbb;
    border-radius: 50%;
    display: inline-block;
}

.mp-rating-filter li.active .rating-radio {
    border: 5px solid #333;
}

.star {
    color: #ccc;
    font-size: 18px;
}

.star.filled {
    color: #f5a623;
}

.rating-text {
    font-size: 14px;
    color: #555;
}

