.price-filter-widget h4{
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.categories__products.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
    min-height: 200px;
}

.categories__products.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.no-products {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}
.current-price{
    text-align: center;
    width: 100%;
    font-size: 14px;
    display: block;
    margin-top: 16px;
    margin-bottom: 20px;
}
#price-slider-range{
    height: 2px;
    border: none;
    background: #cdcdcd;
}
#price-slider-range .ui-slider-range{
    background: #000;
}
#price-slider-range .ui-slider-handle{
    border-radius: 100%;
    width: 20px;
    height: 20px;
    background: #000;
    border: none;
    top: -8px;
}