.wps247-filter-price {
    width: 100%;
}

.wps247-price-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.wps247-price-inputs .price-field {
    flex: 1;
}

.wps247-price-inputs label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.wps247-price-inputs input[type="number"] {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
}

/**
 * Range wrapper
 */
.wps247-price-range {
    position: relative;
    height: 40px;
}

/**
 * Remove default range
 */
.wps247-price-range input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 15px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

/**
 * Track
 */
.wps247-price-range::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 17px;
    height: 6px;
    background: #ddd;
    border-radius: 10px;
}

/**
 * Thumb Chrome
 */
.wps247-price-range input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2271b1;
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    position: relative;
}

/**
 * Thumb Firefox
 */
.wps247-price-range input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2271b1;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}

/**
 * Active layer
 */
.wps247-price-range .range-progress {
    position: absolute;
    height: 6px;
    top: 17px;
    background: #2271b1;
    border-radius: 10px;
}

.wps247-filter-rating .wps247-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.filter-rating {
    display: flex;
    gap: 5px;
    color: #f5a623;
}

.filter-rating span {
    color: #555;
    font-size: 14px;
}

.wps247-filter-submit {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.wps247-filter-button {
    padding: 12px 25px;
    border: none;
    background: var(--e-global-color-accent) !important;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    width: 50%;
}
.wps247-filter-button:focus,
.wps247-filter-button:hover {
    background: var(--e-global-color-accent) !important;
    opacity: 0.8;
}

.wps247-filter-reset {
    padding: 12px 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    width: 50%;
}