

   .breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 3px;
    border-radius: 30px;
    /* margin-top: 30px; */
}


    .p-3 {
        padding: 0rem !important;
    }
    
    .container{
        max-width:100% !important;
    }

   /*SẢN PHẨM*/
     /* CARD */
	 .product {
		min-width: 250px;
		background: white;
		border-radius: 8px;
		padding: 10px;
		box-shadow: 0 7px 7px rgba(0, 0, 0, 0.09);
		border: 1px solid #0000000d
	}

	 .product img {
		width: 100%;
		height: 200px;
		/* fix chiều cao */
		object-fit: cover;
		/* ảnh không bị méo */
		border-radius: 6px;
	}

	.product:hover {
		transform: translateY(-5px);
	}
	
	.product:hover .sold{
		background: #fff;
        color: #fe0000;
        border: 1px solid #fe0000;
	}


	 .tag {
		position: absolute;
		top: 10px;
		left: 10px;
		background: red;
		color: white;
		font-size: 11px;
		padding: 2px 6px;
		border-radius: 3px;
	}

	 .discount {
		position: absolute;
		top: 5px;
		right: 5px;
		background: orange;
		color: white;
		font-size: 11px;
		padding: 2px 6px;
		border-radius: 3px;
	}

	 .tieudesp {
		color: #fc0202;
        font-weight: bold;
        margin-top: 8px;
        font-size: 17px;
        text-align: center;
        padding: 7px 0;
		line-height: 25px !important;
	
	}
	
	.product-rating{
    display: flex;
    align-items: center;
    margin: 5px 0 15px;
    flex-wrap: wrap;
    }

    .stars{
        display: flex;
        align-items: center;
        gap: 3px;
    }
    
    .stars i{
        font-size: 16px;
        color: #d0d0d0;
        transition: 0.3s;
    }
    
    /* Sao vàng */
    .stars i.active{
        color: #ffb400;
    }
    
    
    
    /* MOBILE */
    @media(max-width:576px){
    
        .product-rating{
            gap: 6px;
            margin: 10px 0 15px;
        }
    
        .stars i{
            font-size: 14px;
        }
        
         .slider-track {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
	    }
    
    }
	 .sold {
		background: #fe0000;
        color: #fff;
        text-align: center;
        padding: 3px;
        margin-top: 5px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
	}

	/* ANIMATION */
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}

	/* RESPONSIVE */

	@media (max-width: 768px) {

		 .product {
			min-width: 210px;
			padding: 5px;
		}

		 .product img {
			height: 100px;
		}
	}
	
    
    /*MENU TRÁI*/
    .pinBox {
        position: sticky;
        top: 90px;
        max-height: 100vh;
        /* overflow-y: auto; */
    }
    
    /*PHÂN TRANG*/
    .bgphantranga {
        padding: 10px;
        border-radius: 5px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .phantrang {
        font-family: Arial, sans-serif;
        font-size: 14px;
        color: #333;
    }

    .phantrang a {
        text-decoration: none;
        color: #007bff;
        margin: 0 5px;
        padding: 5px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        transition: background-color 0.3s, color 0.3s;
    }

    .phantrang a:hover {
        background-color: #007bff;
        color: #fff;
    }

    .phantrang .current {
        font-weight: bold;
        color: #fff;
        background-color: #007bff;
        padding: 5px 10px;
        border-radius: 4px;
        margin: 0 5px;
    }

    .phantrang .back,
    .phantrang .next {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .phantrang .back i,
    .phantrang .next i {
        font-size: 12px;
        margin: 0 2px;
    }

    .phantrang .back:hover,
    .phantrang .next:hover {
        background-color: #0056b3;
        color: #fff;
        cursor: pointer;
    }

    @media (max-width: 991px) {
        .pinBox {
            display: none !important;
        }
    }

