/* Single dual-handle price range slider */
.wc-price-range {
    --range-thumb: 20px;
    --range-track-h: 6px;
}

.wc-price-range input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: var(--range-thumb);
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    pointer-events: none;
    background: transparent;
}

.wc-price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: var(--range-thumb);
    height: var(--range-thumb);
    border-radius: 50%;
    background: #e67e22;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    margin-top: -8px;
}
span#max_val:before {
    content: '₹';
}

span#min_val:before {
    content: '₹';
}
#price_range_display{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
}

#price_range_display .divider{
    display:none;
}

.wc-price-range input[type="range"]::-moz-range-thumb {
    width: var(--range-thumb);
    height: var(--range-thumb);
    border-radius: 50%;
    background: #e67e22;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.wc-price-range input[type="range"]::-webkit-slider-runnable-track {
    height: var(--range-track-h);
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
    margin-top: calc((var(--range-thumb) - var(--range-track-h)) / 2);
}

.wc-price-range input[type="range"]::-moz-range-track {
    height: var(--range-track-h);
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
}

.wc-price-range .wc-range-max {
    z-index: 1;
}

.wc-price-range .wc-range-min::-webkit-slider-runnable-track {
    background: transparent;
}

.wc-price-range .wc-range-min::-moz-range-track {
    background: transparent;
}

.wc-sidebar h3 {
    color:#323D3D;
    font-size: 24px;
    line-height:32px;
    font-weight:900;
}
.wc-sidebar h4 {
    color:#323D3D;
    font-size: 20px;
    line-height:27px;
    font-weight:700;
    margin-top: 0;
    margin-bottom: 16px;
}


.filter-category-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.filter-category-item label {
    color: #323D3D;
    font-size: 20px;
    line-height: 33px;
    font-weight: 400;
}


.filter-category-item label input[type=checkbox] {
    border: 1px solid #323D3D;
    border-radius: 0 !important;
    background: transparent !important;
    transform: scale(1.1);
    outline: 0 !important;
    margin-right: 10px;
}
