.product-category-card {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.product-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.product-category-card:hover {
    transform: scale(1.01);
}


.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;
    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;
}

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

.banner-page {
    background: url(../../../../img/pages/product/banner-san-pham.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {

    .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;
    }

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

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

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

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

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

}