.gpb-filter-wrap {
    padding: 0;
}
.gpb-filter-item {
    margin-bottom: 24px;
}
.gpb-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #161615;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gpb-values {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}
.gpb-range-wrap {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}
.gpb-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}
.gpb-fill {
    position: absolute;
    height: 4px;
    background: #A50B27;
    border-radius: 2px;
}
.gpb-range {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 4px;
}
.gpb-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #A50B27;
    cursor: pointer;
    pointer-events: all;
}
.gpb-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #A50B27;
    cursor: pointer;
    pointer-events: all;
}
.gpb-apply-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #A50B27;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
}
.gpb-apply-btn:hover {
    background: #830921;
}
.gpb-reset-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    text-decoration: underline;
}