/**
 * Cheap Sheep — Monochrome PDP stylesheet (complete rebuild, 2026-07-12).
 * Five stacked sections rendered by woocommerce/content-single-product.php
 * from template-parts/pdp/*.php. Enqueued ONLY on is_product().
 *
 * Shared primitives (.csh-container, .csh-btn, .cs-pillar__chip,
 * .screen-reader-text) are duplicated from mono-home.css because that file
 * is front-page-only and the two sheets never load together.
 *
 * Reveal system: the shared observer (functions.php cs_mono_reveal_script)
 * adds .cs-anim-ready to <html> and .is-visible to sections 2–5. Section 1
 * uses immediate CSS keyframe choreography (above the fold).
 *
 * Sticky gallery note: the hero section uses overflow-x: clip, NEVER
 * overflow: hidden — an overflow-hidden ancestor becomes the sticky
 * containing block and silently kills position:sticky (this bit us before
 * on body>.wrapper; see neve-wrapper-sticky-bug).
 */

/* === shared primitives (duplicated from mono-home.css) === */

.csh-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.cs-pdp .screen-reader-text,
.cs-pdp-stickybar .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.csh-btn {
	display: inline-block;
	font-family: var(--csh-ff-body, 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	background: var(--csh-cta-bg, #111111);
	color: var(--csh-cta-text, #FFFFFF);
	border: 1px solid var(--csh-cta-bg, #111111);
	border-radius: 999px;
	padding: 0.85em 1.9em;
	cursor: pointer;
	transition: background 0.25s var(--csh-ease, ease), border-color 0.25s var(--csh-ease, ease), transform 0.25s var(--csh-ease, ease);
}

.csh-btn:hover,
.csh-btn:focus {
	background: #454545;
	border-color: #454545;
	color: #FFFFFF;
	text-decoration: none;
}

.csh-btn:active {
	transform: scale(0.98);
}

.csh-btn--sm {
	font-size: 0.85rem;
	padding: 0.65em 1.4em;
}

.cs-pillar__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--csh-stage, #F5F5F7);
	border-radius: 14px;
	color: var(--csh-ink, #111111);
	margin-bottom: 1.4rem;
	transition: transform 0.3s var(--csh-ease, ease);
}

/* === PDP base === */

.cs-pdp {
	--csh-bg: #FFFFFF;
	--csh-ink: #111111;
	--csh-muted: #707072;
	--csh-line: #E5E5E5;
	--csh-stage: #F5F5F7;
	--csh-cta-bg: #111111;
	--csh-cta-text: #FFFFFF;
	--csh-radius: 18px;
	--csh-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--csh-ff-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	--csh-ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	background: var(--csh-bg);
	color: var(--csh-ink);
	font-family: var(--csh-ff-body);
}

.cs-pdp :focus-visible {
	outline: 2px solid #111111;
	outline-offset: 2px;
}

.cs-pdp-eyebrow {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--csh-muted);
	margin: 0 0 0.9rem;
}

/* Neve prints its own breadcrumb bar above the content area — the rebuilt
   buy box carries the breadcrumb, so hide the duplicate on PDPs only. */
.single-product .nv-bc-count-wrap {
	display: none !important;
}

/* Collapse empty gap between header and product content */
.single-product .neve-main {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.single-product .shop-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.single-product .shop-container > .row {
	margin-top: 0 !important;
}

.single-product .nv-index-posts {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* === SECTION 1: hero (gallery + buy box) === */

.cs-pdp-hero-section {
	padding-top: clamp(1.5rem, 3vw, 3rem) !important;
	padding-bottom: clamp(2.5rem, 6vw, 6rem) !important;
	/* clip, not hidden: hidden would become the sticky gallery's containing
	   block and kill position:sticky. Nothing here animates on the x-axis. */
	overflow-x: clip;
}

.cs-pdp-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	/* Columns STRETCH to row height (grid default) on purpose: position:
	   sticky needs travel room inside its containing column — with
	   align-items:start the gallery column is exactly the gallery's own
	   height and sticky silently does nothing. */
}

@media (min-width: 768px) {
	.cs-pdp-hero__grid {
		grid-template-columns: 0.95fr 1.05fr;
	}

	.cs-pdp-gallery {
		position: sticky;
		top: calc(var(--site-header-height, 72px) + 24px);
	}
}

/* Gallery: vertical rail + 1:1 stage (rail drops below <768px) */
.cs-pdp-gallery {
	display: flex;
	gap: 14px;
	animation: cs-pdp-stage-in 0.9s var(--csh-ease) 0s backwards;
}

.cs-pdp-stage {
	flex: 1;
	min-width: 0;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--csh-stage);
	border-radius: var(--csh-radius);
	overflow: hidden;
	padding: 8%;
}

.cs-pdp-stage__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.cs-pdp-stage__img.is-fading {
	opacity: 0;
}

.cs-pdp-thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 72px;
	max-height: 480px;
	overflow-y: auto;
	scrollbar-width: none;
	flex: 0 0 auto;
}

.cs-pdp-thumbs::-webkit-scrollbar {
	display: none;
}

.cs-pdp-thumb {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 72px !important;
	height: 72px !important;
	padding: 6px !important;
	background: var(--csh-stage) !important;
	border: 2px solid transparent !important;
	border-radius: 12px !important;
	cursor: pointer !important;
	flex: 0 0 auto !important;
	box-shadow: none !important;
	transition: border-color 0.2s var(--csh-ease) !important;
}

.cs-pdp-thumb:hover {
	border-color: var(--csh-line) !important;
	background: var(--csh-stage) !important;
}

.cs-pdp-thumb.is-active {
	border-color: var(--csh-ink) !important;
	background: var(--csh-stage) !important;
}

.cs-pdp-thumb__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

/* Buy box */
.cs-pdp-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--csh-muted);
	margin-bottom: 1.6rem;
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.1s backwards;
}

