/* KD Price Filter Slider */

.kd-pf {
    padding: 0 0 16px 0;
}

.kd-pf__title h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
    margin: 0 0 12px 0;
}

.kd-pf__values {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.kd-pf__val-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 3px;
}

.kd-pf__val-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.kd-pf__val-input {
    width: 80px;
    padding: 5px 7px;
    font-size: 13px;
    border: none;
    outline: none;
    -moz-appearance: textfield;
}

.kd-pf__val-input::-webkit-inner-spin-button,
.kd-pf__val-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.kd-pf__val-sep {
    color: #bbb;
    font-size: 14px;
    margin-top: 16px;
    flex-shrink: 0;
}

/* Slider */
.kd-pf__slider {
    position: relative;
    height: 20px;
    margin: 6px 0 14px;
}

.kd-pf__track-bg,
.kd-pf__track-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 2px;
    pointer-events: none;
}

.kd-pf__track-bg {
    left: 0;
    right: 0;
    background: #ddd;
}

.kd-pf__track-fill {
    background: #8bc34a;
}

.kd-pf__slider input[type="range"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    pointer-events: none;
    margin: 0;
    padding: 0;
    height: 20px;
}

.kd-pf__slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #8bc34a;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.kd-pf__slider input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #8bc34a;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Button */
.kd-pf__btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: #8bc34a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
}

.kd-pf__btn:hover {
    background: #7aaa3d;
}

.kd-pf__reset {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

.kd-pf__reset:hover {
    color: #e53935;
}
