/* Shop page specific styles — loaded after site.css */

/* Light mode overrides for shop components */
body.light-mode .product-card {
	box-shadow: var(--shadow-sm);
	background: var(--card);
}

body.light-mode .product-info-btn {
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--card-border);
	color: var(--text);
}

body.light-mode .product-info-btn:hover {
	background: var(--accent);
	color: #fff;
}

/* Breadcrumbs */
.product-selector {
	min-height: 100vh;
	padding: 0;
	background: transparent;
}

/* Hero Section (hidden by default) */
.hero-section {
	max-width: 100%;
	margin: 0 0 80px 0;
	text-align: center;
	padding: 80px 24px 100px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft) 50%, transparent 100%);
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:
		radial-gradient(circle at 20% 80%, var(--accent-soft) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, var(--accent-soft) 0%, transparent 50%);
	pointer-events: none;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
	pointer-events: none;
}

body.light-mode .hero-section {
	background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft) 50%, transparent 100%);
}

body.light-mode .hero-section::before {
	background:
		radial-gradient(circle at 20% 80%, var(--accent-muted) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, var(--accent-soft) 0%, transparent 50%);
}

body.light-mode .hero-section::after {
	background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--accent-soft);
	border: 1px solid var(--accent-glow);
	border-radius: 50px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 24px;
	animation: fadeInUp 0.8s ease forwards;
	opacity: 0;
}

