.padding-image-featured {
    padding: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.partner-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
}

.partner-item-inner img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item-inner:hover img {
    filter: grayscale(0%);
}

.section-partners {
    padding: 40px 0;
}

.section-featured-products {
    background-color: var(--primary-100);
}

.card-category {
    border-radius: 2px;
    overflow: hidden;
}

.card-category img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 16px;
}

.slick-image-library .slick-slide {
    aspect-ratio: 3/2;
    margin: 0 4px;
}

.img-library-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-faq {
    position: relative;
    background-image: url('../../../../img/pages/home/faq.png');
    height: 760px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    background-color: white;
    border-radius: 16px;
    position: relative;
    padding: 16px 64px 16px 24px;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-question.active {
    color: var(--primary);
}

.faq-question.active::before {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
}

.faq-question::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: var(--primary);
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: var(--primary);
    top: 50%;
    right: 29px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    padding: 0 20px;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg);
    border-radius: 16px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 20px;
}

.review-body {
    font-size: 14px;
}

.reviews-slider .review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews-slider .slick-list {
    overflow: unset !important;
}

.reviews-slider .slick-dots,
.partners-slider .slick-dots,
.banner-slider .slick-dots,
.slick-image-library .slick-dots {
    display: flex;
    justify-content: center;
}

.reviews-slider .slick-dots {
    justify-content: left;
}

.reviews-slider .slick-dots li.slick-active button,
.partners-slider .slick-dots li.slick-active button,
.banner-slider .slick-dots li.slick-active button,
.slick-image-library .slick-dots li.slick-active button {
    background-color: var(--primary);
}

.reviews-slider .slick-dots li button,
.partners-slider .slick-dots li button,
.banner-slider .slick-dots li button,
.slick-image-library .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: #cbcbcb;
    border: 0;
}

.reviews-slider .slick-list .slick-slide {
    margin: 0 10px;
}

.review-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: white;
    border: 1px solid var(--gray-200);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 32px 40px;
    aspect-ratio: 16/9;
}

.reviews-slider .slick-dots {
    position: absolute;
    left: 40px;
    bottom: -50px;
}

.review-avatar {
    gap: 16px;
}

.review-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.partners-slider .partner-item {
    margin: 0 48px;
}

.partners-slider .partner-item img {
    height: 100%;
    object-fit: cover;
}

.partners-slider .slick-list {
    width: 100%;
}

.modal-content iframe {
    border: 0
}

.banner-slider .slick-list {
    aspect-ratio: 3/1;
    width: 100%;
}

.review-name {
    font-size: 18px;
    font-weight: 400;
}

.banner-slider .slick-track {
    height: 100%;
}

.banner-slider .banner-item {
    width: 100%;
    height: 100%;
}

.banner-slider .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider .slick-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.image-popup-overlay.active {
    display: flex;
}

.image-popup-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.image-popup-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.image-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.image-popup-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.card-category-attribute {
    display: flex;
    gap: 16px;
}

.card-category-attribute img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.section-categories-attribute {
    min-height: 560px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.section-categories-attribute-0 {
    margin-bottom: 12px;
}

.section-categories-attribute-0:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.section-categories-attribute-1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.card-category-attribute-title {
    font-size: 20px;
    font-weight: 400;
}

.why-choose-us-item {
    border-radius: 16px;
    padding: 32px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}

.why-choose-us-item img {
    width: 80px;
    height: 80px;
}

.why-choose-us-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 80px;
}

.why-choose-us-item p {
    margin-bottom: 80px;
    width: 65%;
}

.why-choose-us-item {
    background-color: white;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.group-video-desktop {
    gap: 8px;
}

.big-video-desktop {
    flex: 1;
    aspect-ratio: 16/9;
}

.big-video-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-videos-desktop {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.small-video-desktop-item {
    width: 100%;
    height: 100%;
    /* aspect-ratio: 1/1; */
}

.small-video-desktop-item img {
    width: 100%;
    object-fit: cover;
}

.toancau-bg {
    background-image: url('../../../../img/pages/home/toancau.png');
    background-blend-mode: multiply;
}

.congnghe-bg {
    background-image: url('../../../../img/pages/home/congnghe.png');
}

.baohanh-bg {
    background-image: url('../../../../img/pages/home/baohanh.png');
}

.chinhhang-bg {
    background-image: url('../../../../img/pages/home/chinhhang.png');
}

.button-faq {
    background-color: var(--white);
    border-radius: 16px;
    padding: 12px 24px;
    color: var(--primary);
    font-weight: 400;
    font-size: 18px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.button-faq:hover {
    background-color: var(--bg);
    color: var(--primary);
    text-decoration: none;
}

.text-description-attribute {
    font-size: 14px;
}

@media (max-width: 1400px) {

    .review-card {
        aspect-ratio: 12/9;
    }
}

@media (max-width: 1200px) {
    .review-card {
        aspect-ratio: 12/9;
    }
}

@media (max-width: 1024px) {
    .review-card {
        aspect-ratio: 12/9;
    }
}

@media (max-width: 768px) {
    .banner-slider .slick-dots {
        bottom: -8px;
    }

    .section-faq {
        background-image: none;
        height: unset;
    }

    .review-card {
        aspect-ratio: 1/1;
    }

    .card-category-attribute {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-categories-attribute:before {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 45%);
    }

    .section-categories-attribute {
        min-height: 620px;
        background-size: 180% !important;
    }

    .section-categories-attribute-0 {
        background-position: bottom left !important;
    }

    .section-categories-attribute-1 {
        background-position: bottom right !important;
    }


    .review-card {
        padding: 12px 24px;
    }

    .categories-attribute-list .slick-arrow {
        width: 32px;
        height: 32px;
        top: 32px;
    }

    .reviews-slider .slick-arrow {
        top: unset;
        width: 40px;
        height: 40px;
        bottom: -16px;
    }

    .reviews-slider .slick-prev {
        left: 32px;
    }

    .reviews-slider .slick-next {
        right: 32px;
    }

    .reviews-slider .slick-dots li,
    .categories-attribute-list .slick-dots li {
        width: 40px;
        height: 40px;
    }

    .categories-attribute-list .slick-prev {
        left: 12px;
    }

    .categories-attribute-list .slick-next {
        right: 12px;
    }

    .categories-attribute-list .slick-slide {
        margin: 0 40px;
    }

}

.image-container {
    position: relative;
    overflow: hidden;
}

.zoom-btn {
    top: 4px;
    right: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.zoom-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.zoom-btn:hover img {
    opacity: 1;
}

.zoom-btn img {
    opacity: 0.5;
    width: 16px;
    height: 16px;
    object-fit: cover;
    transition: all 0.3s ease;
}
