.price-range-slider input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 18px;
    border-radius: 4px;
    background: #E67E22;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: -6px;
}

.price-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #E67E22;
}

.price-range-slider input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #E67E22;
}

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

.price-range-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: #E67E22;
}

.price-range-slider input[type="range"]:focus::-moz-range-track {
    background: #E67E22;
}

@media (max-width: 767.98px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center !important;
    }
}

@media screen and (max-width: 767px) {
    .spare-part-box {
        gap: 10px;
        /* height: 270px; */
        width: 186px;
    }

    .cart-icon-spare {
        margin-top: 189px;
        margin-right: 61px;
        position: absolute;
        /* top: 265px; */
        /* display: flex; */
        justify-content: center;
        align-items: center;
        /* width: 100%; */
        /* height: auto; */
        text-align: center;
    }

    .tax-include {
        white-space: nowrap;
        font-size: 10px;
    }

    .price {
        white-space: nowrap;
    }

    .spare-part-title h3 {
        font-family: Tajawal;
        font-weight: 700;
        font-size: 12px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        color: #000;
    }

    .product-price .regular-price {
        white-space: nowrap;
        color: red !important;
        display: flex;
        /* Required for gap to work */
        gap: 1px;
        align-items: center;
        /* Optional: vertical alignment */
    }

    .product-price {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        /* margin-bottom: 16px; */
        flex-direction: row-reverse;
        gap: 4px;
    }
}