/* Product-family detail page. Loaded only for product detail routes. */

.product-detail-v2 {
	--pd-purple: #470a68;
	--pd-purple-bright: #72199a;
	--pd-lime: #c6d82e;
	--pd-ink: #171717;
	--pd-muted: #626262;
	--pd-line: #dedede;
	--pd-soft: #f3f4f1;
	--pd-card-brush-shape: polygon(
		.5% 7px, 4% 3px, 8% 8px, 12% 2px, 16% 6px, 20% 1px, 24% 9px,
		28% 4px, 32% 7px, 36% 2px, 40% 6px, 44% 1px, 48% 8px, 52% 3px,
		56% 7px, 60% 2px, 64% 9px, 68% 4px, 72% 7px, 76% 1px, 80% 6px,
		84% 2px, 88% 8px, 92% 3px, 96% 7px, 99.5% 4px,
		100% 17%, calc(100% - 2px) 34%, 100% 51%, calc(100% - 3px) 69%,
		100% 86%, 99.4% calc(100% - 6px), 96% calc(100% - 2px),
		92% calc(100% - 8px), 88% calc(100% - 3px), 84% calc(100% - 7px),
		80% calc(100% - 1px), 76% calc(100% - 6px), 72% calc(100% - 2px),
		68% calc(100% - 9px), 64% calc(100% - 4px), 60% calc(100% - 7px),
		56% calc(100% - 2px), 52% calc(100% - 8px), 48% calc(100% - 3px),
		44% calc(100% - 7px), 40% calc(100% - 1px), 36% calc(100% - 6px),
		32% calc(100% - 2px), 28% calc(100% - 9px), 24% calc(100% - 4px),
		20% calc(100% - 7px), 16% calc(100% - 2px), 12% calc(100% - 8px),
		8% calc(100% - 3px), 4% calc(100% - 7px), .6% calc(100% - 4px),
		0 85%, 3px 68%, 0 51%, 2px 33%, 0 16%
	);
	overflow: clip;
	background: #fff;
	color: var(--pd-ink);
}

.product-detail-v2 * { box-sizing: border-box; }
.product-detail-v2 img, .product-detail-v2 svg { max-width: 100%; }

.pd-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f2f4ef 0%, #fff 68%);
}

.pd-hero__inner {
	position: relative;
	display: grid;
	min-height: 600px;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
	align-items: center;
	gap: clamp(38px, 6vw, 92px);
	padding-block: 30px;
}

.pd-hero__visual {
	position: relative;
	display: block;
	width: 100%;
	height: 460px;
	min-width: 0;
	min-height: 0;
	max-height: 460px;
}

.pd-packshot {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	max-width: 680px;
	height: 460px !important;
	min-height: 0 !important;
	max-height: 460px !important;
	margin: auto !important;
	padding: 0 !important;
	border: 0 !important;
}

.pd-packshot::after {
	position: absolute;
	right: 8%;
	bottom: 3%;
	left: 5%;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .16);
	filter: blur(19px);
	content: "";
}

.pd-packshot__layer {
	position: absolute !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
}

.pd-packshot__layer > img {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: 100% !important;
	max-height: none !important;
	margin: 0 !important;
	object-fit: contain !important;
	object-position: center bottom !important;
	filter: drop-shadow(0 22px 19px rgba(25, 25, 25, .12));
}

.pd-packshot__layer--large {
	right: auto !important;
	bottom: 0 !important;
	left: -12% !important;
	z-index: 1;
	width: 108% !important;
	height: 100% !important;
}

.pd-packshot__layer--small {
	right: auto !important;
	bottom: 0 !important;
	left: 28% !important;
	z-index: 2;
	width: 96% !important;
	height: 91% !important;
}

.pd-hero__copy { position: relative; z-index: 3; min-width: 0; }

