﻿.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    flex-direction: column;
}

    /* هر آیتم */
    .category-list input[type="checkbox"] {
        display: none; /* مخفی کردن چک‌باکس واقعی */
    }

    /* لیبل */
    .category-list label {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 20px;
        border: 1px solid #ddd;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        background: #fff;
    }

        /* هاور */
        .category-list label:hover {
            border-color: #003560;
            color: #003560;
        }

    /* حالت انتخاب شده */
    .category-list input[type="checkbox"]:checked + label {
        background: #003560;
        color: #fff;
        border-color: #003560;
    }


















.price-box {
    padding: 10px;
}

    .price-box input[type=range] {
        width: 100%;
        margin: 10px 0;
    }

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.btn-filter {
    width: 100%;
    padding: 8px;
    background: #003560;
    color: white;
    border: none;
    border-radius: 8px;
}