.apo-selector {
	--apo-ink: #111827;
	--apo-muted: #667085;
	--apo-line: #d8dee8;
	--apo-blue: #315f88;
	--apo-blue-dark: #183b5b;
	--apo-blue-soft: #edf4fa;
	--apo-green: #14804a;
	--apo-green-soft: #d9f5e5;
	margin: 28px 0 24px;
	color: var(--apo-ink);
}

.single-product .summary .product_title {
	margin: 0;
	color: #101b1a;
	font-family: inherit;
	font-size: clamp(38px, 4vw, 62px);
	font-weight: 750;
	letter-spacing: -.035em;
	line-height: 1.04;
}

.apo-purchase-header {
	margin-top: 13px;
}

.apo-product-subtitle {
	max-width: 680px;
	margin: 0;
	color: #43515b;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.6;
}

.apo-top-price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-top: 24px;
	color: var(--apo-ink, #111827);
}

.apo-top-price__main,
.apo-top-price__main .amount,
.apo-top-price__main .price {
	color: #101b1a;
	font-size: clamp(29px, 3vw, 39px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1;
}

.apo-top-price__main del {
	margin-right: 8px;
	opacity: .45;
}

.apo-top-price__main ins {
	text-decoration: none;
}

.apo-top-price__per-vial {
	color: var(--apo-blue-dark, #183b5b);
	font-size: 14px;
	font-weight: 650;
}

.apo-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 25px;
}

.apo-trust-pill {
	display: inline-flex;
	min-height: 39px;
	align-items: center;
	gap: 7px;
	padding: 8px 11px;
	border: 1px solid #bdc7d2;
	border-radius: 4px;
	background: #fff;
	color: #25313a;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: .035em;
	line-height: 1;
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.apo-trust-pill svg {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	fill: currentColor;
}

.apo-trust-pill .apo-flag {
	width: 20px;
	height: 13px;
	flex: 0 0 20px;
	border-radius: 1px;
	box-shadow: 0 0 0 1px rgba(17, 24, 39, .12);
}

.apo-coa-link:hover {
	border-color: var(--apo-blue, #315f88);
	background: var(--apo-blue-soft, #edf4fa);
	color: var(--apo-blue-dark, #183b5b);
	box-shadow: 0 6px 14px rgba(24, 59, 91, .09);
	transform: translateY(-1px);
}

.apo-loading {
	color: var(--apo-muted);
	font-size: 14px;
}

.apo-group + .apo-group {
	margin-top: 28px;
}

.apo-heading {
	margin: 0 0 13px;
	color: #536071;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.apo-dosages {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.apo-dose {
	display: flex;
	min-height: 76px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 13px 10px;
	border: 1px solid var(--apo-line);
	border-radius: 15px;
	background: #fff;
	color: var(--apo-ink);
	text-align: center;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.apo-dosages--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apo-dosages--2 .apo-dose {
	min-height: 88px;
}

.apo-dose:hover {
	border-color: var(--apo-blue);
	transform: translateY(-1px);
}

.apo-dose.is-selected {
	border-color: var(--apo-blue-dark);
	background: var(--apo-blue-dark);
	color: #fff;
	box-shadow: 0 8px 20px rgba(24, 59, 91, .15);
}

.apo-dose strong,
.apo-dose span {
	display: block;
}

.apo-dose strong {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
}

.apo-dose span {
	margin-top: 5px;
	color: var(--apo-muted);
	font-size: 12px;
	line-height: 1.25;
}

.apo-dose.is-selected span {
	color: rgba(255, 255, 255, .75);
}

.apo-supplies {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.apo-supply-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 330px;
	flex-direction: column;
	align-items: center;
	padding: 23px 18px 20px;
	overflow: visible;
	border: 1px solid var(--apo-line);
	border-radius: 20px;
	background: #fff;
	color: var(--apo-ink);
	text-align: center;
	cursor: pointer;
	transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.apo-supply-card:hover {
	border-color: var(--apo-blue);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(23, 43, 77, .08);
}

.apo-supply-card.is-selected {
	border-color: var(--apo-blue-dark);
	box-shadow: inset 0 0 0 1px var(--apo-blue-dark), 0 12px 30px rgba(23, 43, 77, .10);
}

.apo-badge {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	min-width: 112px;
	padding: 8px 14px;
	border-radius: 7px;
	background: var(--apo-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .10em;
	line-height: 1;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.apo-supply-card--bulk .apo-badge {
	background: var(--apo-blue-dark);
}

.apo-card-image {
	display: flex;
	width: 100%;
	height: 118px;
	align-items: center;
	justify-content: center;
	margin: 1px 0 17px;
	overflow: hidden;
	border-radius: 12px;
	background: #f0f4f8;
}

.apo-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.apo-card-type,
.apo-card-count,
.apo-card-price,
.apo-card-total,
.apo-card-save {
	display: block;
}

.apo-card-type {
	color: #667085;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.apo-card-count {
	margin-top: 4px;
	font-size: 16px;
	font-weight: 500;
}

.apo-card-price {
	margin-top: 13px;
	line-height: 1;
}

.apo-card-price b {
	font-size: clamp(22px, 2.3vw, 30px);
	font-weight: 700;
	letter-spacing: -.03em;
}

.apo-card-price small {
	margin-left: 4px;
	color: var(--apo-muted);
	font-size: 12px;
}

.apo-card-total {
	margin-top: 9px;
	color: var(--apo-muted);
	font-size: 12px;
}

.apo-card-save {
	margin-top: 13px;
	padding: 9px 15px;
	border-radius: 6px;
	background: var(--apo-green-soft);
	color: var(--apo-green);
	font-size: 12px;
	font-weight: 700;
}

.apo-switch-prompt {
	margin-top: 12px;
	padding: 11px 14px;
	border: 1px solid #b7cce0;
	border-radius: 9px;
	background: var(--apo-blue-soft);
	color: var(--apo-blue-dark);
	font-size: 13px;
	line-height: 1.45;
}

.apo-quantity-note {
	order: 1;
	flex: 0 0 100%;
	margin: 9px 0 0;
	color: var(--apo-muted);
	font-size: 12px;
	font-weight: 600;
}

.apo-order-total {
	order: 2;
	display: flex;
	flex: 0 0 100%;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-top: 3px;
	padding: 13px 15px;
	border: 1px solid #d7e0e8;
	border-radius: 8px;
	background: linear-gradient(135deg, #f7fafc, #edf4fa);
}

.apo-order-total__label {
	color: #536271;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.apo-order-total__value {
	color: var(--apo-blue-dark, #183b5b);
	font-size: 23px;
	font-weight: 780;
	letter-spacing: -.025em;
	line-height: 1;
}

.apo-shipping-note {
	order: 3;
	display: flex;
	flex: 0 0 100%;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
	color: #41556a;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.apo-shipping-note__icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #e5f6ed;
	color: var(--apo-green);
	font-size: 12px;
}

.apo-shipping-note .woocommerce-Price-amount {
	white-space: nowrap;
}

.apo-remove-block {
	display: none !important;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper,
.single-product .woocommerce-tabs,
.single-product .wd-tabs {
	display: none !important;
}

.single-product .summary .apo-ruo-block {
	padding: 17px 19px !important;
	border: 1px solid rgba(88, 112, 132, .32) !important;
	border-left: 3px solid #2c9bb2 !important;
	border-radius: 14px !important;
	background: linear-gradient(135deg, #111b24, #0b131a) !important;
	color: #d4dde5 !important;
	box-shadow: 0 10px 26px rgba(10, 22, 31, .10);
}

.single-product .summary .apo-ruo-block * {
	color: inherit !important;
}

.single-product .summary .single_variation_wrap .woocommerce-variation-price,
.single-product .summary .single_variation_wrap .woocommerce-variation-description,
.single-product .summary .single_variation_wrap .woocommerce-variation-availability:empty,
.single-product .summary .reset_variations,
.single-product .summary .compare,
.single-product .summary .wd-compare-btn,
.single-product .summary .wishlist-btn-wrapper,
.single-product .summary .wd-wishlist-btn,
.single-product .summary .product_meta,
.single-product .summary .product-share,
.single-product .summary .social-icons,
.single-product .summary > .price {
	display: none !important;
}

.single-product .summary .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	margin-top: 18px;
}

.single-product .summary .woocommerce-variation-add-to-cart .quantity {
	order: 4;
	height: 50px;
	margin: 0 !important;
	border: 1px solid #cfd7df;
	border-radius: 6px;
	background: #fff;
}

.single-product .summary .woocommerce-variation-add-to-cart .quantity input.qty,
.single-product .summary .woocommerce-variation-add-to-cart .quantity button {
	height: 48px;
}

.single-product .summary .single_add_to_cart_button {
	order: 5;
	min-height: 50px;
	padding: 0 29px;
	border: 1px solid var(--apo-blue-dark, #183b5b);
	border-radius: 6px;
	background: var(--apo-blue-dark, #183b5b);
	color: #fff;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .07em;
	text-transform: uppercase;
	box-shadow: none;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.single-product .summary .single_add_to_cart_button:hover {
	border-color: #102f4a;
	background: #102f4a;
	box-shadow: 0 9px 20px rgba(24, 59, 91, .18);
	transform: translateY(-1px);
}

.single-product .summary .single_add_to_cart_button:active {
	transform: translateY(0);
}

.apo-mobile-sticky {
	display: none;
}

/* Long-form product details */
.apo-long-details {
	--apo-detail-ink: #15201f;
	--apo-detail-muted: #64716f;
	--apo-detail-line: #dce3e2;
	--apo-detail-blue: #315a79;
	--apo-detail-green: #1a8a5b;
	width: 100vw;
	margin: 54px 0 0 calc(50% - 50vw);
	color: var(--apo-detail-ink);
	background: #fff;
}

.apo-detail-container {
	width: min(1520px, calc(100% - 48px));
	margin-inline: auto;
}

.apo-detail-eyebrow {
	display: block;
	margin-bottom: 21px;
	color: var(--apo-detail-blue);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.apo-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .65s ease, transform .65s cubic-bezier(.22, .9, .3, 1);
}

.apo-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.apo-authenticity {
	border-block: 1px solid var(--apo-detail-line);
	background: linear-gradient(120deg, #f7fafb, #edf4f5);
}

.apo-authenticity__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-block: 30px;
}

.apo-authenticity .apo-detail-eyebrow {
	margin-bottom: 7px;
}

.apo-authenticity h2 {
	margin: 0;
	font-size: clamp(22px, 2.2vw, 31px);
	letter-spacing: -.025em;
}

.apo-authenticity p {
	max-width: 780px;
	margin: 8px 0 0;
	color: var(--apo-detail-muted);
	font-size: 14px;
	line-height: 1.65;
}

.apo-authenticity a,
.apo-monograph-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #244965;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	transition: gap .2s ease, color .2s ease;
}

.apo-authenticity a {
	flex: 0 0 auto;
	min-height: 45px;
	padding: 0 18px;
	border: 1px solid #88a4b8;
	border-radius: 6px;
	background: #fff;
}

.apo-authenticity a:hover,
.apo-monograph-link:hover {
	gap: 17px;
	color: #102f4a;
}

.apo-about-section {
	padding-block: clamp(62px, 8vw, 108px);
	border-top: 1px solid var(--apo-detail-line);
}

.apo-about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(380px, .9fr);
	gap: clamp(45px, 7vw, 95px);
	align-items: start;
}

.apo-about-intro {
	max-width: 850px;
	color: #40504e;
	font-size: clamp(17px, 1.55vw, 21px);
	line-height: 1.75;
}

.apo-about-intro p {
	margin: 0;
}

.apo-about-intro p + p {
	margin-top: 14px;
}

.apo-scientific-descriptor {
	margin: 18px 0 0;
	color: #6a7472;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 14px;
	line-height: 1.6;
}

.apo-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 30px 0 0;
	overflow: hidden;
	border: 1px solid var(--apo-detail-line);
	border-radius: 8px;
	background: var(--apo-detail-line);
	gap: 1px;
}

.apo-facts > div {
	min-width: 0;
	padding: 18px 20px;
	background: #fff;
}

.apo-facts dt {
	color: #697574;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 10px;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.apo-facts dd {
	margin: 8px 0 0;
	color: #2b3937;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 15px;
	overflow-wrap: anywhere;
}

.apo-monograph-link {
	margin-top: 36px;
}

.apo-verified-card {
	padding: 29px 31px 25px;
	border: 1px solid var(--apo-detail-line);
	border-radius: 13px;
	background: linear-gradient(180deg, #f8fafb, #fff);
	box-shadow: 0 12px 35px rgba(28, 48, 55, .07);
}

.apo-verified-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--apo-detail-line);
}

.apo-verified-card h3 {
	margin: 0;
	font-size: 20px;
	letter-spacing: -.02em;
}

.apo-verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 11px;
	border: 1px solid #a9d4c1;
	border-radius: 999px;
	background: #eaf7f1;
	color: #176d4b;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .13em;
	text-transform: uppercase;
	white-space: nowrap;
}

.apo-verified-badge i,
.apo-coa-card__top b i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #218b60;
	box-shadow: 0 0 0 0 rgba(33, 139, 96, .35);
	animation: apo-pulse 2.2s ease-out infinite;
}

@keyframes apo-pulse {
	50% { box-shadow: 0 0 0 7px rgba(33, 139, 96, 0); }
}

.apo-verified-card ul,
.apo-test-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.apo-verified-card ul {
	display: grid;
	gap: 19px;
	padding-block: 22px;
}

.apo-verified-card li,
.apo-test-list li {
	display: grid;
	grid-template-columns: 23px minmax(0, 1fr);
	gap: 13px;
	align-items: start;
}

.apo-verified-card li > svg,
.apo-test-list li > svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: var(--apo-detail-blue);
	stroke-width: 1.8;
}

.apo-test-list li > svg {
	stroke: var(--apo-detail-green);
}

.apo-verified-card li strong,
.apo-verified-card li span,
.apo-test-list li strong,
.apo-test-list li span {
	display: block;
}

.apo-verified-card li strong,
.apo-test-list li strong {
	font-size: 15px;
	line-height: 1.35;
}

.apo-verified-card li span,
.apo-test-list li span {
	margin-top: 4px;
	color: var(--apo-detail-muted);
	font-size: 12.5px;
	line-height: 1.55;
}

.apo-verified-coa {
	display: flex;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	padding: 0 17px;
	border: 1px solid #557a98;
	border-radius: 6px;
	background: #fff;
	color: #2c506e;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.apo-verified-coa:hover {
	background: #eff5f8;
	color: #173c59;
	box-shadow: 0 8px 20px rgba(35, 71, 98, .11);
	transform: translateY(-1px);
}

.apo-verified-foot {
	margin-top: 19px;
	padding-top: 18px;
	border-top: 1px solid var(--apo-detail-line);
	color: var(--apo-detail-muted);
	font-size: 11px;
	text-align: center;
}

.apo-testing-section {
	padding-block: clamp(72px, 9vw, 118px);
	border-block: 1px solid var(--apo-detail-line);
	background:
		radial-gradient(circle at 85% 25%, rgba(63, 117, 129, .07), transparent 26%),
		#fbfcfc;
}

.apo-section-head {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.apo-section-head .apo-detail-eyebrow {
	margin-bottom: 12px;
}

.apo-section-head h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	letter-spacing: -.04em;
	line-height: 1.1;
}

.apo-section-head p {
	max-width: 760px;
	margin: 18px auto 0;
	color: #4d5c5a;
	font-size: 16px;
	line-height: 1.7;
}

.apo-testing-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr);
	gap: clamp(48px, 7vw, 90px);
	align-items: center;
	margin-top: clamp(50px, 7vw, 78px);
}

.apo-test-list li {
	padding: 20px 0;
	border-bottom: 1px solid var(--apo-detail-line);
	transition: padding-left .2s ease, background .2s ease;
}

.apo-test-list li:first-child {
	border-top: 1px solid var(--apo-detail-line);
}

.apo-test-list li:hover {
	padding-left: 8px;
	background: rgba(255, 255, 255, .65);
}

.apo-coa-card {
	overflow: hidden;
	border: 1px solid #47728a;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 22px 50px rgba(27, 62, 77, .13);
	transition: transform .3s ease, box-shadow .3s ease;
}

.apo-coa-card:hover {
	box-shadow: 0 28px 65px rgba(27, 62, 77, .18);
	transform: translateY(-4px);
}

.apo-coa-card__top {
	display: flex;
	min-height: 70px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 0 25px;
	background: linear-gradient(110deg, #294d67, #477d79);
	color: #fff;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 13px;
}

.apo-coa-card__top b {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 9px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 4px;
	background: rgba(255, 255, 255, .12);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.apo-coa-card__top b i {
	background: #55dfa1;
}

.apo-coa-card__paper {
	position: relative;
	padding: 25px;
	overflow: hidden;
}

.apo-coa-watermark {
	position: absolute;
	top: 48%;
	left: 53%;
	z-index: 0;
	color: rgba(48, 85, 105, .055);
	font-size: clamp(55px, 7vw, 92px);
	font-weight: 750;
	letter-spacing: .11em;
	text-transform: uppercase;
	transform: translate(-50%, -50%) rotate(-16deg);
	pointer-events: none;
}

.apo-coa-card dl {
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid #dde4e6;
}

.apo-coa-card dl > div {
	display: flex;
	min-height: 57px;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 0 17px;
	border-bottom: 1px dashed #d7dfe1;
}

.apo-coa-card dl > div:last-child {
	border-bottom: 0;
}

.apo-coa-card dt,
.apo-coa-card dd {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.apo-coa-card dt {
	color: #6a7678;
	font-size: 11px;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.apo-coa-card dd {
	margin: 0;
	font-size: 12px;
	font-weight: 750;
	text-align: right;
}

.apo-coa-card__paper > a {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 57px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	margin-top: 19px;
	border-radius: 7px;
	background: linear-gradient(110deg, #315a78, #4a847f);
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
	transition: filter .2s ease, gap .2s ease;
}

.apo-coa-card__paper > a:hover {
	gap: 20px;
	filter: brightness(.94);
}

.apo-ruo-section {
	padding-block: 36px;
	background: #111a20;
	color: #dce5e8;
	text-align: center;
}

.apo-ruo-section strong {
	display: block;
	color: #fff;
	font-size: 16px;
}

.apo-ruo-section p {
	max-width: 980px;
	margin: 8px auto 0;
	color: #aebbc0;
	font-size: 12px;
	line-height: 1.65;
}

.apo-enhanced table.variations {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 900px) {
	.apo-detail-container {
		width: min(100% - 32px, 760px);
	}

	.apo-about-grid,
	.apo-testing-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.apo-about-copy,
	.apo-verified-card,
	.apo-test-list,
	.apo-coa-card {
		min-width: 0;
	}

	.apo-testing-grid {
		margin-top: 42px;
	}
}

@media (max-width: 600px) {
	body.single-product {
		padding-bottom: 82px;
	}

	.single-product .summary .product_title {
		font-size: clamp(30px, 9vw, 40px);
		line-height: 1.08;
	}

	.apo-purchase-header {
		margin-top: 10px;
	}

	.apo-product-subtitle {
		font-size: 14px;
		line-height: 1.55;
	}

	.apo-top-price {
		flex-wrap: wrap;
		gap: 8px 11px;
		margin-top: 19px;
	}

	.apo-top-price__main,
	.apo-top-price__main .amount,
	.apo-top-price__main .price {
		font-size: 29px;
	}

	.apo-top-price__per-vial {
		font-size: 12px;
	}

	.apo-trust-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px;
		margin-top: 18px;
	}

	.apo-trust-pill {
		min-width: 0;
		min-height: 42px;
		justify-content: center;
		padding: 8px 7px;
		font-size: 10px;
		text-align: center;
	}

	.apo-coa-link {
		grid-column: 1 / -1;
	}

	.apo-selector {
		margin-top: 22px;
	}

	.apo-group + .apo-group {
		margin-top: 24px;
	}

	.apo-dosages {
		gap: 7px;
	}

	.apo-dosages--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
	}

	.apo-dosages--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.apo-dose {
		min-height: 68px;
		padding: 10px 5px;
		border-radius: 12px;
	}

	.apo-dose strong {
		font-size: 15px;
		line-height: 1.15;
	}

	.apo-dose span {
		width: 100%;
		font-size: 10px;
		line-height: 1.25;
		white-space: nowrap;
	}

	.apo-supplies {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.apo-supply-card {
		min-height: 0;
		padding: 19px 9px 14px;
		border-radius: 15px;
	}

	.apo-card-image {
		height: 108px;
		margin-bottom: 12px;
		border-radius: 9px;
	}

	.apo-badge {
		min-width: 96px;
		padding: 7px 9px;
		font-size: 9px;
	}

	.apo-card-type {
		font-size: 10px;
	}

	.apo-card-count {
		margin-top: 3px;
		font-size: 14px;
	}

	.apo-card-price b {
		font-size: 21px;
	}

	.apo-card-price small,
	.apo-card-total {
		font-size: 9px;
	}

	.apo-card-save {
		margin-top: 10px;
		padding: 7px 8px;
		font-size: 9px;
	}

	.single-product .summary .woocommerce-variation-add-to-cart {
		display: grid;
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 9px;
	}

	.single-product .summary .woocommerce-variation-add-to-cart .quantity,
	.single-product .summary .single_add_to_cart_button {
		width: 100%;
	}

	.apo-quantity-note,
	.apo-order-total,
	.apo-shipping-note {
		grid-column: 1 / -1;
	}

	.apo-order-total {
		margin-top: 2px;
		padding: 12px 13px;
	}

	.apo-order-total__label {
		font-size: 10px;
	}

	.apo-order-total__value {
		font-size: 22px;
	}

	.apo-shipping-note {
		gap: 6px;
		margin-top: 13px;
		font-size: 10.5px;
		letter-spacing: -.01em;
		white-space: nowrap;
	}

	.apo-shipping-note__icon {
		width: 18px;
		height: 18px;
		flex-basis: 18px;
	}

	.apo-long-details {
		margin-top: 40px;
	}

	.apo-detail-container {
		width: calc(100% - 28px);
	}

	.apo-authenticity__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding-block: 24px;
	}

	.apo-authenticity h2 {
		font-size: 22px;
	}

	.apo-authenticity a {
		justify-content: space-between;
	}

	.apo-about-section,
	.apo-testing-section {
		padding-block: 55px;
	}

	.apo-detail-eyebrow {
		margin-bottom: 15px;
		font-size: 10px;
	}

	.apo-about-intro {
		font-size: 16px;
		line-height: 1.7;
	}

	.apo-scientific-descriptor {
		font-size: 12px;
	}

	.apo-facts {
		margin-top: 23px;
	}

	.apo-facts > div {
		padding: 15px 13px;
	}

	.apo-facts dt {
		font-size: 9px;
	}

	.apo-facts dd {
		font-size: 12px;
		line-height: 1.45;
	}

	.apo-monograph-link {
		margin-top: 25px;
		font-size: 12px;
	}

	.apo-verified-card {
		padding: 21px 17px 18px;
		border-radius: 10px;
	}

	.apo-verified-card__head {
		align-items: flex-start;
		gap: 10px;
	}

	.apo-verified-card h3 {
		font-size: 18px;
	}

	.apo-verified-badge {
		padding: 6px 8px;
		font-size: 8px;
	}

	.apo-verified-card ul {
		gap: 16px;
		padding-block: 19px;
	}

	.apo-verified-card li strong,
	.apo-test-list li strong {
		font-size: 14px;
	}

	.apo-verified-card li span,
	.apo-test-list li span {
		font-size: 11.5px;
	}

	.apo-section-head {
		text-align: left;
	}

	.apo-section-head h2 {
		font-size: 31px;
		line-height: 1.12;
	}

	.apo-section-head p {
		margin-top: 14px;
		font-size: 14px;
	}

	.apo-testing-grid {
		gap: 35px;
		margin-top: 34px;
	}

	.apo-test-list li {
		padding: 16px 0;
	}

	.apo-coa-card {
		border-radius: 9px;
	}

	.apo-coa-card__top {
		min-height: 63px;
		padding: 0 14px;
		font-size: 10px;
	}

	.apo-coa-card__top > span {
		max-width: 72%;
	}

	.apo-coa-card__paper {
		padding: 14px;
	}

	.apo-coa-card dl > div {
		min-height: 52px;
		gap: 12px;
		padding: 0 11px;
	}

	.apo-coa-card dt {
		font-size: 9px;
	}

	.apo-coa-card dd {
		max-width: 58%;
		font-size: 10px;
	}

	.apo-coa-card__paper > a {
		min-height: 52px;
		padding: 0 10px;
		font-size: 11px;
		text-align: center;
	}

	.apo-ruo-section {
		padding-block: 29px;
	}

	.apo-ruo-section p {
		font-size: 10.5px;
	}
}

@media (max-width: 768px) {
	.apo-mobile-sticky {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 9998;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		align-items: center;
		gap: 9px;
		padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
		border-top: 1px solid #dce2e8;
		background: rgba(255, 255, 255, .97);
		box-shadow: 0 -10px 30px rgba(16, 32, 48, .12);
		opacity: 0;
		pointer-events: none;
		transform: translateY(105%);
		transition: opacity .25s ease, transform .3s cubic-bezier(.22, .9, .3, 1);
		backdrop-filter: blur(12px);
	}

	.apo-mobile-sticky.is-visible {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.apo-mobile-sticky__meta {
		min-width: 0;
	}

	.apo-mobile-sticky__name,
	.apo-mobile-sticky__selection {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.apo-mobile-sticky__name {
		color: #17222c;
		font-size: 12px;
		font-weight: 750;
	}

	.apo-mobile-sticky__selection {
		margin-top: 2px;
		color: #6a7680;
		font-size: 10px;
	}

	.apo-mobile-sticky__price {
		color: var(--apo-blue-dark, #183b5b);
		font-size: 15px;
		font-weight: 750;
		white-space: nowrap;
	}

	.apo-mobile-sticky__button {
		min-height: 43px;
		padding: 0 14px;
		border: 0;
		border-radius: 6px;
		background: var(--apo-blue-dark, #183b5b);
		color: #fff;
		font-size: 11px;
		font-weight: 750;
		letter-spacing: .04em;
		text-transform: uppercase;
	}
}

@media (prefers-reduced-motion: reduce) {
	.apo-dose,
	.apo-supply-card,
	.apo-trust-pill,
	.apo-mobile-sticky {
		transition: none;
	}
}
