/*slide*/
.breadcrumb-wrapper {
    position: absolute;
    bottom: -125px;
    text-align: left;
    width: 260px;
    
}

.ttm-page-title-row {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    margin-top: 85px;
}

@media (max-width: 790px) {
    .ttm-page-title-row-inner {
        margin-top: -21px !important;
        height: 150px !important;
    }
    
}

/*SẢN PHẨM*/

    .product-section {
        background: #fff;
        padding: 60px 0;
    }

    .product-section .title {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 35px;
        color: #c00;
    }

    .product-section .product-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
    }

    .product-section .tab {
        padding: 15px 22px;
        background: #fff;
        border: 1px solid;
        cursor: pointer;
        transition: 0.3s;
        border-radius: 6px;
        font-size: 18px;
        color: #0d6fbf;
    }

    .tab:hover {
        background: #c00;
        color: #fff;
    }

    .tab.active {
        background: #c00;
        color: #fff;
    }

    .product-section .product-content {
        margin: auto;
    }

    .product-section .tab-box {
        display: none;
        width:100%;
        animation: fade 0.5s;
    }

    .product-section .tab-box.active {
        display: flex;
        flex-wrap:wrap;
        gap: 5px;
    }

    @keyframes fade {
        from {
            opacity: 0;
            transform: translateY(20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .product-section .card {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .product-section .card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: 0.4s;
    }

    .product-section .card:hover img {
        transform: scale(1.08);
    }

    .product-section .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px;
    }

    .product-section .overlay h3 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #fff !important;
    }

    .product-section .overlay a {
        border: 1px solid #fff;
        padding: 2px 20px;
        width: max-content;
        transition: 0.3s;
        color: #fff;
        font-weight: bold;
        border-radius: 5px;
    }

    .product-section .overlay a:hover {
        background: #c00;
        border-color: #c00;
    }

    /* MOBILE */
    @media(max-width:768px) {

        .product-section .title {
            font-size: 26px;
        }

        .product-section .tab {
            font-size: 16px;
            padding: 10px 12px;
        }

    }
    