
/* Breadcrumb */
.section__abouts{
    padding: 20px 0;
}
.breadcrumb {
    padding: 10px 0;
    background: #e9ecef;
}

.breadcrumb ul {
    display: block;
    white-space: normal;
}

.breadcrumb ul li {
    display: inline;
}

.breadcrumb ul li:not(:last-child) {
    position: relative;
    padding-right: 15px;
}

.breadcrumb ul li:not(:last-child)::before {
    content: '/';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
}

.breadcrumb ul li:last-child {
    color: var(--color-5);
}

/* End breadcrumb  */



/* Content cho editor  */
.noi-dung {
   
}

.noi-dung p {
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.5;
}

.noi-dung h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.noi-dung h3 {
    font-size: 17px;
    margin-bottom: 15px;
}

.noi-dung hr {
    margin: 15px 0;
}

.noi-dung table td img {
    border-radius: 20px;
}

.noi-dung table td {
    width: 50%;
}

.noi-dung blockquote {
    border-left: 5px solid var(--color-3);
    padding: 8px 15px;
    background: #eee;
    border-radius: 10px;
    margin-bottom: 15px;
}

.noi-dung blockquote h3,
.noi-dung blockquote h2 {
    margin-bottom: 0;
}

.noi-dung ul,
.noi-dung ol {
    margin-left: 30px;
    margin-bottom: 10px;
}

.noi-dung ul li,
.noi-dung ol li {
    margin-bottom: 5px;
}

.noi-dung table tr td {
    padding: 10px;
}

.noi-dung table {

    &:not(:last-child) {
        margin-bottom: 10px;
    }
}

/* end  */

/* pagination  */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 6px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background: var(--color-3);
    color: #fff;
    border-color: var(--color-3);
}

.pagination .page-item.active .page-link {
    background: var(--color-5);
    color: #fff;
    border-color: var(--color-5);
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .noi-dung-about table tr td {
        /* width: 50%; */
    }

    .noi-dung img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .noi-dung-about table tr td {
        width: 100% !important; 
         display: block;
    }
}

@media (max-width: 768px) {
    .pagination .page-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .noi-dung h2 {
        font-size: 18px;
    }

    .noi-dung h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}


.category-product-slider {
    padding: 0 50px;
    @media (max-width: 640px){
        padding: 0 25px;
    }
    .category-item {
        &:not(:last-child) {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
    }

    .category-icon {
        height: 70px;
        width: 70px;
        border: 1px solid #d5d5d5;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        background-color: white;
        padding: 15px;
        overflow: hidden;
        transition: all 0.3s ease;

        &:hover {
            transform: scale(1.1);

        }

        img {
            height: 100%;
            width: unset;
            object-fit: contain;
            transition: all 0.3s ease;
        }
    }

    .category-name {
        font-size: 13px;
        text-align: center;
        margin: 10px 0px 0px 0px;
        min-height: 36px;

        a {
            -webkit-box-orient: vertical;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 2;
        }
    }

    .slick-arrow {
        opacity: 1;
        background: transparent;
        transition: all 0.3s ease;
        @media (max-width: 640px){
            width: 20px;
            height: 20px;
            &.slick-prev{
                left: 0;
            }
            &.slick-next{
                right: 0;
            }
        }
        svg {
            height: 20px;
            width: 20px;

            path {
                fill: #333;
            }
        }
    }

    .slick-list {
        padding: 10px 0;
    }
}
.section-category-product{
    padding: 20px 0;
}
.hover-effect {
    position: relative;
    overflow: hidden;
    display: flex;

    &::after {
        position: absolute;
        width: 200%;
        height: 0;
        left: 50%;
        top: 50%;
        background-color: hsla(0, 0%, 100%, 0.3);
        transform: translate(-50%, -50%) rotate(-45deg);
        content: "";
        z-index: 1;
    }

    &:hover{
        &::after {
            height: 250%;
            transition: all 0.6s linear;
            background-color: transparent;
        }
    }
}