/**
 * Aberhol Filters — Range Slider CSS
 */
.af-range-slider-container {
    position: relative;
    width: 100%;
    height: 20px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    user-select: none;
    touch-action: none;
}

.af-slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 9999px;
    z-index: 1;
}

.af-slider-range {
    position: absolute;
    height: 4px;
    background: #05ad40;
    border-radius: 9999px;
    z-index: 2;
}

.af-slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 2.5px solid #05ad40;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}

.af-slider-handle:hover,
.af-slider-handle:focus-visible {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 2px 8px rgba(5, 173, 64, 0.35);
}

.af-slider-handle.af-active {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 4px rgba(5, 173, 64, 0.2);
}
