/* Gallery page — price-free showcase grid + filter toolbar. */

.gallery-main { max-width: 1200px; margin: 0 auto; padding: 48px 56px 80px; }

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.product-card { overflow: hidden; border-radius: 12px; }
.product-card:hover { border-color: var(--acc); }
.product-card[hidden] { display: none; }

.product-thumb { position: relative; aspect-ratio: 1/1; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-ph { position: absolute; inset: 0; }
.product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--acc);
	color: #17150f;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	z-index: 1;
}

.product-meta { padding: 16px 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.product-name { font-weight: 600; font-size: 17px; color: var(--ink); }
.product-tagline { font-size: 13px; color: var(--dim); }

.filter-empty { color: var(--muted); text-align: center; padding: 40px 0; }

@media (max-width: 1000px) {
	.gallery-main { padding: 40px 24px 60px; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.product-grid { grid-template-columns: 1fr; }
}
