/* Sidebar */
.sidebar {
    width: 387px;
    flex-shrink: 0;
}

.slider-track {
    width: 100%;
    height: 5px;
    background: #8c0000;
    border-radius: 25px;
    position: relative;
}

.slider-handle {
    position: absolute;
    top: -10px;
    width: 25px;
    height: 25px;
    background: #ebeade;
    border-radius: 12.5px;
    border: 6px solid #8c0000;
}

.slider-handle.left {
    left: 0;
}

.slider-handle.right {
    right: 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.slider-labels span {
    font-family: 'Gill Sans MT Bold', Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: #8c0000;
}
.filter-card {
    background: rgba(140, 0, 0, 0.04);
    border-radius: 23px;
    border: none;
    padding: 24px;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: 'Gill Sans MT Bold', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    font-size: 24px;
    margin-bottom: 16px;
}

.price-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.input-group label {
    font-family: 'Gill Sans MT Bold', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    font-size: 20px;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
}

.radio-option input[type="radio"] {
    width: 25px;
    height: 25px;
    background: #ebeade;
    border-radius: 12.5px;
    border: 2px solid #8c0000;
    appearance: none;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked {
    border: 6px solid #8c0000;
}

.radio-option label {
    font-family: 'Gill Sans MT Regular', Helvetica, sans-serif;
    font-weight: normal;
    color: #8c0000;
    font-size: 14px;
    cursor: pointer;
}



