/* /assets/css/product-grid.css */

.products-section {
	padding: 24px;
}

.section-title {
	margin-bottom: 18px;
	text-align: center;
}

.section-title h2 {
	font-size: 1.4rem;
	font-weight: 700;
}

.products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	align-items: stretch;
}
.empty-state {
	width: 100%;
	max-width: 28rem;
	margin: 0 auto;
	text-align: center;
	padding: 3rem 1.5rem;
	background: white;
	border: 1px solid #f1f5f9;
	border-radius: 1rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.empty-state span {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 0.75rem;
}

.empty-state h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.25rem;
}

.empty-state p {
	font-size: 0.875rem;
	color: #6b7280;
}
@media (min-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