.hero-badge svg {
	width: 16px;
	height: 16px;
	animation: pulse 2s ease infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-title {
	margin: 0 0 24px 0;
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: clamp(36px, 6vw, 64px);
	letter-spacing: 2px;
	color: var(--text);
	line-height: 1.05;
	text-transform: uppercase;
	animation: fadeInUp 0.8s ease 0.1s forwards;
	opacity: 0;
}

.hero-title span {
	display: block;
	background: linear-gradient(135deg, var(--accent) 0%, #00a3cc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

body.light-mode .hero-title span {
	background: linear-gradient(135deg, var(--cta) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	margin: 0 0 32px 0;
	color: var(--text);
	font-family: var(--main-font);
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 500;
	line-height: 1.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.hero-cta-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease 0.3s forwards;
	opacity: 0;
}

.cta-button {
	padding: 18px 40px;
	border-radius: var(--radius-md);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cta-button:focus {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}

.cta-button svg {
	width: 20px;
	height: 20px;
	transition: transform 0.2s ease;
}

.cta-button:hover svg {
	transform: translateX(2px);
}

.cta-primary {
	background: var(--cta);
	color: var(--cta-text);
	box-shadow: var(--shadow-md);
	font-size: 18px;
	padding: 20px 48px;
}

.cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.cta-primary:focus {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}

.cta-secondary {
	background: var(--card);
	border: 1px solid var(--card-border);
	color: var(--text);
	font-size: 16px;
	padding: 18px 40px;
}

.cta-secondary:hover {
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.15);
}

body.light-mode .hero-cta:hover {
	box-shadow: 0 12px 40px rgba(0, 168, 204, 0.35);
}

.hero-description {
	display: none;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 500;
	animation: fadeIn 1s ease 0.8s forwards, bounce 2s ease infinite 1.5s;
	opacity: 0;
	z-index: 10;
}

.hero-scroll-indicator svg {
	width: 20px;
	height: 20px;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(8px); }
	60% { transform: translateX(-50%) translateY(4px); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Animate showcase items */
.product-showcase-item {
	animation: fadeInUp 0.7s ease forwards;
	opacity: 0;
}
.product-showcase-item:nth-child(1) { animation-delay: 0.1s; }
.product-showcase-item:nth-child(2) { animation-delay: 0.2s; }
.product-showcase-item:nth-child(3) { animation-delay: 0.25s; }
.product-showcase-item:nth-child(4) { animation-delay: 0.3s; }
.product-showcase-item:nth-child(5) { animation-delay: 0.35s; }

/* Products Section */
.products-section {
	max-width: 1600px;
	margin: 0 auto;
	padding: 60px 24px 80px;
	position: relative;
}

.products-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, var(--accent-soft) 50%, transparent 100%);
	pointer-events: none;
	z-index: -1;
}

body.light-mode .products-section::before {
	background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 204, 0.02) 50%, transparent 100%);
}

.section-title {
	margin: 0 0 56px 0;
	font-family: var(--heading-font);
	font-weight: 800;
	font-size: clamp(28px, 4vw, 40px);
	letter-spacing: 1.5px;
	color: var(--text);
	text-align: center;
	position: relative;
	display: inline-block;
	width: 100%;
	animation: fadeInUp 0.8s ease forwards;
	opacity: 0;
}

.section-title::before {
	content: '\2726';
	position: absolute;
	top: 50%;
	left: calc(50% - 180px);
	transform: translateY(-50%);
	font-size: 16px;
	color: var(--accent);
	opacity: 0.6;
}

.section-title::after {
	content: '\2726';
	position: absolute;
	top: 50%;
	right: calc(50% - 180px);
	transform: translateY(-50%);
	font-size: 16px;
	color: var(--accent);
	opacity: 0.6;
}

@media (max-width: 600px) {
	.section-title::before,
	.section-title::after {
		display: none;
	}
}

.product-grid {
	max-width: 1800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* Product Card */
.product-card {
	background: var(--card);
	border: none;
	border-radius: var(--radius-md);
	padding: 0;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.product-card:hover {
	box-shadow: var(--shadow-md);
	transform: scale(1.01);
}

.product-card.is-selected {
	box-shadow: 0 0 0 2px var(--accent), 0 0 0 6px var(--accent-glow), 0 8px 32px var(--accent-glow);
}

body.light-mode .product-card.is-selected {
	box-shadow: 0 0 0 4px var(--accent-muted), 0 8px 32px var(--accent-muted);
}

/* Product Info Button */
.product-info-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transform: translateY(-8px);
}

.product-card:hover .product-info-btn {
	opacity: 1;
	transform: translateY(0);
}

.product-info-btn:hover {
	background: var(--cta);
	border-color: var(--cta);
	color: var(--cta-text);
}

.product-info-btn:active {
	transform: scale(0.95);
}

.product-info-btn svg {
	width: 18px;
	height: 18px;
}

/* Product Image */
.product-image {
	width: 100%;
	background: var(--panel);
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	padding-bottom: 75%;
}

@supports (aspect-ratio: 4/3) {
	.product-image {
		padding-bottom: 0;
		aspect-ratio: 4/3;
	}
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	transition: opacity 0.4s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.product-img-primary { opacity: 1; }
.product-img-secondary { opacity: 0; }

.product-card:hover .product-img-primary { opacity: 0; }
.product-card:hover .product-img-secondary { opacity: 1; }

.product-image-placeholder {
	color: var(--muted);
	font-size: 48px;
	font-weight: 700;
	font-family: var(--heading-font);
}

/* Product Card Content */
.product-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.product-name {
	margin: 0;
	font-family: var(--main-font);
	font-weight: 600;
	font-size: 18px;
	color: var(--text);
}

.product-subtitle {
	margin: 0;
	color: var(--text);
	font-size: 15px;
	line-height: 1.7;
}

.product-cta {
	margin-top: auto;
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	background: var(--accent);
	color: var(--cta-text);
	border: none;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	text-align: center;
	display: block;
}

.product-cta:hover {
	background: var(--cta);
	box-shadow: 0 0 20px var(--accent-glow), 0 8px 16px var(--accent-glow);
}

.product-cta:focus {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}

.product-cta:active {
	box-shadow: 0 0 10px var(--accent-glow);
}

.product-cta svg {
	display: none;
}

/* Product Modal */
.product-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--overlay);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow-y: auto;
}

.product-modal[hidden] { display: none; }

.product-modal-content {
	background: var(--card);
	border: 1px solid var(--card-border);
	border-radius: var(--radius-md);
	padding: 32px;
	max-width: 600px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	box-shadow: var(--shadow-lg);
}

.product-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--card-border);
	color: var(--text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.product-modal-close:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--accent);
}

