
.product-card{
	background:#fff;
	border-radius:8px;
	overflow:hidden;
	transition:.3s;
	cursor:pointer;
	height:100%;
}

.product-card:hover{
	transform:translateY(-5px);
	box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.product-image{
	aspect-ratio:1/1;
	background:#fff;
	padding:10px;
}

.product-image img{
	width:100%;
	height:100%;
	object-fit:contain;
}

.product-card:hover img{
	transform:scale(1.05);
}

.product-body{
	padding:10px;
}

.product-title{
	font-size:24px;
	line-height:1.35;
	height:42px;
	overflow:hidden;

	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}

.product-price{
	font-size:16px;
	font-weight:700;
	color:#111;
	margin:8px 0;
}

.product-promo{
	color:#ff6b00;
	font-size:12px;
	font-weight:600;
	margin-bottom:4px;
}

.product-rating{
	font-size:13px;
	color:#f5a623;
}

.product-rating span{
	color:#666;
}

.product-store{
	margin-top:5px;
	color:#666;
	font-size:13px;
}