.wcs-grid-8b51dca2 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}
.wcs-product-item {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #eee;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wcs-product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.wcs-product-item img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
}
.wcs-product-content {
	padding: 15px;
	text-align: center;
}
.wcs-product-title {
	margin: 0 0 10px;
	font-size: 16px;
	color: #333;
	line-height: 1.3;
}
.wcs-product-price {
	font-size: 15px;
	color: #000;
	font-weight: bold;
}
.wcs-product-price del {
	color: #999;
	font-weight: normal;
	font-size: 13px;
	margin-right: 5px;
}