#filterBox {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 10px;
}

.filter-title {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
    color:black;
}

.filter-section {
    margin-bottom: 22px;
}

.filter-section h4 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-left: 3px solid #0071e3;
    padding-left: 6px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-inputs input {
    width: 45%;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.select-box {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

.filter-check {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.apply-btn {
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    border: none;
    background: #111;
    color: white;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.apply-btn:hover {
    background: #333;
}
@media (max-width: 768px) {
    #filterBox {
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #eee;
    }
}

