/*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;
    }

    @keyframes fade {
        from {
            opacity: 0;
            transform: translateY(20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

     /*SẢN PHẨM*/
    .product {
		background: white;
		border-radius: 8px;
		padding: 20px;
		box-shadow: 0 7px 7px rgba(0, 0, 0, 0.09);
		border: 1px solid #0000000d
	}
	.product-section .container{
		width:80% !important;
	}

	 .product img {
		width: 100%;
		height: auto;
		/* fix chiều cao */
		object-fit: cover;
		/* ảnh không bị méo */
		border-radius: 6px;
	}

	 .product:hover {
		transform: translateY(-5px);
	}



	 .discount {
		position: absolute;
		top: 5px;
		right: 5px;
		background: orange;
		color: white;
		font-size: 11px;
		padding: 2px 6px;
		border-radius: 3px;
	}

	 .tieudesp {
		color: #c00;
        font-weight: bold;
        margin-top: 8px;
        font-size: 17px;
        text-align: center;
        padding: 7px 0 0 0;
        line-height: 27px;
	}

	 .sold {
		background: #005aaa;
		color: #fff;
		text-align: center;
		padding: 7px;
		margin-top: 5px;
		border-radius: 8px;
		font-size: 16px;
	}

	/* ANIMATION */
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}

	/* RESPONSIVE */

	@media (max-width: 768px) {

		 .product {
			padding: 10px;
		}

		 .product img {
			height: auto;
		}
		.tieudesp{
		    font-size: 14px;
		}
		
		.sold {
		    font-size: 12px;
	    }
	    .main-content{
	        padding-top: 20px !important;
	    }


	}

    /* MOBILE */
    @media(max-width:768px) {

        .product-section .title {
            font-size: 26px;
        }

        .product-section .tab {
            font-size: 16px;
            padding: 10px 12px;
        }

    }
    