/* Smart Cascading Woo Filter v1.2.0 - Price Range Slider Styles */
.scwf-price-step-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    margin-top: 16px;
}

.scwf-price-slider {
    position: relative;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin: 18px 6px 10px 6px;
}

.scwf-price-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #cbd5e1;
    border-radius: 4px;
}

.scwf-price-range {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    right: 0%;
    background-color: #2563eb;
    border-radius: 4px;
    transition: left 0.05s ease, right 0.05s ease;
}

.scwf-range-input {
    position: absolute;
    width: 100%;
    height: 8px;
    top: -4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

.scwf-range-input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: grab;
    transition: transform 0.1s ease, border-color 0.1s ease;
}

.scwf-range-input::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
    border-color: #1d4ed8;
}

.scwf-range-input::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    -moz-appearance: none;
    cursor: grab;
    transition: transform 0.1s ease, border-color 0.1s ease;
}

.scwf-price-label {
    font-size: 0.813rem;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    font-family: monospace;
}

/* Responsive adjustment for mobile touch */
@media (max-width: 640px) {
    .scwf-range-input::-webkit-slider-thumb {
        height: 24px;
        width: 24px;
    }
    .scwf-range-input::-moz-range-thumb {
        height: 24px;
        width: 24px;
    }
}