/* Container bộ lọc */
#custom-product-filter {
    background: #fff;
    padding: 25px;
	border-radius: 4px;
}

/* Tiêu đề chính màu đỏ */
#custom-product-filter .widget-title {
    color: #2c5eaa;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
	text-transform: uppercase;
}

/* Các nhóm lọc */
.filter-group {
    margin-bottom: 20px;
}

.filter-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Checkbox và Label */
.filter-options label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.filter-options input[type="checkbox"] {
    margin-right: 8px;
    transform: translateY(1px); /* Căn chỉnh checkbox thẳng hàng chữ */
}

/* Scrollbar đỏ cho danh sách dài (Thương hiệu) */
.filter-options.scroll-y {
    max-height: 250px; /* Chiều cao tối đa */
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar style (Webkit browsers) */
.filter-options.scroll-y::-webkit-scrollbar {
    width: 4px;
}
.filter-options.scroll-y::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.filter-options.scroll-y::-webkit-scrollbar-thumb {
    background: #2c5eaa; /* Thanh cuộn màu đỏ */
    border-radius: 4px;
}