.product-modal-title {
	margin: 0 0 24px 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	font-family: var(--heading-font);
}

.product-modal-section { margin-bottom: 24px; }
.product-modal-section:last-child { margin-bottom: 0; }

.product-modal-section h3 {
	margin: 0 0 12px 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--accent);
	font-family: var(--heading-font);
}

.product-modal-section p {
	margin: 0 0 12px 0;
	color: var(--muted);
	line-height: 1.6;
}

.product-modal-section ul {
	margin: 12px 0;
	padding-left: 24px;
	color: var(--muted);
	line-height: 1.8;
}

.product-modal-section li { margin-bottom: 8px; }


/* Product Showcase Section — Bento Grid */
.product-showcase-section {
	max-width: 1600px;
	margin: 100px auto 0;
	padding: 0 24px;
}

/* Shared shop editorial label (index.css not loaded on shop) */
.shop-eyebrow {
	display: block;
	font-family: var(--main-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 14px;
}

.product-showcase-header {
	text-align: center;
	margin-bottom: 60px;
}

.product-showcase-header--editorial .shop-eyebrow {
	margin-bottom: 18px;
}

.product-showcase-header h2 {
	font-family: var(--heading-font);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: var(--text);
	margin: 0 0 16px 0;
	letter-spacing: 1px;
	text-transform: none;
}

.product-showcase-header p {
	font-family: var(--main-font);
	font-size: 18px;
	color: var(--muted);
	margin: 0;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.65;
}

.product-showcase-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(200px, auto);
	gap: 24px;
}

/* Magazine spotlight — not the same language as product picker cards */
.product-showcase-item {
	background: var(--card);
	border: none;
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	cursor: pointer;
}

.product-showcase-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.product-showcase-item.showcase-large { grid-column: span 8; grid-row: span 2; }
.product-showcase-item.showcase-medium { grid-column: span 4; grid-row: span 1; }
.showcase-callout { grid-column: span 4; }

.product-showcase-number {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 48px;
	height: 48px;
	background: var(--cta);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--heading-font);
	font-weight: 800;
	font-size: 18px;
	color: var(--cta-text);
	z-index: 10;
	box-shadow: 0 4px 12px var(--accent-glow);
}

.product-showcase-image {
	flex: 1;
	min-height: 280px;
	position: relative;
	overflow: hidden;
}

@supports not (aspect-ratio: 4/3) {
	.product-showcase-image::before { content: ''; display: block; padding-bottom: 75%; }
}

@supports (aspect-ratio: 4/3) {
	.product-showcase-image { aspect-ratio: 4/3; }
}

.product-showcase-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
	pointer-events: none;
	z-index: 2;
}

.product-showcase-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.product-showcase-item:hover .product-showcase-image img { transform: scale(1.04); }

.product-showcase-content {
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: var(--card);
	border: none;
}