.pd-back {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: clamp(28px, 4vw, 46px);
	color: var(--pd-ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.pd-back svg { flex: 0 0 20px; transition: transform .2s ease; }
.pd-back:hover svg, .pd-back:focus-visible svg { transform: translateX(-4px); }
.pd-back:focus-visible, .pd-jump-nav a:focus-visible, .pd-variant a:focus-visible, .pd-faq summary:focus-visible, .pd-review-form :focus-visible { outline: 3px solid var(--pd-lime); outline-offset: 4px; }

.pd-eyebrow,
.pd-section__heading > p,
.pd-contact p {
	margin: 0 0 10px;
	color: var(--pd-purple-bright);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.4;
	text-transform: uppercase;
}

.pd-hero h1 {
	max-width: 650px;
	margin: 0;
	color: var(--pd-ink);
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: clamp(43px, 5vw, 72px);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: .98;
	text-wrap: balance;
}

.pd-lead {
	max-width: 670px;
	margin-top: 25px;
	color: #373737;
	font-size: 17px;
	line-height: 1.65;
}

.pd-lead p { margin: 0 0 12px; }
.pd-lead p:last-child { margin-bottom: 0; }

.pd-variant { margin-top: 30px; }
.pd-variant__label { margin: 0 0 10px; font-size: 14px; font-weight: 800; }
.pd-variant ul { display: flex; width: min(100%, 270px); margin: 0; padding: 4px; border: 1px solid var(--pd-line); border-radius: 31px; background: #fff; list-style: none; box-shadow: 0 8px 25px rgba(0, 0, 0, .05); }
.pd-variant li { width: 50%; margin: 0; padding: 0; }
.pd-variant a { display: flex; width: 100%; min-height: 50px; flex-direction: column; align-items: center; justify-content: center; padding: 6px 12px; border-radius: 25px; color: var(--pd-ink); font-size: 16px; font-weight: 800; line-height: 1.05; text-align: center; text-decoration: none; }
.pd-variant a:hover { background: var(--pd-soft); }
.pd-variant a.is-selected { background: var(--pd-purple); color: #fff; }
.pd-variant a small { margin-top: 3px; font-size: 8px; font-weight: 650; letter-spacing: .035em; opacity: .82; text-transform: uppercase; }

body.view-product-detail {
	--pd-jump-height: 76px;
	--pd-sticky-offset: 0px;
}

body.view-product-detail.admin-bar { --pd-sticky-offset: var(--site-admin-offset, 32px); }

.pd-jump-nav-sentinel {
	height: 1px;
	margin-bottom: -1px;
	pointer-events: none;
}

.pd-jump-nav-shell {
	position: sticky;
	top: var(--pd-sticky-offset);
	z-index: 99996;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--pd-line);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 10px 24px rgba(33, 24, 37, .06);
	backdrop-filter: blur(9px);
}

body.view-product-detail .site-nav { z-index: 99995; }
body.view-product-detail.product-jump-sticky .site-nav { top: -50px !important; }
body.view-product-detail.admin-bar.product-jump-sticky .site-nav { top: calc(var(--site-admin-offset, 32px) - 50px) !important; }

.pd-jump-nav {
	display: flex;
	min-height: 76px;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 clamp(18px, 2.7vw, 38px);
	overflow: visible;
	padding-block: 10px;
	white-space: normal;
}

.pd-jump-nav strong { flex: 0 0 auto; color: var(--pd-muted); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.pd-jump-nav a { position: relative; display: inline-flex; min-height: 54px; align-items: center; color: var(--pd-ink); font-size: 13px; font-weight: 700; line-height: 1.25; text-decoration: none; }
.pd-jump-nav a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--pd-purple); content: ""; opacity: 0; transform: scaleX(.25); transition: opacity .2s ease, transform .2s ease; }
.pd-jump-nav a:hover::after, .pd-jump-nav a:focus-visible::after { opacity: 1; transform: scaleX(1); }

.pd-section { padding-block: clamp(68px, 8vw, 112px); scroll-margin-top: calc(var(--pd-sticky-offset) + var(--pd-jump-height) + 16px); }
.pd-section__heading { display: grid; grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr); align-items: end; gap: 40px; margin-bottom: 44px; }
.pd-section__heading > p { margin-bottom: 6px; }
.pd-section h2, .pd-schedule h2, .pd-contact h2, .pd-reviews h2 { margin: 0; font-family: "Roboto Condensed", Arial, sans-serif; font-size: clamp(34px, 4vw, 54px); letter-spacing: -.025em; line-height: 1; text-wrap: balance; }

.pd-description { max-width: 900px; margin-bottom: 46px; color: #343434; font-size: 18px; line-height: 1.72; }
.pd-description p { margin: 0 0 18px; }
.pd-description p:last-child { margin-bottom: 0; }
.pd-benefits { padding-bottom: clamp(52px, 5vw, 72px); }
.pd-benefits .pd-description:last-child { margin-bottom: 0; }
.pd-benefits__title { margin: 0 0 22px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 27px; line-height: 1.1; }

.pd-benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.pd-benefit-grid li { display: flex; min-height: 92px; align-items: flex-start; gap: 16px; padding: 22px 24px; border: 1px solid #e4e4e4; border-radius: 15px 0; background: #fff; }
.pd-benefit-grid li > span { display: inline-flex; width: 28px; height: 28px; flex: 0 0 28px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pd-lime); color: #222; font-size: 14px; font-weight: 900; }
.pd-benefit-grid strong { display: block; padding-top: 3px; font-size: 17px; line-height: 1.35; }
.pd-benefit-grid p { margin: 6px 0 0; color: var(--pd-muted); font-size: 14px; line-height: 1.5; }

.pd-use { padding-top: 20px; }
.pd-use > .pd-section__heading { scroll-margin-top: calc(var(--pd-sticky-offset) + var(--pd-jump-height) + 16px); }
.pd-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: clamp(32px, 3vw, 44px) 20px; }
.pd-info-card { --pd-card-brush: var(--pd-soft); position: relative; min-height: 220px; padding: clamp(42px, 4.4vw, 58px) clamp(30px, 4vw, 48px); border-radius: 0; background: var(--pd-card-brush); }
.pd-info-card--wide { --pd-card-brush: var(--pd-purple); grid-column: 1 / -1; min-height: auto; color: #fff; }
.pd-info-card--dose { --pd-card-brush: var(--pd-lime); display: flex; flex-direction: column; justify-content: space-between; }
.pd-info-card h3, .pd-fact h3 { margin: 0 0 22px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 25px; line-height: 1.1; }
.pd-info-card p, .pd-fact p { margin: 0 0 12px; overflow-wrap: anywhere; font-size: 16px; line-height: 1.65; }
.pd-info-card p:last-child, .pd-fact p:last-child { margin-bottom: 0; }
.pd-info-card--dose > strong { max-width: 410px; overflow-wrap: anywhere; font-family: "Roboto Condensed", Arial, sans-serif; font-size: clamp(27px, 2.7vw, 36px); line-height: 1.08; }

.pd-schedule { padding-block: clamp(66px, 7vw, 96px); scroll-margin-top: calc(var(--pd-sticky-offset) + var(--pd-jump-height) + 16px); background: var(--pd-purple); color: #fff; }
.pd-schedule__inner { display: grid; grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr); align-items: center; gap: clamp(36px, 5vw, 72px); }
.pd-schedule__copy > p { margin: 0 0 12px; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.55; }
.pd-schedule__copy > strong { display: block; margin-top: 22px; overflow-wrap: anywhere; color: var(--pd-lime); font-size: 18px; }
.pd-weeks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.pd-weeks li { display: flex; min-width: 0; min-height: 126px; flex-direction: column; align-items: center; justify-content: center; padding: 14px 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 14px 0; color: rgba(255,255,255,.82); text-align: center; }
.pd-weeks li.is-active { border-color: var(--pd-lime); background: var(--pd-lime); color: #1c1c1c; }
.pd-weeks span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pd-weeks strong { margin-top: 2px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 31px; line-height: 1; }
.pd-weeks small { display: block; width: 100%; margin-top: 9px; overflow-wrap: anywhere; font-size: 11px; font-weight: 700; line-height: 1.25; }

.pd-facts__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 3vw, 44px) 20px; }
.pd-fact { min-height: 250px; padding: clamp(28px, 4vw, 44px); border: 1px solid var(--pd-line); border-radius: 20px 0; }
.pd-fact--composition { --pd-card-brush: var(--pd-soft); position: relative; grid-column: 1 / -1; min-height: auto; padding: clamp(42px, 4.4vw, 58px) clamp(30px, 4vw, 48px); border-color: transparent; border-radius: 0; background: var(--pd-card-brush); }
.pd-fact--safety { --pd-card-brush: #242424; position: relative; padding: clamp(42px, 4.4vw, 58px) clamp(30px, 4vw, 48px); border-color: transparent; border-radius: 0; background: var(--pd-card-brush); color: #fff; }
.pd-info-card,
.pd-fact--composition,
.pd-fact--safety {
	-webkit-clip-path: var(--pd-card-brush-shape);
	clip-path: var(--pd-card-brush-shape);
}
.pd-fact--safety h4 { margin: 20px 0 7px; color: var(--pd-lime); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.pd-fact--safety h4:first-of-type { margin-top: 0; }
.pd-fact--packages ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.pd-fact--packages li { display: inline-flex; min-width: 80px; min-height: 43px; align-items: center; justify-content: center; border: 1px solid var(--pd-purple); border-radius: 23px; color: var(--pd-purple); font-weight: 800; }

.pd-contact { position: relative; min-height: 300px; overflow: hidden; margin-block: 8px 0; padding: clamp(42px, 6vw, 72px); border-radius: 26px 0; background: var(--pd-soft); }
.pd-contact::after { position: absolute; right: -80px; bottom: -130px; width: 330px; height: 330px; border-radius: 50%; background: rgba(198, 216, 46, .32); content: ""; }
.pd-contact__content { position: relative; z-index: 1; display: flex; max-width: 720px; align-items: flex-start; flex-direction: column; }
.pd-contact h2 { max-width: 680px; font-size: clamp(31px, 4vw, 48px); }
.pd-contact .button { margin-top: 28px; }

.pd-faq { scroll-margin-top: calc(var(--pd-sticky-offset) + var(--pd-jump-height) + 16px); }
.pd-faq__list { border-top: 1px solid var(--pd-line); }
.pd-faq details { border-bottom: 1px solid var(--pd-line); }
.pd-faq summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 4px; cursor: pointer; font-family: "Roboto Condensed", Arial, sans-serif; font-size: clamp(19px, 2vw, 24px); font-weight: 700; line-height: 1.25; list-style: none; }
.pd-faq summary::-webkit-details-marker { display: none; }
.pd-faq summary svg { flex: 0 0 22px; color: var(--pd-purple); transition: transform .2s ease; }
.pd-faq details[open] summary svg { transform: rotate(45deg); }
.pd-faq__answer { max-width: 850px; padding: 0 48px 28px 4px; color: #3c3c3c; font-size: 16px; line-height: 1.7; }
.pd-faq__answer p { margin: 0; }

.pd-reviews { padding-block: clamp(70px, 8vw, 112px); scroll-margin-top: calc(var(--pd-sticky-offset) + var(--pd-jump-height) + 16px); background: #f4f5f2; }
.pd-reviews__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.pd-review-summary { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 12px; }
.pd-review-summary > strong { grid-row: 1 / 3; color: var(--pd-purple); font-family: "Roboto Condensed", Arial, sans-serif; font-size: 52px; line-height: 1; }
.pd-review-summary small { color: var(--pd-muted); font-size: 13px; }
.pd-stars { --pd-star-active: #e5a500; --pd-star-empty: #bababa; display: inline-flex; gap: 2px; color: var(--pd-star-empty); font-size: 20px; letter-spacing: .02em; }
.pd-stars .is-filled { color: var(--pd-star-active); }
.pd-stars .is-partial { position: relative; color: var(--pd-star-empty); }
.pd-stars .is-partial::before { position: absolute; top: 0; left: 0; width: var(--pd-star-fill, 50%); overflow: hidden; color: var(--pd-star-active); content: "★"; }
.pd-stars--small { margin-left: auto; font-size: 15px; }
.pd-review-notice { margin: 0 0 24px; padding: 16px 18px; border-left: 4px solid var(--pd-lime); background: #fff; font-weight: 700; }
.pd-reviews__layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: start; gap: clamp(28px, 5vw, 70px); }
.pd-review-list { min-width: 0; }
.pd-review { padding: 28px 0; border-bottom: 1px solid #d7d8d4; }
.pd-review:first-child { padding-top: 0; }
.pd-review header { display: flex; align-items: center; gap: 13px; }
.pd-review__avatar { display: inline-flex; width: 44px; height: 44px; flex: 0 0 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pd-purple); color: #fff; font-weight: 800; }
.pd-review header strong, .pd-review header time { display: block; }
.pd-review header time { margin-top: 2px; color: var(--pd-muted); font-size: 12px; }
.pd-review__body { margin-top: 16px; color: #333; font-size: 16px; line-height: 1.65; }
.pd-review__body p { margin: 0 0 10px; }
.pd-review__body p:last-child { margin-bottom: 0; }
.pd-review-empty { padding: clamp(30px, 5vw, 54px); border: 1px dashed #c7c8c4; border-radius: 20px 0; background: rgba(255,255,255,.55); text-align: center; }
.pd-review-empty .pd-stars { color: #c5c5c5; font-size: 26px; }
.pd-review-empty h3 { margin: 18px 0 8px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 25px; line-height: 1.2; }
.pd-review-empty p { margin: 0; color: var(--pd-muted); line-height: 1.6; }
.pd-review-form-wrap { padding: clamp(26px, 4vw, 42px); border-radius: 22px 0; background: #fff; box-shadow: 0 16px 45px rgba(30,30,30,.07); }
.pd-review-form-wrap > h3 { margin: 0 0 26px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 28px; }
.pd-review-form p { margin: 0 0 20px; }
.pd-review-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.pd-review-form label, .pd-rating-field legend { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.pd-review-form input[type="text"], .pd-review-form input[type="email"], .pd-review-form textarea { display: block; width: 100%; min-width: 0; border: 1px solid #c9cac6; border-radius: 8px 0; background: #fff; color: var(--pd-ink); font: inherit; }
.pd-review-form input[type="text"], .pd-review-form input[type="email"] { min-height: 48px; padding: 10px 13px; }
.pd-review-form textarea { min-height: 145px; padding: 13px; resize: vertical; }
.pd-rating-field { min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.pd-rating-options { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
.pd-rating-options label { position: relative; display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 4px; margin: 0; border: 1px solid #d3d4d0; border-radius: 8px 0; cursor: pointer; font-size: 14px; }
.pd-rating-options input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; opacity: 0; }
.pd-rating-options label:has(input:checked) { border-color: var(--pd-purple); background: var(--pd-purple); color: #fff; }
.pd-rating-options label:has(input:focus-visible) { outline: 3px solid var(--pd-lime); outline-offset: 2px; }
.pd-rating-options label > span[aria-hidden] { color: #e5a500; font-size: 18px; }
.pd-review-consent { display: flex !important; align-items: flex-start; gap: 10px; margin: 0 0 22px !important; color: #4b4b4b; font-weight: 500 !important; line-height: 1.5; }
.pd-review-consent input { width: 18px; height: 18px; flex: 0 0 18px; margin: 2px 0 0; accent-color: var(--pd-purple); }
.pd-review-consent a { color: var(--pd-purple); font-weight: 700; text-underline-offset: 2px; }
.pd-review-form .button { width: 100%; }
.pd-reviews-closed { margin: 0; color: var(--pd-muted); line-height: 1.6; }

@media (max-width: 1100px) {
	.product-detail-v2 .content-container { width: calc(100% - 40px); max-width: 1088px; }
	.product-detail-v2 .pd-jump-nav { width: 100%; }
	.pd-hero__inner { min-height: 560px; grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr); gap: 28px; }
	.pd-hero__visual, .pd-packshot { height: 430px !important; max-height: 430px !important; }
	.pd-schedule__inner { grid-template-columns: 1fr; }
	.pd-weeks { width: 100%; }
	.pd-reviews__layout { grid-template-columns: 1fr; }
	.pd-review-form-wrap { max-width: 760px; }
}

@media (max-width: 900px) {
	body.view-product-detail.admin-bar { --pd-sticky-offset: var(--site-admin-offset, 46px); }
	.pd-hero__inner { display: flex; min-height: 0; flex-direction: column; gap: 20px; padding-block: 28px 48px; }
	.pd-hero__copy { width: 100%; order: 1; }
	.pd-hero__visual, .pd-packshot { width: 100% !important; height: clamp(315px, 76vw, 430px) !important; min-height: 0 !important; max-height: 430px !important; }
	.pd-hero__visual { order: 2; }
	.pd-packshot__layer--large { left: -16% !important; width: 112% !important; }
	.pd-packshot__layer--small { left: 25% !important; width: 103% !important; }
	.pd-back { margin-bottom: 30px; }
	.pd-hero h1 { font-size: clamp(40px, 12.5vw, 58px); }
	.pd-lead { font-size: 15px; line-height: 1.6; }
	.pd-variant ul { width: 100%; max-width: 360px; }
	.pd-jump-nav { display: grid; width: 100% !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; padding: 12px 24px; }
	.pd-jump-nav strong { grid-column: 1 / -1; padding: 5px 0; }
	.pd-jump-nav a { min-height: 44px; white-space: normal; }
	.pd-section { padding-block: 66px; }
	.pd-section__heading { grid-template-columns: 1fr; gap: 4px; margin-bottom: 34px; }
	.pd-description { font-size: 16px; line-height: 1.7; }
	.pd-benefit-grid, .pd-card-grid, .pd-facts__grid { grid-template-columns: 1fr; }
	.pd-info-card--wide, .pd-fact--composition { grid-column: auto; }
	.pd-info-card { min-height: auto; }
	.pd-info-card--dose { min-height: 180px; }
	.pd-schedule__inner { gap: 30px; }
	.pd-weeks { gap: 8px; }
	.pd-weeks li { min-height: 120px; padding: 12px 7px; }
	.pd-weeks small { font-size: 10px; }
	.pd-contact { min-height: 0; padding: 38px 28px; }
	.pd-contact::after { right: -160px; }
	.pd-contact .button { width: 100%; max-width: 360px; text-align: center; }
	.pd-faq__answer { padding-right: 4px; }
	.pd-reviews__heading { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
	.pd-review-summary { align-self: flex-start; }
	.pd-review-form__row { grid-template-columns: 1fr; gap: 0; }
}

@media (min-width: 992px) {
	body.view-product-detail.product-jump-sticky .site-nav { top: -130px !important; }
	body.view-product-detail.admin-bar.product-jump-sticky .site-nav { top: calc(var(--site-admin-offset, 32px) - 130px) !important; }
}

@media (max-width: 420px) {
	.pd-hero__visual, .pd-packshot { height: clamp(275px, 86vw, 330px) !important; max-height: 330px !important; }
	.pd-eyebrow { min-height: 36.4px; }
	.pd-lead { min-height: 120px; }
	.pd-variant a { min-width: 0; padding-inline: 8px; }
	.pd-jump-nav { gap: 0 12px; padding-inline: 20px; }
	.pd-jump-nav a { font-size: 12px; }
	.pd-benefit-grid li { padding: 20px 18px; }
	.pd-weeks li { min-height: 116px; padding-inline: 5px; }
	.pd-weeks small { font-size: 9px; line-height: 1.2; }
	.pd-rating-options { gap: 4px; }
	.pd-rating-options label { gap: 2px; font-size: 12px; }
	.pd-rating-options label > span[aria-hidden] { font-size: 15px; }
	.pd-review-form-wrap { padding: 24px 20px; }
}

@supports not selector(:has(*)) {
	.pd-rating-options input:checked + span { color: var(--pd-purple); }
}

@media (prefers-reduced-motion: reduce) {
	.pd-back svg, .pd-jump-nav a::after, .pd-faq summary svg { transition: none; }
}
