.cpee-product-grid {
	display: grid;
	gap: 20px;
	margin-top: 20px;
}

.cpee-product-grid.cpee-cols-1 {
	grid-template-columns: repeat(1, 1fr);
}

.cpee-product-grid.cpee-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.cpee-product-grid.cpee-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.cpee-product-grid.cpee-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.cpee-product-grid.cpee-cols-5 {
	grid-template-columns: repeat(5, 1fr);
}

.cpee-product-item {
	border: 1px solid #e1e1e1;
	padding: 15px;
	text-align: center;
	background: #fff;
	transition: box-shadow 0.2s ease;
}

.cpee-product-item:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cpee-product-image {
	width: 100%;
	aspect-ratio: 2/1;
	overflow: hidden;
	display: block;
	background-color: #f7f7f7;
	position: relative;
}

.cpee-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.cpee-product-title {
	font-size: 16px;
	margin: 10px 0;
}

.cpee-product-price {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
	color: #222;
}

.cpee-event-starts {
	font-size: 14px;
	color: #555;
}

/* Responsive */
@media ( max-width : 768px) {
	.cpee-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media ( max-width : 480px) {
	.cpee-product-grid {
		grid-template-columns: 1fr;
	}
}