.product-showcase-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.product-showcase-tag {
	padding: 6px 12px;
	background: var(--accent-soft);
	border: none;
	border-radius: 20px;
	font-family: var(--main-font);
	font-size: 11px;
	font-weight: 600;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.product-showcase-title {
	margin: 0;
	font-family: var(--heading-font);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	color: var(--text);
	line-height: 1.3;
	letter-spacing: 0.3px;
}

.product-showcase-description {
	margin: 0;
	font-family: var(--main-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-showcase-item:nth-child(1) .product-showcase-description { -webkit-line-clamp: 5; }

.product-showcase-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 0;
	background: transparent;
	border: none;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 700;
	color: var(--accent);
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-showcase-cta svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.product-showcase-item:hover .product-showcase-cta svg { transform: translateX(6px); }

body.light-mode .product-showcase-item { background: var(--card); }
body.light-mode .product-showcase-item:hover { box-shadow: var(--shadow-lg); }
body.light-mode .product-showcase-number {
	background: rgba(255, 255, 255, 0.88);
	color: var(--text);
}
body.light-mode .product-showcase-tag { background: var(--accent-muted); }
body.light-mode .product-showcase-image { background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.03) 100%); }
body.light-mode .product-showcase-content { background: var(--card); }
body.light-mode .product-showcase-image::after {
	background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
}

/* Showcase Callout Cards */
.showcase-callout {
	background: linear-gradient(145deg, var(--panel) 0%, var(--accent-soft) 55%, var(--card) 100%);
	border: none;
	border-radius: var(--radius-md);
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	grid-column: span 4;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-callout:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.showcase-callout::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(30%, -30%);
}

body.light-mode .showcase-callout { background: linear-gradient(135deg, var(--card) 0%, var(--accent-soft) 100%); }

.showcase-callout-icon {
	width: 48px;
	height: 48px;
	background: var(--cta);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.showcase-callout-icon svg { width: 24px; height: 24px; color: var(--cta-text); }
.showcase-callout-subheading { margin: 0 0 8px 0; font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.showcase-callout-headline { margin: 0 0 12px 0; font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.3; }
.showcase-callout-description { margin: 0 0 20px 0; font-size: 14px; line-height: 1.6; color: var(--muted); }

.showcase-callout-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	transition: gap 0.2s ease;
}

.showcase-callout-link:hover { gap: 12px; }
.showcase-callout-link svg { width: 16px; height: 16px; }

/* ── Shop editorial deep dive (below showcase) ─────────────────── */
.shop-deep-dive {
	max-width: 1200px;
	margin: 100px auto 0;
	padding: 0 24px 40px;
}

.shop-deep-dive-intro {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}

.shop-deep-dive-heading {
	margin: 0 0 20px;
	font-family: var(--heading-font);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--text);
}

.shop-deep-dive-lead {
	margin: 0;
	font-family: var(--main-font);
	font-size: 18px;
	line-height: 1.7;
	color: var(--muted);
}

.shop-editorial-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 72px;
}

.shop-editorial-block--reverse .shop-editorial-block__media {
	order: 2;
}

.shop-editorial-block--reverse .shop-editorial-block__copy {
	order: 1;
}

.shop-editorial-block__media {
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--panel);
	box-shadow: var(--shadow-md);
	border: none;
}

.shop-editorial-block__media img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.shop-editorial-block__copy {
	padding: 8px 0;
}

.shop-editorial-block__copy .shop-eyebrow {
	margin-bottom: 12px;
}

.shop-editorial-block__title {
	margin: 0 0 16px;
	font-family: var(--heading-font);
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
}

.shop-editorial-block__copy p {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--muted);
}

.shop-editorial-block__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.shop-pathways {
	list-style: none;
	margin: 0 0 64px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.shop-pathways__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 28px 24px;
	background: var(--panel);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border: none;
}

.shop-pathways__num {
	flex-shrink: 0;
	font-family: var(--heading-font);
	font-size: 14px;
	font-weight: 800;
	color: var(--accent);
	opacity: 0.85;
	line-height: 1.4;
}

.shop-pathways__label {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}

.shop-pathways__text {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--muted);
}

.shop-pathways__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.shop-pathways__link:hover {
	opacity: 0.85;
}

.shop-deep-dive-footer {
	text-align: center;
	padding: 48px 24px;
	background: var(--card);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border: none;
}

.shop-deep-dive-footer__text {
	margin: 0 0 20px;
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
}

.shop-deep-dive-footer__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

/* Designer Card Section */
.designer-card-section {
	max-width: 1400px;
	margin: 80px auto 0;
	padding: 0 24px;
}

