/* Price Range Slider - Explore Page */
.price-slider-wrap {
    position: relative;
    height: 36px;
}

.price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    transform: translateY(-50%);
    margin: 0;
}

.price-fill {
    position: absolute;
    top: 50%;
    height: 4px;
    background: #333;
    border-radius: 4px;
    transform: translateY(-50%);
    margin: 0;
}

.price-slider-wrap input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    margin: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
}

.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #333;
    cursor: pointer;
}

.price-slider-wrap input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #333;
    cursor: pointer;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    color: #6b6b6b;
}

.sort-link.active,
.dropdown-item.active {
    background-color: #e30613 !important;
    color: #fff !important;
}
