/* ----------------------------------------------
   STORE.HOME (CATALOG PAGE) SPECIFIC STYLES
   Header, filter row, product grid, product card
---------------------------------------------- */

.catalog-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	padding: 42px 0 28px;
}

.catalog-header h1 {
	margin-top: 8px;
	font-size: clamp(2.4rem, 4vw, 4rem);
}

.header-copy {
	color: var(--muted);
	margin-top: 0.25rem;
}

.catalog-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 8px 0 22px;
}

.filter-row span {
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: default;
	transition: transform var(--transition-default);
}

.filter-row span:hover {
	transform: translateY(-2px);
}

/* Product Grid */
.catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	padding: 18px 0 52px;
}

/* Product Card */
.product_card {
	display: block;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: hidden;
	transition: transform var(--transition-default), box-shadow 0.3s;
	box-shadow: var(--shadow);
	text-decoration: none;
	color: inherit;
}

.product_card:hover {
	transform: translateY(-4px);
}

.product-image {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #0a0a0a;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product_card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 18px 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.product_title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: var(--gold-soft);
	margin: 0;
}

.product_price {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.5px;
}

.product_desc {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.4;
	margin-top: 6px;
	opacity: 0.85;
}

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

@media (max-width: 720px) {
	.catalog-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.catalog-grid {
		grid-template-columns: 1fr;
	}
}