﻿.subcategory-item a {
    color: black; /* تنظیم رنگ زیر دسته‌بندی‌ها به مشکی */
    text-decoration: none; /* حذف زیر خط برای لینک‌ها، در صورت نیاز */
}

    .subcategory-item a:hover {
        color: gray; /* تغییر رنگ هنگام هاور برای تجربه کاربری بهتر */
    }

.price-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; /* فاصله بیشتر با اسلایدر */
}

    .price-range div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.price-input {
    width: 100px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
    font-weight: bold;
}

.price-slider {
    margin: 20px 0 30px; /* تنظیم فاصله بین اسلایدر و ورودی‌ها */
    width: 100%;
}

.noUi-tooltip {
    display: block;
    background: #17a2b8;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
}

.product-list-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

    .product-list-section .text-center {
        padding: 20px;
    }

    .product-list-section h3 {
        color: #dc3545;
        font-weight: bold;
    }

.footer-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

    .footer-section h5 {
        color: #333;
        font-weight: bold;
    }

    .footer-section .form-check-label {
        font-weight: 500;
    }

    .footer-section .btn {
        background-color: #dc3545;
        border: none;
        color: white;
    }

        .footer-section .btn:hover {
            background-color: #c82333;
        }


