#collection-filters-container .cf-select, #collection-filters-container #sort-by {
    display: inline-block;
    width: 100%;
    float: none;
}

#collection-filters-container {
    text-align: left;
    margin: 10px 0;
}

    #collection-filters-container .cf-title {
        color: #c11;
        display: block;
        font-weight: bold;
        margin: 16px 5px 2px 0;
    }

    #collection-filters-container label {
        display: block;
        margin: 0 6px 6px 0;
        cursor: pointer;
        font-weight: normal;
    }

        #collection-filters-container label span {
            font-weight: normal;
            word-wrap: break-word;
        }

    #collection-filters-container .cf-checkbox:checked + span {
        font-weight: bold;
    }

    #collection-filters-container label a {
        color: #23527e;
    }

@media (max-width: 640px) {
    #collection-filters-container .cf-title {
        font-weight: bold;
        margin: 2px 5px 0 0;
    }

    #collection-filters-container .cf-select, #collection-filters-container #sort-by {
        display: block;
        width: 100%;
        max-width: none;
    }
}
/* Dán đoạn code này vào cuối file cf-stylesheet.css */
.section_banner .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hiển thị đầy đủ nội dung banner 1431x564, không tràn viền */
.section_banner .container {
    width: 100% !important;
    max-width: 1230px !important; /* Đặt chiều rộng tối đa là 1431px (75% của 1908px) */
    margin-left: auto !important; /* Căn giữa */
    margin-right: auto !important; /* Căn giữa */
    padding: 0 !important;
}

.section_banner .m-banner {
    width: 100% !important;
    /* Thiết lập ảnh nền đã được crop */
    background-image: url('{{ 'm_banner_cropped.jpg' | asset_url }}') !important;
    background-size: cover !important; /* Đảm bảo ảnh nền bao phủ hết */
    background-position: center !important; /* Căn giữa ảnh nền */
    background-repeat: no-repeat !important;
    position: relative;
    
    /* Đặt chiều cao chính xác là 564px */
    height: 364px !important; 
    overflow: hidden;
}

/* Căn chỉnh nội dung chữ bên trong banner ngang */
.section_banner .m-banner .title,
.section_banner .m-banner .desc {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Chiều ngang tối đa cho chữ */
}

.section_banner .m-banner .title {
    top: 40%; /* Vị trí tiêu đề */
}

.section_banner .m-banner .desc {
    top: 60%; /* Vị trí mô tả */
}