.cs-pdp-crumbs a {
	color: var(--csh-muted);
	text-decoration: none;
}

.cs-pdp-crumbs a:hover {
	color: var(--csh-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cs-pdp-buy .cs-pdp-eyebrow {
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.15s backwards;
}

.cs-pdp-title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(1.7rem, 3.2vw, 2.75rem);
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0 0 1.1rem;
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.2s backwards;
}

.cs-pdp-price {
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 700;
	color: var(--csh-ink);
	margin: 0 0 1.1rem;
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.3s backwards;
}

.cs-pdp-price del {
	color: var(--csh-muted);
	font-weight: 500;
	font-size: 0.75em;
	margin-right: 0.4em;
}

.cs-pdp-price ins {
	text-decoration: none;
}

.cs-pdp-desc {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--csh-muted);
	max-width: 52ch;
	margin: 0 0 1.4rem;
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.4s backwards;
}

/* Stock pill — the ONLY sanctioned use of color (functional status). */
.cs-pdp-stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid var(--csh-line);
	border-radius: 999px;
	padding: 6px 14px;
	margin: 0 0 1.6rem;
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.45s backwards;
}

.cs-pdp-stock__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2F7A55; /* functional green — in stock */
}

.cs-pdp-stock--out .cs-pdp-stock__dot {
	background: var(--csh-muted);
}

.cs-pdp-stock--out {
	color: var(--csh-muted);
}

/* Cart form: stepper + CTA */
.cs-pdp-form {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
	margin: 0 0 1.6rem;
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.5s backwards;
}

.cs-pdp-qty {
	display: inline-flex !important;
	align-items: center !important;
	border: 1px solid var(--csh-ink) !important;
	border-radius: 999px !important;
	overflow: hidden !important;
	flex: 0 0 auto !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.cs-pdp-qty__btn {
	width: 44px !important;
	height: 48px !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	font-size: 1.15rem !important;
	color: var(--csh-ink) !important;
	cursor: pointer !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	transition: background 0.2s var(--csh-ease) !important;
}

.cs-pdp-qty__btn:hover {
	background: var(--csh-stage) !important;
}

.cs-pdp-qty__input {
	width: 52px !important;
	height: 48px !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-align: center !important;
	font-family: var(--csh-ff-body) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	color: var(--csh-ink) !important;
	background: transparent !important;
	-moz-appearance: textfield !important;
	appearance: textfield !important;
	padding: 0 !important;
	margin: 0 !important;
}

.cs-pdp-qty__input::-webkit-outer-spin-button,
.cs-pdp-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
}

