/* ==========================================================================
   Compound category blocks (product category pages, Airtable-synced content)
   Matches cat-landing and home page section spacing and typography
   ========================================================================== */

/* Full-width section above footer (below shop/category content, not inside product column) */
.compound-blocks-below-shop {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	margin-top: var(--spacing-md, 1.5rem);
	padding-top: 0;
	padding-bottom: 0;
	background-color: #fff;
}

.compound-category-section {
	width: 100%;
}

/* Anchor target for READ STUDIES link: scroll margin so fixed headers don’t cover the section */
#compound-supporting-research {
	scroll-margin-top: 2rem;
}

/* Align with shop/filter: use same max-width and padding as .shop-container */
.compound-blocks-below-shop .pt-container {
	max-width: var(--container-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding, 32px);
	padding-right: var(--container-padding, 32px);
}

.compound-cat-blocks {
	width: 100%;
}

.compound-cat-block {
	padding: 1.5rem 0;
}

.compound-cat-block:first-child {
	padding-top: 0;
}

.compound-cat-block:last-child {
	padding-bottom: 0;
}

@media (min-width: 769px) {
	.compound-cat-block {
		padding: 2.5rem 0;
	}

	.compound-cat-block:first-child {
		padding-top: 0;
	}

	.compound-cat-block:last-child {
		padding-bottom: 0;
	}
}

.compound-cat-block__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 1.5rem;
	line-height: 1.3;
}

@media (min-width: 769px) {
	.compound-cat-block__title {
		font-size: 1.75rem;
		margin-bottom: 2rem;
	}
}

.compound-cat-block__content {
	color: var(--color-text);
	font-size: var(--font-size-base);
	line-height: 1.6;
}

.compound-cat-block__content p {
	margin: 0 0 1rem;
}

.compound-cat-block__content p:last-child {
	margin-bottom: 0;
}

.compound-cat-block__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.compound-cat-block__list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.5;
	color: var(--color-text);
}

.compound-cat-block__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--color-primary, #0066cc);
}

/* Benefits block: title + horizontal carousel of cards (same pattern as .pt-reviews on PDP) */
.compound-benefits-card {
    max-width: var(--container-max-width, 1200px);
    margin-left: auto;
    margin-right: auto;
    width: 100%; /* constrain width so track can scroll like .pt-reviews__inner */
    min-width: 0;
}

.compound-benefits-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compound-benefits-card__title {
    font-family: var(--font-base);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0;
}

.compound-benefits-card__nav {
    display: inline-flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.compound-benefits-card__title strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .compound-benefits-card__title {
        font-size: 2.25rem;
    }
}

/* Carousel track (same pattern as .pt-reviews__track: width 100% so scroll works on desktop) */
.compound-benefits-card__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0.25rem;
    scroll-padding-right: 1.5rem;
    padding: 0.25rem 1.5rem 1rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.compound-benefits-card__track::-webkit-scrollbar {
    display: none;
}

.compound-benefits-card__track::-webkit-scrollbar {
    display: none;
}

/* Individual card */
.compound-benefits-card__card {
    scroll-snap-align: start;
    flex: 0 0 clamp(240px, 28vw, 320px);
    background: var(--color-bg-light, #f8f9fa);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border, #e5e7eb);
    min-height: 220px;
}

.compound-benefits-card__card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
}

