.price-slider-container {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.slider-track {
    width: 100%;
    height: 4px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #e9ecef;
}

input[type="range"].price-slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

input[type="range"].price-slider::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 4px;
}

input[type="range"].price-slider::-moz-range-track {
    -moz-appearance: none;
    height: 4px;
}

input[type="range"].price-slider::-ms-track {
    appearance: none;
    height: 4px;
}

input[type="range"].price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    background-color: var(--bs-primary);
    cursor: pointer;
    margin-top: -10px;
    /* (4 - 24) / 2 */
    pointer-events: auto;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

input[type="range"].price-slider:active::-webkit-slider-thumb {
    transform: scale(1.2);
}

input[type="range"].price-slider::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    height: 18px;
    width: 18px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--bs-primary);
    pointer-events: auto;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input[type="range"].price-slider::-ms-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--bs-primary);
    pointer-events: auto;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.price-input-box {
    position: relative;
    flex: 1;
}

.price-input-box input {
    width: 100%;
    padding: 10px 10px 10px 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    transition: border-color 0.3s ease;
}

.price-input-box input:focus {
    border-color: var(--bs-primary);
    outline: none;
}

.price-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
}

.price-divider {
    width: 10px;
    height: 1px;
    background-color: #dee2e6;
}

/* Chrome, Safari, Edge, Opera */
.price-input-box input::-webkit-outer-spin-button,
.price-input-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.price-input-box input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;

}