.cs-pdp-add,
.cs-pdp .single_add_to_cart_button {
	flex: 1 1 220px;
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--csh-cta-bg);
	color: var(--csh-cta-text);
	border: 1px solid var(--csh-cta-bg);
	border-radius: 999px;
	font-family: var(--csh-ff-body);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
	transition: background 0.25s var(--csh-ease), transform 0.25s var(--csh-ease), box-shadow 0.25s var(--csh-ease);
}

.cs-pdp-add:hover,
.cs-pdp .single_add_to_cart_button:hover {
	background: #454545;
	border-color: #454545;
	color: var(--csh-cta-text);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

.cs-pdp-add:active,
.cs-pdp .single_add_to_cart_button:active {
	transform: translateY(0) scale(0.98);
	box-shadow: none;
}

.cs-pdp-oos-note {
	color: var(--csh-muted);
	margin: 0 0 1.6rem;
}

/* Trust row */
.cs-pdp-trust {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--csh-line);
	animation: cs-pdp-rise 0.7s var(--csh-ease) 0.55s backwards;
}

.cs-pdp-trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--csh-muted);
	padding: 14px 16px 0 0;
	margin-right: 16px;
	border-right: 1px solid var(--csh-line);
}

.cs-pdp-trust li:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

.cs-pdp-trust svg {
	color: var(--csh-ink);
	flex: 0 0 auto;
}

@keyframes cs-pdp-rise {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes cs-pdp-stage-in {
	from { opacity: 0; transform: scale(0.96); }
	to   { opacity: 1; transform: scale(1); }
}

/* Mobile: stage first, horizontal thumb strip, fixed bottom CTA bar */
@media (max-width: 767px) {
	.cs-pdp-gallery {
		flex-direction: column-reverse;
	}

	.cs-pdp-thumbs {
		flex-direction: row;
		width: 100%;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.cs-pdp-thumb {
		scroll-snap-align: start;
		width: 64px;
		height: 64px;
	}

	.cs-pdp-add {
		flex: 1 1 100%;
	}
}

.cs-pdp-stickybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 120;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid var(--csh-line);
	padding: 10px clamp(1rem, 4vw, 1.5rem) calc(10px + env(safe-area-inset-bottom, 0px));
	transform: translateY(110%);
	transition: transform 0.3s var(--csh-ease);
}

@media (max-width: 767px) {
	.cs-pdp-stickybar {
		display: flex;
	}

	.cs-pdp-stickybar.is-shown {
		transform: translateY(0);
	}
}

.cs-pdp-stickybar__meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.cs-pdp-stickybar__name {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--csh-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cs-pdp-stickybar__price {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--csh-ink);
}

.cs-pdp-add--bar {
	flex: 0 0 auto;
	min-height: 44px;
	padding: 0 22px;
}

.cs-pdp-stickybar :focus-visible {
	outline: 2px solid #111111;
	outline-offset: 2px;
}

/* === SECTION 2: details tabs === */

.cs-pdp-details-section {
	padding-block: clamp(3rem, 7vw, 6.5rem);
}

.cs-pdp-details__inner {
	max-width: 900px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.cs-pdp-tabs {
	display: flex;
	gap: clamp(1rem, 3vw, 2rem);
	border-bottom: 1px solid var(--csh-line);
	margin-bottom: 2rem;
	overflow-x: auto;
	scrollbar-width: none;
}

.cs-pdp-tabs::-webkit-scrollbar {
	display: none;
}

.cs-pdp-tab {
	background: none !important;
	border: none !important;
	border-bottom: 2px solid transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	font-family: var(--csh-ff-body) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
	color: var(--csh-muted) !important;
	padding: 0 2px 12px !important;
	margin: 0 !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	transition: color 0.2s var(--csh-ease), border-color 0.2s var(--csh-ease) !important;
}

.cs-pdp-tab:hover {
	color: var(--csh-ink) !important;
	background: none !important;
}

.cs-pdp-tab.is-active {
	color: var(--csh-ink) !important;
	border-bottom-color: var(--csh-ink) !important;
}

.cs-pdp-tab:focus {
	outline: none !important;
}

.cs-pdp-tab:focus-visible {
	outline: 2px solid var(--csh-ink) !important;
	outline-offset: 2px !important;
}

.cs-pdp-panel {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--csh-muted);
}

.cs-pdp-panel h2,
.cs-pdp-panel h3,
.cs-pdp-panel strong {
	color: var(--csh-ink);
}

.cs-pdp-specs {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 2.5rem;
	margin: 0;
}

@media (min-width: 600px) {
	.cs-pdp-specs {
		grid-template-columns: repeat(2, 1fr);
	}
}

.cs-pdp-specs__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid var(--csh-line);
	padding: 0.8rem 0;
}