.designer-card-container {
	background: var(--card);
	border: none;
	border-radius: var(--radius-md);
	padding: 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	box-shadow: var(--shadow-sm);
}

body.light-mode .designer-card-container { background: var(--card); }

.designer-card-content { display: flex; flex-direction: column; }
.designer-card-subheading { margin: 0 0 12px 0; font-size: 14px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.designer-card-headline { margin: 0 0 20px 0; font-size: 36px; font-weight: 700; color: var(--text); line-height: 1.2; }
.designer-card-description { margin: 0 0 32px 0; font-size: 16px; line-height: 1.7; color: var(--text); }

.designer-card-button {
	display: inline-block;
	padding: 14px 28px;
	border: 1px solid var(--text);
	border-radius: var(--radius-sm);
	background: var(--card);
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	transition: all 0.2s ease;
	align-self: flex-start;
}

.designer-card-button:hover { background: var(--text); color: var(--card); }
body.light-mode .designer-card-button { background: var(--card); border-color: var(--text); color: var(--text); }
body.light-mode .designer-card-button:hover { background: var(--text); color: var(--bg); }

.designer-card-visual {
	background: var(--panel);
	border-radius: var(--radius-md);
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.designer-card-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }

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

	.product-showcase-grid { grid-template-columns: repeat(6, 1fr); }
	.product-showcase-item.showcase-large { grid-column: span 6; grid-row: span 1; }
	.product-showcase-item.showcase-medium { grid-column: span 3; }
	.showcase-callout { grid-column: span 3; }
}

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

@media (max-width: 968px) {
	.shop-editorial-block,
	.shop-editorial-block--reverse {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 56px;
	}

	.shop-editorial-block--reverse .shop-editorial-block__media,
	.shop-editorial-block--reverse .shop-editorial-block__copy {
		order: unset;
	}

	.shop-pathways {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.designer-card-container { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
	.designer-card-headline { font-size: 28px; }
	.designer-card-visual { min-height: 300px; }
}

@media (max-width: 768px) {
	.hero-scroll-indicator { display: none; }

	.product-selector { padding: 0; }

	.hero-section { padding: 60px 20px 80px; }

	.hero-cta-group {
		flex-direction: column;
		align-items: center;
	}

	.hero-cta-group .cta-button {
		width: 100%;
		max-width: 300px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	.hero-title { font-size: 32px; }
	.hero-subtitle { font-size: 18px; }
	.hero-description { font-size: 14px; }
	.section-title { font-size: 24px; }

	.product-card-content { padding: 16px; }
	.product-name { font-size: 15px; }

	.product-card:hover .product-info-btn { opacity: 1; }
	.product-info-btn { opacity: 1; transform: translateY(0); }

	.product-showcase-section { margin: 80px auto 0; padding: 0 16px; }
	.shop-deep-dive { margin-top: 72px; padding: 0 16px 32px; }
	.shop-deep-dive-intro { margin-bottom: 40px; }
	.shop-deep-dive-footer { padding: 36px 20px; }
	.product-showcase-grid { grid-template-columns: 1fr; gap: 20px; }

	.product-showcase-item,
	.product-showcase-item.showcase-large,
	.product-showcase-item.showcase-medium,
	.showcase-callout { grid-column: span 1; grid-row: span 1; }

	.product-showcase-content { padding: 20px 24px 24px; }
	.product-showcase-number { width: 40px; height: 40px; font-size: 16px; top: 16px; left: 16px; }
	.product-showcase-image { min-height: 180px; }

	.showcase-callout { grid-column: span 1; padding: 24px; }

	.designer-card-section { margin: 60px auto 0; padding: 0 16px; }
	.designer-card-container { padding: 32px 24px; gap: 32px; }
	.designer-card-headline { font-size: 24px; }
	.designer-card-description { font-size: 15px; }
}

/* Focus styles */
.product-modal-close:focus-visible,
.product-showcase-cta:focus-visible,
.product-info-btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
