/* WebEllio Price Filter — price-filter.css v1.0 */

.wepf-widget { position: relative; user-select: none; }

.wepf-heading {
    margin: 0 0 12px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1f2937;
}

/* Track */
.wepf-slider-wrap { padding: 10px 8px; }

.wepf-track {
    position: relative;
    height: 4px;
    border-radius: 9999px;
    background: #e5e7eb;
    margin: 0 8px;
}

.wepf-fill {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: #f5be23;
    pointer-events: none;
}

/* Handles */
.wepf-handle {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f5be23;
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    transition: box-shadow .15s ease;
}
.wepf-handle:active  { cursor: grabbing; box-shadow: 0 2px 8px rgba(0,0,0,.22); }
.wepf-handle:focus-visible { outline: 2px solid #f5be23; outline-offset: 3px; }

/* Labels */
.wepf-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: .75rem;
    color: #6b7280;
}

/* Reset */
.wepf-reset {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: none;
    padding: 0;
    font-size: .75rem;
    color: #6b7280;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s ease;
}
.wepf-reset:hover { color: #111827; }

/* Loading */
.wepf-loading { display: none; align-items: center; justify-content: center; margin-top: 8px; }
.wepf-loading.is-active { display: flex; }

.wepf-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e5e7eb;
    border-top-color: #f5be23;
    border-radius: 50%;
    animation: wepf-spin .7s linear infinite;
}
@keyframes wepf-spin { to { transform: rotate(360deg); } }

/* Grid fade while loading */
.wepf-grid-loading { opacity: .4; pointer-events: none; transition: opacity .2s ease; }