.cs-pdp-specs__row dt {
	color: var(--csh-muted);
	font-size: 0.9rem;
}

.cs-pdp-specs__row dd {
	color: var(--csh-ink);
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0;
	text-align: right;
}

.cs-pdp-shiplist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.cs-pdp-shiplist a {
	color: var(--csh-ink);
	text-underline-offset: 3px;
}

/* === SECTION 3: why this one === */

.cs-pdp-why-section {
	padding-block: clamp(2.5rem, 6vw, 5rem);
}

.cs-pdp-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 769px) {
	.cs-pdp-why__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cs-pdp-why__cell {
	display: flex;
}

.cs-pdp-why-card {
	flex: 1;
	transition: transform 0.3s var(--csh-ease), box-shadow 0.3s var(--csh-ease);
	border-radius: var(--csh-radius);
	padding: clamp(1.25rem, 2vw, 1.75rem);
}

.cs-pdp-why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(17, 17, 17, 0.07);
}

.cs-pdp-why-card:hover .cs-pillar__chip {
	transform: scale(1.1);
}

.cs-pdp-why-card__title {
	font-family: var(--csh-ff-body);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
	color: var(--csh-ink);
	margin: 0 0 0.5rem;
}

.cs-pdp-why-card__body {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--csh-muted);
	margin: 0;
}

/* === SECTION 4: reviews === */

.cs-pdp-reviews-section {
	padding-block: clamp(3rem, 7vw, 6rem);
}

.cs-pdp-reviews__inner {
	max-width: 1000px;
}

.cs-pdp-reviews__header {
	margin-bottom: 2rem;
}

.cs-pdp-reviews__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	letter-spacing: -0.02em;
	color: var(--csh-ink);
	margin: 0;
}

.cs-pdp-reviews__sub {
	color: var(--csh-muted);
	margin: 0.6rem 0 0;
}

.cs-pdp-stars {
	display: inline-flex;
	gap: 2px;
}

.cs-pdp-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 769px) {
	.cs-pdp-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.cs-pdp-review-card {
	background: var(--csh-stage);
	border-radius: var(--csh-radius);
	padding: 1.5rem;
	height: 100%;
}

.cs-pdp-review-card__quote {
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--csh-ink);
	margin: 0.9rem 0;
}

.cs-pdp-review-card__meta {
	font-size: 0.82rem;
	color: var(--csh-muted);
	margin: 0;
	display: flex;
	gap: 10px;
	align-items: center;
}

.cs-pdp-review-card__verified {
	border: 1px solid var(--csh-line);
	border-radius: 999px;
	padding: 2px 10px;
	font-size: 0.72rem;
}

.cs-pdp-ghostbtn {
	display: inline-block;
	background: transparent;
	color: var(--csh-ink);
	border: 1px solid var(--csh-ink);
	border-radius: 999px;
	font-family: var(--csh-ff-body);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.8em 1.8em;
	cursor: pointer;
	transition: background 0.25s var(--csh-ease), color 0.25s var(--csh-ease);
}

.cs-pdp-ghostbtn:hover {
	background: var(--csh-ink);
	color: #FFFFFF;
}

.cs-pdp-ghostbtn:active {
	transform: scale(0.98);
}

/* Native WC review form, restyled minimally (monochrome) */
.cs-pdp-reviewform {
	margin-top: 2rem;
	max-width: 640px;
}

.cs-pdp-reviewform .comment-reply-title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--csh-ink);
}

