.ky-products{
	background:#faf8f4;
	padding:90px 0;
}

.ky-products-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}

.ky-product-card{
	background:#fff;
	border-radius:14px;
	overflow:hidden;
	text-decoration:none;
	display:block;
	transition:.35s ease;
	box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.ky-product-card:hover{
	transform:translateY(-6px);
	box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.ky-product-image{
	position:relative;
	height:280px;
	overflow:hidden;
}

.ky-product-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

.ky-product-favorite{
	position:absolute;
	top:14px;
	right:14px;
	width:38px;
	height:38px;
	background:rgba(255,255,255,.9);
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:16px;
	color:#5C1022;
}

.ky-product-info{
	padding:20px 22px 26px;
}

.ky-product-name{
	font-size:16px;
	color:#111;
	margin:0 0 8px;
	font-weight:600;
}

.ky-product-price{
	color:#5C1022;
	font-size:19px;
	font-weight:700;
}

.ky-product-price del{
	color:#aaa;
	font-weight:400;
	font-size:15px;
	margin-right:8px;
}

@media(max-width:991px){
	.ky-products-grid{
		grid-template-columns:repeat(2,1fr);
	}
}