.wpg-51342640-grid {
	display: grid;
	gap: 20px;
}
.wpg-51342640-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wpg-51342640-cols-3 { grid-template-columns: repeat(3, 1fr); }
.wpg-51342640-cols-4 { grid-template-columns: repeat(4, 1fr); }
.wpg-51342640-cols-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
	.wpg-51342640-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
	.wpg-51342640-grid { grid-template-columns: repeat(2, 1fr); }
}

.wpg-51342640-item {
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}
.wpg-51342640-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.wpg-51342640-image-link {
	display: block;
	position: relative;
}
.wpg-51342640-image-link img {
	width: 100%;
	height: auto;
	display: block;
}
.wpg-51342640-details {
	padding: 15px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.wpg-51342640-title {
	font-size: 14px;
	margin: 0 0 10px;
	line-height: 1.4;
}
.wpg-51342640-title a {
	color: #333;
	text-decoration: none;
}
.wpg-51342640-price {
	font-size: 18px;
	font-weight: bold;
	color: #e53935;
	margin-bottom: 10px;
}
.wpg-51342640-price del {
	color: #999;
	font-size: 14px;
	font-weight: normal;
	margin-left: 5px;
}
.wpg-51342640-rating {
	margin-bottom: 15px;
}
.wpg-51342640-add-to-cart {
	margin-top: auto;
}
.wpg-51342640-add-to-cart .button {
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 20px;
	background: #ff6f00;
	color: #fff;
	border: none;
	padding: 8px 15px;
}