/* ── Products Page Hero ───────────────────────────────── */
.pq-hero {
	padding-top: 72px;
	min-height: 72vh;
	background: var(--dark);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
}

.pq-hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 72px 56px 72px 48px;
}

.pq-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.pq-hero-eyebrow::before {
	content: '';
	display: block;
	width: 32px;
	height: 2px;
	background: var(--red);
	flex-shrink: 0;
}

.pq-hero-eyebrow span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
}

.pq-hero-h1 {
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 24px;
}

.pq-hero-h1 em { font-style: normal; color: var(--red); }

.pq-hero-sub {
	font-size: 17px;
	font-weight: 300;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	max-width: 420px;
	margin-bottom: 48px;
}

.pq-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }

.pq-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255,255,255,0.65);
	border: 1.5px solid rgba(255,255,255,0.18);
	padding: 10px 20px;
	border-radius: 2px;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.pq-pill:hover {
	color: var(--white);
	border-color: var(--red);
	background: rgba(255,0,60,0.06);
}

.pq-pill span { font-size: 10px; font-weight: 400; color: var(--red); margin-right: 2px; }

.pq-hero-img {
	position: relative;
	overflow: hidden;
	background: var(--dark3);
}

.pq-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: grayscale(12%);
	transition: transform 8s ease, filter 0.5s;
}

.pq-hero-img:hover img { transform: scale(1.03); filter: grayscale(0%); }

.pq-hero-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(270deg, transparent 60%, rgba(10,10,10,0.35) 100%);
	pointer-events: none;
}

/* ── Product Anchor Bar ───────────────────────────────── */
.pq-anchors {
	position: sticky;
	top: 72px;
	z-index: 500;
	background: var(--dark2);
	border-bottom: 1px solid rgba(255,255,255,0.07);
	display: flex;
	padding: 0 48px;
	overflow-x: auto;
	scrollbar-width: none;
}

.pq-anchors::-webkit-scrollbar { display: none; }

.pq-anchor {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.38);
	text-decoration: none;
	padding: 20px 28px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
	white-space: nowrap;
	flex-shrink: 0;
}

.pq-anchor:hover { color: rgba(255,255,255,0.75); }
.pq-anchor.active { color: var(--white); border-bottom-color: var(--red); }

/* ── Product Sections ─────────────────────────────────── */
.pq-section { padding: 100px 48px; }

.pq-section-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.pq-section-inner.reverse { direction: rtl; }
.pq-section-inner.reverse > * { direction: ltr; }

/* ── Product Text ─────────────────────────────────────── */
.pq-product-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 16px;
}

.pq-product-name {
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 28px;
}

.pq-product-desc {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255,255,255,0.58);
	line-height: 1.8;
}

.pq-product-desc + .pq-product-desc { margin-top: 16px; }

/* light-bg overrides */
.pq-light .pq-product-num { color: rgba(0,0,0,0.45); }
.pq-light .pq-product-name { color: var(--dark); }
.pq-light .pq-product-desc { color: rgba(0,0,0,0.58); }

/* ── Specs Table ──────────────────────────────────────── */
.pq-specs { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.09); }

.pq-spec {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 24px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pq-spec-key {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.28);
	flex-shrink: 0;
}

.pq-spec-val { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82); text-align: right; }

/* ── Color Swatches ───────────────────────────────────── */
.pq-colors { display: flex; align-items: center; gap: 7px; }

.pq-swatch {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
	transition: transform 0.15s, box-shadow 0.15s;
	cursor: default;
	flex-shrink: 0;
}

.pq-swatch:hover {
	transform: scale(1.3);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3), 0 0 0 2px rgba(255,255,255,0.25);
}

.pq-light .pq-swatch:hover {
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2), 0 0 0 2px rgba(0,0,0,0.18);
}

/* light overrides for specs */
.pq-light .pq-specs { border-top-color: rgba(0,0,0,0.1); }
.pq-light .pq-spec { border-bottom-color: rgba(0,0,0,0.08); }
.pq-light .pq-spec-key { color: rgba(0,0,0,0.38); }
.pq-light .pq-spec-val { color: rgba(0,0,0,0.78); }

/* ── Product Media Grid ───────────────────────────────── */
.pq-media {
	display: grid;
	grid-template-columns: 3fr 2fr;
	grid-template-rows: 1fr 1fr;
	gap: 4px;
}

.pq-media-main { grid-column: 1 / 2; grid-row: 1 / 3; overflow: hidden; }

.pq-media-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	aspect-ratio: 3/4;
	filter: grayscale(8%);
	transition: transform 0.6s ease, filter 0.4s;
}

.pq-media-main:hover img { transform: scale(1.04); filter: grayscale(0%); }

.pq-media-sm { overflow: hidden; }

.pq-media-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 1;
	filter: grayscale(8%);
	transition: transform 0.6s ease, filter 0.4s;
}

.pq-media-sm:hover img { transform: scale(1.04); filter: grayscale(0%); }

.pq-media-solo { overflow: hidden; }

.pq-media-solo img {
	width: 100%;
	object-fit: cover;
	display: block;
	aspect-ratio: 4/5;
	filter: grayscale(8%);
	transition: transform 0.6s ease, filter 0.4s;
}

.pq-media-solo:hover img { transform: scale(1.03); filter: grayscale(0%); }

/* ── Launch Callout (per product) ────────────────────── */
.pq-launch-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 28px;
	padding: 13px 18px;
	background: rgba(255,0,60,0.07);
	border: 1px solid rgba(255,0,60,0.18);
	border-radius: 2px;
}

.pq-launch-callout-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
}

.pq-launch-callout-link {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--red);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.pq-launch-callout-link:hover { opacity: 0.72; }

.pq-light .pq-launch-callout {
	background: rgba(255,0,60,0.05);
	border-color: rgba(255,0,60,0.15);
}

.pq-light .pq-launch-callout-label { color: rgba(0,0,0,0.5); }

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 991px) {
	.pq-hero { grid-template-columns: 1fr; min-height: auto; }
	.pq-hero-img { display: none; }
	.pq-hero-text { padding: 80px 24px 60px; }

	.pq-anchors { padding: 0 24px; }

	.pq-section { padding: 72px 24px; }
	.pq-section-inner { grid-template-columns: 1fr; gap: 48px; }
	.pq-section-inner.reverse { direction: ltr; }

	.pq-media { grid-template-columns: 1fr; grid-template-rows: auto; }
	.pq-media-main { grid-row: 1; }
	.pq-media-main img { aspect-ratio: 16/10; }
	.pq-media-sm { display: none; }
}

@media (max-width: 767px) {
	.pq-hero-h1 { font-size: clamp(34px, 10vw, 52px); }
	.pq-product-name { font-size: clamp(28px, 9vw, 42px); }
}