.compound-benefits-card__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text body */
.compound-benefits-card__card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compound-benefits-card__card-text {
    font-size: var(--font-size-base, 1rem);
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* FAQ block */
.compound-cat-faq {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.compound-cat-faq__item {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 1rem;
}

.compound-cat-faq__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.compound-cat-faq__question {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 0.5rem;
	line-height: 1.4;
}

.compound-cat-faq__answer {
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--color-text-light);
}

.compound-cat-faq__answer p {
	margin: 0 0 0.5rem;
}

.compound-cat-faq__answer p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   "How X Can Transform" block: cards, enlarged percentage typography (no colored bg)
   -------------------------------------------------------------------------- */
.compound-cat-block--results {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

@media (min-width: 769px) {
	.compound-cat-block--results {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
}

.compound-results__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-text, #1a1a1a);
	margin: 0 0 0.75rem;
	line-height: 1.25;
}

@media (min-width: 769px) {
	.compound-results__title {
		font-size: 2.25rem;
		margin-bottom: 1rem;
	}
}

.compound-results-card {
	position: relative;
	background: #fff;
	border-radius: var(--border-radius-xl, 1.5rem);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	padding: 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border: 1px solid var(--color-border, #e5e7eb);
}

@media (min-width: 769px) {
	.compound-results-card {
		padding: 1.75rem 1.5rem;
		gap: 1.25rem;
	}
}

/* Clinical efficacy variant: chip, headline, large stat, footer (reference template) */
.compound-results-card--efficacy {
	padding: 2rem 1.5rem;
}

@media (min-width: 769px) {
	.compound-results-card--efficacy {
		padding: 3rem 2.5rem;
	}
}

/* Chip: same size as home "Meet with provider" (.pt-step-card__headline = 1.25rem) */
.compound-results-card__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.25rem;
	padding: 0 1.25rem;
	border-radius: 9999px;
	background: color-mix(in srgb, var(--color-primary, #0066cc) 10%, transparent);
	color: var(--color-primary, #0066cc);
	font-family: var(--font-base);
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	align-self: flex-start;
	margin-bottom: 0.75rem;
}

/* Headline: match home "Unlock your body's vitality potential with NAD+" (.nad-hero__card-title) */
.compound-results-card__headline {
	font-family: var(--font-base);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0 0 1rem;
}

.compound-results-card__headline strong {
	font-weight: 700;
}

@media (min-width: 769px) {
	.compound-results-card__headline {
		font-size: 2.75rem;
		margin-bottom: 1.25rem;
	}
}

.compound-results-card__data {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 769px) {
	.compound-results-card__data {
		flex-direction: row;
		align-items: center;
		gap: 1.25rem;
		margin-bottom: 1.5rem;
	}
}

.compound-results-card__icon--trending {
	width: 5rem;
	height: 5rem;
	min-width: 5rem;
	min-height: 5rem;
	border-radius: 20px;
	background: var(--color-primary, #4B1F5E);
	box-shadow: 0 0 0 3px #7B4F9E;
	color: #fff;
}

.compound-results-card__icon--trending svg {
	width: 2.5rem;
	height: 2.5rem;
	stroke: #fff;
}

.compound-results-card__stat-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.compound-results-card__stat-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.compound-results-card__stat {
	font-family: var(--font-base);
	font-size: var(--font-size-4xl);
	font-weight: 700;
	line-height: 1;
	color: var(--color-primary);
}

@media (min-width: 769px) {
	.compound-results-card__stat {
		font-size: var(--font-size-5xl);
	}
}

.compound-results-card__stat-dot {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #10b981;
	flex-shrink: 0;
	box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
}

.compound-results-card__subtext {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text-light);
	margin: 0;
	max-width: 32rem;
}

.compound-results-card__footer {
	padding-top: 2rem;
	border-top: 1px solid var(--color-border, #f3f4f6);
}

.compound-results-card__studies-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-base);
	font-size: var(--font-size-sm);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.compound-results-card__studies-link:hover {
	color: var(--color-primary, #0066cc);
}

.compound-results-card__studies-arrow {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.compound-results-card__studies-link:hover .compound-results-card__studies-arrow {
	transform: translateX(4px);
}

.compound-results-card__studies-arrow svg {
	width: 1.25rem;
	height: 1.25rem;
}

.compound-results-card .compound-results__title {
	margin-bottom: 0.25rem;
}

.compound-results-card__row {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

@media (min-width: 769px) {
	.compound-results-card__row {
		gap: 1.25rem;
	}
}

.compound-results-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 20%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.compound-results-card__icon:not(.compound-results-card__icon--trending) svg {
	width: 24px;
	height: 24px;
}

.compound-results-card__content {
	flex: 1;
	min-width: 0;
}

.compound-results-card__text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text, #1a1a1a);
	margin: 0;
}

/* Enlarged percentage typography: on its own line (break before and after) */
.compound-stat-percent {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--color-text, #1a1a1a);
	white-space: nowrap;
	margin: 0.25em 0;
}

@media (min-width: 769px) {
	.compound-stat-percent {
		font-size: 2.75rem;
	}
}

/* When percentage is inside a results card, give it more prominence */
.compound-results-card .compound-stat-percent {
	font-size: 2.25rem;
	color: var(--color-text, #1a1a1a);
}

@media (min-width: 769px) {
	.compound-results-card .compound-stat-percent {
		font-size: 3rem;
	}
}

/* Placeholder when no compound data synced yet */
.compound-cat-block--placeholder {
	background-color: var(--color-bg-light, #f8f9fa);
	border-top: 1px solid var(--color-border);
	min-height: 80px;
}

.compound-cat-block__placeholder {
	color: var(--color-text-light);
	font-size: var(--font-size-sm);
	margin: 0;
	padding: var(--spacing-md) 0;
}

/* ==========================================================================
   Why Choose [Compound]? – interactive 3-column layout with connector lines
   No container: section flows with other blocks. Title/body match .compound-cat-block.
   ========================================================================== */
.compound-why-choose {
	--compound-why-choose-line: rgba(255, 255, 255, 0.3);
	position: relative;
	background: linear-gradient(to right, #4B1F5E 0%, #844CA0 50%, #6D2C91 100%);
	border-radius: var(--border-radius-xl, 1.5rem);
	padding: 2.5rem 1.5rem;
}

.compound-why-choose__header {
	text-align: center;
	margin-bottom: 1.5rem;
}

/* Match home "How it works" title (.pt-steps__title) size */
.compound-why-choose__title {
	font-size: 2.75rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 var(--spacing-md);
}

.compound-why-choose__title strong {
	font-family: var(--font-instrument-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--color-primary-lighter);
	display: block;
	letter-spacing: -0.01em;
	text-transform: none;
}

@media (max-width: 1024px) {
	.compound-why-choose__title {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.compound-why-choose__title {
		font-size: 2.25rem;
		margin-bottom: var(--spacing-md);
	}
}

@media (max-width: 600px) {
	.compound-why-choose__title {
		font-size: 2rem;
	}
}

.compound-why-choose__main {
	position: relative;
	width: 100%;
	padding: 1.5rem 0;
}


.compound-why-choose__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
	position: relative;
	z-index: 10;
}

.compound-why-choose__grid .compound-why-choose__col--left { order: 2; }
.compound-why-choose__grid .compound-why-choose__col--center { order: 1; }
.compound-why-choose__grid .compound-why-choose__col--right { order: 3; }

@media (min-width: 1024px) {
	.compound-why-choose__grid {
		grid-template-columns: 1fr auto 1fr;
		gap: 1rem 3rem; /* column-gap 3rem gives enough space for visible arrow lines */
	}
	.compound-why-choose__grid .compound-why-choose__col--left { order: 1; }
	.compound-why-choose__grid .compound-why-choose__col--center { order: 2; }
	.compound-why-choose__grid .compound-why-choose__col--right { order: 3; }
}

.compound-why-choose__col--left {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
}

@media (min-width: 1024px) {
	.compound-why-choose__col--left {
		align-items: flex-end;
	}
}

.compound-why-choose__col--center {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
}

.compound-why-choose__col--right {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 0 1rem;
}

@media (min-width: 1024px) {
	.compound-why-choose__col--right {
		align-items: flex-start;
		text-align: left;
	}
}

.compound-why-choose__blurb {
	max-width: 320px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 2rem;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	gap: 0.875rem;
}

.compound-why-choose__blurb .compound-why-choose__icon-box {
	margin-bottom: 0;
}

.compound-why-choose__col--left .compound-why-choose__blurb {
	text-align: left;
	align-items: flex-start;
}

@media (min-width: 1024px) {
	.compound-why-choose__col--left .compound-why-choose__blurb {
		align-items: flex-start;
	}
}

.compound-why-choose__col--right .compound-why-choose__blurb {
	text-align: left;
	align-items: flex-start;
}

@media (min-width: 1024px) {
	.compound-why-choose__col--right .compound-why-choose__blurb {
		align-items: flex-start;
	}
}

.compound-why-choose__icon-box {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 2rem;
	background: rgba(194, 182, 248, 0.15);
	border: 1px solid rgba(194, 182, 248, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.compound-why-choose__icon-box svg {
	width: 1.25rem;
	height: 1.25rem;
}

/* Same font size on mobile and desktop; body text left-aligned only */
.compound-why-choose__body {
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

.compound-why-choose__image-wrap {
	position: relative;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
	padding: 0 2rem;
}

@media (min-width: 1024px) {
	.compound-why-choose__image-wrap {
		max-width: 440px;
		padding: 0 2rem;
	}
}

.compound-why-choose__vial {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.12));
}

.compound-why-choose__footer {
	margin-top: 2rem;
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Match home intake button size (hero-cta-button): blue and white */
.compound-why-choose__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.75rem;
	padding: 0 1.5rem;
	background: var(--color-primary, #0066cc);
	color: #fff;
	border: 1px solid transparent;
	border-radius: 9999px;
	font-family: var(--font-base);
	font-weight: 500;
	font-size: 0.875rem;
	text-decoration: none;
	transition: box-shadow 0.2s, background 0.2s, transform 0.1s;
}

.compound-why-choose__cta:hover,
.compound-why-choose__cta:focus {
	color: #fff;
	background: #333;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.compound-why-choose__cta:hover .compound-why-choose__cta-arrow,
.compound-why-choose__cta:focus .compound-why-choose__cta-arrow {
	color: #fff;
}

.compound-why-choose__cta:active {
	transform: scale(0.98);
	color: #fff;
}

.compound-why-choose__cta-arrow {
	display: inline-flex;
	color: inherit;
}

.compound-why-choose__cta-arrow svg {
	width: 18px;
	height: 18px;
}

.compound-why-choose__badges {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	opacity: 0.4;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.compound-why-choose__badge {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-weight: 700;
	color: #ffffff;
}

.compound-why-choose__badge-dot {
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Mobile: stacked layout – image first, then blurbs as rows (icon left, text right)
   with separator lines between blurbs. Title stays centered; body text left-aligned.
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
	.compound-why-choose__main {
		padding: 1rem 0;
	}

	.compound-why-choose__grid {
		gap: 0;
	}

	.compound-why-choose__col--left,
	.compound-why-choose__col--right {
		padding: 0;
		gap: 0;
	}

	
	.compound-why-choose__blurb {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		max-width: 100%;
		gap: 1rem;
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
		border-bottom: none;
	}

	.compound-why-choose__blurb .compound-why-choose__icon-box {
		margin-bottom: 0;
		border-radius: 50%;
	}

	.compound-why-choose__body {
		flex: 1;
		min-width: 0;
	}

	/* No separator after last blurb (right col last child) */
	.compound-why-choose__col--right .compound-why-choose__blurb:last-child {
		border-bottom: none;
		margin-bottom: 1.25rem;
		padding-bottom: 1.25rem;
	}

	/* Tighter gap between image and first blurb */
	.compound-why-choose__col--center {
		margin-bottom: 0.5rem;
	}

	.compound-why-choose__image-wrap {
		padding: 0 1rem;
	}
}

/* ==========================================================================
   [Compound] vs Other Options – comparison table (theme-styled)
   ========================================================================== */
.compound-vs-table-wrap {
	max-width: 1200px;
	margin: 0 auto;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-xl, 1.5rem);
	box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.compound-vs-table-scroll {
	overflow-x: auto;
}

.compound-vs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--color-text);
}

.compound-vs-table__th {
	text-align: left;
	padding: 1.5rem 2rem;
	background: #37225c;
	border-bottom: none;
	vertical-align: bottom;
}

.compound-vs-table__th-label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
}

.compound-vs-table__th--factors {
	width: 28%;
	min-width: 10rem;
	position: sticky;
	left: 0;
	z-index: 2;
	background: #37225c;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.06);
}

.compound-vs-table__th--primary,
.compound-vs-table__th {
	width: 24%;
}

.compound-vs-table__badge {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.compound-vs-table__option-title {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
}

.compound-vs-table__option-sub {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 0.25rem;
}

.compound-vs-table__row {
	border-bottom: 1px solid var(--color-border);
}

.compound-vs-table__row--stripe {
	background: #fcfdfe;
}

.compound-vs-table__row:last-child .compound-vs-table__td {
	border-bottom: none;
}

.compound-vs-table__td {
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--color-border);
	vertical-align: middle;
}

.compound-vs-table__td--factor {
	font-weight: 600;
	color: var(--color-text);
	position: sticky;
	left: 0;
	z-index: 1;
	background: var(--color-bg);
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.06);
}

.compound-vs-table__row--stripe .compound-vs-table__td--factor {
	background: #fcfdfe;
}

.compound-vs-table__factor {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.compound-vs-table__icon {
	flex-shrink: 0;
	color: var(--color-primary);
}

.compound-vs-table__td--primary {
	background: var(--color-primary-lightest, #e3f2fd);
	border-left: 1px solid #d1e5f9;
	border-right: 1px solid #d1e5f9;
}

.compound-vs-table__td:not(.compound-vs-table__td--factor) {
	color: var(--color-text-light);
}

.compound-vs-table__cell--check {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-primary);
	font-weight: 600;
}

.compound-vs-table__cell-icon {
	flex-shrink: 0;
}

.compound-vs-table__footer {
	padding: 2rem 3rem;
	background: var(--color-bg-light, #f8f9fa);
	border-top: 1px solid var(--color-border);
}

.compound-vs-table__disclaimer {
	margin: 0;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-light);
	text-align: center;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.compound-vs-table__th,
	.compound-vs-table__td {
		padding: 1rem 1.25rem;
	}
	.compound-vs-table__option-title {
		font-size: 1.125rem;
	}
	.compound-vs-table__footer {
		padding: 1.5rem 1.5rem;
	}
	.compound-vs-table__disclaimer {
		font-size: 0.6875rem;
	}
}

/* Achieve Your Goals: dark gradient background, centered image with floating cards */
.compound-cat-block--achieve-goals {
	padding-top: 0;
	padding-bottom: 0;
}

.compound-achieve-goals {
	max-width: var(--container-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(to bottom, #3B2160 0%, #241437 100%);
	border-radius: var(--border-radius-xl, 1.5rem);
	padding: 2.5rem 1.5rem;
	position: relative;
	overflow: visible;
}

.compound-achieve-goals__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-md);
}

.compound-achieve-goals__content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-md);
}

.compound-achieve-goals__body {
	position: relative;
	width: 100%;
	height: 420px;
	max-width: 800px;
	margin: 0 auto;
}

.compound-achieve-goals__headline {
	font-size: 2.75rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0;
	text-align: center;
	position: relative;
	z-index: 10;
}

.compound-achieve-goals__headline strong {
	font-weight: 700;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.compound-achieve-goals__headline {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.compound-achieve-goals__headline {
		font-size: 2rem;
	}
}

.compound-achieve-goals__visual {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	border-radius: var(--border-radius-xl, 1.5rem);
	overflow: hidden;
	z-index: 1;
}

.compound-achieve-goals__img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Wrapper for badge + quote: uses quote’s former position so both move together */
.compound-achieve-goals__top {
	position: absolute;
	top: 40%;
	left: 10%;
	max-width: 200px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 10;
}

.compound-achieve-goals__quote {
	background: rgba(30, 15, 60, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
}

.compound-achieve-goals__quote-bar {
	display: none;
}

.compound-achieve-goals__quote-text {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
	margin: 0;
}

.compound-achieve-goals__badge {
	background: rgba(30, 15, 60, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.75rem;
	padding: 0.5rem 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
}

.compound-achieve-goals__badge-icon {
	display: inline-flex;
	color: #ffffff;
}

.compound-achieve-goals__badge-icon svg {
	width: 1rem;
	height: 1rem;
}

.compound-achieve-goals__badge-label {
	font-size: 0.75rem;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.03em;
	text-transform: none;
}

.compound-achieve-goals__text {
	position: absolute;
	bottom: 10%;
	right: 10%;
	max-width: 220px;
	background: rgba(30, 15, 60, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
	z-index: 10;
}

.compound-achieve-goals__italic {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.3;
	color: #ffffff;
	font-style: normal;
	margin: 0;
	text-align: center;
	max-width: 600px;
	position: relative;
	z-index: 10;
}

@media (max-width: 768px) {
	.compound-achieve-goals__italic {
		font-size: 1.5rem;
	}
}

.compound-achieve-goals__overlay {
	display: none;
}

@media (max-width: 768px) {
	.compound-achieve-goals {
		padding: 1.5rem 1rem;
	}

	.compound-achieve-goals__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		height: auto;
		min-height: auto;
		padding: 0 1rem;
		box-sizing: border-box;
	}

	.compound-achieve-goals__top {
		position: static;
		order: 1;
		max-width: 100%;
		min-width: 0;
		align-self: stretch;
	}

	.compound-achieve-goals__visual {
		position: static;
		transform: none;
		order: 2;
		width: 65%;
	}

	.compound-achieve-goals__text {
		position: static;
		order: 3;
		max-width: 100%;
		min-width: 0;
		align-self: stretch;
		font-size: 0.75rem;
	}

	.compound-achieve-goals__quote-text {
		font-size: 0.75rem;
	}
}
/* FAQ block: match footer width and alignment (same as PDP/home FAQ fix) */
.compound-cat-block--faq {
	padding-top: 0;
	padding-bottom: 0;
}

.compound-cat-block--faq .pt-container {
	padding-left: 0;
	padding-right: 0;
	max-width: none;
	width: 100%;
}

/* Match FAQ section width to footer: same inset as .footer-container (1rem from viewport each side) */
.compound-cat-block--faq .home-faq-section {
	width: calc(100% - 2rem);
	max-width: calc(100% - 2rem);
	margin-left: auto;
	margin-right: auto;
	padding: 2.5rem var(--container-padding, 32px);
	box-sizing: border-box;
}

.compound-cat-block--faq .home-faq-container {
	max-width: none;
	width: 100%;
	padding: 0;
}

/* Reduce gap between Supporting Research (Read Study) and FAQ */
.compound-cat-block--supporting-studies {
	padding-bottom: 1rem;
}

@media (min-width: 769px) {
	.compound-cat-block--supporting-studies {
		padding-bottom: 1.25rem;
	}
}

/* Supporting Research: left-aligned section, grid of study cards (theme branding) */
.compound-cat-block--supporting-studies .pt-container {
	text-align: left;
}

.compound-supporting-research__header {
	margin-bottom: 2rem;
}

/* Match home "How it works" (.pt-steps__title) weight and scale */
.compound-supporting-research__title {
	font-size: 2.75rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0 0 0.5rem;
}

.compound-supporting-research__title-bar {
	width: 5rem;
	height: 4px;
	background: var(--color-primary, #0066cc);
	border-radius: 9999px;
}

.compound-studies-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

@media (max-width: 1024px) {
	.compound-supporting-research__title {
		font-size: 2.25rem;
	}
}

@media (min-width: 769px) {
	.compound-studies-grid {
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.compound-supporting-research__title {
		font-size: 2rem;
	}
}

.compound-study-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-xl, 1.5rem);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.compound-study-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: color-mix(in srgb, var(--color-primary, #0066cc) 30%, transparent);
}

.compound-study-card__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 1.5rem;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.compound-study-card:hover .compound-study-card__title {
	color: var(--color-primary, #0066cc);
}

.compound-study-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 500;
	color: var(--color-primary, #0066cc);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
	transition: gap 0.2s ease;
}

.compound-study-card__link:hover {
	gap: 0.5rem;
}

.compound-study-card__arrow {
	display: inline-flex;
	align-items: center;
}

.compound-study-card__arrow svg {
	width: 1.125rem;
	height: 1.125rem;
}

/* Lifestyle block: contained card with background image, white H2-style overlay text, title hidden in PHP */
.compound-cat-block--lifestyle {
	padding-top: 0;
	padding-bottom: 0;
}

/* Layer 1: gradient background */
.compound-lifestyle {
	position: relative;
	width: 100%;
	max-width: var(--container-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	border-radius: var(--border-radius-xl, 1.5rem);
	overflow: hidden;
	background: linear-gradient(to right, #4B1F5E 0%, #844CA0 50%, #6D2C91 100%);
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Layer 2: lifestyle image */
.compound-lifestyle__img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100% !important;
	object-fit: cover;
	object-position: left bottom;
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.compound-lifestyle__img {
		width: 100%;
		object-position: 50%;
	}
}

/* Layer 3: content overlay */
.compound-lifestyle__overlay {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 2.5rem;
	box-sizing: border-box;
	width: 100%;
	min-height: 420px;
}

.compound-lifestyle__content {
	position: relative;
	max-width: 480px;
	text-align: right;
}

/* Overlay text: large H2 size (product-section-title scale) – white on image */
.compound-lifestyle__text {
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.compound-lifestyle__text:last-child {
	margin-bottom: 0;
}

/* Force H2 overlay to display size – explicit font-size so nothing can override to 16px */
.compound-lifestyle__content h2.compound-lifestyle__text {
	margin: 0 0 0.75rem;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
	.compound-lifestyle__text {
		font-size: 2.75rem;
	}
	.compound-lifestyle__content h2.compound-lifestyle__text {
		font-size: 2.75rem;
	}
}

@media (min-width: 769px) {
	.compound-lifestyle {
		min-height: 520px;
	}
}

@media (min-width: 1025px) {
	.compound-lifestyle {
		min-height: 560px;
	}
}

@media (max-width: 768px) {
	.compound-lifestyle__text {
		font-size: 2.25rem;
	}
	.compound-lifestyle__content h2.compound-lifestyle__text {
		font-size: 2.25rem;
	}
}

@media (max-width: 600px) {
	.compound-lifestyle {
		min-height: 380px;
	}
	.compound-lifestyle__text {
		font-size: 2rem;
	}
	.compound-lifestyle__content h2.compound-lifestyle__text {
		font-size: 2rem;
	}
}
