/* Easy Suite for Divi - Styles */

.esd-product-grid {
	display: grid;
	gap: 20px;
}

.esd-cols-2 { grid-template-columns: repeat(2, 1fr); }
.esd-cols-3 { grid-template-columns: repeat(3, 1fr); }
.esd-cols-4 { grid-template-columns: repeat(4, 1fr); }

.esd-card {
	background: #fff;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	text-align: center;
}

.esd-card img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 12px;
}

.esd-card h4 {
	margin: 0 0 8px;
	font-size: 16px;
}

.esd-price {
	color: #48bb78;
	font-weight: bold;
	font-size: 18px;
	margin: 0;
}

.esd-empty {
	padding: 40px;
	text-align: center;
	background: #f7fafc;
	border-radius: 8px;
	color: #718096;
}

@media (max-width: 768px) {
	.esd-cols-3,
	.esd-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

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