/* WPF Attribute Slider – style frontendowe */

.wpfAttrSliderWrapper .wpfAttrSliderContent {
    padding: 8px 6px 14px;
}

/* Wyświetlacz wartości min–max */
.wpfAttrSliderDisplay {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}

.wpfAttrSliderValMin,
.wpfAttrSliderValMax {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 3px 8px;
    min-width: 48px;
    text-align: center;
    display: inline-block;
}

.wpfAttrSliderSep {
    color: #999;
    font-weight: 400;
}

/* jQuery UI slider track */
.wpfAttrSliderTrack {
    margin: 6px 8px 4px;
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    border: none;
    box-shadow: none;
}

/* Wybrana część toru */
.wpfAttrSliderTrack .ui-slider-range {
    background: #96588a; /* kolory WooCommerce/WPF */
    border-radius: 2px;
}

/* Uchwyty */
.wpfAttrSliderTrack .ui-slider-handle {
    width: 16px;
    height: 16px;
    top: -6px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #96588a;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    cursor: grab;
    outline: none;
    transition: box-shadow .15s;
}

.wpfAttrSliderTrack .ui-slider-handle:hover,
.wpfAttrSliderTrack .ui-slider-handle:active {
    box-shadow: 0 0 0 4px rgba(150, 88, 138, .18);
    cursor: grabbing;
}

/* Ukryj oryginalną listę termów */
.wpfAttrSliderHiddenList {
    display: none !important;
}