.cs-pdp-reviewform input[type="text"],
.cs-pdp-reviewform input[type="email"],
.cs-pdp-reviewform textarea {
	width: 100%;
	border: 1px solid var(--csh-line);
	border-radius: 12px;
	padding: 10px 14px;
	font-family: var(--csh-ff-body);
	font-size: 0.95rem;
	color: var(--csh-ink);
	background: #FFFFFF;
}

.cs-pdp-reviewform input:focus-visible,
.cs-pdp-reviewform textarea:focus-visible {
	outline: 2px solid #111111;
	outline-offset: 2px;
}

.cs-pdp-reviewform .form-submit .submit {
	background: var(--csh-cta-bg);
	color: var(--csh-cta-text);
	border: 1px solid var(--csh-cta-bg);
	border-radius: 999px;
	font-family: var(--csh-ff-body);
	font-weight: 600;
	padding: 0.8em 1.9em;
	cursor: pointer;
	transition: background 0.25s var(--csh-ease);
}

.cs-pdp-reviewform .form-submit .submit:hover {
	background: #454545;
}

/* The reviews section only hosts the FORM here — hide the duplicate list
   the native template would print (cards above are the curated display). */
.cs-pdp-reviewform .commentlist,
.cs-pdp-reviewform .woocommerce-Reviews-title {
	display: none;
}

/* === SECTION 5: related === */

.cs-pdp-related-section {
	padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
}

.cs-pdp-related__header {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.cs-pdp-related__title {
	font-family: var(--csh-ff-display);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	letter-spacing: -0.03em;
	color: var(--csh-ink);
	margin: 0;
}

.cs-pdp-related__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 1024px) {
	.cs-pdp-related__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ≤600px: horizontal scroll-snap strip — page never scrolls sideways. */
@media (max-width: 600px) {
	.cs-pdp-related__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 1rem;
		padding-bottom: 4px;
	}

	.cs-pdp-related__grid::-webkit-scrollbar {
		display: none;
	}

	.cs-pdp-rel-card {
		flex: 0 0 70%;
		scroll-snap-align: start;
	}
}

.cs-pdp-rel-card {
	transition: transform 0.4s var(--csh-ease);
}

.cs-pdp-rel-card:hover {
	transform: translateY(-6px);
}

.cs-pdp-rel-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	background: var(--csh-stage);
	border-radius: var(--csh-radius);
	overflow: hidden;
	padding: 10%;
	margin-bottom: 0.9rem;
}

.cs-pdp-rel-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 0.4s var(--csh-ease);
}

.cs-pdp-rel-card:hover .cs-pdp-rel-card__img {
	transform: scale(1.05);
}

.cs-pdp-rel-card__name {
	font-family: var(--csh-ff-body);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	margin: 0 0 0.3rem;
}

.cs-pdp-rel-card__name a {
	color: var(--csh-ink);
	text-decoration: none;
}

.cs-pdp-rel-card__name a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cs-pdp-rel-card__price {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--csh-ink);
	margin: 0 0 0.8rem;
}

.cs-pdp-rel-card__price del {
	color: var(--csh-muted);
	font-weight: 500;
}

.cs-pdp-rel-card__price ins {
	text-decoration: none;
}

/* === scroll reveals (sections 2–5, gated behind .cs-anim-ready) === */

.cs-anim-ready .cs-pdp-details-section,
.cs-anim-ready .cs-pdp-related-section {
	opacity: 0;
	transform: translateY(20px);
}

.cs-anim-ready .cs-pdp-details-section.is-visible,
.cs-anim-ready .cs-pdp-related-section.is-visible {
	animation: cs-pdp-reveal 0.8s var(--csh-ease, ease) both;
}

.cs-anim-ready .cs-pdp-why-section .cs-pdp-why__cell {
	opacity: 0;
	transform: translateY(30px);
}

.cs-anim-ready .cs-pdp-why-section.is-visible .cs-pdp-why__cell {
	animation: cs-pdp-reveal 0.7s var(--csh-ease, ease) both;
}

.cs-anim-ready .cs-pdp-why-section.is-visible .cs-pdp-why__cell:nth-child(1) { animation-delay: 0.1s; }
.cs-anim-ready .cs-pdp-why-section.is-visible .cs-pdp-why__cell:nth-child(2) { animation-delay: 0.3s; }
.cs-anim-ready .cs-pdp-why-section.is-visible .cs-pdp-why__cell:nth-child(3) { animation-delay: 0.5s; }

