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

.products-section {
	padding: 40px 16px 8px;
}

.products-title {
	margin-bottom: 28px;
	text-align: center;
}

.products-title .section-eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--brand-light, #6b3fc4);
	background: var(--brand-50, #f5f1fc);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.products-title h2 {
	font-family: var(--font-display, serif);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--ink, #1a1625);
	letter-spacing: -0.01em;
}

.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);
	}

	.products-title h2 {
		font-size: 2rem;
	}
}

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