.product-category-child {
    margin-top: 15px;
}

.category-child-slider .slick-slide {
    margin: 0 5px;
}

.category-child-slider .slick-list {
    margin: 0 -5px;
}


.filter-tag.active {
    border-color: var(--color-3);
    color: var(--color-3);
}

button.fil.disabled {
    opacity: .5;
}

.filter-tag.disabled {
    opacity: 0.5;
    pointer-events: none; /* khÃƒÆ’Ã‚Â´ng cho click */
    cursor: not-allowed;
}


.product-list .sort button.active {
    background-color: var(--color-3);
    color: #ffffff
}

.product-category-child .item .img-wrap {
    background: var(--color-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #d2d2d270;
    height: 50px;
    transition: .3s;
}

.product-category-child .item .img-wrap img {
    max-height: 35px;
    width: auto;
    padding: 4px 0;
}

.product-category-child .item .name {
    margin-top: 5px;
    text-align: center;
    font-size: 13px;
}

.product-category-child .item:hover .img-wrap {
    border: 1px solid var(--color-3);
}

.banner-category {
    margin-top: 20px;
}

.product-list {
    padding: 50px 0;
    background: #14332d;
    border-top: solid 1px #728581;
}

.product-list .header-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.product-list .header-category h1 {
    font-size: 18px;
}

.product-list .sort button {
    align-items: center;
    background: var(--color-2);
    border: 1px solid #e5e7ebc2;
    border-radius: 10px;
    color: #444;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    height: 34px;
    padding: 1px 10px;
    white-space: nowrap;
    gap: 6px;
}

.product-list .sort button:hover {
    background-color: var(--color-3);
    color: var(--color-2);
}

.product-list .sort button:hover svg {
    fill: var(--color-2);
}

.product-list .sort {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-list .load-more {
    margin-top: 20px;
    margin-bottom: 50px;
}

.product-list .load-more button {
    letter-spacing: 0.5px;
    line-height: 25px;
    min-width: 150px;
    border: 1px solid #ab7549;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-weight: 500;
    padding: 6px 30px;
    background-color: unset;
    max-width: 250px;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 15px;
    color: #ab7549;
}

.product-list .load-more button:hover {
    color: #ab7549;
    background-color: #14332d;
    border: 1px solid #ab7549;
}

/* NÃƒÂ¡Ã‚Â»Ã¢â€žÂ¢i dung chi tiÃƒÂ¡Ã‚ÂºÃ‚Â¿t danh mÃƒÂ¡Ã‚Â»Ã‚Â¥c  */
.product-content-detail {
    margin-top: 0;
}

.product-content-detail .noi-dung {
    overflow: hidden;
    height: auto;
    transition: height 0.45s ease;
    position: relative;
}

.product-content-detail .noi-dung.fade::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, transparent, #f2fbff);
    pointer-events: none;
}

.product-content-detail .btn-xem-them {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid #d1d5db;
    display: block;
    max-width: 150px;
    margin: 12px auto 0;
    transition: .3s;
}

.product-content-detail .btn-xem-them:hover {
    background-color: var(--color-3);
    color: var(--color-2);
}

/* Filter pc  */
.filter-section {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 15px;
    align-items: center;
}

.filter-dropdown {
    position: relative;
}

.filter-button {
    padding: 10px 20px;
    background: var(--color-2);
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: space-between;
}

.filter-button:hover {
    border-color: #999;
    background: #f9f9f9;
}

.filter-button.active {
    background: var(--color-3);
    border-color: var(--color-3);
    color: var(--color-2);
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.filter-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 400px;
    z-index: 5;
    display: none;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-section {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    padding: 6px 16px;
    background: var(--color-2);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-tag:hover {
    color: var(--color-3);
    border-color: var(--color-3);
}

.dropdown-footer {
    display: none;
    background-color: #fff;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
    padding: 8px 15px;
    text-align: center;
}

.result.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.dropdown-footer button {
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    margin: 0 5px;
    padding: 10px 0;
    text-align: center;
    min-width: 150px;
    position: relative;
}

.dropdown-footer button.close {
    border: 1px solid #dd1c1a;
    color: #dd1c1a;
}

.dropdown-footer button.result {
    background-color: #288ad6;
    color: #fff;
}

.filter-mobile {
    display: none;
}

.filter-option-mobile {
    display: none;
}

/* Form sÃƒÂ¡Ã‚ÂºÃ‚Â¯p xÃƒÂ¡Ã‚ÂºÃ‚Â¿p  */
.modal-overlayyy {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 15;
    justify-content: center;
    align-items: center;
    /* display: flex; */
}

.modal-overlayyy .modal-content {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    width: 90%;
    animation: fadeIn 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 15px;
}

.filter-sapxep label {
    display: inline-block;
    margin-left: 5px;
}

.filter-sapxep .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.filter-sapxep .item {
    margin-bottom: 8px;
}

/* .category-child-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
} */

.category-child-inner {
    margin-bottom: 20px;
}

.category-child-inner h2 {
    font-size: 17px;
    margin-bottom: 12px;
}
.item_benefit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.item_benefit .item {
	width: 13%;
	margin-bottom: 15px;
	text-align: center;
}
.box-item-before-benefit {
    display: flex;
    justify-content: center;
}
.box-item-before-benefit {
    position: relative;
}
.item_benefit .item:nth-child(1) .box-item-before-benefit:before {
    width: 50%;
    right: 0;
}
.box-item-before-benefit:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    top: 44%;
}
span.icon-befire {
    position: absolute;
    top: 47%;
    right: -18px;
    transform: translateY(-50%);
}
span.icon-befire svg {
    width: 25px;
    height: 25px;
}
.avatar_benefit {
    /* padding: 5px; */
    position: relative;
    margin-bottom: 10px;
}
.avatar_benefit img {
    background: #dcdcdc;
    background-position: center;
    width: 130px;
    height: 130px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    object-fit: none;
}
.item p {
    padding: 0px 0px;
    font-size: 13px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 500;
}
.quytrinh_in {
    background: #fff;
    padding: 30px 0;
}
.title_quytrinh {
    text-align: center;
    color: #333;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.product-list .title_quytrinh {
    color: #fff;
}
.form_dangky {
    width: 600px;
    margin: auto;
    padding: 0px 0;
    text-align: center;
}
.form_dangky h2 {
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    color: #ab7549;
}
.form_dangky .contact-block__item input {
    background: #fff;
    width: 100%;
    font-size: 16px;
    color: #333;
    border-radius: 5px;
    padding: 5px 10px;
    height: 40px;
}
.form_dangky .contact-block__group input {
    background: #F8F8F8CC;
    width: 100%;
    font-size: 16px;
    color: #333;
    border-radius: 5px;
    padding: 5px 10px;
    height: 50px;
    margin-bottom: 12px;
}
.form_dangky .contact-block__group textarea {
    background: #F8F8F8CC;
    padding: 10px 10px;
    font-size: 16px;
    border-radius: 5px;
    color: #333;
    width: 100%;
    margin-bottom: 12px;
}
.form_dangky .contact-block__group select {
    background: #F8F8F8CC;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    height: 50px;
    color: #333;
    width: 100%;
    margin-bottom: 12px;
}
.form_dangky .contact-block__group button {
    padding: 5px 20px;
    color: #fff;
    background: #000;
    border: solid 2px #c2c2c2;
    display: block;
    line-height: 2em;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 10px;
}
.form_dangky .contact-block__group_in button {
    padding: 10px 25px;
    color: #ab7549;
    background: #14332d;
    border: solid 2px #ab7549;
    display: block;
    line-height: 1.2em;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0;
}
.form_dangky .contact-block__group_in {
    text-align: center;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}
.product-list .project_home .wrap-img {
    padding-bottom: 100%;
}
.name-news-list-cate {
    font-size: 26px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
}
.name-news-list-cate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    background-color: #ab75494a;
}
.name-news-list-cate span {
    position: relative;
    z-index: 1;
    background-color: #14332d;
    padding: 0 20px;
    display: inline-block;
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 500;
    color: #ab7549;
}
.video_home {
    padding: 50px 0;
    background: #c1c5c8;
    border-top: solid 1px #728581;
    border-bottom: solid 1px #728581;
}
.video_home .title_news h2 {
    color: #14332d;
}
.box_video {
    text-align: center;
}
.box_video .image {
    position: relative;
    margin-bottom: 10px;
}
.box_video .image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}
.box_video .image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.box_video .image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 55px;
    height: 55px;
    padding: 0;
    background: unset;
    border-radius: 50%;
}
.box_video h3 a {
    font-size: 18px;
    font-weight: 500;
    color: #14332d;
}
.dangky_tuvan {
    padding: 50px 0;
    border-top: solid 1px #728581;
    border-bottom: solid 1px #728581;
    background: #14332d;
}