.cs-anim-ready .cs-pdp-reviews-section .cs-pdp-review__cell {
	opacity: 0;
	transform: translateY(30px);
}

.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-review__cell {
	animation: cs-pdp-reveal 0.7s var(--csh-ease, ease) both;
}

.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-review__cell:nth-child(1) { animation-delay: 0.1s; }
.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-review__cell:nth-child(2) { animation-delay: 0.2s; }
.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-review__cell:nth-child(3) { animation-delay: 0.3s; }
.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-review__cell:nth-child(4) { animation-delay: 0.4s; }

/* Reviews header + empty state + form reveal with the section itself. */
.cs-anim-ready .cs-pdp-reviews-section .cs-pdp-reviews__header,
.cs-anim-ready .cs-pdp-reviews-section .cs-pdp-ghostbtn {
	opacity: 0;
}

.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-reviews__header,
.cs-anim-ready .cs-pdp-reviews-section.is-visible .cs-pdp-ghostbtn {
	animation: cs-pdp-reveal 0.8s var(--csh-ease, ease) both;
}

@keyframes cs-pdp-reveal {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* === reduced motion: everything static, everything visible === */

@media (prefers-reduced-motion: reduce) {
	.cs-pdp *,
	.cs-pdp *::before,
	.cs-pdp *::after,
	.cs-pdp-stickybar {
		animation: none !important;
		transition: none !important;
	}

	.cs-anim-ready .cs-pdp-details-section,
	.cs-anim-ready .cs-pdp-related-section,
	.cs-anim-ready .cs-pdp-why-section .cs-pdp-why__cell,
	.cs-anim-ready .cs-pdp-reviews-section .cs-pdp-review__cell,
	.cs-anim-ready .cs-pdp-reviews-section .cs-pdp-reviews__header,
	.cs-anim-ready .cs-pdp-reviews-section .cs-pdp-ghostbtn {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* === section 6: minimalist footer (appended for PDP site footer style consistency) === */

.cs-minimalist-footer {
	background: #0D0D0D !important;
	color: #FFFFFF !important;
	font-family: var(--csh-ff-body) !important;
	padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem !important;
}

.cs-footer__grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: clamp(2.5rem, 4vw, 3rem) !important;
}

.cs-footer__wordmark {
	font-family: var(--csh-ff-display) !important;
	font-weight: 700 !important;
	font-size: 1.6rem !important;
	letter-spacing: -0.02em !important;
	margin: 0 0 0.6rem !important;
	color: #FFFFFF !important;
}

.cs-footer__tagline {
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
	color: #7E7E7E !important;
	margin: 0 0 1.5rem !important;
}

.cs-footer__news {
	display: flex !important;
	gap: 0.6rem !important;
	flex-wrap: wrap !important;
	max-width: 380px !important;
}

.cs-footer__news-input {
	flex: 1 !important;
	min-width: 200px !important;
	background: #1A1A1A !important;
	border: 1px solid #333333 !important;
	border-radius: 999px !important;
	color: #FFFFFF !important;
	font-family: var(--csh-ff-body) !important;
	font-size: 0.9rem !important;
	padding: 0.75em 1.3em !important;
}

.cs-footer__news-input::placeholder {
	color: #7E7E7E !important;
}

.cs-footer__news-btn {
	background: #F2F2F2 !important;
	color: var(--csh-ink) !important;
	border: 1px solid #F2F2F2 !important;
	border-radius: 999px !important;
	font-family: var(--csh-ff-body) !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	padding: 0.75em 1.5em !important;
	cursor: pointer !important;
	transition: background 0.2s var(--csh-ease), transform 0.2s var(--csh-ease) !important;
}

.cs-footer__news-btn:hover {
	background: #FFFFFF !important;
	border-color: #FFFFFF !important;
}

.cs-footer__news-btn:active {
	transform: scale(0.98) !important;
}

.cs-footer__heading {
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	color: #FFFFFF !important;
	margin: 0 0 1.1rem !important;
}

.cs-footer__list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid !important;
	gap: 0.65rem !important;
}

.cs-footer__link {
	display: inline-block !important;
	color: #7E7E7E !important;
	font-size: 0.95rem !important;
	text-decoration: none !important;
	transition: color 0.2s var(--csh-ease), transform 0.2s var(--csh-ease) !important;
}

.cs-footer__link:hover,
.cs-footer__link:focus-visible {
	color: #FFFFFF !important;
	transform: translateX(3px) !important;
}

.cs-footer__help {
	font-size: 0.95rem !important;
	line-height: 1.65 !important;
	color: #7E7E7E !important;
	margin: 0 0 1rem !important;
}

.cs-footer__bottom {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1rem !important;
	border-top: 1px solid #262626 !important;
	margin-top: clamp(2.5rem, 5vw, 4rem) !important;
	padding-top: 1.75rem !important;
}

.cs-footer__copyright {
	font-size: 0.85rem !important;
	color: #7E7E7E !important;
	margin: 0 !important;
}

.cs-footer__legal {
	list-style: none !important;
	display: flex !important;
	gap: 1.5rem !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cs-footer__legal .cs-footer__link {
	font-size: 0.85rem !important;
}

@media (min-width: 601px) {
	.cs-footer__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (min-width: 1025px) {
	.cs-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
	}
}

/* --- PDP Description Typography Overhaul --- */

#cs-panel-desc {
	max-width: 800px !important;
	margin: 0 auto !important;
	font-family: var(--csh-ff-body) !important;
	font-size: 1rem !important;
	line-height: 1.85 !important;
	color: var(--csh-muted) !important;
}

#cs-panel-desc p {
	margin-bottom: 1.6rem !important;
	color: #4A4A4A !important;
}

