/*--------------------------------------------------------------
# module product list
--------------------------------------------------------------*/

.home-product {
   margin-bottom: 60px;
}
.home-product .feature-product-image {
   transition: transform .2s; /* Animation */
   text-align: center;
   display: block;
}

.home-product .name {
   font-family: var(--font-heading);
   font-size: 26px;
   font-weight: 800;
   text-transform: uppercase;
   border-bottom: 1px solid #ddd;
   text-align: center;
   padding-bottom: 10px;
   margin-top: 10px;
   margin-bottom: 10px;
}
.home-product .name a {
	color: var(--bs-primary);
}

.home-product .desc {
   font-size: 16px;
   margin-bottom: 10px;
   text-align: center;
}
.home-product .desc:after {
   content: ' ';
   display: table;
   clear: both;
}

.home-product .desc .price {
   font-family: var(--font-body);
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 0;
}

@media (max-width: 1599px) {
	.home-product .name  {
		font-size: 24px;
	}
}

@media (hover: hover) and (pointer: fine) {
    /* Hover hình ảnh */
    .home-product .feature-product-image:hover {
        transform: scale(1.1); 
    }
    
    /* Hover tên sản phẩm */
    .home-product .name a:hover {
        color: var(--bs-secondary);
    }

}