@media (max-width: 768px) { 
    .item_benefit .item {
        width: 33%;
        margin-bottom: 10px;
    }
    .item_benefit {
        align-items: center;
        justify-content: center;
    }
    span.icon-befire {
        right: -30px;
    }
    span.icon-befire svg {
        width: 20px;
        height: 20px;
    }
    .avatar_benefit img {
        height: 75px;
        background: #fff;
        padding: 0;
        clip-path: none;
    }
    .avatar_benefit {
        padding: 0px;
    }
    .project_home .box-text p {
        font-weight: 300;
    }
    .product-list .sort,
    .filter-wrap {
        display: none;
    }

    .filter-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        box-shadow: 0px 0px 5px #e2e2e2;
        margin-top: 10px;
    }

    .filter-mobile .btn-filter-m  {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: var(--color-2);
        padding: 5px;
    }

    .filter-mobile .btn-filter-m svg {
        width: 20px;
        height: 20px;
    }

    .filter-mobile .sapxep {
        border-right: 1px solid #ebebeb;
    }

    .filter-option-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FFF;
        z-index: 15;
        display: none;
    }

    .filter-option-mobile.active {
        display: block;
    }

    .filter-option-mobile .filter-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 10px;
    } 

    .filter-option-mobile .filter-footer button {
        padding: 10px;
        text-align: center;
        background: #fff;
        border-radius: 4px;
    }

    .filter-option-mobile .filter-footer .close {
        border: 1px solid #F00;
        color: #F00;
    }

    .filter-option-mobile .filter-footer .delete-all {
        border: 1px solid #666;
        color: #666;
    }

    .filter-option-mobile .filter-footer .apply {
        border: 1px solid var(--color-3);
        background: var(--color-3);
        color: var(--color-2);
    }

    .filter-option-mobile .filter-content {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .filter-option-mobile .filter-parent {
        position: relative;
        border-bottom: 1px solid #eaeaea;
    }

    .filter-option-mobile .filter-parent .title {
        font-size: 15px;
        padding: 10px 50px 10px 10px;
        
    }

    .filter-option-mobile .filter-parent .icon-arrow {
        position: absolute;
        top: 5px;
        right: 5px;
    }

    .filter-option-mobile .filter-parent .icon-arrow.active {
        transform: rotate(90deg);
    }

    .filter-option-mobile .filter-parent .icon-arrow svg {
        width: 25px;
        height: 25px;
    }

    .filter-option-mobile .filter-parent .filter-child .inner{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 0px 10px 10px 10px;
    }

    .filter-option-mobile .filter-parent .filter-child {
        display: none;
    }

    .filter-option-mobile .filter-parent .filter-child .fil {
        background: #f7f7f7;
        border-radius: 3px;
        border: 1px solid #f7f7f7;
        padding: 8px;
    }

    .filter-option-mobile .filter-parent .filter-child .fil.active {
        background-color: var(--color-3);
        border: 1px solid var(--color-3);
        color: var(--color-2);
    }
    .form_dangky {
        width: 100%;
        padding: 0px 10px 0;
        text-align: center;
    }
    .product-list {
        padding: 30px 0;
    }
    .form_dangky h2 {
        font-size: 25px;
    }
    .name-news-list-cate span {
        font-size: 25px;
    }
    
}

@media (max-width: 550px) {
    .product-category-child {
        margin-top: 15px;
    }

    .product-list .load-more {
        margin-top: 20px;
    }

    .product-content-detail {
        margin-top: 0;
        margin-bottom: 15px;
    }

    /* .category-child-slider {
        grid-template-columns: repeat(3, 1fr);
    } */
}