/* Make the first paragraph look like an editorial lead-in */
#cs-panel-desc p:first-of-type {
	font-size: 1.18rem !important;
	line-height: 1.75 !important;
	color: var(--csh-ink) !important;
	font-weight: 500 !important;
	margin-bottom: 2.5rem !important;
}

/* Beautiful Editorial Headings */
#cs-panel-desc .cs-pdp-content-heading,
#cs-panel-desc h2,
#cs-panel-desc h3 {
	font-family: var(--csh-ff-display) !important;
	font-weight: 700 !important;
	font-size: 1.45rem !important;
	color: var(--csh-ink) !important;
	letter-spacing: -0.02em !important;
	margin-top: 3.5rem !important;
	margin-bottom: 1.2rem !important;
	line-height: 1.3 !important;
	position: relative !important;
	padding-bottom: 12px !important;
}

#cs-panel-desc .cs-pdp-content-heading::after,
#cs-panel-desc h2::after,
#cs-panel-desc h3::after {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	bottom: 0 !important;
	width: 32px !important;
	height: 2px !important;
	background: var(--csh-ink) !important;
}

/* Style list items like a premium specifications list or key features */
#cs-panel-desc ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 2.5rem 0 !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0.8rem !important;
	border-top: 1px solid var(--csh-line) !important;
	border-bottom: 1px solid var(--csh-line) !important;
	padding-block: 2rem !important;
}

@media (min-width: 601px) {
	#cs-panel-desc ul {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.2rem !important;
	}
}

#cs-panel-desc li {
	position: relative !important;
	padding-left: 20px !important;
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
	color: #4A4A4A !important;
}

#cs-panel-desc li::before {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 9px !important;
	width: 5px !important;
	height: 5px !important;
	background: var(--csh-ink) !important;
}

/* Header list items (headers inside dynamic bullet lists) */
#cs-panel-desc li.cs-pdp-list-header {
	grid-column: 1 / -1 !important;
	font-family: var(--csh-ff-display) !important;
	font-weight: 700 !important;
	font-size: 1.15rem !important;
	color: var(--csh-ink) !important;
	padding-left: 0 !important;
	margin-top: 1.5rem !important;
	margin-bottom: 0.2rem !important;
	border-bottom: 1px solid var(--csh-line) !important;
	padding-bottom: 8px !important;
}

#cs-panel-desc li.cs-pdp-list-header::before {
	display: none !important;
}

/* Push headers that are first in list down slightly less */
#cs-panel-desc li.cs-pdp-list-header:first-child {
	margin-top: 0 !important;
}
