/* ── Fonts ──────────────────────────────────────────── */

@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Medium.otf') format('opentype');
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: 'Satoshi';
	src: url('../fonts/Satoshi-Bold.otf') format('opentype');
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

/* ── Global ─────────────────────────────────────────── */

html {
	scroll-behavior: smooth;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-6px); }
	50% { transform: translateX(6px); }
	75% { transform: translateX(-4px); }
}

/* --- Type Scale --- */
:root {
	--text-2xs:  10px;
	--text-xs:   11px;
	--text-sm:   12px;
	--text-base: 14px;
	--text-md:   15px;
	--text-lg:   16px;
	--text-xl:   18px;
	--text-2xl:  22px;
	--text-3xl:  28px;
	--text-4xl:  32px;
}

/* ── Base ───────────────────────────────────────────── */

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: inherit;
}

/* ── Announcement Marquee ──────────────────────────── */

.purity-announcement {
	background: #1a2744;
	text-align: center;
	padding: 11px 0;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.purity-marquee {
	overflow: hidden;
	width: 100%;
}
.purity-marquee-track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	animation: purity-marquee-scroll 64s linear infinite;
	will-change: transform;
}
.purity-marquee:hover .purity-marquee-track {
	animation-play-state: paused;
}
.purity-marquee-item {
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3px;
	padding: 0 22px;
}
.purity-marquee-dot {
	color: rgba(255,255,255,0.4);
	font-size: 13px;
}
@keyframes purity-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.purity-marquee-track { animation: none; }
}

.purity-announcement::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(to bottom, rgba(0,0,0,0.08), transparent);
	pointer-events: none;
}

.purity-announcement p {
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px;
	margin: 0;
}

/* Sticky refined header + animated nav underline */
.purity-header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(26,39,68,0.05);
}
.purity-header-nav a {
	position: relative;
}
.purity-header-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: #1a2744;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}
.purity-header-nav a:hover::after,
.purity-header-nav a.is-active::after {
	transform: scaleX(1);
}
.purity-header-nav a.is-active {
	color: #1a2744;
	font-weight: 600;
}

/* Full-width bleed (break out of WP block container) */
.purity-announcement {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

/* ── Header ────────────────────────────────────────── */

.purity-header {
	font-family: 'Manrope', sans-serif;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
}

/* Full-width bleed for header */
.purity-header {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

/* ── Header Top Row (3-column grid) ────────────────── */

.purity-header-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 22px 48px 12px;
}

/* ── Left Column — QA Trust Text ───────────────────── */

.purity-header-left {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #666;
	letter-spacing: 0.2px;
	position: relative;
}

.purity-qa-trigger {
	cursor: pointer;
}

/* ── QA Hover Popup ────────────────────────────────── */

.purity-qa-popup {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 12px;
	width: 440px;
	background: transparent;
	z-index: 1000;
}

.purity-qa-popup-inner {
	background: #fff;
	border: 1px solid #e6e6e9;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 16px 44px rgba(26,39,68,0.12), 0 2px 8px rgba(26,39,68,0.05);
}

.purity-header-left:hover .purity-qa-popup {
	display: block;
}

.purity-qa-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #eef1f6;
	margin: 0 0 18px;
}

.purity-qa-popup h4 {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 12px;
}

.purity-qa-popup p {
	font-family: 'Manrope', sans-serif;
	font-size: 14.5px;
	font-weight: 500;
	color: #555;
	line-height: 1.6;
	margin: 0 0 10px;
}

.purity-qa-learn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
	padding: 15px 24px;
	background: #1a2744;
	border: none;
	border-radius: 12px;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s;
}

.purity-qa-learn:hover {
	background: #2a3a5c;
}

/* ── Center Column — Logo ──────────────────────────── */

.purity-logo {
	font-family: 'Satoshi', sans-serif;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 14px;
	text-transform: uppercase;
	color: #1a2744;
	text-decoration: none;
	text-align: center;
	padding-left: 14px;
}

.purity-logo:hover {
	color: #1a2744;
}

/* ── Right Column — Search + Icons ─────────────────── */

.purity-header-right {
	display: flex;
	align-items: center;
	gap: 18px;
	justify-content: flex-end;
}

.purity-search {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 7px 14px;
	background: #fff;
	position: relative;
}

.purity-search input {
	border: none;
	outline: none;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	background: transparent;
	width: 140px;
}

.purity-search input::placeholder {
	color: #bbb;
}

/* ── Search Dropdown ── */
.purity-search-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: 320px;
	max-height: 420px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.10);
	z-index: 10002;
	padding: 8px 0;
}
.purity-search-dropdown--open {
	display: block;
}
.purity-search-group {
	padding: 0;
}
.purity-search-group + .purity-search-group {
	border-top: 1px solid #f0f0f0;
	margin-top: 4px;
	padding-top: 4px;
}
.purity-search-group-label {
	font-family: 'Manrope', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #999;
	padding: 10px 20px 6px;
}
.purity-search-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 20px;
	text-decoration: none;
	color: #1a2744;
	transition: background 0.15s;
	cursor: pointer;
}
.purity-search-item:hover {
	background: #f7f7f7;
}
.purity-search-item-name {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.purity-search-item-count {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	color: #999;
	flex-shrink: 0;
}
.purity-search-badge {
	font-family: 'Manrope', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 3px 10px;
	border-radius: 6px;
	flex-shrink: 0;
}
.purity-search-badge--popular {
	background: #f3f3f3;
	color: #1a2744;
}
.purity-search-badge--new {
	background: #e8f5e9;
	color: #2e7d32;
}
.purity-search-empty {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #999;
	padding: 28px 20px;
	text-align: center;
}
/* Scrollbar styling for dropdown */
.purity-search-dropdown::-webkit-scrollbar {
	width: 4px;
}
.purity-search-dropdown::-webkit-scrollbar-track {
	background: transparent;
}
.purity-search-dropdown::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 4px;
}

/* ── Mobile Search (inside mobile nav) ── */
.purity-mobile-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 12px 16px;
	background: #f9f9f9;
	margin: 0 0 12px;
}
.purity-mobile-search input {
	border: none;
	outline: none;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	background: transparent;
	width: 100%;
}
.purity-mobile-search input::placeholder {
	color: #bbb;
}
.purity-mobile-search .purity-search-dropdown {
	width: 100%;
	right: 0;
	left: 0;
	max-height: 300px;
}

.purity-header-icon {
	color: #444;
	text-decoration: none;
	display: flex;
	align-items: center;
	transition: color 0.2s;
	position: relative;
}

.purity-header-icon:hover {
	color: #1a2744;
}

.purity-cart-icon {
	position: relative;
}

.purity-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: #1a2744;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 9px;
	font-weight: 600;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* ── Nav Row ───────────────────────────────────────── */

.purity-header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
	padding: 14px 48px 18px;
	position: relative;
}

.purity-header-nav a {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #444;
	text-decoration: none;
	letter-spacing: 0.2px;
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.purity-header-nav a:hover {
	color: #1a2744;
}

.purity-nav-has-dropdown svg {
	opacity: 0.5;
	margin-top: 1px;
	transition: transform 0.2s;
}
.purity-nav-has-dropdown.purity-dd-open svg {
	transform: rotate(180deg);
}

/* ── Shop Mega Dropdown ──────────────── */
.purity-shop-dd {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}
.purity-shop-dd.purity-shop-dd--open {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}
.purity-shop-dd-inner {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
	padding: 26px 32px 16px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0 44px;
}
.purity-shop-dd-label {
	display: block;
	font-family: 'Satoshi', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 14px;
}
.purity-shop-dd-products {
	display: block;
	columns: 2;
	column-gap: 18px;
}
.purity-shop-dd-products .purity-shop-dd-label {
	column-span: all;
}
.purity-shop-dd-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 7px 10px;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.15s;
	break-inside: avoid;
}
.purity-shop-dd-item:hover {
	background: #f4f6f9;
}
.purity-shop-dd-thumb {
	display: none;
}
.purity-shop-dd-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
}
.purity-shop-dd-cats {
	display: flex;
	flex-direction: column;
	border-left: 1px solid #f0f0f0;
	padding-left: 44px;
	min-width: 190px;
}
.purity-shop-dd-cat {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #555;
	text-decoration: none;
	padding: 7px 10px;
	border-radius: 8px;
	transition: background 0.15s, color 0.15s;
}
.purity-shop-dd-cat:hover {
	background: #f4f6f9;
	color: #1a2744;
}
.purity-shop-dd-cat--all {
	font-weight: 600;
	color: #1a2744;
	margin-top: 6px;
}
.purity-shop-dd-foot {
	grid-column: 1 / -1;
	text-align: center;
	padding-top: 14px;
	margin-top: 10px;
	border-top: 1px solid #f0f0f0;
}
.purity-shop-dd-viewall {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1a2744;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 8px;
	transition: background 0.15s;
}
.purity-shop-dd-viewall:hover {
	background: #f4f6f9;
}
.purity-shop-dd-viewall svg {
	opacity: 0.6;
}

/* Hide dropdown on tablet/mobile — use mobile nav instead */
@media (max-width: 900px) {
	.purity-shop-dd {
		display: none !important;
	}
}

/* ── Hamburger Button (hidden on desktop) ────────── */

.purity-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	width: 28px;
	height: 22px;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
}

.purity-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #1a2744;
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.purity-hamburger.purity-hamburger-open span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.purity-hamburger.purity-hamburger-open span:nth-child(2) {
	opacity: 0;
}

.purity-hamburger.purity-hamburger-open span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

/* ── Mobile Nav Overlay (hidden on desktop) ──────── */

.purity-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 9999;
	flex-direction: column;
	justify-content: center;
	padding: 80px 32px 40px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.purity-mobile-nav.purity-mobile-nav-open {
	display: flex;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.purity-mobile-nav-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1;
}

.purity-mobile-nav-close svg {
	display: block;
}

.purity-mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
	justify-content: center;
}

.purity-mobile-nav-links a {
	font-family: 'Satoshi', sans-serif;
	font-size: 32px;
	font-weight: 500;
	color: #1a2744;
	text-decoration: none;
	padding: 16px 0;
	border-bottom: 1px solid #eee;
	transition: color 0.2s;
}

.purity-mobile-nav-links a:first-child {
	border-top: 1px solid #eee;
}

.purity-mobile-nav-links a:hover {
	color: #2a3a5c;
}

.purity-mobile-nav-bottom {
	display: flex;
	gap: 20px;
	padding-top: 32px;
	border-top: 1px solid #eee;
	margin-top: auto;
}

.purity-mobile-nav-bottom a {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}

.purity-mobile-nav-bottom a:hover {
	color: #1a2744;
}

/* ── Header Responsive ────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-header-top {
		padding: 18px 28px 10px;
	}

	.purity-header-left {
		display: none;
	}

	.purity-search input {
		width: 100px;
	}

	.purity-header-nav {
		gap: 28px;
		padding: 12px 28px 16px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-announcement p {
		font-size: 11px;
	}

	.purity-header-top {
		display: flex;
		align-items: center;
		padding: 14px 20px 10px;
	}

	.purity-header-left {
		display: none;
	}

	.purity-logo {
		font-size: 22px;
		letter-spacing: 8px;
		padding-left: 0;
		margin-right: auto;
		text-align: left;
	}

	.purity-header-right {
		gap: 14px;
	}

	.purity-search {
		display: none;
	}

	.purity-header-nav {
		display: none;
	}

	.purity-hamburger {
		display: flex;
		z-index: 10001;
		position: relative;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-announcement p {
		font-size: 10px;
	}

	.purity-logo {
		font-size: 18px;
		letter-spacing: 6px;
	}

	.purity-header-right {
		gap: 10px;
	}

	.purity-mobile-nav-links a {
		font-size: 26px;
		padding: 14px 0;
	}
}

/* ── Hero Section ──────────────────────────────────── */

.purity-hero-section {
	background: #f0f2f5;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.purity-hero-inner {
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 48px 60px;
	min-height: 480px;
}

.purity-hero-content {
	position: relative;
	z-index: 2;
}

.purity-hero-content h1 {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(40px, 4.5vw, 58px);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.5px;
	color: #1a2744;
	margin: 0 0 24px;
}

.purity-hero-sub {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 32px;
	max-width: 440px;
}

/* ── Hero CTA Buttons ──────────────────────────────── */

.purity-hero-ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.purity-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #1a2744;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 15px 28px;
	border-radius: 10px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.purity-btn-primary:hover {
	opacity: 0.85;
	color: #fff;
}

.purity-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	color: #1a2744;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	padding: 15px 24px;
	border-radius: 10px;
	border: 1px solid #d0d5dd;
	text-decoration: none;
	transition: border-color 0.2s;
}

.purity-btn-secondary:hover {
	border-color: #1a2744;
	color: #1a2744;
}

/* ── Hero Image Placeholder ────────────────────────── */

.purity-hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 360px;
	background: linear-gradient(135deg, rgba(26,39,68,0.06) 0%, rgba(26,39,68,0.12) 100%);
	border-radius: 20px;
}

.purity-hero-image::after {
	content: 'Product Image';
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(26,39,68,0.3);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ── Trust Badges Strip ────────────────────────────── */

.purity-badges {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px 60px 48px;
}

.purity-badge {
	padding: 10px 20px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.purity-badge-icon {
	display: block;
	max-height: 110px;
	width: auto;
	margin: 0 auto;
}

/* ── Hero Responsive ───────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-hero-inner {
		grid-template-columns: 55% 45%;
		padding: 60px 28px 50px;
		min-height: 400px;
	}

	.purity-hero-content h1 {
		font-size: 38px;
	}

	.purity-hero-sub {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.purity-btn-primary,
	.purity-btn-secondary {
		font-size: 13px;
		padding: 13px 22px;
	}

	.purity-hero-image {
		min-height: 300px;
	}

	.purity-badges {
		padding: 0 28px 50px;
	}

	.purity-badge-icon {
		max-height: 95px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-hero-inner {
		grid-template-columns: 1fr;
		padding: 40px 20px 30px;
		min-height: auto;
		gap: 24px;
	}

	.purity-hero-content {
		text-align: center;
	}

	.purity-hero-content h1 {
		font-size: 32px;
	}

	.purity-hero-sub {
		font-size: 14px;
		margin: 0 auto 24px;
	}

	.purity-hero-ctas {
		justify-content: center;
	}

	.purity-hero-image {
		order: -1;
		min-height: 220px;
		border-radius: 14px;
	}

	.purity-badges {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 0 20px 40px;
	}

	.purity-badge {
		padding: 6px 10px;
	}

	.purity-badge-icon {
		max-height: 80px;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-hero-inner {
		padding: 30px 16px 20px;
		gap: 20px;
	}

	.purity-hero-content h1 {
		font-size: 26px;
		margin-bottom: 16px;
	}

	.purity-hero-sub {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.purity-hero-ctas {
		gap: 10px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.purity-btn-primary,
	.purity-btn-secondary {
		justify-content: center;
		text-align: center;
		font-size: 13px;
		padding: 14px 20px;
	}

	.purity-hero-image {
		min-height: 180px;
		border-radius: 12px;
	}

	.purity-badges {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		padding: 0 16px 30px;
	}

	.purity-badge {
		padding: 4px 6px;
	}

	.purity-badge-icon {
		max-height: 65px;
	}
}

/* ── Dark Banner ───────────────────────────────────── */

.purity-dark-banner {
	background: #1a2744;
	position: relative;
	overflow: hidden;
	min-height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	padding: 0 !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

.purity-dark-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(26, 39, 68, 0.82);
	z-index: 0;
}

.wp-block-group > .purity-dark-banner,
.entry-content > .purity-dark-banner {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.purity-dark-banner-inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 72px 32px;
	width: 100%;
	position: relative;
	z-index: 2;
	text-align: center;
}

.purity-dark-banner-eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
	margin: 0 0 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.18);
}

.purity-dark-banner h2 {
	font-family: 'Satoshi', sans-serif;
	color: #fff;
	font-size: clamp(38px, 5vw, 56px);
	font-weight: 400;
	line-height: 1.1;
	margin: 0 auto 20px;
	max-width: 600px;
}

.purity-dark-banner p {
	font-family: 'Manrope', sans-serif;
	color: rgba(255,255,255,0.7);
	font-size: 15px;
	line-height: 1.65;
	max-width: 460px;
	margin: 0 auto 32px;
}

.purity-dark-banner-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.8);
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 8px;
	padding: 16px 28px;
	transition: border-color 0.2s, color 0.2s;
}

.purity-dark-banner-btn:hover {
	border-color: rgba(255,255,255,0.6);
	color: #fff;
}

.purity-dark-banner-btn img {
	opacity: 0.7;
	transition: opacity 0.2s;
}

.purity-dark-banner-btn:hover img {
	opacity: 1;
}

/* Dark Banner Responsive */

/* Tablet */
@media (max-width: 1024px) {
	.purity-dark-banner {
		aspect-ratio: auto;
		min-height: 440px;
	}

	.purity-dark-banner-inner {
		padding: 60px 32px;
	}

	.purity-dark-banner h2 {
		font-size: 40px;
		max-width: 440px;
	}

	.purity-dark-banner p {
		font-size: 14px;
		max-width: 380px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-dark-banner {
		aspect-ratio: auto;
		min-height: 360px;
		align-items: center;
	}

	.purity-dark-banner-inner {
		padding: 50px 24px;
		text-align: center;
	}

	.purity-dark-banner h2 {
		font-size: 32px;
		max-width: 100%;
		margin: 0 auto 16px;
	}

	.purity-dark-banner p {
		font-size: 14px;
		max-width: 100%;
		margin: 0 auto 28px;
	}

	.purity-dark-banner-btn {
		font-size: 13px;
		padding: 14px 24px;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-dark-banner {
		min-height: 300px;
	}

	.purity-dark-banner-inner {
		padding: 40px 16px;
	}

	.purity-dark-banner h2 {
		font-size: 26px;
		margin-bottom: 12px;
	}

	.purity-dark-banner p {
		font-size: 13px;
		margin-bottom: 24px;
	}

	.purity-dark-banner-btn {
		font-size: 12px;
		padding: 12px 20px;
	}
}

/* ── Research Compounds ───────────────────────────── */

.purity-compounds {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 40px;
	width: 100%;
}

.purity-compounds-inner {
	width: 100%;
}

.purity-compounds-header {
	text-align: center;
	margin-bottom: 40px;
}

.purity-compounds-header h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: 38px;
	font-weight: 500;
	margin: 0 0 20px;
	color: #1a2744;
}

.purity-compounds-view-all {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 30px;
	padding: 10px 22px;
	transition: border-color 0.2s;
}

.purity-compounds-view-all:hover {
	border-color: #1a2744;
}

/* Product Grid */

.purity-product-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 20px;
	width: 100%;
}

/* Product Card */

a.purity-product-card {
	text-decoration: none;
	color: inherit;
}
.purity-product-name-link {
	text-decoration: none;
	color: inherit;
}
.purity-product-img {
	display: block;
	text-decoration: none;
}

.purity-product-card {
	background: #f5f5f5;
	border-radius: 20px;
	padding: 0;
	text-align: center;
	transition: background 0.25s, box-shadow 0.25s;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.purity-product-card:hover {
	background: #1a2744;
	box-shadow: 0 8px 32px rgba(26, 39, 68, 0.18);
}

.purity-product-card:hover .purity-product-badge {
	background: rgba(255,255,255,0.12);
	color: #fff;
}

.purity-product-card:hover .purity-product-badge img {
	filter: brightness(0) invert(1);
}

.purity-product-card:hover .purity-product-cat {
	color: rgba(255,255,255,0.5);
}

.purity-product-card:hover .purity-product-name-link,
.purity-product-card:hover .purity-product-name-link h3 {
	color: #fff;
}

.purity-product-card:hover .purity-product-price {
	color: #fff;
}

.purity-product-card:hover .purity-product-variant {
	color: rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.12);
}

.purity-product-card:hover .purity-add-to-cart {
	background: #fff;
	color: #1a2744;
}

.purity-product-card:hover .purity-add-to-cart.in-cart {
	background: rgba(255,255,255,0.15);
	color: #fff;
}

.purity-product-card:hover .purity-qty {
	border-color: rgba(255,255,255,0.2);
	background: transparent;
}

.purity-product-card:hover .purity-qty button {
	color: #fff;
	border-color: rgba(255,255,255,0.2);
	background: transparent;
}

.purity-product-card:hover .purity-qty span {
	color: #fff;
}

.purity-product-card:hover .purity-product-variants .purity-product-variant-pill {
	border-color: rgba(255,255,255,0.25);
	color: rgba(255,255,255,0.7);
}

.purity-product-card:hover .purity-product-variants .purity-product-variant-pill.purity-product-variant-pill--active {
	background: #fff;
	color: #1a2744;
	border-color: #fff;
}

.purity-product-card-top {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 18px 20px 0;
	min-height: 48px;
}

.purity-product-badge {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	color: #888;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	letter-spacing: 0.3px;
	background: #fff;
	padding: 8px 20px 10px;
	clip-path: polygon(0% 0%, 100% 0%, calc(100% - 10px) 100%, 10px 100%);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.purity-product-img {
	margin: 8px 24px 0;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.purity-product-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(170deg, #ececec 0%, #ddd 40%, #e2e2e2 70%, #d5d5d5 100%);
	border-radius: 12px;
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
}

/* Per-card product images via nth-child — using Velari defaults */
.purity-product-grid > .purity-product-card:nth-child(1) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod4.png');
}
.purity-product-grid > .purity-product-card:nth-child(2) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod2.png');
}
.purity-product-grid > .purity-product-card:nth-child(3) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod6.png');
}
.purity-product-grid > .purity-product-card:nth-child(4) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod5.png');
}
.purity-product-grid > .purity-product-card:nth-child(5) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod3.png');
}
.purity-product-grid > .purity-product-card:nth-child(6) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod1.png');
}
.purity-product-grid > .purity-product-card:nth-child(7) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod2.png');
}
.purity-product-grid > .purity-product-card:nth-child(8) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod3.png');
}
.purity-product-grid > .purity-product-card:nth-child(9) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod5.png');
}
.purity-product-grid > .purity-product-card:nth-child(10) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod4.png');
}
.purity-product-grid > .purity-product-card:nth-child(11) .purity-product-img-placeholder {
	background-image: url('/wp-content/themes/purity/assets/images/prod6.png');
}

/* Card body */

.purity-product-body {
	padding: 20px 24px 24px;
}

.purity-product-cat {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #aaa;
	display: block;
	margin-bottom: 4px;
	letter-spacing: 0.3px;
}

.purity-product-card h3 {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 14px;
	letter-spacing: -0.3px;
}

/* Variant pills */

.purity-product-variants {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-bottom: 10px;
}

.purity-product-variant-pill {
	padding: 4px 12px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #555;
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
}

.purity-product-variant-pill--active {
	background: #1a2744;
	color: #fff;
	border-color: #1a2744;
}

/* Sold-out state */

.purity-product-card.sold-out {
	opacity: 0.6;
}

.purity-product-card.sold-out .purity-add-to-cart {
	pointer-events: none;
	background: #ddd;
	color: #999;
}

/* Badge cycling alt */

.purity-product-badge.purity-badge-alt::after {
	content: none;
}

.purity-product-price-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.purity-product-price {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	letter-spacing: -0.3px;
}

.purity-product-variant {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #aaa;
	background: #e8e8e8;
	border: none;
	border-radius: 20px;
	padding: 4px 14px;
	letter-spacing: 0.3px;
}

/* Actions row */

.purity-product-actions {
	display: flex;
	align-items: stretch;
	gap: 10px;
}

.purity-add-to-cart {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: #1a2744;
	border: none;
	border-radius: 14px;
	padding: 0;
	height: 54px;
	flex: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.2px;
}

.purity-add-to-cart:hover {
	background: #2a3a5c;
	color: #fff;
}
.purity-add-to-cart.in-cart {
	flex: 1;
	width: auto;
	font-size: 15px;
	line-height: 1;
	background-image: none;
	pointer-events: none;
	gap: 8px;
}
.purity-add-to-cart.in-cart svg {
	flex-shrink: 0;
}

.purity-qty {
	display: flex;
	align-items: center;
	border: 1.5px solid #ddd;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	height: 54px;
	flex-shrink: 0;
}

.purity-qty button {
	background: #fff;
	border: none;
	width: 42px;
	height: 100%;
	font-size: 18px;
	cursor: pointer;
	color: #1a2744;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	transition: background 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.purity-qty button:hover {
	background: #f5f5f5;
}

.purity-qty span {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 0 4px;
	min-width: 22px;
	text-align: center;
	color: #1a2744;
}

/* Compounds Responsive */

/* Tablet */
@media (max-width: 1024px) {
	.purity-compounds {
		padding: 60px 28px;
	}

	.purity-compounds-header h2 {
		font-size: 32px;
	}

	.purity-product-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 16px;
	}

	.purity-product-img {
		height: 220px;
	}

	.purity-product-card h3 {
		font-size: 18px;
	}

	.purity-product-price {
		font-size: 18px;
	}

	.purity-add-to-cart {
		height: 48px;
		font-size: 14px;
	}

	.purity-qty {
		height: 48px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-compounds {
		padding: 50px 20px;
	}

	.purity-compounds-header h2 {
		font-size: 28px;
	}

	.purity-compounds-header {
		margin-bottom: 28px;
	}

	.purity-compounds-view-all {
		font-size: 12px;
		padding: 8px 18px;
	}

	.purity-product-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px;
	}

	.purity-product-card {
		border-radius: 14px;
	}

	.purity-product-card-top {
		padding: 12px 12px 0;
		min-height: 36px;
	}

	.purity-product-badge {
		font-size: 9px;
		padding: 6px 14px 7px;
	}

	.purity-product-badge img {
		width: 11px !important;
		height: 11px !important;
	}

	.purity-product-img {
		margin: 6px 14px 0;
		height: 170px;
	}

	.purity-product-body {
		padding: 14px 14px 18px;
	}

	.purity-product-cat {
		font-size: 10px;
	}

	.purity-product-card h3 {
		font-size: 16px;
		margin: 0 0 10px;
	}

	.purity-product-price {
		font-size: 17px;
	}

	.purity-product-variant {
		font-size: 10px;
		padding: 3px 10px;
	}

	.purity-product-price-row {
		margin-bottom: 14px;
	}

	.purity-product-actions {
		gap: 6px;
	}

	.purity-add-to-cart {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		border-radius: 10px;
		font-size: 0;
		line-height: 0;
		padding: 0;
		overflow: hidden;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 18px 18px;
	}
	.purity-add-to-cart.in-cart {
		flex: 1;
		width: auto;
		height: 40px;
		font-size: 13px;
		line-height: 1;
		background-image: none;
		overflow: visible;
	}

	.purity-qty {
		height: 40px;
		border-radius: 10px;
		flex: 1;
	}

	.purity-qty button {
		width: 32px;
		font-size: 16px;
	}

	.purity-qty span {
		font-size: 13px;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-compounds {
		padding: 40px 12px;
	}

	.purity-compounds-header h2 {
		font-size: 24px;
	}

	.purity-product-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px;
	}

	.purity-product-card-top {
		padding: 10px 8px 0;
		min-height: 30px;
	}

	.purity-product-badge {
		font-size: 8px;
		padding: 5px 10px 6px;
	}

	.purity-product-badge img {
		width: 10px !important;
		height: 10px !important;
	}

	.purity-product-img {
		margin: 4px 10px 0;
		height: 130px;
	}

	.purity-product-body {
		padding: 10px 10px 14px;
	}

	.purity-product-cat {
		font-size: 9px;
		margin-bottom: 2px;
	}

	.purity-product-card h3 {
		font-size: 14px;
		margin: 0 0 8px;
	}

	.purity-product-price-row {
		gap: 6px;
		margin-bottom: 10px;
	}

	.purity-product-price {
		font-size: 15px;
	}

	.purity-product-variant {
		font-size: 9px;
		padding: 2px 8px;
	}

	.purity-add-to-cart {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
	}
	.purity-add-to-cart.in-cart {
		flex: 1;
		width: auto;
		height: 36px;
		font-size: 12px;
		line-height: 1;
		background-image: none;
		overflow: visible;
	}

	.purity-qty {
		height: 36px;
	}

	.purity-qty button {
		width: 28px;
		font-size: 14px;
	}

	.purity-qty span {
		font-size: 12px;
		min-width: 18px;
	}
}

/* ── Browse by Research Focus ─────────────────────── */

.purity-brf {
	background: #f7f7f7;
	padding: 110px 40px;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

.purity-brf-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1400px;
	margin: 0 auto 56px;
	padding: 0;
}

.purity-brf-header h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(38px, 4.5vw, 56px);
	font-weight: 400;
	color: #1a2744;
	margin: 0;
	letter-spacing: -0.5px;
	line-height: 1.05;
}

.purity-brf-row {
	display: grid;
	gap: 14px;
	grid-template-columns: 2.4fr 1fr 1fr 1fr;
	min-height: 520px;
	max-width: 1400px;
	margin: 0 auto;
	transition: grid-template-columns 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.purity-brf-row[data-active="2"] { grid-template-columns: 1fr 2.4fr 1fr 1fr; }
.purity-brf-row[data-active="3"] { grid-template-columns: 1fr 1fr 2.4fr 1fr; }
.purity-brf-row[data-active="4"] { grid-template-columns: 1fr 1fr 1fr 2.4fr; }

.purity-brf-card {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	cursor: pointer;
	border-radius: 14px;
	min-height: 520px;
	isolation: isolate;
	border: 1px solid rgba(255,255,255,0.06);
	box-shadow: 0 16px 40px rgba(10,16,32,0.22);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.purity-brf-card:not(.purity-brf-active):hover {
	transform: translateY(-4px);
	border-color: rgba(255,255,255,0.16);
}

.purity-brf-card-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 84% 16%, rgba(74,98,150,0.5) 0%, transparent 50%),
		linear-gradient(160deg, #233456 0%, #1a2744 48%, #111a30 100%);
	z-index: 0;
}

.purity-brf-card-noise {
	display: none;
}

.purity-brf-card-img {
	position: absolute;
	z-index: 2;
	transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.purity-brf-card:not(.purity-brf-active) .purity-brf-card-img {
	top: 50%;
	left: 50%;
	width: 115%;
	max-width: 380px;
	transform: translate(-50%, -50%);
	object-fit: contain;
}

.purity-brf-active .purity-brf-card-img {
	top: 50%;
	right: -4%;
	left: auto;
	width: 58%;
	max-width: 520px;
	transform: translateY(-50%);
	object-fit: contain;
	animation: purity-brf-float 5.5s ease-in-out infinite;
	will-change: transform;
}

@keyframes purity-brf-float {
	0%, 100% { transform: translateY(-50%); }
	50% { transform: translateY(calc(-50% - 14px)); }
}

@keyframes purity-brf-float-mobile {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
	.purity-brf-active .purity-brf-card-img { animation: none; }
}

.purity-brf-card-body {
	position: absolute;
	left: 38px;
	right: 38px;
	bottom: 38px;
	z-index: 3;
	color: #fff;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.4s ease 0.2s, transform 0.5s ease 0.2s;
	pointer-events: none;
	max-width: 360px;
}

.purity-brf-active .purity-brf-card-body {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.purity-brf-eyebrow {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
	margin: 0 0 14px;
}

.purity-brf-card-body h3 {
	font-family: 'Satoshi', sans-serif;
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 14px;
	letter-spacing: -0.3px;
	line-height: 1.1;
}

.purity-brf-card-body p {
	font-family: 'Manrope', sans-serif;
	font-size: 13.5px;
	color: rgba(255,255,255,0.72);
	line-height: 1.55;
	margin: 0 0 22px;
	max-width: 320px;
}

.purity-brf-shop-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #fff;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 10px;
	padding: 13px 20px;
	font-weight: 400;
	transition: background 0.25s, border-color 0.25s;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.purity-brf-shop-btn strong { font-weight: 500; }

.purity-brf-shop-btn svg {
	margin-left: 4px;
	opacity: 0.9;
}

.purity-brf-active:hover .purity-brf-shop-btn {
	background: rgba(255,255,255,0.14);
	border-color: rgba(255,255,255,0.3);
}

/* Collapsed wayfinding label */
.purity-brf-tab-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 34px;
	margin: 0 auto;
	z-index: 3;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	text-align: center;
	font-family: 'Satoshi', sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.82);
	white-space: nowrap;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.purity-brf-active .purity-brf-tab-label { opacity: 0; }

/* Number: small on collapsed, giant ghost on active */
.purity-brf-num {
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	z-index: 3;
	text-align: center;
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255,255,255,0.5);
	transition: opacity 0.4s ease;
}

.purity-brf-active .purity-brf-num {
	top: -10px;
	right: 18px;
	left: auto;
	bottom: auto;
	width: auto;
	text-align: right;
	font-size: clamp(150px, 16vw, 260px);
	font-weight: 600;
	line-height: 1;
	color: rgba(255,255,255,0.07);
	opacity: 1;
	transform: none;
	z-index: 2;
	pointer-events: none;
}

/* ── Browse by Research Focus Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-brf { padding: 80px 28px; }
	.purity-brf-header { margin-bottom: 40px; }
	.purity-brf-header h2 { font-size: 36px; }
	.purity-brf-row,
	.purity-brf-row[data-active="2"],
	.purity-brf-row[data-active="3"],
	.purity-brf-row[data-active="4"] { min-height: 440px; }
	.purity-brf-card { min-height: 440px; border-radius: 12px; }
	.purity-brf-card-body { left: 28px; right: 28px; bottom: 28px; }
	.purity-brf-card-body h3 { font-size: 26px; margin-bottom: 10px; }
	.purity-brf-card-body p { font-size: 12.5px; margin-bottom: 18px; }
	.purity-brf-shop-btn { font-size: 12px; padding: 11px 16px; }
	.purity-brf-active .purity-brf-num { font-size: clamp(120px, 17vw, 220px); }
}

/* Stack to single column */
@media (max-width: 960px) {
	.purity-brf { padding: 70px 24px; }
	.purity-brf-header { margin-bottom: 36px; }
	.purity-brf-row,
	.purity-brf-row[data-active="2"],
	.purity-brf-row[data-active="3"],
	.purity-brf-row[data-active="4"] {
		grid-template-columns: 1fr !important;
		min-height: auto;
	}
	.purity-brf-card { min-height: 90px; }
	.purity-brf-active { min-height: 460px; }
	.purity-brf-tab-label {
		writing-mode: horizontal-tb;
		top: 50%;
		left: 28px;
		right: auto;
		bottom: auto;
		margin: 0;
		text-align: left;
		font-size: 19px;
		transform: translateY(-50%);
	}
	.purity-brf-num {
		top: 50%;
		left: auto;
		right: 26px;
		text-align: right;
		transform: translateY(-50%);
		font-size: 15px;
	}
	.purity-brf-active .purity-brf-num {
		top: -8px;
		right: 16px;
		left: auto;
		transform: none;
		font-size: clamp(90px, 24vw, 150px);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-brf { padding: 60px 20px; }
	.purity-brf-header h2 { font-size: 28px; }
	.purity-brf-card { min-height: 84px; }
	.purity-brf-active { min-height: 420px; }
	.purity-brf-card-body { left: 22px; right: 22px; bottom: 24px; max-width: none; }
	.purity-brf-tab-label { left: 22px; font-size: 17px; }
	.purity-brf-num { right: 22px; }
	.purity-brf-active .purity-brf-num { font-size: clamp(80px, 26vw, 130px); }
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-brf { padding: 40px 16px; }
	.purity-brf-header h2 { font-size: 24px; }
	.purity-brf-header { margin-bottom: 24px; }
	.purity-brf-card { min-height: 76px; }
	.purity-brf-active { min-height: 380px; }
	.purity-brf-tab-label { left: 18px; font-size: 15px; }
	.purity-brf-card-body h3 { font-size: 22px; }
	.purity-brf-card-body p { font-size: 13px; }
	.purity-brf-active .purity-brf-num { font-size: clamp(70px, 28vw, 110px); right: 14px; }
}

/* ── The Purity Labs Standard ─────────────────────── */

.purity-standards {
	background: #ebebeb;
	padding: 90px 40px 60px;
	text-align: center;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

.purity-standards-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.purity-standards-eyebrow {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #1a2744;
	margin: 0 0 14px;
}

.purity-standards h2 {
	font-family: 'Satoshi', sans-serif;
	color: #1a2744;
	font-size: 48px;
	font-weight: 400;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
}

.purity-standards-sub {
	color: #777;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	max-width: 480px;
	margin: 0 auto 44px;
	line-height: 1.6;
}

.purity-standards-photo {
	border-radius: 16px;
	overflow: hidden;
	margin: 0 0 40px;
	border: 1px solid rgba(26,39,68,0.08);
	box-shadow: 0 20px 50px rgba(26,39,68,0.10);
}

.purity-standards-photo img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.purity-standards-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 0 0 32px;
}

.purity-standards-card {
	background: #fff;
	border: 1px solid #e3e3e6;
	border-radius: 16px;
	padding: 28px 24px;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-shadow: 0 2px 10px rgba(26,39,68,0.04);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.purity-standards-card:hover {
	transform: translateY(-4px);
	border-color: #1a2744;
	box-shadow: 0 16px 36px rgba(26,39,68,0.12);
}

.purity-standards-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #eef1f6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 18px;
}

.purity-standards-card-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	display: block;
}

.purity-standards-card h4 {
	font-family: 'Satoshi', sans-serif;
	color: #1a2744;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 6px;
	letter-spacing: -0.2px;
	line-height: 1.2;
}

.purity-standards-card-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 12.5px;
	font-weight: 500;
	color: #888;
	line-height: 1.5;
	margin: 0;
}

.purity-standards-disclaimer {
	color: #999;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	margin: 32px auto 0;
	max-width: 620px;
	line-height: 1.7;
	padding-top: 28px;
	border-top: 1px solid rgba(26,39,68,0.10);
}

/* Purity Labs Standard Responsive */

/* Tablet */
@media (max-width: 1024px) {
	.purity-standards { padding: 70px 28px 50px; }
	.purity-standards h2 { font-size: 40px; }
	.purity-standards-sub { font-size: 13px; margin-bottom: 36px; }
	.purity-standards-photo { margin-bottom: 32px; }
	.purity-standards-photo img { height: 320px; }
	.purity-standards-cards { gap: 14px; }
	.purity-standards-card { padding: 22px 18px; }
	.purity-standards-card-icon { width: 46px; height: 46px; margin-bottom: 14px; }
	.purity-standards-card-icon img { width: 28px; height: 28px; }
}

/* Mobile */
@media (max-width: 768px) {
	.purity-standards { padding: 56px 20px 44px; }
	.purity-standards h2 { font-size: 32px; margin-bottom: 10px; }
	.purity-standards-sub { font-size: 13px; margin-bottom: 30px; max-width: 100%; }
	.purity-standards-photo { border-radius: 12px; margin-bottom: 24px; }
	.purity-standards-photo img { height: 240px; }
	.purity-standards-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-bottom: 24px;
		max-width: 440px;
		margin-left: auto;
		margin-right: auto;
	}
	.purity-standards-card { padding: 20px 16px; border-radius: 14px; }
	.purity-standards-card-icon { width: 44px; height: 44px; margin-bottom: 12px; }
	.purity-standards-card-icon img { width: 26px; height: 26px; }
	.purity-standards-card h4 { font-size: 14px; }
	.purity-standards-card-desc { font-size: 12px; }
	.purity-standards-disclaimer { font-size: 11px; margin-top: 24px; padding-top: 22px; }
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-standards { padding: 44px 14px 36px; }
	.purity-standards h2 { font-size: 26px; }
	.purity-standards-sub { font-size: 12px; margin-bottom: 24px; }
	.purity-standards-photo { border-radius: 10px; margin-bottom: 18px; }
	.purity-standards-photo img { height: 180px; }
	.purity-standards-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
	.purity-standards-card { padding: 16px 14px; border-radius: 12px; }
	.purity-standards-card-icon { width: 40px; height: 40px; margin-bottom: 10px; }
	.purity-standards-card-icon img { width: 26px; height: 26px; }
	.purity-standards-card h4 { font-size: 13px; }
	.purity-standards-card-desc { font-size: 11px; }
	.purity-standards-disclaimer { font-size: 10px; line-height: 1.6; margin-top: 20px; padding-top: 18px; }
}

/* ── The Purity Labs Difference ────────────────────── */

.pd {
	position: relative;
	background: #f5f5f5 url('/wp-content/themes/purity/assets/images/bg-velari-difference.png') center center / cover no-repeat;
	overflow: hidden;
	min-height: 960px;
	padding: 140px 40px;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

.pd-inner {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 90px 48px 100px;
	min-height: 600px;
}

.pd-text {
	position: relative;
	z-index: 3;
	max-width: 380px;
	margin-top: -130px;
}

.pd-text h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(38px, 4.5vw, 52px);
	font-weight: 500;
	line-height: 1.08;
	color: #1a2744;
	margin: 0 0 20px;
}

.pd-text p {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #777;
	line-height: 1.7;
	margin: 0;
}

.pd-vial {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-25%, -50%);
	z-index: 2;
}

.pd-vial-img {
	max-height: 480px;
	width: auto;
	display: block;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.pd-bubble {
	position: absolute;
	cursor: pointer;
	mix-blend-mode: multiply;
	opacity: 0.85;
	filter: drop-shadow(0 1px 3px rgba(0,0,0,0.06));
}

.pd-bubble-1 { width: 44px; top: -2%;  left: 50%; transform: translateX(-50%); }
.pd-bubble-2 { width: 38px; top: 20%;  left: 18%; }
.pd-bubble-3 { width: 36px; top: 65%;  left: 12%; }
.pd-bubble-4 { width: 40px; top: 16%;  right: 16%; }
.pd-bubble-5 { width: 42px; top: 58%;  right: 10%; }

.pd-bubble-card {
	position: absolute;
	bottom: -20px;
	left: -280px;
	z-index: 10;
}

.pd-bubble-card-inner {
	background: #f5f5f5;
	border-radius: 16px;
	padding: 28px 32px 32px;
	width: 320px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pd-bubble-card-logo {
	width: 32px;
	height: 32px;
	margin-bottom: 14px;
	display: block;
}

.pd-bubble-card-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #1a2744;
	margin: 0 0 10px;
}

.pd-bubble-card-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* Bubbles background decoration */
.pd::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/wp-content/themes/purity/assets/images/bubbles-v.png') no-repeat center;
	background-size: contain;
	opacity: 0.06;
	pointer-events: none;
	z-index: 1;
}

/* Bubble card: mobile flow layout (when reparented to pd-inner) */

/* Purity Labs Difference Responsive */

/* Tablet */
@media (max-width: 1024px) {
	.pd {
		min-height: 760px;
		padding: 100px 28px;
	}

	.pd-inner {
		padding: 60px 32px 80px;
		min-height: 480px;
	}

	.pd-text {
		max-width: 340px;
		margin-top: -80px;
	}

	.pd-text h2 {
		font-size: 38px;
	}

	.pd-text p {
		font-size: 13px;
	}

	.pd-vial-img {
		max-height: 400px;
	}

	.pd-bubble-1 { width: 38px; }
	.pd-bubble-2 { width: 32px; }
	.pd-bubble-3 { width: 30px; }
	.pd-bubble-4 { width: 34px; }
	.pd-bubble-5 { width: 36px; }

	.pd-bubble-card-inner {
		width: 280px;
		padding: 22px 24px 26px;
	}

	.pd-bubble-card {
		left: -240px;
	}

	.pd-bubble-card-title {
		font-size: 15px;
	}

	.pd-bubble-card-desc {
		font-size: 13px;
	}
}

/* Mobile — stack text above vial */
@media (max-width: 768px) {
	.pd {
		min-height: auto;
		padding: 60px 20px;
	}

	.pd-inner {
		padding: 40px 20px 60px;
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.pd-text {
		max-width: 100%;
		margin-top: 0;
		text-align: center;
		margin-bottom: 12px;
	}

	.pd-text h2 {
		font-size: 32px;
	}

	.pd-text p {
		font-size: 13px;
		max-width: 440px;
		margin: 0 auto;
	}

	.pd-vial {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		display: flex;
		justify-content: center;
		margin: 32px 0 0;
	}

	.pd-vial-img {
		max-height: 360px;
	}

	.pd-bubble-1 { width: 36px; }
	.pd-bubble-2 { width: 30px; }
	.pd-bubble-3 { width: 28px; }
	.pd-bubble-4 { width: 32px; }
	.pd-bubble-5 { width: 34px; }

	.pd-bubble-card {
		position: relative !important;
		top: auto !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		margin: 20px auto 0;
		width: 100%;
		max-width: 100%;
	}

	.pd-bubble-card-inner {
		width: 100% !important;
		min-height: 200px;
		border: 1px solid #e0e0e0;
		border-radius: 14px;
		padding: 28px 28px 32px;
		box-sizing: border-box;
	}

	.pd-bubble-card-title {
		font-size: 20px !important;
	}

	.pd-bubble-card-desc {
		font-size: 16px !important;
		line-height: 1.6;
	}

	.pd-bubble-card-logo {
		width: 40px !important;
		height: 40px !important;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.pd {
		padding: 44px 14px;
	}

	.pd-inner {
		padding: 30px 14px 50px;
	}

	.pd-text h2 {
		font-size: 26px;
		margin-bottom: 14px;
	}

	.pd-text p {
		font-size: 12px;
	}

	.pd-vial {
		margin-top: 24px;
	}

	.pd-vial-img {
		max-height: 280px;
	}

	.pd-bubble-1 { width: 30px; }
	.pd-bubble-2 { width: 26px; }
	.pd-bubble-3 { width: 24px; }
	.pd-bubble-4 { width: 28px; }
	.pd-bubble-5 { width: 28px; }

}

/* ── FAQ ───────────────────────────────────────────── */

.purity-faq {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 40px;
	overflow: hidden;
}

.purity-faq-inner {
	display: grid;
	grid-template-columns: 30% 1fr;
	gap: 80px;
	align-items: start;
}

.purity-faq-left {
	position: sticky;
	top: 40px;
}

.purity-faq-left h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(40px, 5vw, 58px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.5px;
	margin: 0 0 28px;
	color: #1a2744;
}

.purity-faq-viewall {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #1a2744;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 16px 24px;
	transition: border-color 0.2s;
}

.purity-faq-viewall:hover {
	border-color: #1a2744;
	color: #1a2744;
}

.purity-faq-viewall svg {
	opacity: 0.5;
	transition: transform 0.2s;
}

.purity-faq-viewall:hover svg {
	transform: translateX(3px);
}

/* Home FAQ — uniform with the FAQ Page (carded items + +/- icon) */
.purity-faq-right details {
	background: #fff;
	border: 1px solid #e6e6e9;
	border-radius: 14px;
	margin-bottom: 12px;
	padding: 0 24px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.purity-faq-right details[open] {
	border-color: #1a2744;
	box-shadow: 0 10px 30px rgba(26,39,68,0.08);
}

.purity-faq-right summary {
	position: relative;
	font-family: 'Manrope', sans-serif;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #1a2744;
	padding: 24px 40px 24px 0;
	line-height: 1.3;
}

.purity-faq-right summary::-webkit-details-marker {
	display: none;
}

.purity-faq-right summary span {
	flex: 1;
}

/* Replace the chevron with the FAQ-page +/- icon */
.purity-faq-chevron {
	display: none;
}

.purity-faq-right summary::before,
.purity-faq-right summary::after {
	content: '';
	position: absolute;
	top: 50%;
	background: #1a2744;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.purity-faq-right summary::before {
	right: 2px;
	width: 16px;
	height: 1.5px;
	transform: translateY(-50%);
}

.purity-faq-right summary::after {
	right: 9.25px;
	width: 1.5px;
	height: 16px;
	transform: translateY(-50%);
}

.purity-faq-right details[open] summary::after {
	transform: translateY(-50%) rotate(90deg);
	opacity: 0;
}

.purity-faq-right details p {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #666;
	line-height: 1.65;
	padding: 0 4px 24px;
	margin: 0;
	max-width: 640px;
	max-width: 90%;
}

/* FAQ Responsive */

/* Tablet */
@media (max-width: 1024px) {
	.purity-faq {
		padding: 80px 28px;
	}

	.purity-faq-inner {
		gap: 50px;
	}

	.purity-faq-left h2 {
		font-size: 44px;
	}
}

/* Mobile — stack left/right to single column */
@media (max-width: 768px) {
	.purity-faq {
		padding: 60px 20px;
	}

	.purity-faq-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.purity-faq-left {
		position: static;
		text-align: center;
		padding: 40px 0 0;
	}

	.purity-faq-left h2 {
		font-size: 38px;
		margin: 0;
	}

	.purity-faq-left h2 br {
		display: none;
	}

	.purity-faq-viewall {
		font-size: 15px;
		padding: 16px 44px;
		margin-top: 10px;
	}

	.purity-faq-right summary {
		font-size: 14px;
		padding: 18px 0;
		gap: 16px;
	}

	.purity-faq-right details p {
		font-size: 13px;
		max-width: 100%;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-faq {
		padding: 40px 16px;
	}

	.purity-faq-inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.purity-faq-left {
		position: static;
		text-align: center;
		padding: 36px 0 0;
	}

	.purity-faq-left h2 {
		font-size: 32px;
		margin: 0;
	}

	.purity-faq-left h2 br {
		display: none;
	}

	.purity-faq-viewall {
		font-size: 14px;
		padding: 14px 36px;
		border-radius: 10px;
		margin-top: 8px;
	}

	.purity-faq-right summary {
		font-size: 13px;
		padding: 16px 0;
		gap: 12px;
	}

	.purity-faq-right details p {
		font-size: 12px;
		line-height: 1.7;
		max-width: 100%;
		padding: 0 0 16px;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.purity-faq-chevron {
		width: 16px;
		height: 16px;
	}
}

/* ── Newsletter / Stay Informed ────────────────────── */

.purity-newsletter {
	background: #1a2744;
	padding: 120px 40px 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

.purity-newsletter-inner {
	max-width: 520px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.purity-newsletter h2 {
	font-family: 'Satoshi', sans-serif;
	color: #fff;
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 400;
	letter-spacing: -0.5px;
	margin: 0 0 18px;
	line-height: 1.05;
}

.purity-newsletter-sub {
	color: rgba(255,255,255,0.65);
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 40px;
}

.purity-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.purity-newsletter-input-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	padding: 22px 24px;
	transition: border-color 0.2s;
}

.purity-newsletter-input-wrap:focus-within {
	border-color: rgba(255, 255, 255, 0.35);
}

.purity-newsletter-form input[type="email"] {
	background: transparent;
	border: none;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	width: 100%;
	outline: none;
}

.purity-newsletter-form input[type="email"]::placeholder {
	color: #555;
}

.purity-newsletter-btn {
	background: #fff;
	color: #1a2744;
	border: none;
	border-radius: 12px;
	padding: 22px 26px;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.purity-newsletter-btn:hover {
	background: #ebebeb;
}

.purity-newsletter-disclaimer {
	color: rgba(255,255,255,0.3);
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	margin: 28px 0 0;
	letter-spacing: 0.2px;
}

/* Newsletter Responsive */

/* Tablet */
@media (max-width: 1024px) {
	.purity-newsletter {
		padding: 100px 28px 80px;
	}

	.purity-newsletter-inner {
		max-width: 480px;
	}

	.purity-newsletter-sub {
		font-size: 14px;
		margin: 0 0 32px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-newsletter {
		padding: 80px 20px 70px;
	}

	.purity-newsletter-inner {
		max-width: 440px;
	}

	.purity-newsletter h2 {
		font-size: 38px;
		margin: 0 0 14px;
	}

	.purity-newsletter-sub {
		font-size: 13px;
		line-height: 1.6;
		margin: 0 0 28px;
	}

	.purity-newsletter-input-wrap {
		padding: 18px 20px;
		border-radius: 10px;
	}

	.purity-newsletter-form input[type="email"] {
		font-size: 14px;
	}

	.purity-newsletter-btn {
		padding: 18px 22px;
		font-size: 14px;
		border-radius: 10px;
	}

	.purity-newsletter-disclaimer {
		font-size: 11px;
		margin: 22px 0 0;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-newsletter {
		padding: 60px 16px 50px;
	}

	.purity-newsletter-inner {
		max-width: 100%;
	}

	.purity-newsletter h2 {
		font-size: 30px;
		margin: 0 0 12px;
	}

	.purity-newsletter-sub {
		font-size: 12px;
		line-height: 1.6;
		margin: 0 0 24px;
	}

	.purity-newsletter-input-wrap {
		padding: 16px 16px;
		border-radius: 10px;
		gap: 10px;
	}

	.purity-newsletter-form input[type="email"] {
		font-size: 13px;
	}

	.purity-newsletter-btn {
		padding: 16px 20px;
		font-size: 13px;
		border-radius: 10px;
	}

	.purity-newsletter-disclaimer {
		font-size: 10px;
		margin: 18px 0 0;
	}
}

/* ── Footer ────────────────────────────────────────── */

.purity-footer {
	font-family: 'Manrope', sans-serif;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	padding: 72px 48px 0;
	color: #333;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

.purity-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr;
	gap: 48px;
	max-width: 1400px;
	margin: 0 auto 64px;
}

/* ── Footer Brand Column ───────────────────────────── */

.purity-footer-logo {
	font-family: 'Satoshi', sans-serif;
	color: #1a2744;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0 0 20px;
}

.purity-footer-tagline {
	font-size: 14px;
	color: #222;
	line-height: 1.65;
	margin: 0 0 20px;
	max-width: 320px;
}

.purity-footer-email a {
	color: #1a2744;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

.purity-footer-email a:hover {
	color: #2a3a5c;
}

/* ── Footer Social Icons ───────────────────────────── */

.purity-footer-social {
	gap: 14px;
	margin-top: 20px;
}

.purity-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #1a2744;
	transition: color 0.2s;
}

.purity-social-icon:hover {
	color: #2a3a5c;
}

/* ── Footer Nav — desktop: grid columns ────────────── */

.purity-footer-nav-mobile {
	grid-column: 2 / 5;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 48px;
}
.purity-footer-newsletter {
	grid-column: 5;
}
.purity-footer-acc-toggle {
	display: none;
}
.purity-footer-acc-panel {
	max-height: none;
}
.purity-footer-acc-panel a {
	display: block;
}
.purity-footer-accordion:first-child .purity-footer-acc-panel::before {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	content: 'Shop';
	display: block;
	margin-bottom: 14px;
}
.purity-footer-accordion:nth-child(2) .purity-footer-acc-panel::before {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	content: 'Information';
	display: block;
	margin-bottom: 14px;
}
.purity-footer-accordion:nth-child(3) .purity-footer-acc-panel::before {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	content: 'Support';
	display: block;
	margin-bottom: 14px;
}
.purity-footer-accordion:nth-child(4) .purity-footer-acc-panel::before {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	content: 'Account';
	display: block;
	margin-bottom: 14px;
}
/* Desktop: 3rd and 4th accordion share a column */
.purity-footer-accordion:nth-child(3) {
	grid-column: 3;
}
.purity-footer-accordion:nth-child(4) {
	grid-column: 3;
}

/* APA logo — inline (inside newsletter column) */
.purity-footer-apa-inline {
	display: flex;
	justify-content: flex-end;
	padding: 24px 0 0;
}
/* APA logo — standalone (hidden on desktop) */
.purity-footer-apa:not(.purity-footer-apa-inline) {
	display: none;
}
.purity-footer-apa-img {
	height: 24px;
	width: 100px;
	max-width: 100px;
	object-fit: contain;
	opacity: 0.9;
	filter: grayscale(1);
}

/* ── Footer Nav Column Headings ────────────────────── */

.purity-footer h4 {
	font-family: 'Satoshi', sans-serif;
	color: #1a2744;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	margin: 0 0 18px;
}

.purity-footer-heading-spaced {
	margin-top: 28px !important;
}

/* ── Footer Nav Links ──────────────────────────────── */

.purity-footer p {
	font-size: 14px;
	color: #222;
	line-height: 1.6;
	margin: 0 0 4px;
}

.purity-footer-grid a {
	color: #444;
	text-decoration: none;
	font-size: 14px;
	display: block;
	line-height: 2.1;
	transition: color 0.2s;
}

.purity-footer-grid a:hover {
	color: #1a2744;
}

/* ── Footer Newsletter ─────────────────────────────── */

.purity-footer-newsletter {
	max-width: 440px;
}

.purity-footer-newsletter-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.purity-footer-newsletter-head svg {
	color: #1a2744;
}

.purity-footer-newsletter-head h4 {
	margin: 0;
}

.purity-footer-newsletter-desc {
	font-size: 13px !important;
	color: #555 !important;
	line-height: 1.65 !important;
	margin: 0 0 18px !important;
	max-width: 400px;
}

.purity-footer-newsletter-form {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.purity-footer-newsletter-form input[type="email"] {
	flex: 1;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #222;
	background: #fff;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	padding: 12px 16px;
	outline: none;
	transition: border-color 0.2s;
}

.purity-footer-newsletter-form input[type="email"]:focus {
	border-color: #1a2744;
}

.purity-footer-newsletter-form input[type="email"]::placeholder {
	color: #999;
}

.purity-footer-newsletter-form button {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: #1a2744;
	border: none;
	border-radius: 4px;
	padding: 0 26px;
	cursor: pointer;
	transition: background 0.2s;
}

.purity-footer-newsletter-form button:hover {
	background: #0f1a30;
}

/* ── Footer Disclaimer ─────────────────────────────── */

.purity-footer-disclaimer {
	border-top: none;
	border-bottom: 1px solid #e0e0e0;
	padding: 28px 48px;
	background: #f3f3f3;
	margin-left: -48px;
	margin-right: -48px;
}

.purity-disclaimer-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
}

.purity-disclaimer-inner p {
	font-size: 12px;
	color: #666;
	line-height: 1.75;
	margin: 0;
	max-width: 1200px;
}

/* ── Footer Bottom Bar ─────────────────────────────── */

.purity-footer-bottom {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.purity-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	gap: 32px;
}

.purity-copyright {
	font-size: 13px;
	color: #555;
	margin: 0;
	flex-shrink: 0;
}

.purity-footer-legal {
	display: flex;
	gap: 40px;
	flex: 1;
	justify-content: center;
}

.purity-footer-legal a {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #444;
	text-decoration: none;
	transition: color 0.2s;
}

.purity-footer-legal a:hover {
	color: #1a2744;
}

.purity-back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #444;
	text-decoration: none;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 12px 22px;
	transition: border-color 0.2s, color 0.2s;
	line-height: 1;
	white-space: nowrap;
	flex-shrink: 0;
}

.purity-back-to-top:hover {
	border-color: #1a2744;
	color: #1a2744;
}

.purity-chevron-up {
	display: inline-block;
	vertical-align: middle;
	margin-top: -1px;
}

/* ── Footer Responsive ─────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-footer {
		padding: 56px 32px 0;
	}

	.purity-footer-grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 36px;
		margin-bottom: 48px;
	}

	.purity-footer-brand {
		grid-column: 1 / -1;
	}

	.purity-footer-nav-mobile {
		grid-column: 1 / 3;
	}

	.purity-footer-newsletter {
		grid-column: 3;
		max-width: 100%;
	}

	.purity-footer-logo {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.purity-footer-tagline {
		font-size: 13px;
	}

	.purity-footer h4 {
		font-size: 14px;
		margin-bottom: 14px;
	}

	.purity-footer-grid a {
		font-size: 13px;
	}

	.purity-footer-disclaimer {
		padding: 24px 32px;
		margin-left: -32px;
		margin-right: -32px;
	}

	.purity-disclaimer-inner p {
		font-size: 11px;
	}

	.purity-footer-bottom-inner {
		padding: 20px 0;
	}

	.purity-copyright {
		font-size: 12px;
	}

	.purity-footer-legal a {
		font-size: 12px;
	}

	.purity-footer-legal {
		gap: 28px;
	}

	.purity-back-to-top {
		font-size: 12px;
		padding: 10px 18px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-footer {
		padding: 36px 20px 0;
	}

	.purity-footer-grid {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 0;
	}

	.purity-footer-grid > * {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.purity-footer-brand,
	.purity-footer-nav-mobile,
	.purity-footer-newsletter {
		grid-column: 1 !important;
	}

	.purity-footer-apa-inline {
		justify-content: center;
	}

	.purity-footer-brand {
		grid-column: 1 / -1;
		text-align: left;
		margin-bottom: 0 !important;
		padding-bottom: 4px !important;
	}

	.purity-footer-tagline {
		max-width: 100%;
		font-size: 13px;
		color: #666;
	}

	.purity-footer-social {
		display: none !important;
	}

	/* Accordion nav on mobile */
	.purity-footer-nav-mobile {
		display: block;
	}

	.purity-footer-accordion {
		border-top: 1px solid #e5e5e5;
	}

	.purity-footer-accordion .purity-footer-acc-panel::before {
		display: none !important;
	}

	.purity-footer-acc-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 14px 0;
		background: none;
		border: none;
		cursor: pointer;
		font-family: 'Satoshi', sans-serif;
		font-size: 15px;
		font-weight: 700;
		color: #1a2744;
	}

	.purity-footer-acc-icon {
		font-size: 20px;
		font-weight: 400;
		color: #333;
		line-height: 1;
	}

	.purity-footer-acc-panel {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}

	.purity-footer-acc-panel a {
		display: block;
		font-family: 'Manrope', sans-serif;
		font-size: 14px;
		color: #444;
		text-decoration: none;
		padding: 5px 0;
	}

	.purity-footer-acc-panel a:last-child {
		padding-bottom: 12px;
	}

	.purity-footer-newsletter {
		grid-column: 1 / -1;
		max-width: 100%;
		padding: 14px 0 0 !important;
		margin: 0 !important;
		border-top: 1px solid #e5e5e5;
	}

	.purity-footer-newsletter-head {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: flex-start;
		gap: 10px;
		margin-bottom: 8px;
	}

	.purity-footer-newsletter-head svg {
		flex-shrink: 0;
	}

	.purity-footer-newsletter-head h4 {
		font-size: 15px;
		margin: 0 !important;
	}

	.purity-footer-newsletter-form {
		flex-direction: row;
	}

	.purity-footer-newsletter-form button {
		padding: 12px 20px;
	}

	.purity-footer-newsletter-desc {
		max-width: 100%;
		text-align: left !important;
		font-size: 13px !important;
		margin-bottom: 10px !important;
	}

	.purity-footer-disclaimer {
		padding: 20px;
		margin-left: -20px;
		margin-right: -20px;
	}

	.purity-disclaimer-inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.purity-disclaimer-inner p {
		font-size: 11px;
	}

	.purity-footer-bottom-inner {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		padding: 20px 0;
	}

	.purity-footer-legal {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.purity-footer-legal a {
		font-size: 12px;
	}

	.purity-copyright {
		font-size: 12px;
		order: 1;
	}

	.purity-back-to-top {
		font-size: 12px;
		padding: 10px 18px;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-footer {
		padding: 36px 14px 0;
	}

	.purity-footer-logo {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.purity-footer-tagline {
		font-size: 12px;
		margin-bottom: 14px;
	}

	.purity-footer-email a {
		font-size: 13px;
	}

	.purity-footer-acc-toggle {
		font-size: 14px;
	}

	.purity-footer-acc-panel a {
		font-size: 13px;
	}

	.purity-footer-apa-img {
		height: 20px;
		width: 80px;
		max-width: 80px;
	}

	.purity-footer-newsletter-head {
		justify-content: flex-start;
	}

	.purity-footer-newsletter-desc {
		font-size: 12px !important;
		text-align: left;
	}

	.purity-footer-newsletter-form input[type="email"] {
		font-size: 12px;
		padding: 11px 14px;
	}

	.purity-footer-newsletter-form button {
		font-size: 12px;
		padding: 11px 20px;
	}

	.purity-footer-disclaimer {
		padding: 16px 14px;
		margin-left: -14px;
		margin-right: -14px;
	}

	.purity-disclaimer-inner p {
		font-size: 10px;
		line-height: 1.65;
	}

	.purity-footer-bottom-inner {
		gap: 14px;
		padding: 18px 0;
	}

	.purity-footer-legal {
		gap: 12px;
	}

	.purity-footer-legal a {
		font-size: 11px;
	}

	.purity-copyright {
		font-size: 11px;
	}

	.purity-back-to-top {
		font-size: 11px;
		padding: 9px 16px;
	}
}

/* ── Cart Panel: Guest Auth ── */

.purity-cart-guest-section {
	padding: 20px 0 0;
	margin-top: 16px;
	border-top: 1px solid #eee;
}

.purity-cart-auth-option {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 2px 0;
	margin: 0;
	user-select: none;
}

.purity-cart-auth-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border: 2px solid #ccc;
	border-radius: 6px;
	background: #fff;
	transition: background 0.15s, border-color 0.15s;
	position: relative;
}

.purity-cart-auth-option--active .purity-cart-auth-check {
	background: #1a2744;
	border-color: #1a2744;
}

.purity-cart-auth-option--active .purity-cart-auth-check::after {
	content: '';
	display: block;
	width: 6px;
	height: 11px;
	border: solid #fff;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(45deg);
	position: absolute;
	top: 2px;
	left: 6px;
}

.purity-cart-auth-label {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
}

.purity-cart-auth-fields {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
	margin: 0;
}

.purity-cart-auth-fields--visible {
	max-height: 160px;
	opacity: 1;
	margin-top: 14px;
	margin-bottom: 18px;
}

.purity-cart-auth-error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 10px 14px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 14px;
}

.purity-cart-guest-field {
	margin-bottom: 10px;
}

.purity-cart-guest-field:last-child {
	margin-bottom: 0;
}

.purity-cart-guest-input {
	width: 100%;
	height: 48px;
	padding: 0 16px;
	border: 1.5px solid #ddd;
	border-radius: 12px;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #1a2744;
	background: #fff;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.purity-cart-guest-input::placeholder {
	color: #999;
	font-weight: 400;
}

.purity-cart-guest-input:focus {
	border-color: #1a2744;
}

.purity-cart-panel-checkout.purity-cart-checkout-disabled {
	background: #1a2744;
	color: #fff;
	opacity: 0.35;
	cursor: not-allowed;
}

/* ── Password Creation Modal ── */

.purity-pw-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
}

.purity-pw-modal-overlay.purity-pw-modal--visible {
	opacity: 1;
	visibility: visible;
}

.purity-pw-modal {
	background: #fff;
	border-radius: 20px;
	padding: 40px 36px;
	width: 440px;
	max-width: 92vw;
	position: relative;
	transform: scale(0.95) translateY(10px);
	transition: transform 0.25s;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.purity-pw-modal-overlay.purity-pw-modal--visible .purity-pw-modal {
	transform: scale(1) translateY(0);
}

.purity-pw-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
	padding: 4px;
	transition: color 0.2s;
}

.purity-pw-modal-close:hover {
	color: #1a2744;
}

.purity-pw-modal-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 8px;
}

.purity-pw-modal-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 24px;
}

.purity-pw-modal-subtitle strong {
	color: #1a2744;
}

.purity-pw-modal-error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 12px 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 16px;
}

.purity-pw-modal-field {
	margin-bottom: 16px;
}

.purity-pw-modal-field label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}

.purity-pw-modal-input-wrap {
	position: relative;
}

.purity-pw-modal-input-wrap input {
	width: 100%;
	height: 48px;
	padding: 0 48px 0 16px;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #1a2744;
	background: #fff;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.purity-pw-modal-input-wrap input::placeholder {
	color: #aaa;
}

.purity-pw-modal-input-wrap input:focus {
	border-color: #1a2744;
}

.purity-pw-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
}

.purity-pw-modal-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	background: #1a2744;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 14px;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 24px;
}

.purity-pw-modal-submit:hover {
	background: #2a3a5c;
}

@media (max-width: 480px) {
	.purity-pw-modal {
		padding: 32px 24px;
		border-radius: 16px;
	}
	.purity-pw-modal-title {
		font-size: 20px;
	}
	.purity-pw-modal-subtitle {
		font-size: 13px;
	}
}

/* ═══════════════════════════════════════════════
   PDP — Product Display Page
   ═══════════════════════════════════════════════ */

/* Hide WooCommerce default breadcrumbs on product pages */
.single-product .woocommerce-breadcrumb {
	display: none !important;
}
.purity-pdp {
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.purity-pdp-breadcrumbs {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #888;
	padding: 12px 40px;
}
.purity-pdp-breadcrumbs a {
	color: #888;
	text-decoration: none;
}
.purity-pdp-breadcrumbs a:hover {
	color: #1a2744;
}
.purity-pdp-breadcrumbs span {
	color: #333;
	font-weight: 600;
}

/* Breadcrumbs inside nav row on PDP */
.purity-header-nav {
	position: relative;
}
.purity-pdp-nav-crumbs {
	position: absolute;
	left: 48px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #888;
	white-space: nowrap;
}
.purity-pdp-nav-crumbs a {
	color: #888;
	text-decoration: none;
}
.purity-pdp-nav-crumbs a:hover {
	color: #1a2744;
}
.purity-pdp-nav-crumbs span {
	color: #333;
	font-weight: 600;
}
.purity-pdp-layout {
	display: flex;
	gap: 0;
	min-height: 80vh;
}

/* Left — Image */
.purity-pdp-image {
	width: 45%;
	flex-shrink: 0;
	background: #e8e8e8;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
.purity-pdp-image > img:first-child {
	max-width: 90%;
	max-height: 420px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.purity-pdp-trust-badge {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: 88%;
	max-width: 520px;
	height: auto;
	pointer-events: none;
}

/* Right — Details */
.purity-pdp-details {
	flex: 1;
	padding: 48px 56px 48px 56px;
}
.purity-pdp-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 8px;
}
.purity-pdp-title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 700;
	color: #1a2744;
	margin: 0;
	line-height: 1.1;
}
.purity-pdp-logo {
	width: 36px;
	height: auto;
	margin-top: 8px;
}
.purity-pdp-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-xl);
	color: #888;
	margin: 12px 0 20px;
	font-weight: 400;
}
.purity-pdp-description {
	margin-bottom: 32px;
}
.purity-pdp-description p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	color: #333;
	line-height: 1.7;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.purity-pdp-description.expanded p {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}
.purity-pdp-description.expanded .purity-pdp-readmore {
	display: none;
}
.purity-pdp-readmore {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #888;
	text-decoration: underline;
	cursor: pointer;
}
.purity-pdp-readmore:hover {
	color: #1a2744;
}

/* Variation picker */
.purity-pdp-variations {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
}
.purity-pdp-var {
	flex: 0 1 calc(50% - 6px);
	padding: 16px 12px;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.purity-pdp-var:hover {
	border-color: #999;
}
.purity-pdp-var.active {
	background: #1a2744;
	border-color: #1a2744;
	color: #fff;
}
.purity-pdp-var-label {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-lg);
	font-weight: 600;
}
.purity-pdp-var-price {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #888;
}
.purity-pdp-var.active .purity-pdp-var-price {
	color: #aaa;
}

/* Out-of-stock variant pill (PDP) */
.purity-pdp-var--oos {
	position: relative;
	cursor: not-allowed;
	border-color: #ddd;
	background: #f5f5f5;
	overflow: hidden;
}
.purity-pdp-var--oos:hover {
	border-color: #ddd;
}
.purity-pdp-var--oos::before,
.purity-pdp-var--oos::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 2px;
	background: #999;
	pointer-events: none;
	z-index: 1;
}
.purity-pdp-var--oos::before { transform: translate(-50%, -50%) rotate(25deg); }
.purity-pdp-var--oos::after  { transform: translate(-50%, -50%) rotate(-25deg); }

/* Out-of-stock variant pill (product cards / PLP / homepage) */
.purity-product-variant--oos {
	position: relative;
	cursor: not-allowed;
	background: #e8e8e8 !important;
	border-color: #ccc !important;
	color: #bbb !important;
	opacity: 0.7;
}
.purity-variant-x {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}
.purity-variant-x::before,
.purity-variant-x::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -2px;
	right: -2px;
	height: 1.5px;
	background: #333;
}
.purity-variant-x::before { transform: rotate(20deg); }
.purity-variant-x::after  { transform: rotate(-20deg); }
.purity-product-card:hover .purity-product-variant--oos {
	background: rgba(255,255,255,0.08) !important;
	border-color: rgba(255,255,255,0.15) !important;
	color: #666 !important;
}
.purity-product-card:hover .purity-variant-x::before,
.purity-product-card:hover .purity-variant-x::after {
	background: rgba(255,255,255,0.7);
}

/* Quantity */
.purity-pdp-quantity-section {
	margin-bottom: 28px;
}
.purity-pdp-qty-label {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	font-weight: 500;
	color: #333;
	display: block;
	margin-bottom: 12px;
}
.purity-pdp-qty {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid #ddd;
	border-radius: 50px;
	overflow: hidden;
}
.purity-pdp-qty-btn {
	width: 52px;
	height: 48px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-size: 20px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}
.purity-pdp-qty-btn:hover {
	background: #f5f5f5;
}
.purity-pdp-qty-btn img {
	width: 14px;
	height: auto;
}
.purity-pdp-qty-input {
	width: 48px;
	height: 48px;
	text-align: center;
	border: none;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-lg);
	font-weight: 600;
	color: #1a2744;
	background: transparent;
	-moz-appearance: textfield;
}
.purity-pdp-qty-input::-webkit-inner-spin-button,
.purity-pdp-qty-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Disclaimer */
/* Category 2 Peptide Notice */
.purity-pdp-cat2-notice {
	background: #f0f4ff;
	border-left: 3px solid #6b8cce;
	border-radius: 6px;
	padding: 16px 20px;
	margin-bottom: 16px;
}
.purity-pdp-cat2-notice p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #444;
	line-height: 1.65;
	margin: 0;
}

.purity-pdp-disclaimer {
	background: #fdf8e8;
	border-left: 3px solid #e6d36c;
	border-radius: 6px;
	padding: 18px 22px;
	margin-bottom: 28px;
}
.purity-pdp-disclaimer p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #555;
	line-height: 1.65;
	margin: 0;
}
.purity-pdp-disclaimer strong {
	color: #333;
}

/* Add to cart button */
.purity-pdp-add-to-cart {
	display: block;
	width: 100%;
	padding: 18px 24px;
	background: #1a2744;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-lg);
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	transition: background 0.2s;
	margin-bottom: 28px;
	letter-spacing: 0.3px;
}
.purity-pdp-add-to-cart:hover {
	background: #333;
}
.purity-pdp-soldout {
	background: #555;
	color: rgba(255,255,255,0.7);
	cursor: default;
	letter-spacing: 0.05em;
}
.purity-pdp-soldout:hover {
	background: #555;
}
.purity-pdp-add-to-cart:disabled {
	opacity: 0.6;
	cursor: wait;
}

/* Shipping info */
.purity-pdp-shipping {
	display: flex;
	gap: 24px;
	padding-top: 8px;
}
.purity-pdp-shipping-col {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	flex: 1;
}
.purity-pdp-shipping-col svg {
	flex-shrink: 0;
	margin-top: 2px;
}
.purity-pdp-shipping-col strong {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 600;
	color: #1a2744;
	display: block;
}
.purity-pdp-shipping-col span {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #777;
	line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════
   PDP Section 3: Recommended + Suggested  (rebuilt)
   - Uses overflow-x:scroll on a block-level track with
     inline-block cards so the scroll container works at
     EVERY viewport width without any parent-chain hacks.
   ══════════════════════════════════════════════════════════ */
.purity-pdp-recs {
	padding: 48px 0 64px;
	overflow: hidden;          /* hard clip — nothing escapes */
	max-width: 100vw;
	box-sizing: border-box;
}
.purity-pdp-recs-inner {
	display: flex;
	align-items: flex-start;
	gap: 0;
	padding: 0 0 0 48px;
}
.purity-pdp-recs-heading {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-xs);
	font-weight: 500;
	letter-spacing: 1.5px;
	color: #999;
	text-transform: uppercase;
	margin: 0 0 20px;
}

/* ── Left: Recommended card ── */
.purity-pdp-recs-left {
	flex-shrink: 0;
	width: 340px;
}
.purity-pdp-rec-card {
	background: #1a2744;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	gap: 16px;
	align-items: center;
	color: #fff;
}
.purity-pdp-rec-img {
	width: 80px;
	height: 100px;
	object-fit: contain;
	border-radius: 8px;
	flex-shrink: 0;
}
.purity-pdp-rec-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.purity-pdp-rec-name {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	font-weight: 600;
	text-decoration: none;
	color: inherit;
}
.purity-pdp-rec-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.purity-pdp-rec-price {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-lg);
	font-weight: 700;
}
.purity-pdp-rec-pill {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-xs);
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.3);
	color: rgba(255,255,255,0.8);
}
.purity-pdp-rec-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}
.purity-pdp-rec-atc {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	font-weight: 500;
	padding: 8px 18px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.3);
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
}
.purity-pdp-rec-atc:hover {
	background: rgba(255,255,255,0.1);
}
.purity-pdp-rec-atc.purity-in-cart {
	background: #1a2744;
	gap: 6px;
	flex: 1 1 100%;
	cursor: pointer;
}
.purity-pdp-rec-atc.purity-in-cart:hover {
	background: #222;
}
.purity-pdp-sug-card .purity-pdp-rec-atc.purity-in-cart {
	background: #1a2744;
	flex: 1 1 100%;
	gap: 6px;
}
.purity-pdp-rec-qty {
	display: flex;
	align-items: center;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 8px;
	overflow: hidden;
}
.purity-pdp-rec-qty-btn {
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: var(--text-lg);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.purity-pdp-rec-qty-btn:hover {
	background: rgba(255,255,255,0.1);
}
.purity-pdp-rec-qty-val {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 600;
	width: 24px;
	text-align: center;
}

/* ── Plus separator ── */
.purity-pdp-recs-plus {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-3xl);
	font-weight: 300;
	color: #ccc;
	padding: 60px 32px 0;
	flex-shrink: 0;
}

/* ── Right: Suggested carousel ── */
.purity-pdp-recs-right {
	flex: 1;
	min-width: 0;              /* key for desktop flex containment */
	overflow: hidden;           /* clip at this level too */
}
.purity-pdp-recs-right-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 48px;
}
.purity-pdp-recs-arrows {
	display: flex;
	gap: 8px;
	margin-top: -14px;
}
.purity-pdp-recs-arrow {
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: #fff;
	font-size: var(--text-xl);
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s;
}
.purity-pdp-recs-arrow:hover {
	border-color: #999;
}

/*  Track — block-level with inline-block children.
    overflow-x:auto creates the scroll context.
    white-space:nowrap keeps cards in a row.
    This pattern NEVER leaks to the page because the
    track's width is inherited from the parent (which is
    clipped by overflow:hidden). */
.purity-pdp-recs-track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 8px;
}
.purity-pdp-recs-track::-webkit-scrollbar {
	display: none;
}

/* ── Suggested card ── */
.purity-pdp-sug-card {
	display: flex;
	flex-shrink: 0;
	white-space: normal;
	width: 420px;
	background: #f2f2f2;
	border: none;
	border-radius: 20px;
	padding: 24px;
	gap: 18px;
	align-items: flex-start;
	margin-right: 16px;
	box-sizing: border-box;
}
.purity-pdp-sug-card:last-child {
	margin-right: 48px;         /* breathing room at end */
}
.purity-pdp-sug-img {
	width: 100px;
	height: 130px;
	object-fit: contain;
	flex-shrink: 0;
}
.purity-pdp-sug-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 0;
}
.purity-pdp-sug-name {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-xl);
	font-weight: 700;
	color: #1a2744;
	text-decoration: none;
}
.purity-pdp-sug-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}
.purity-pdp-sug-price {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-xl);
	font-weight: 700;
	color: #1a2744;
}
.purity-pdp-sug-card .purity-pdp-rec-pill {
	color: #777;
	border-color: #ccc;
	background: transparent;
	font-size: var(--text-sm);
	padding: 4px 14px;
	border-radius: 20px;
}
.purity-pdp-sug-card .purity-pdp-rec-actions {
	margin-top: 10px;
	gap: 10px;
	display: flex;
	align-items: stretch;
}
.purity-pdp-sug-card .purity-pdp-rec-atc {
	background: #1a2744;
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 14px 28px;
	font-size: var(--text-md);
	font-weight: 500;
	white-space: nowrap;
	cursor: pointer;
}
.purity-pdp-sug-card .purity-pdp-rec-atc:hover {
	background: #333;
}
.purity-pdp-sug-card .purity-pdp-rec-qty {
	border: 1.5px solid #222;
	border-radius: 12px;
	display: flex;
	align-items: center;
}
.purity-pdp-sug-card .purity-pdp-rec-qty-btn {
	color: #1a2744;
	width: 40px;
	height: 44px;
	font-size: var(--text-xl);
}
.purity-pdp-sug-card .purity-pdp-rec-qty-btn:hover {
	background: rgba(0,0,0,0.05);
}
.purity-pdp-sug-card .purity-pdp-rec-qty-val {
	color: #1a2744;
	font-size: var(--text-md);
	font-weight: 600;
	width: 24px;
}

/* ── PDP Recs Responsive ── */
@media (max-width: 900px) {
	.purity-pdp-recs-inner {
		flex-direction: column;
		padding: 0 20px;
		gap: 24px;
	}
	.purity-pdp-recs-left {
		width: 100%;
	}
	.purity-pdp-recs-plus {
		display: none;
	}
	.purity-pdp-recs-right {
		overflow: visible;
		width: 100%;
	}
	.purity-pdp-recs-track {
		max-width: calc(100vw - 40px);
		overflow-x: auto;
	}
	.purity-pdp-recs-right-header {
		padding-right: 0;
	}
	.purity-pdp-recs-arrows {
		margin-top: 0;
		flex-shrink: 0;
	}
	.purity-pdp-recs-arrow {
		width: 36px;
		height: 36px;
		font-size: 20px;
		border-color: #bbb;
	}
	.purity-pdp-sug-card {
		width: 180px;
		padding: 16px;
		gap: 0;
		border-radius: 14px;
		margin-right: 10px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.purity-pdp-sug-card:last-child {
		margin-right: 20px;
	}
	.purity-pdp-sug-img {
		width: 80px;
		height: 100px;
		margin-bottom: 12px;
	}
	.purity-pdp-sug-info {
		align-items: center;
		flex: 1;
		justify-content: space-between;
	}
	.purity-pdp-sug-name {
		font-size: var(--text-base);
	}
	.purity-pdp-sug-price {
		font-size: var(--text-md);
	}
	.purity-pdp-sug-meta {
		flex-direction: column;
		align-items: center;
		gap: 6px;
	}
	.purity-pdp-sug-card .purity-pdp-rec-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		margin-top: auto;
	}
	.purity-pdp-sug-card .purity-pdp-rec-atc {
		padding: 10px 14px;
		font-size: var(--text-sm);
		border-radius: 8px;
		text-align: center;
	}
	.purity-pdp-sug-card .purity-pdp-rec-qty {
		justify-content: center;
	}
	.purity-pdp-sug-card .purity-pdp-rec-qty-btn {
		width: 32px;
		height: 32px;
		font-size: var(--text-base);
	}
}
@media (max-width: 480px) {
	.purity-pdp-recs {
		padding: 32px 0 40px;
	}
	.purity-pdp-recs-inner {
		padding: 0 16px;
		gap: 20px;
	}
	.purity-pdp-recs-track {
		max-width: calc(100vw - 32px);
	}
	.purity-pdp-sug-card {
		width: 160px;
		padding: 12px;
	}
	.purity-pdp-sug-img {
		width: 70px;
		height: 90px;
		margin-bottom: 10px;
	}
	.purity-pdp-sug-name {
		font-size: var(--text-base);
	}
	.purity-pdp-sug-price {
		font-size: var(--text-base);
	}

	/* Cart icon button — Recommended card */
	.purity-pdp-rec-atc {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
		border-radius: 8px;
		font-size: 0;
		line-height: 0;
		padding: 0;
		overflow: hidden;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 16px 16px;
	}
	.purity-pdp-rec-atc.purity-in-cart {
		flex: 1;
		width: auto;
		height: 36px;
		font-size: var(--text-xs);
		line-height: 1;
		background-image: none;
		overflow: visible;
	}

	/* Cart icon button — Suggested cards */
	.purity-pdp-sug-card .purity-pdp-rec-actions {
		flex-direction: row;
		align-items: center;
		gap: 6px;
	}
	.purity-pdp-sug-card .purity-pdp-rec-atc {
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
		border-radius: 8px;
		font-size: 0;
		line-height: 0;
		padding: 0;
		overflow: hidden;
		background-color: #1a2744;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 16px 16px;
	}
	.purity-pdp-sug-card .purity-pdp-rec-atc.purity-in-cart {
		flex: 1;
		width: auto;
		height: 36px;
		font-size: var(--text-xs);
		line-height: 1;
		background-image: none;
		overflow: visible;
	}
	.purity-pdp-rec-qty,
	.purity-pdp-sug-card .purity-pdp-rec-qty {
		height: 36px;
	}
	.purity-pdp-rec-qty-btn {
		width: 28px;
		height: 36px;
		font-size: var(--text-base);
	}
	.purity-pdp-rec-qty-val {
		font-size: var(--text-sm);
	}
}

/* PDP Section 4: Handling & Storage */
.purity-pdp-handling {
	background: #1a2744;
	padding: 96px 0;
}
.purity-pdp-handling-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 64px;
	padding: 0 48px;
}
.purity-pdp-handling-title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 500;
	color: #fff;
	line-height: 1.15;
	margin: 0;
	flex-shrink: 0;
	min-width: 220px;
}
.purity-pdp-handling-cols {
	display: flex;
	gap: 48px;
	flex: 1;
}
.purity-pdp-handling-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 16px;
	padding: 28px 26px;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.purity-pdp-handling-col:hover {
	background: rgba(255,255,255,0.09);
	border-color: rgba(255,255,255,0.24);
	transform: translateY(-2px);
}
.purity-pdp-handling-icon-chip {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}
.purity-pdp-handling-icon {
	width: 26px;
	height: 26px;
	opacity: 0.9;
}
.purity-pdp-handling-temp {
	font-family: 'Satoshi', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.5px;
	line-height: 1;
	margin: 2px 0;
}
.purity-pdp-handling-col strong {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	font-weight: 600;
	color: #fff;
}
.purity-pdp-handling-col p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.62);
	line-height: 1.7;
	margin: 0;
}

/* PDP Section 4a: Research Tools */
.purity-pdp-research-tools {
	background: #f7f7f7;
	padding: 64px 0;
}
.purity-pdp-research-tools-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
	text-align: center;
}
.purity-pdp-research-tools-title {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-3xl);
	font-weight: 500;
	color: #1a2744;
	margin: 0 0 12px;
	letter-spacing: -0.3px;
}
.purity-pdp-research-tools-desc {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	color: #555;
	line-height: 1.6;
	margin: 0 0 28px;
}
.purity-pdp-research-tools-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 600;
	color: #fff;
	background: #1a2744;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 8px;
	transition: background 0.2s;
}
.purity-pdp-research-tools-btn:hover {
	background: #333;
}

/* PDP Section 4b: Lab Preparation (tabbed — materials + reconstitution) */
.purity-pdp-labprep {
	padding: 72px 0;
	background: #fafafa;
}
.purity-pdp-labprep-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}
.purity-pdp-labprep-tabs {
	display: flex;
	gap: 0;
	margin-bottom: 40px;
	border-bottom: 2px solid #e0e0e0;
}
.purity-pdp-labprep-tab {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-md);
	font-weight: 700;
	color: #888;
	background: none;
	border: none;
	padding: 14px 28px;
	cursor: pointer;
	position: relative;
	transition: color 0.2s;
	white-space: nowrap;
}
.purity-pdp-labprep-tab::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: transparent;
	transition: background 0.2s;
}
.purity-pdp-labprep-tab.active {
	color: #1a2744;
}
.purity-pdp-labprep-tab.active::after {
	background: #1a2744;
}
.purity-pdp-labprep-tab:hover {
	color: #444;
}
.purity-pdp-labprep-pane {
	display: none;
}
.purity-pdp-labprep-pane.active {
	display: block;
}

/* Materials pane */
.purity-pdp-materials-note {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #555;
	line-height: 1.7;
	margin: 0 0 28px;
}
.purity-pdp-materials-subtitle {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-xl);
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 16px;
}
.purity-pdp-materials-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
.purity-pdp-materials-list li {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #333;
	line-height: 1.7;
	padding: 10px 0;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
	padding-left: 20px;
}
.purity-pdp-materials-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 18px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1a2744;
}
.purity-pdp-materials-handling {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #888;
	line-height: 1.6;
	margin: 0;
	font-style: italic;
}

/* Reconstitution pane */
.purity-pdp-recon-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.purity-pdp-recon-col h3 {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-lg);
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 12px;
}
.purity-pdp-recon-col ul {
	list-style: disc;
	padding-left: 20px;
	margin: 0;
}
.purity-pdp-recon-col ul li {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #333;
	line-height: 1.7;
	margin-bottom: 4px;
}
.purity-pdp-recon-col p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #555;
	line-height: 1.7;
	margin: 0;
}
.purity-pdp-recon-steps-title {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-lg);
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 16px;
}
.purity-pdp-recon-steps {
	padding-left: 24px;
	margin: 0 0 24px;
}
.purity-pdp-recon-steps li {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #333;
	line-height: 1.7;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}
.purity-pdp-recon-safety {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #888;
	line-height: 1.6;
	margin: 0;
	font-style: italic;
}

/* PDP Section 5: Certificate of Analysis */
.purity-pdp-certs {
	padding: 88px 0;
	background: #fafafa;
}
.purity-pdp-certs-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
	text-align: center;
}
.purity-pdp-certs-title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 500;
	color: #1a2744;
	margin: 0 0 20px;
	line-height: 1.2;
}
.purity-pdp-certs-desc {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #777;
	line-height: 1.7;
	max-width: 720px;
	margin: 0 auto 48px;
}
.purity-pdp-certs-cards {
	display: flex;
	gap: 24px;
}
.purity-pdp-cert-card {
	flex: 1;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 22px 24px 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	text-align: left;
	position: relative;
	overflow: hidden;
}
.purity-pdp-cert-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	z-index: 1;
}
.purity-pdp-cert-label {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	font-weight: 600;
	color: #888;
	letter-spacing: 0.5px;
}
.purity-pdp-cert-text strong {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-xl);
	font-weight: 700;
	color: #1a2744;
}
.purity-pdp-cert-text p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #777;
	line-height: 1.6;
	margin: 0;
	max-width: 300px;
}
.purity-pdp-cert-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 600;
	color: #fff;
	background: #1a2744;
	text-decoration: none;
	margin-top: 16px;
	padding: 12px 24px;
	border-radius: 10px;
	box-shadow: 0 6px 16px rgba(26,39,68,0.16);
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.purity-pdp-cert-link:hover {
	color: #fff;
	background: #2a3a5c;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(26,39,68,0.22);
}
.purity-pdp-cert-graphic {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: flex-end;
}
.purity-pdp-cert-img {
	height: 132px;
	width: auto;
	opacity: 0.5;
}
.purity-pdp-cert-badge {
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: -4px;
	right: -4px;
}

/* ── PDP Section 6: Laboratory Research ── */
.purity-pdp-labresearch {
	background: #fafafa;
	padding: 88px 0 40px;
}
.purity-pdp-labresearch-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}
.purity-pdp-labresearch-title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 500;
	color: #1a2744;
	text-align: center;
	margin: 0 0 20px;
	line-height: 1.1;
}
.purity-pdp-labresearch-desc {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	color: #666;
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px;
	line-height: 1.7;
}
.purity-pdp-labresearch-panel {
	display: flex;
	border-radius: 16px;
	overflow: hidden;
	min-height: 560px;
}

/* Tabs (left sidebar) */
.purity-pdp-lr-tabs {
	display: flex;
	flex-direction: column;
	width: 360px;
	flex-shrink: 0;
}
.purity-pdp-lr-tab {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 32px;
	border: none;
	cursor: pointer;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	font-weight: 600;
	text-align: left;
	transition: all 0.25s ease;
	color: #222;
	flex: 1;
}
/* Gradient banding — each tab gets progressively darker */
.purity-pdp-lr-tab:nth-child(1) { background: #d4d4d4; }
.purity-pdp-lr-tab:nth-child(2) { background: #c8c8c8; }
.purity-pdp-lr-tab:nth-child(3) { background: #bcbcbc; }
.purity-pdp-lr-tab:nth-child(4) { background: #b0b0b0; }
.purity-pdp-lr-tab:nth-child(5) { background: #a4a4a4; }
.purity-pdp-lr-tab:first-child {
	border-radius: 16px 0 0 0;
}
.purity-pdp-lr-tab:last-child {
	border-radius: 0 0 0 16px;
}
.purity-pdp-lr-tab:hover {
	filter: brightness(0.92);
}
.purity-pdp-lr-tab.active {
	background: linear-gradient(135deg, #444 0%, #1a2744 100%);
	color: #fff;
}
.purity-pdp-lr-tab-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex-shrink: 0;
}
.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon {
	filter: brightness(10);
}
/* White-source icons: invert to dark when inactive, stay white when active */
.purity-pdp-lr-tab-icon.purity-icon-wh {
	filter: invert(1);
}
.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon.purity-icon-wh {
	filter: none;
}
/* Black-source icons: stay dark when inactive, invert to white when active */
.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon.purity-icon-blk {
	filter: invert(1);
}

/* Content (right panel) */
.purity-pdp-lr-content {
	flex: 1;
	background: linear-gradient(160deg, #333 0%, #1a2744 50%, #1a2744 100%);
	position: relative;
	border-radius: 0 16px 16px 0;
}
.purity-pdp-lr-pane {
	display: none;
	padding: 52px 64px;
	color: #ccc;
}
.purity-pdp-lr-pane.active {
	display: block;
}
.purity-pdp-lr-pane-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
.purity-pdp-lr-pane-header h3 {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-4xl);
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}
.purity-pdp-lr-bg-icon {
	width: 80px;
	height: 80px;
	object-fit: contain;
	opacity: 0.3;
	flex-shrink: 0;
}
.purity-pdp-lr-pane p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	line-height: 1.85;
	color: #999;
	margin: 0 0 24px;
}
.purity-pdp-lr-pane p:last-child {
	margin-bottom: 0;
}

/* Lab Research — Overall summary (persistent below tab panes) */
.purity-pdp-lr-overall {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.purity-pdp-lr-overall p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: rgba(255,255,255,0.7);
	line-height: 1.75;
	margin: 0;
}
.purity-pdp-lr-overall strong {
	color: #fff;
}

/* Lab Research — Common Peptides List (inside dark panel) */
.purity-pdp-lr-peptides {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.purity-pdp-lr-peptides h3 {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-lg);
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
}
.purity-pdp-lr-peptides > p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: rgba(255,255,255,0.55);
	margin: 0 0 16px;
}
.purity-pdp-lr-peptides-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.purity-pdp-lr-peptides-list span {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 600;
	color: #fff;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 20px;
	padding: 8px 18px;
}

/* ── PDP Section 7: References ── */
.purity-pdp-refs {
	background: #fff;
	padding: 32px 0 48px;
	border-top: none;
}
.purity-pdp-refs-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}
.purity-pdp-refs-title {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 3px;
	color: #999;
	margin: 0 0 20px;
}
.purity-pdp-refs-cards {
	display: flex;
	gap: 20px;
}
.purity-pdp-ref-card {
	flex: 1;
	background: #f5f5f5;
	border-left: 3px solid #333;
	border-radius: 6px;
	padding: 20px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none;
	transition: background 0.2s ease;
	min-height: 100px;
	position: relative;
}
.purity-pdp-ref-card:hover {
	background: #eee;
}
.purity-pdp-ref-card p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	line-height: 1.65;
	color: #444;
	margin: 0;
	padding-right: 32px;
}
.purity-pdp-ref-arrow {
	width: 14px;
	height: 14px;
	position: absolute;
	bottom: 18px;
	right: 18px;
	opacity: 0.45;
}

/* ── PDP Section 8: Research Context & Technical Specs ── */
.purity-pdp-rc {
	background: #f7f7f7;
	padding: 42px 0 88px;
	overflow: hidden;
}
.purity-pdp-rc-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}
.purity-pdp-rc-top {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin-bottom: 120px;
	position: relative;
}
.purity-pdp-rc-text {
	flex: 0 0 48%;
	max-width: 560px;
	padding-top: 8px;
	position: relative;
	z-index: 1;
}
.purity-pdp-rc-title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 500;
	color: #1a2744;
	margin: 0 0 20px;
	line-height: 1.1;
}
.purity-pdp-rc-desc {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	color: #555;
	line-height: 1.7;
	margin: 0 0 24px;
}
.purity-pdp-rc-badge {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 500;
	color: #555;
	background: rgba(0,0,0,0.06);
	padding: 14px 24px;
	border-radius: 6px;
}
.purity-pdp-rc-top::after {
	content: '';
	position: absolute;
	top: -40px;
	right: -20px;
	bottom: -20px;
	width: 55%;
	background: var(--rc-v-img) center / contain no-repeat;
	opacity: 0.25;
	pointer-events: none;
	z-index: 0;
}

/* Technical Specifications */
.purity-pdp-specs {
	margin-top: 0;
}
.purity-pdp-specs-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}
.purity-pdp-specs-v {
	width: 28px;
	height: 28px;
	object-fit: contain;
}
.purity-pdp-specs-heading span {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-md);
	font-weight: 700;
	letter-spacing: 4px;
	color: #1a2744;
}
.purity-pdp-specs-table {
	width: 100%;
	border-collapse: collapse;
}
.purity-pdp-specs-table tr {
	border-bottom: 1px solid #eaeaea;
}
.purity-pdp-specs-table tr:nth-child(odd) {
	background: #efefef;
}
.purity-pdp-specs-table tr:nth-child(even) {
	background: transparent;
}
.purity-pdp-specs-table td {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #444;
	padding: 14px 24px;
	vertical-align: middle;
}
.purity-pdp-specs-table td:first-child {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	color: #222;
	width: 320px;
}
.purity-pdp-specs-table td sub {
	font-size: var(--text-xs);
}

/* ── PDP Section 9: FAQ & Disclaimer ── */
.purity-pdp-faq {
	background: #fff;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 40px;
	overflow: hidden;
}
.purity-pdp-faq-inner {
	display: grid;
	grid-template-columns: 30% 1fr;
	gap: 80px;
	align-items: start;
}
.purity-pdp-faq-left {
	position: sticky;
	top: 40px;
}
.purity-pdp-faq-left h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.5px;
	margin: 0 0 28px;
	color: #1a2744;
}
.purity-pdp-faq-viewall {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	font-weight: 400;
	color: #1a2744;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 16px 24px;
	transition: border-color 0.2s;
	white-space: nowrap;
	margin-top: 28px;
}
.purity-pdp-faq-viewall:hover {
	border-color: #999;
	color: #1a2744;
}
.purity-pdp-faq-viewall svg {
	opacity: 0.5;
	transition: transform 0.2s;
}
.purity-pdp-faq-viewall:hover svg {
	transform: translateX(3px);
}
.purity-pdp-faq-right {
	grid-column: 2;
	grid-row: 1 / 3;
}
.purity-pdp-faq-right details {
	border-bottom: 1px solid #e5e5e5;
}
.purity-pdp-faq-right details:first-child {
	border-top: 1px solid #e5e5e5;
}
.purity-pdp-faq-right summary {
	font-family: 'Satoshi', sans-serif;
	font-size: var(--text-md);
	font-weight: 500;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #1a2744;
	padding: 22px 0;
	gap: 20px;
}
.purity-pdp-faq-right summary::-webkit-details-marker {
	display: none;
}
.purity-pdp-faq-right summary span {
	flex: 1;
}
.purity-pdp-faq-right details[open] summary {
	font-weight: 600;
}
.purity-pdp-faq-right summary::after {
	content: none;
}
.purity-pdp-faq-right details p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-base);
	color: #666;
	line-height: 1.75;
	padding: 0 0 22px;
	margin: 0;
}
.purity-pdp-faq-disclaimer {
	background: #fef9e7;
	border-radius: 8px;
	padding: 24px 32px;
	margin-top: 60px;
}
.purity-pdp-faq-disclaimer p {
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	color: #555;
	line-height: 1.7;
	margin: 0;
}
.purity-pdp-faq-disclaimer strong {
	color: #222;
}

/* ── PDP Responsive ── */
@media (max-width: 900px) {
	.purity-pdp-layout {
		flex-direction: column;
	}
	.purity-pdp-image {
		width: 100%;
		height: auto;
		max-height: none;
		padding: 20px 0 0;
	}
	.purity-pdp-image > img:first-child {
		object-fit: contain;
		max-height: 280px;
		width: auto;
		margin: 0 auto;
		display: block;
	}
	.purity-pdp-trust-badge {
		position: relative;
		margin-top: 12px;
	}
	.purity-pdp-details {
		padding: 32px 24px;
	}
	.purity-pdp-variations {
		flex-wrap: wrap;
	}
	.purity-pdp-var {
		flex: 1 1 calc(50% - 6px);
	}
	.purity-pdp-shipping {
		flex-direction: column;
		gap: 16px;
	}
.purity-pdp-handling-inner {
		flex-direction: column;
		gap: 32px;
		padding: 0 24px;
	}
	.purity-pdp-handling-cols {
		flex-direction: column;
		gap: 32px;
	}
	.purity-pdp-labprep {
		padding: 48px 0;
	}
	.purity-pdp-labprep-inner {
		padding: 0 24px;
	}
	.purity-pdp-labprep-tab {
		font-size: var(--text-base);
		padding: 12px 16px;
	}
	.purity-pdp-recon-top {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.purity-pdp-certs {
		padding: 56px 0;
	}
	.purity-pdp-certs-cards {
		flex-direction: column;
		gap: 16px;
	}
	.purity-pdp-certs-inner {
		padding: 0 24px;
	}
	.purity-pdp-cert-card {
		padding: 20px;
		min-height: 0;
		border-radius: 12px;
	}
	.purity-pdp-cert-text p {
		max-width: 100%;
	}
	.purity-pdp-cert-text strong {
		font-size: var(--text-md);
	}
	.purity-pdp-cert-img {
		height: 35px;
	}
	.purity-pdp-cert-badge {
		width: 18px;
		height: 18px;
	}
	.purity-pdp-certs-desc {
		margin-bottom: 32px;
	}
	.purity-pdp-labresearch {
		padding: 56px 0 32px;
	}
	.purity-pdp-labresearch-inner {
		padding: 0 24px;
	}
	.purity-pdp-labresearch-desc {
		font-size: var(--text-base);
		margin-bottom: 32px;
	}
	.purity-pdp-labresearch-panel {
		flex-direction: column;
		min-height: auto;
		border-radius: 16px;
		overflow: hidden;
	}
	/* Tabs: full-width accordion column (JS moves content after active tab) */
	.purity-pdp-lr-tabs {
		width: 100%;
		flex-direction: column;
		overflow-x: visible;
	}
	.purity-pdp-lr-tabs::-webkit-scrollbar {
		display: none;
	}
	.purity-pdp-lr-tab {
		white-space: normal;
		padding: 18px 24px;
		font-size: var(--text-md);
		gap: 14px;
		justify-content: flex-start;
		flex: none;
		background: #fff !important;
		color: #1a2744;
		border-bottom: 1px solid #eee;
		border-radius: 0 !important;
	}
	.purity-pdp-lr-tab:first-child {
		border-radius: 16px 16px 0 0 !important;
	}
	.purity-pdp-lr-tab:last-child {
		border-bottom: none;
		border-radius: 0 0 16px 16px !important;
	}
	.purity-pdp-lr-tab-icon {
		width: 22px;
		height: 22px;
		filter: none !important;
	}
	.purity-pdp-lr-tab-icon.purity-icon-wh {
		filter: invert(1) !important;
	}
	/* Active tab: dark bg, stays in place */
	.purity-pdp-lr-tab.active {
		background: linear-gradient(135deg, #444 0%, #1a2744 100%) !important;
		color: #fff;
		border-bottom: none;
		border-radius: 0 !important;
		padding: 20px 24px;
		font-size: var(--text-md);
		font-weight: 700;
	}
	/* When active tab is the first child of its parent, round top */
	.purity-pdp-lr-tab.active:first-child {
		border-radius: 16px 16px 0 0 !important;
	}
	.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon {
		filter: brightness(10) !important;
	}
	.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon.purity-icon-wh {
		filter: none !important;
	}
	.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon.purity-icon-blk {
		filter: invert(1) !important;
	}
	/* Content panel: sits directly under active tab in accordion */
	.purity-pdp-lr-content {
		flex: none;
		width: 100%;
		border-radius: 0;
		position: static;
	}
	/* When content is the last child (active tab is last), round bottom */
	.purity-pdp-lr-tabs .purity-pdp-lr-content:last-child {
		border-radius: 0 0 16px 16px;
	}
	.purity-pdp-lr-pane {
		padding: 28px 24px;
	}
	.purity-pdp-lr-pane-header {
		margin-bottom: 24px;
	}
	.purity-pdp-lr-pane-header h3 {
		font-size: var(--text-2xl);
	}
	.purity-pdp-lr-bg-icon {
		width: 56px;
		height: 56px;
	}
	.purity-pdp-lr-pane p {
		font-size: var(--text-base);
		line-height: 1.75;
		margin-bottom: 18px;
	}
	.purity-pdp-refs {
		padding: 24px 0 36px;
	}
	.purity-pdp-refs-inner {
		padding: 0 24px;
	}
	.purity-pdp-refs-cards {
		flex-direction: column;
		gap: 12px;
	}
	.purity-pdp-ref-card {
		min-height: 0;
		padding: 16px;
	}
	.purity-pdp-ref-card p {
		font-size: var(--text-sm);
		padding-right: 28px;
	}
	.purity-pdp-rc {
		padding: 32px 0 56px;
	}
	.purity-pdp-rc-inner {
		padding: 0 24px;
	}
	.purity-pdp-rc-top {
		flex-direction: column;
		margin-bottom: 48px;
	}
	.purity-pdp-rc-text {
		max-width: 100%;
		flex: none;
	}
	.purity-pdp-rc-top::after {
		width: 70%;
		right: -10%;
		opacity: 0.2;
	}
	.purity-pdp-rc-badge {
		font-size: var(--text-sm);
	}
	.purity-pdp-specs-heading {
		gap: 10px;
		margin-bottom: 20px;
	}
	.purity-pdp-specs-heading span {
		font-size: var(--text-base);
		letter-spacing: 3px;
	}
	.purity-pdp-specs-table td {
		font-size: var(--text-base);
		padding: 12px 16px;
	}
	.purity-pdp-specs-table td:first-child {
		width: auto;
	}
	.purity-pdp-faq {
		padding: 56px 24px 48px;
	}
	.purity-pdp-faq-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.purity-pdp-faq-left {
		position: static;
		text-align: center;
	}
	.purity-pdp-faq-left h2 {
		margin: 0;
		font-size: var(--text-3xl);
	}
	.purity-pdp-faq-left h2 br {
		display: none;
	}
	.purity-pdp-faq-viewall {
		padding: 10px 20px;
		font-size: var(--text-base);
	}
	.purity-pdp-faq-right {
		grid-column: 1;
		grid-row: auto;
	}
	.purity-pdp-faq-right summary {
		padding: 16px 0;
		gap: 16px;
		font-size: var(--text-base);
	}
	.purity-pdp-faq-right details p {
		font-size: var(--text-base);
	}
	.purity-pdp-faq-disclaimer {
		padding: 20px 24px;
	}
	.purity-pdp-faq-disclaimer p {
		font-size: var(--text-xs);
	}
}
@media (max-width: 480px) {
.purity-pdp-certs {
		padding: 40px 0;
	}
	.purity-pdp-certs-inner {
		padding: 0 16px;
	}
	.purity-pdp-cert-card {
		padding: 16px;
		flex-direction: row;
		align-items: center;
	}
	.purity-pdp-cert-img {
		height: 25px;
	}
	.purity-pdp-cert-badge {
		width: 14px;
		height: 14px;
	}
	.purity-pdp-cert-text strong {
		font-size: var(--text-base);
	}
	.purity-pdp-cert-text p {
		font-size: var(--text-xs);
		line-height: 1.5;
		margin: 0;
	}
	.purity-pdp-cert-label {
		font-size: var(--text-2xs);
	}
	.purity-pdp-cert-link {
		font-size: var(--text-sm);
		margin-top: 4px;
	}
	.purity-pdp-certs-desc {
		font-size: var(--text-base);
		margin-bottom: 24px;
	}
	.purity-pdp-labresearch {
		padding: 40px 0 24px;
	}
	.purity-pdp-labresearch-inner {
		padding: 0 16px;
	}
	.purity-pdp-labresearch-desc {
		font-size: var(--text-base);
		margin-bottom: 24px;
	}
	.purity-pdp-lr-tab {
		padding: 16px 20px;
		font-size: var(--text-base);
	}
	.purity-pdp-lr-tab.active {
		padding: 18px 20px;
		font-size: var(--text-base);
	}
	.purity-pdp-lr-tab-icon {
		width: 20px;
		height: 20px;
	}
	.purity-pdp-lr-pane {
		padding: 24px 18px;
	}
	.purity-pdp-lr-pane-header h3 {
		font-size: var(--text-xl);
	}
	.purity-pdp-lr-bg-icon {
		width: 40px;
		height: 40px;
	}
	.purity-pdp-lr-pane p {
		font-size: var(--text-base);
		line-height: 1.7;
		margin-bottom: 14px;
	}
	.purity-pdp-refs {
		padding: 20px 0 28px;
	}
	.purity-pdp-refs-inner {
		padding: 0 16px;
	}
	.purity-pdp-refs-title {
		font-size: var(--text-2xs);
		letter-spacing: 2px;
		margin-bottom: 14px;
	}
	.purity-pdp-ref-card {
		padding: 14px;
	}
	.purity-pdp-ref-card p {
		font-size: var(--text-xs);
		line-height: 1.6;
	}
	.purity-pdp-ref-arrow {
		width: 12px;
		height: 12px;
		bottom: 14px;
		right: 14px;
	}
	.purity-pdp-rc {
		padding: 24px 0 40px;
	}
	.purity-pdp-rc-inner {
		padding: 0 16px;
	}
	.purity-pdp-rc-top {
		margin-bottom: 32px;
	}
	.purity-pdp-rc-top::after {
		width: 80%;
		opacity: 0.18;
	}
	.purity-pdp-rc-desc {
		font-size: var(--text-base);
	}
	.purity-pdp-rc-badge {
		font-size: var(--text-xs);
		padding: 6px 12px;
	}
	.purity-pdp-specs-heading span {
		font-size: var(--text-xs);
		letter-spacing: 2px;
	}
	.purity-pdp-specs-v {
		width: 22px;
		height: 22px;
	}
	.purity-pdp-specs-table td {
		font-size: var(--text-sm);
		padding: 10px 12px;
	}
	.purity-pdp-faq {
		padding: 40px 16px 36px;
	}
	.purity-pdp-faq-inner {
		gap: 16px;
	}
	.purity-pdp-faq-left h2 {
		font-size: var(--text-2xl);
	}
	.purity-pdp-faq-left {
		text-align: center;
	}
	.purity-pdp-faq-right summary {
		padding: 14px 0;
		gap: 12px;
		font-size: var(--text-base);
	}
	.purity-pdp-faq-right details p {
		font-size: var(--text-sm);
		line-height: 1.65;
	}
	.purity-pdp-faq-disclaimer {
		padding: 16px;
		border-radius: 6px;
	}
	.purity-pdp-faq-disclaimer p {
		font-size: var(--text-xs);
		line-height: 1.6;
	}
}

/* ==========================================================================
   PLP / SHOP PAGE
   ========================================================================== */

/* ── PLP Hero ── */
.purity-plp-hero {
	background: #f0f0f0;
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.purity-plp-hero-inner {
	position: relative;
	z-index: 1;
	padding: 0 64px 56px;
}
.purity-plp-hero-inner h1 {
	font-family: 'Satoshi', sans-serif;
	font-size: 48px;
	font-weight: 500;
	color: #1a2744;
	letter-spacing: -0.02em;
	margin: 0;
	line-height: 1.1;
}
.purity-plp-hero-img {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
	mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
.purity-plp-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.18;
	filter: grayscale(1);
}

/* ── PLP Filters ── */
.purity-plp-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px 80px;
}
.purity-plp-filters {
	display: flex;
	align-items: flex-end;
	gap: 32px;
	padding: 40px 0 36px;
	flex-wrap: wrap;
}
.purity-plp-filters-left {
	display: flex;
	align-items: flex-end;
	gap: 32px;
}
.purity-plp-filters-label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #1a2744;
	margin-bottom: 12px;
}
.purity-plp-filter-group {
	display: flex;
	gap: 32px;
}
.purity-plp-filters-right {
	margin-left: auto;
}
.purity-plp-select-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
.purity-plp-select-wrap select {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 8px 28px 8px 0;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #888;
	outline: none;
	cursor: pointer;
	min-width: 180px;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 4px center;
}
.purity-plp-sort-wrap select {
	min-width: 140px;
	text-align: left;
}

/* ── PLP Product Grid ── */
.purity-plp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.purity-plp-grid .purity-product-card {
	text-decoration: none;
}
.purity-plp-empty {
	grid-column: 1 / -1;
	text-align: center;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: #888;
	padding: 60px 0;
}

/* ── PLP Add to Cart + Qty (dark navy button) ── */
.purity-plp-grid .purity-add-to-cart,
.purity-plp-category-section .purity-add-to-cart {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: #1a2744;
	border: none;
	border-radius: 14px;
	padding: 0;
	height: 54px;
	flex: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.2px;
}
.purity-plp-grid .purity-add-to-cart:hover,
.purity-plp-category-section .purity-add-to-cart:hover {
	background: #2a3a5c;
	color: #fff;
}
.purity-plp-grid .purity-product-actions,
.purity-plp-category-section .purity-product-actions {
	display: flex;
	align-items: stretch;
	gap: 10px;
}
.purity-qty {
	display: flex;
	align-items: center;
	border: 1.5px solid #ddd;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	height: 54px;
	flex-shrink: 0;
}
.purity-qty button {
	background: #fff;
	border: none;
	width: 42px;
	height: 100%;
	font-size: 18px;
	cursor: pointer;
	color: #1a2744;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	transition: background 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.purity-qty button:hover {
	background: #f5f5f5;
}
.purity-qty span {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 0 4px;
	min-width: 22px;
	text-align: center;
	color: #1a2744;
}

/* ── PLP Category Sections ── */
.purity-plp-category-section {
	margin-top: 80px;
}
.purity-plp-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}
.purity-plp-category-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 48px;
	font-weight: 500;
	color: #1a2744;
	margin: 0;
	line-height: 1.1;
}
.purity-plp-category-viewall {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #1a2744;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 12px 28px;
	transition: background 0.2s, border-color 0.2s;
}
.purity-plp-category-viewall:hover {
	background: #f5f5f5;
	border-color: #999;
}
.purity-plp-category-alt .purity-plp-grid {
	grid-template-columns: repeat(2, 1fr);
}

/* ── PLP Load More ── */
.purity-plp-loadmore-wrap {
	display: flex;
	justify-content: center;
	padding: 48px 0 0;
}
.purity-plp-loadmore {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #1a2744;
	background: transparent;
	border: 1.5px solid #ccc;
	border-radius: 12px;
	padding: 14px 48px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.purity-plp-loadmore:hover {
	background: #f5f5f5;
	border-color: #999;
}

/* ── PLP Responsive: Tablet ── */
@media (max-width: 1024px) {
	.purity-plp-hero {
		min-height: 280px;
	}
	.purity-plp-hero-inner {
		padding: 0 40px 48px;
	}
	.purity-plp-hero-inner h1 {
		font-size: 42px;
	}
	.purity-plp-hero-img {
		width: 100%;
		right: 0;
	}
	.purity-plp-hero-img img {
		opacity: 0.35;
	}
	.purity-plp-section {
		padding: 0 32px 60px;
	}
	.purity-plp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.purity-plp-filters {
		gap: 24px;
	}
	.purity-plp-filter-group {
		gap: 24px;
	}
	.purity-plp-select-wrap select {
		min-width: 160px;
	}
	.purity-plp-category-title {
		font-size: 38px;
	}
	.purity-plp-category-alt .purity-plp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── PLP Responsive: Mobile ── */
@media (max-width: 768px) {
	.purity-plp-hero {
		min-height: 200px;
	}
	.purity-plp-hero-inner {
		padding: 0 24px 36px;
	}
	.purity-plp-hero-inner h1 {
		font-size: 34px;
	}
	.purity-plp-hero-img img {
		opacity: 0.4;
	}
	.purity-plp-section {
		padding: 0 20px 48px;
	}
	.purity-plp-filters {
		gap: 0;
		padding: 28px 0 24px;
		flex-wrap: nowrap;
	}
	.purity-plp-filters-label {
		display: none;
	}
	.purity-plp-filters-left {
		flex: 0 0 80%;
		gap: 0;
	}
	.purity-plp-filter-group {
		flex: 1;
		gap: 0;
	}
	.purity-plp-filters-right {
		margin-left: 0;
		flex: 0 0 20%;
	}
	.purity-plp-select-wrap {
		flex: 1;
	}
	.purity-plp-select-wrap svg {
		display: none;
	}
	.purity-plp-select-wrap select {
		min-width: 0;
		width: 100%;
		font-size: 13px;
	}
	.purity-plp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.purity-plp-grid .purity-product-actions,
	.purity-plp-category-section .purity-product-actions {
		flex-direction: row;
		gap: 6px;
	}
	.purity-plp-grid .purity-add-to-cart,
	.purity-plp-category-section .purity-add-to-cart {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		border-radius: 10px;
		font-size: 0;
		line-height: 0;
		padding: 0;
		overflow: hidden;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 18px 18px;
	}
	.purity-plp-grid .purity-add-to-cart.in-cart,
	.purity-plp-category-section .purity-add-to-cart.in-cart {
		flex: 1;
		width: auto;
		height: 40px;
		font-size: 13px;
		line-height: 1;
		background-image: none;
		overflow: visible;
	}
	.purity-qty {
		height: 40px;
		border-radius: 10px;
		flex: 1;
	}
	.purity-qty button {
		width: 32px;
	}
	.purity-qty span {
		font-size: 13px;
	}
	.purity-product-body h3 {
		font-size: 14px !important;
	}
	.purity-product-price {
		font-size: 14px !important;
	}
	.purity-product-variant {
		font-size: 11px !important;
	}
	.purity-plp-category-section {
		margin-top: 56px;
	}
	.purity-plp-category-header {
		margin-bottom: 20px;
	}
	.purity-plp-category-title {
		font-size: 28px;
	}
	.purity-plp-category-viewall {
		font-size: 13px;
		padding: 10px 20px;
	}
	.purity-plp-category-alt .purity-plp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── PLP Responsive: Small Mobile ── */
@media (max-width: 480px) {
	.purity-plp-hero {
		min-height: 160px;
	}
	.purity-plp-hero-inner {
		padding: 0 16px 28px;
	}
	.purity-plp-hero-inner h1 {
		font-size: 28px;
	}
	.purity-plp-section {
		padding: 0 14px 36px;
	}
	.purity-plp-filters {
		padding: 20px 0 20px;
	}
	.purity-plp-select-wrap select {
		font-size: 12px;
		padding: 6px 22px 6px 0;
	}
	.purity-plp-category-section {
		margin-top: 40px;
	}
	.purity-plp-category-title {
		font-size: 24px;
	}
	.purity-plp-category-viewall {
		font-size: 12px;
		padding: 8px 16px;
	}
}

/* ==========================================================================
   Cart Side Panel
   ========================================================================== */

/* Overlay */
.purity-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.purity-cart-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* Panel */
.purity-cart-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: 420px;
	max-width: 90vw;
	height: 100%;
	background: #fff;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}
.purity-cart-panel.open {
	transform: translateX(0);
}

/* Header */
.purity-cart-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}
.purity-cart-panel-header h3 {
	font-family: 'Satoshi', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #1a2744;
	margin: 0;
	letter-spacing: 0.5px;
}
.purity-cart-panel-close {
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
	padding: 4px;
	transition: color 0.2s;
}
.purity-cart-panel-close:hover {
	color: #1a2744;
}

/* Shipping progress bar */
.purity-cart-panel-shipping-bar {
	padding: 16px 28px;
	background: #fef9e7;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}
.purity-cart-panel-shipping-bar p {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #1a2744;
	margin: 0 0 10px;
	line-height: 1.5;
}
.purity-cart-panel-shipping-bar p strong {
	font-weight: 700;
}
.purity-cart-shipping-progress {
	height: 6px;
	background: #e8e3d0;
	border-radius: 3px;
	overflow: hidden;
}
.purity-cart-shipping-progress-fill {
	height: 100%;
	background: #c8a951;
	border-radius: 3px;
	transition: width 0.4s ease;
}

/* Body / items */
.purity-cart-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 28px;
}
.purity-cart-panel-empty {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: #999;
	text-align: center;
	padding: 60px 0;
}

/* Each cart item */
.purity-cart-panel-item {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid #f0f0f0;
	align-items: flex-start;
}
.purity-cart-panel-item:last-child {
	border-bottom: none;
}
.purity-cart-panel-item-img {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	background: #f5f5f5;
	overflow: hidden;
	flex-shrink: 0;
}
.purity-cart-panel-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.purity-cart-panel-item-info {
	flex: 1;
	min-width: 0;
}
.purity-cart-panel-item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 4px;
}
.purity-cart-panel-item-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	margin: 0;
	text-decoration: none;
	display: block;
}
.purity-cart-panel-item-name:hover {
	color: #2a3a5c;
}
.purity-cart-panel-item-line-price {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	flex-shrink: 0;
}
.purity-cart-panel-item-price {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #888;
	display: block;
	margin-bottom: 10px;
}
.purity-cart-panel-item-qty {
	display: flex;
	align-items: center;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	height: 34px;
	width: fit-content;
}
.purity-cart-panel-item-qty button {
	background: #fff;
	border: none;
	width: 34px;
	height: 100%;
	font-size: 16px;
	cursor: pointer;
	color: #1a2744;
	font-family: 'Manrope', sans-serif;
	transition: background 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.purity-cart-panel-item-qty button:hover {
	background: #f5f5f5;
}
.purity-cart-panel-item-qty span {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
	padding: 0 6px;
	min-width: 24px;
	text-align: center;
}
.purity-cart-panel-item-remove {
	background: none;
	border: none;
	cursor: pointer;
	color: #ccc;
	padding: 4px;
	flex-shrink: 0;
	transition: color 0.2s;
}
.purity-cart-panel-item-remove:hover {
	color: #e53e3e;
}

/* Footer */
.purity-cart-panel-footer {
	border-top: 1px solid #eee;
	padding: 20px 28px 24px;
	flex-shrink: 0;
}
.purity-cart-panel-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.purity-cart-panel-row span:first-child {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #888;
}
.purity-cart-panel-row span:last-child {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
}
.purity-cart-panel-total-row {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #eee;
	margin-bottom: 14px;
}
.purity-cart-panel-total-row span:first-child {
	font-family: 'Satoshi', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1a2744;
}
.purity-cart-panel-total-row span:last-child {
	font-family: 'Satoshi', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #1a2744;
}
.purity-cart-panel-note {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #888;
	line-height: 1.6;
	margin: 0 0 14px;
}
.purity-cart-panel-sameday {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #f7f7f7;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 20px;
}
.purity-cart-panel-sameday svg {
	flex-shrink: 0;
	margin-top: 1px;
}
.purity-cart-panel-sameday p {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #1a2744;
	line-height: 1.5;
	margin: 0;
}
.purity-cart-panel-checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	background: #1a2744;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
	margin-bottom: 12px;
}
.purity-cart-panel-checkout:hover {
	background: #2a3a5c;
	color: #fff;
}
.purity-cart-panel-continue {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 44px;
	background: transparent;
	color: #1a2744;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #ddd;
	border-radius: 14px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.purity-cart-panel-continue:hover {
	background: #f5f5f5;
	border-color: #bbb;
}

/* ==========================================================================
   FAQ Page (/faqs)
   ========================================================================== */
.purity-faqpage {
	padding: 0 40px 100px;
}
.purity-faqpage-hero {
	max-width: 1200px;
	margin: 0 auto 48px;
	padding: 60px 0 44px;
	border-bottom: 1px solid #e6e6e9;
}
.purity-faqpage-hero h1 {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(48px, 6vw, 86px);
	font-weight: 500;
	color: #1a2744;
	margin: 0 0 20px;
	letter-spacing: -1.5px;
	line-height: 1;
}
.purity-faqpage-hero p {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #888;
	line-height: 1.6;
	margin: 0;
	max-width: 440px;
}

/* Two-column layout */
.purity-faqpage-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 80px;
	align-items: start;
}

/* Sidebar */
.purity-faqpage-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2px;
	position: sticky;
	top: 120px;
}
.purity-faqpage-cat {
	display: block;
	position: relative;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #888;
	text-decoration: none;
	padding: 11px 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.purity-faqpage-cat:hover {
	color: #1a2744;
	background: #f7f8fa;
}
.purity-faqpage-cat.active {
	color: #1a2744;
	font-weight: 600;
	background: #f4f6f9;
}
.purity-faqpage-cat.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	bottom: 9px;
	width: 3px;
	border-radius: 2px;
	background: #1a2744;
}

/* Disclaimer box */
.purity-faqpage-disclaimer {
	background: #fef9ec;
	border: 1px solid #f3e3b0;
	border-radius: 14px;
	padding: 22px 26px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}
.purity-faqpage-disclaimer svg {
	flex-shrink: 0;
	margin-top: 1px;
}
.purity-faqpage-disclaimer p {
	font-family: 'Manrope', sans-serif;
	font-size: 13.5px;
	font-weight: 500;
	color: #b8960c;
	line-height: 1.55;
	margin: 0;
}

/* FAQ groups — only active visible */
.purity-faqpage-group {
	display: none;
}
.purity-faqpage-group.active {
	display: block;
}

/* FAQ item — card */
.purity-faqpage-item {
	background: #fff;
	border: 1px solid #e6e6e9;
	border-radius: 14px;
	margin-bottom: 12px;
	padding: 0 24px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.purity-faqpage-item:hover {
	border-color: #d4d4d8;
}
.purity-faqpage-item.active {
	border-color: #1a2744;
	box-shadow: 0 10px 30px rgba(26,39,68,0.08);
}

/* Question button */
.purity-faqpage-q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	padding: 24px 0;
	cursor: pointer;
	text-align: left;
	gap: 24px;
}
.purity-faqpage-q span:first-child {
	font-family: 'Manrope', sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #1a2744;
	line-height: 1.3;
}

/* +/x icon */
.purity-faqpage-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
}
.purity-faqpage-icon::before,
.purity-faqpage-icon::after {
	content: '';
	position: absolute;
	background: #1a2744;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.purity-faqpage-icon::before {
	width: 16px;
	height: 1.5px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.purity-faqpage-icon::after {
	width: 1.5px;
	height: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.purity-faqpage-item.active .purity-faqpage-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

/* Answer — hidden by default */
.purity-faqpage-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	padding: 0;
}
.purity-faqpage-item.active .purity-faqpage-a {
	max-height: 400px;
	padding: 0 0 24px;
}
.purity-faqpage-a p {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #666;
	line-height: 1.65;
	margin: 0;
	max-width: 640px;
}
.purity-faqpage-a a {
	color: #1a2744;
	text-decoration: underline;
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
	.purity-faqpage {
		padding: 0 20px 60px;
	}
	.purity-faqpage-hero {
		padding: 40px 0 32px;
		margin-bottom: 32px;
	}
	.purity-faqpage-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.purity-faqpage-sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 8px;
		padding-bottom: 4px;
	}
	.purity-faqpage-cat {
		white-space: nowrap;
		flex: 0 0 auto;
	}
	.purity-faqpage-cat.active::before {
		display: none;
	}
	.purity-faqpage-item {
		padding: 0 18px;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-faqpage-item {
		padding: 0 16px;
	}
	.purity-faqpage-q span:first-child {
		font-size: 16px;
	}
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.purity-contact {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px 100px;
}

/* ── Hero ── */
.purity-contact-hero {
	padding: 60px 0 44px;
	border-bottom: 1px solid #e0e0e0;
}
.purity-contact-hero-label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 18px;
}
.purity-contact-hero-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 64px;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: #1a2744;
	margin: 0 0 18px;
}
.purity-contact-hero-sub {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #888;
	line-height: 1.65;
	margin: 0;
	max-width: 480px;
}

/* ── Two-column layout ── */
.purity-contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 64px;
	align-items: stretch;
	padding-top: 56px;
}

/* ── Left: White Info Card ── */
.purity-contact-info {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 14px;
	padding: 48px 44px;
	color: #1a2744;
	display: flex;
	flex-direction: column;
}
.purity-contact-info-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: #1a2744;
	margin: 0 0 24px;
}
.purity-contact-block {
	padding: 28px 0;
	border-top: 1px solid #e0e0e0;
}
.purity-contact-label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: #999;
	margin-bottom: 12px;
}
.purity-contact-value {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	line-height: 1.5;
	margin: 0;
	text-decoration: none;
	display: block;
}
a.purity-contact-value:hover {
	color: #2a3a5c;
}
.purity-contact-cta {
	padding-top: 32px;
}
.purity-contact-cta p {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #555;
	margin: 0 0 16px;
}
.purity-contact-cta p strong {
	color: #1a2744;
}
.purity-contact-faq-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #1a2744;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid #ddd;
	padding: 14px 28px;
	border-radius: 10px;
	transition: background 0.2s, border-color 0.2s;
}
.purity-contact-faq-btn:hover {
	background: #f5f5f5;
	border-color: #1a2744;
}
.purity-contact-logo {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 6px;
	color: rgba(26,39,68,0.22);
	margin-top: auto;
	padding-top: 48px;
}

/* ── Right: Navy Form Card ── */
.purity-contact-form-wrap {
	background: #1a2744;
	border: none;
	border-radius: 14px;
	padding: 48px 44px;
}
.purity-contact-form-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0 0 28px;
}
.purity-contact-field {
	margin-bottom: 20px;
}
.purity-contact-field label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.purity-contact-field input[type="text"],
.purity-contact-field input[type="email"],
.purity-contact-field select,
.purity-contact-field textarea {
	width: 100%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	padding: 0 16px;
	height: 50px;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.purity-contact-field input::placeholder,
.purity-contact-field textarea::placeholder {
	color: rgba(255,255,255,0.4);
}
.purity-contact-field select {
	cursor: pointer;
	color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}
.purity-contact-field select option {
	background: #1a2744;
	color: #fff;
}
.purity-contact-field input:focus,
.purity-contact-field select:focus,
.purity-contact-field textarea:focus {
	border-color: rgba(255,255,255,0.55);
	color: #fff;
}
.purity-contact-field textarea {
	height: auto;
	min-height: 120px;
	padding: 14px 16px;
	resize: vertical;
}
.purity-contact-field.has-error input,
.purity-contact-field.has-error select,
.purity-contact-field.has-error textarea {
	border-color: #ff6b6b;
}

/* ── File upload ── */
.purity-contact-file-wrap {
	position: relative;
	margin-top: 4px;
}
.purity-contact-file-wrap input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}
.purity-contact-file-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	padding: 24px 16px;
	color: rgba(255,255,255,0.55);
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	transition: border-color 0.2s;
	text-align: center;
}
.purity-contact-file-wrap:hover .purity-contact-file-label {
	border-color: rgba(255,255,255,0.45);
}
.purity-contact-file-label.has-file {
	border-color: rgba(255,255,255,0.5);
	color: #fff;
}
.purity-contact-file-text {
	color: rgba(255,255,255,0.8);
}
.purity-contact-file-hint {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255,255,255,0.35);
	margin: 6px 0 0;
	text-align: center;
}

/* ── Submit Button (white filled on navy) ── */
.purity-contact-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: #fff;
	color: #1a2744;
	border: none;
	border-radius: 10px;
	padding: 18px 36px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 8px;
}
.purity-contact-submit:hover {
	background: #e8ecf3;
}
.purity-contact-submit:active {
	transform: scale(0.98);
}
.purity-contact-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ── Status message ── */
.purity-contact-status {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}
.purity-contact-status.success {
	background: #0d2a1a;
	color: #4ade80;
	border: 1px solid #166534;
}
.purity-contact-status.error {
	background: #2a0d0d;
	color: #f87171;
	border: 1px solid #7f1d1d;
}

/* ── Disclaimer (yellow — Velari parity) ── */
.purity-contact-form-disclaimer {
	background: #1a1a0a;
	border: 1px solid rgba(201,168,76,0.3);
	border-radius: 14px;
	margin-top: 28px;
	padding: 26px 28px;
}
.purity-contact-form-disclaimer-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.purity-contact-form-disclaimer-head span {
	font-family: 'Satoshi', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #d4b65a;
}
.purity-contact-form-disclaimer-head svg {
	stroke: #d4b65a;
}
.purity-contact-form-disclaimer p {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #d9c88a;
	line-height: 1.7;
	margin: 0;
}

/* ── Contact Page Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-contact {
		padding: 0 28px 80px;
	}
	.purity-contact-hero {
		padding: 40px 0 32px;
	}
	.purity-contact-hero-title {
		font-size: 48px;
	}
	.purity-contact-hero-sub {
		max-width: 100%;
	}
	.purity-contact-layout {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-top: 40px;
	}
	.purity-contact-info {
		padding: 40px 36px;
	}
	.purity-contact-value {
		font-size: 20px;
	}
	.purity-contact-logo {
		padding-top: 36px;
	}
	.purity-contact-form-wrap {
		padding: 40px 36px;
	}
	.purity-contact-form-disclaimer {
		padding: 28px 24px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-contact {
		padding: 0 16px 40px;
	}
	.purity-contact-hero {
		padding: 28px 0 24px;
	}
	.purity-contact-hero-label {
		margin-bottom: 12px;
	}
	.purity-contact-hero-title {
		font-size: 38px;
		letter-spacing: -0.02em;
		margin-bottom: 14px;
	}
	.purity-contact-hero-sub {
		font-size: 13px;
		line-height: 1.55;
	}
	.purity-contact-layout {
		padding-top: 28px;
		gap: 28px;
	}
	.purity-contact-info {
		padding: 32px 24px;
	}
	.purity-contact-info-title {
		font-size: 21px;
		margin-bottom: 18px;
	}
	.purity-contact-block {
		padding: 20px 0;
	}
	.purity-contact-label {
		font-size: 10px;
		margin-bottom: 8px;
	}
	.purity-contact-value {
		font-size: 18px;
		line-height: 1.4;
	}
	.purity-contact-cta {
		padding-top: 24px;
	}
	.purity-contact-cta p {
		font-size: 12px;
		margin-bottom: 10px;
	}
	.purity-contact-faq-btn {
		font-size: 11px;
		padding: 12px 22px;
	}
	.purity-contact-logo {
		padding-top: 32px;
		font-size: 20px;
	}
	.purity-contact-form-wrap {
		padding: 28px 22px;
	}
	.purity-contact-form-title {
		font-size: 23px;
		margin-bottom: 22px;
	}
	.purity-contact-field {
		margin-bottom: 18px;
	}
	.purity-contact-field label {
		font-size: 10px;
		letter-spacing: 0.1em;
	}
	.purity-contact-field input[type="text"],
	.purity-contact-field input[type="email"],
	.purity-contact-field select,
	.purity-contact-field textarea {
		font-size: 14px;
		height: 46px;
	}
	.purity-contact-field textarea {
		height: auto;
		min-height: 100px;
	}
	.purity-contact-file-label {
		padding: 16px 12px;
		font-size: 12px;
	}
	.purity-contact-submit {
		padding: 15px 20px;
		font-size: 12px;
		margin-top: 4px;
	}
	.purity-contact-status {
		font-size: 13px;
		padding: 10px 12px;
	}
	.purity-contact-form-disclaimer {
		padding: 22px 18px;
		border-radius: 12px;
		margin-top: 24px;
	}
	.purity-contact-form-disclaimer-head {
		margin-bottom: 12px;
		gap: 8px;
	}
	.purity-contact-form-disclaimer-head span {
		font-size: 11px;
	}
	.purity-contact-form-disclaimer p {
		font-size: 12px;
		line-height: 1.6;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-contact {
		padding: 0 14px 32px;
	}
	.purity-contact-hero {
		padding: 24px 0 20px;
	}
	.purity-contact-hero-title {
		font-size: 32px;
		margin-bottom: 12px;
	}
	.purity-contact-hero-sub {
		font-size: 12px;
	}
	.purity-contact-layout {
		padding-top: 22px;
		gap: 22px;
	}
	.purity-contact-info {
		padding: 28px 20px;
	}
	.purity-contact-block {
		padding: 16px 0;
	}
	.purity-contact-value {
		font-size: 17px;
	}
	.purity-contact-cta {
		padding-top: 18px;
	}
	.purity-contact-faq-btn {
		padding: 11px 18px;
		width: 100%;
		justify-content: center;
	}
	.purity-contact-form-wrap {
		padding: 24px 18px;
	}
	.purity-contact-field input[type="text"],
	.purity-contact-field input[type="email"],
	.purity-contact-field select,
	.purity-contact-field textarea {
		font-size: 13px;
	}
	.purity-contact-file-label {
		padding: 14px 10px;
		font-size: 11px;
	}
	.purity-contact-file-hint {
		font-size: 10px;
	}
	.purity-contact-submit {
		padding: 14px 18px;
		font-size: 11px;
	}
	.purity-contact-form-disclaimer {
		padding: 18px 16px;
		margin-top: 20px;
	}
	.purity-contact-form-disclaimer-head span {
		font-size: 10px;
	}
	.purity-contact-form-disclaimer p {
		font-size: 11px;
		line-height: 1.55;
	}
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* ── Section 1: Hero ── */
.purity-about-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 75% 0%, rgba(74,98,150,0.30) 0%, transparent 55%),
		linear-gradient(160deg, #233456 0%, #1a2744 55%, #16203a 100%);
	padding: 56px 64px 88px;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw;
	max-width: 100vw;
	min-height: 440px;
}
.purity-about-hero-top {
	display: flex;
	align-items: center;
	gap: 24px;
	max-width: 1400px;
	margin: 0 auto 48px;
}
.purity-about-hero-label {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	color: rgba(255,255,255,0.45);
	text-transform: uppercase;
}
.purity-about-hero-rule {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,0.12);
}
.purity-about-hero-tagline {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	color: rgba(255,255,255,0.45);
	text-transform: uppercase;
	white-space: nowrap;
}
.purity-about-hero-body {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 64px;
	align-items: end;
	max-width: 1400px;
	margin: 0 auto;
}
.purity-about-hero-left h1 {
	font-family: 'Satoshi', sans-serif;
	font-size: 64px;
	font-weight: 500;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 44px;
}
.purity-about-hero-accent {
	color: #8fa8d4;
}
.purity-about-hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.purity-about-btn-fill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #1a2744;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 14px 28px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.purity-about-btn-fill:hover {
	background: #ebebeb;
	border-color: #ebebeb;
	color: #1a2744;
}
.purity-about-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 10px;
	padding: 14px 28px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}
.purity-about-btn-outline:hover {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.6);
}
.purity-about-hero-right p {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	margin: 0 0 20px;
}
.purity-about-hero-creds {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	max-width: 1400px;
	margin: 56px auto 0;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.purity-about-hero-creds span {
	position: relative;
	font-family: 'Satoshi', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
}
.purity-about-hero-creds span:not(:last-child)::after {
	content: '\00b7';
	position: absolute;
	right: -13px;
	color: rgba(255,255,255,0.3);
}

/* ── Section 2: Info Statement ── */
.purity-about-info {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw;
	max-width: 100vw;
	background: #f0f2f5;
	padding: 96px 40px;
}
.purity-about-info-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}
.purity-about-info-eyebrow {
	display: block;
	font-family: 'Satoshi', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #1a2744;
	margin: 0 0 20px;
}
.purity-about-info-text h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: 42px;
	font-weight: 500;
	color: #1a2744;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 auto 28px;
	max-width: 760px;
}
.purity-about-info-text p {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 620px;
}
.purity-about-info-pillars {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 36px;
}
.purity-about-info-pillars span {
	position: relative;
	font-family: 'Satoshi', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1a2744;
}
.purity-about-info-pillars span:not(:last-child)::after {
	content: '\00b7';
	position: absolute;
	right: -11px;
	color: rgba(26,39,68,0.4);
}

/* ── Section 3: Process Band ── */
.purity-about-molecule {
	position: relative;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw;
	max-width: 100vw;
	background:
		radial-gradient(circle at 50% 0%, rgba(74,98,150,0.35) 0%, transparent 55%),
		linear-gradient(160deg, #233456 0%, #1a2744 50%, #111a30 100%);
	padding: 90px 40px;
}
.purity-about-molecule-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.purity-about-molecule-lead {
	font-family: 'Satoshi', sans-serif;
	font-size: 32px;
	font-weight: 500;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 56px;
}
.purity-about-molecule-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin: 0 0 48px;
}
.purity-about-molecule-step {
	position: relative;
	text-align: center;
}
.purity-about-molecule-step:not(:last-child)::after {
	content: '\2192';
	position: absolute;
	top: 24px;
	right: -18px;
	color: rgba(255,255,255,0.3);
	font-size: 18px;
}
.purity-about-molecule-num {
	display: block;
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: rgba(255,255,255,0.4);
	margin-bottom: 14px;
}
.purity-about-molecule-step-label {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
}
.purity-about-molecule-step-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 14.5px;
	font-weight: 500;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	margin: 0 auto;
	max-width: 260px;
}
.purity-about-molecule-close {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
	margin: 0 auto;
	max-width: 640px;
}

/* Process band responsive */
@media (max-width: 768px) {
	.purity-about-molecule {
		padding: 60px 24px;
	}
	.purity-about-molecule-lead {
		font-size: 26px;
		margin-bottom: 40px;
	}
	.purity-about-molecule-steps {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 40px;
	}
	.purity-about-molecule-step:not(:last-child)::after {
		display: none;
	}
	.purity-about-molecule-close {
		font-size: 14px;
	}
}

/* ── Section 4: Beliefs ── */
.purity-about-beliefs {
	padding: 80px 0 64px;
	text-align: center;
}
.purity-about-beliefs h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: 40px;
	font-weight: 500;
	color: #1a2744;
	letter-spacing: -0.02em;
	margin: 0 0 48px;
	line-height: 1.2;
}
.purity-about-beliefs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 56px;
}
.purity-about-beliefs-card {
	background: #fff;
	border: 1px solid #e6e8ee;
	border-radius: 16px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 1px 3px rgba(26,39,68,0.04);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.purity-about-beliefs-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(26,39,68,0.10);
	border-color: #d6dae3;
}
.purity-about-beliefs-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #eef1f6;
	margin-bottom: 20px;
}
.purity-about-beliefs-icon {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
.purity-about-beliefs-label {
	font-family: 'Satoshi', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #1a2744;
	margin-bottom: 8px;
}
.purity-about-beliefs-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 13.5px;
	font-weight: 500;
	color: #777;
	line-height: 1.5;
	max-width: 200px;
}
.purity-about-beliefs-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 560px;
	margin: 0 auto;
	padding-top: 40px;
	border-top: 1px solid #ececf0;
}
.purity-about-beliefs-mark {
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 8px;
	color: #1a2744;
	opacity: 0.3;
	text-transform: uppercase;
}
.purity-about-beliefs-footer p {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #666;
	line-height: 1.6;
	margin: 0;
	max-width: 440px;
}

/* ── RUO Compliance Notice ── */
.purity-about-ruo {
	background: #faf8f2;
	border-top: 1px solid #e8e4d8;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw;
	max-width: 100vw;
	padding: 48px 64px;
	text-align: center;
}
.purity-about-ruo-head {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.purity-about-ruo-head span {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #8a7a3a;
}
.purity-about-ruo p {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #888;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 900px;
}

/* ── About Responsive ── */

/* ── About Hero Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-about-hero {
		padding: 40px 28px 56px;
	}
	.purity-about-hero-top {
		margin-bottom: 36px;
	}
	.purity-about-hero-body {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.purity-about-hero-left h1 {
		font-size: 48px;
		margin-bottom: 32px;
	}
	.purity-about-hero-right p {
		font-size: 17px;
	}
	.purity-about-info {
		padding: 72px 28px;
	}
	.purity-about-info-text h2 {
		font-size: 32px;
	}
	.purity-about-molecule {
		min-height: 460px;
	}
	.purity-about-molecule-text {
		padding: 0 28px 48px;
		max-width: 640px;
	}
	.purity-about-molecule-text p {
		font-size: 15px;
	}
	.purity-about-beliefs {
		padding: 60px 0 48px;
	}
	.purity-about-beliefs h2 {
		font-size: 30px;
		margin-bottom: 36px;
	}
	.purity-about-beliefs-grid {
		grid-template-columns: 1fr 1fr;
		margin-bottom: 44px;
	}
	.purity-about-ruo {
		padding: 36px 28px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-about-hero {
		padding: 24px 20px 32px;
		min-height: auto;
	}
	.purity-about-hero-top {
		margin-bottom: 20px;
	}
	.purity-about-hero-label {
		font-size: 10px;
	}
	.purity-about-hero-body {
		gap: 24px;
	}
	.purity-about-hero-left h1 {
		font-size: 32px;
		margin-bottom: 20px;
		letter-spacing: -0.02em;
	}
	.purity-about-hero-right p {
		font-size: 14px;
		line-height: 1.55;
	}
	.purity-about-hero-btns {
		gap: 10px;
	}
	.purity-about-btn-fill,
	.purity-about-btn-outline {
		font-size: 13px;
		padding: 11px 20px;
		border-radius: 8px;
	}
	.purity-about-hero-tagline {
		font-size: 10px;
	}
	.purity-about-hero-creds {
		margin-top: 40px;
		padding-top: 22px;
	}
	.purity-about-info {
		padding: 52px 20px;
	}
	.purity-about-info-text h2 {
		font-size: 24px;
		margin-bottom: 14px;
		letter-spacing: -0.02em;
	}
	.purity-about-info-text p {
		font-size: 13px;
		line-height: 1.6;
	}
	.purity-about-molecule {
		min-height: 360px;
		background-position: center top;
	}
	.purity-about-molecule-text {
		padding: 0 20px 28px;
		max-width: 100%;
	}
	.purity-about-molecule-text p {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 12px;
	}
	.purity-about-molecule-text strong {
		font-size: 13px;
	}
	.purity-about-beliefs {
		padding: 48px 0 40px;
	}
	.purity-about-beliefs h2 {
		font-size: 26px;
		margin-bottom: 32px;
		padding: 0 20px;
	}
	.purity-about-beliefs-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		margin-bottom: 36px;
		padding: 0 20px;
	}
	.purity-about-beliefs-card {
		padding: 24px 18px;
		border-radius: 14px;
	}
	.purity-about-beliefs-chip {
		width: 48px;
		height: 48px;
		margin-bottom: 16px;
	}
	.purity-about-beliefs-icon {
		width: 26px;
		height: 26px;
	}
	.purity-about-beliefs-label {
		font-size: 15px;
	}
	.purity-about-beliefs-desc {
		font-size: 13px;
	}
	.purity-about-beliefs-footer {
		gap: 10px;
		padding: 28px 20px 0;
	}
	.purity-about-beliefs-mark {
		font-size: 11px;
		letter-spacing: 6px;
	}
	.purity-about-beliefs-footer p {
		font-size: 12px;
	}
	.purity-about-ruo {
		padding: 24px 20px;
	}
	.purity-about-ruo-head {
		margin-bottom: 10px;
	}
	.purity-about-ruo-head span {
		font-size: 10px;
	}
	.purity-about-ruo p {
		font-size: 11px;
		line-height: 1.6;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-about-hero {
		padding: 20px 16px 28px;
	}
	.purity-about-hero-top {
		margin-bottom: 16px;
	}
	.purity-about-hero-label {
		font-size: 9px;
		letter-spacing: 0.12em;
	}
	.purity-about-hero-body {
		gap: 18px;
	}
	.purity-about-hero-left h1 {
		font-size: 26px;
		margin-bottom: 16px;
		line-height: 1.15;
	}
	.purity-about-hero-right p {
		font-size: 13px;
	}
	.purity-about-hero-btns {
		flex-direction: column;
		gap: 8px;
	}
	.purity-about-btn-fill,
	.purity-about-btn-outline {
		justify-content: center;
		width: 100%;
		padding: 11px 18px;
		font-size: 12px;
	}
	.purity-about-hero-tagline {
		font-size: 9px;
		letter-spacing: 0.12em;
	}
	.purity-about-hero-creds {
		margin-top: 28px;
	}
	.purity-about-hero-creds span {
		font-size: 11px;
	}
	.purity-about-info {
		padding: 40px 16px;
	}
	.purity-about-info-text h2 {
		font-size: 20px;
		margin-bottom: 12px;
	}
	.purity-about-info-text p {
		font-size: 12px;
	}
	.purity-about-molecule {
		min-height: 300px;
		background-position: center top;
	}
	.purity-about-molecule-text {
		padding: 0 16px 20px;
	}
	.purity-about-molecule-text p {
		font-size: 12px;
		line-height: 1.55;
		margin-bottom: 8px;
	}
	.purity-about-beliefs {
		padding: 36px 0 30px;
	}
	.purity-about-beliefs h2 {
		font-size: 21px;
		margin-bottom: 24px;
		padding: 0 16px;
	}
	.purity-about-beliefs-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-bottom: 28px;
		padding: 0 16px;
	}
	.purity-about-beliefs-card {
		padding: 20px 14px;
		border-radius: 12px;
	}
	.purity-about-beliefs-chip {
		width: 44px;
		height: 44px;
		margin-bottom: 14px;
	}
	.purity-about-beliefs-icon {
		width: 24px;
		height: 24px;
	}
	.purity-about-beliefs-label {
		font-size: 14px;
	}
	.purity-about-beliefs-desc {
		display: none;
	}
	.purity-about-beliefs-mark {
		font-size: 10px;
		letter-spacing: 5px;
	}
	.purity-about-beliefs-footer {
		gap: 8px;
		padding: 24px 16px 0;
	}
	.purity-about-beliefs-footer p {
		font-size: 11px;
	}
	.purity-about-ruo {
		padding: 20px 16px;
	}
	.purity-about-ruo-head {
		margin-bottom: 8px;
	}
	.purity-about-ruo-head span {
		font-size: 9px;
	}
	.purity-about-ruo p {
		font-size: 10px;
		line-height: 1.55;
	}
}

/* ══════════════════════════════════════════════════════
   Quality & Standards Page
   ══════════════════════════════════════════════════════ */

/* ── Hero Section ── */
.purity-qs {
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	width: 100vw;
	overflow-x: clip;
}

.purity-qs-hero {
	position: relative;
	background: #1a2744;
	padding: 80px 40px 100px;
	text-align: center;
	overflow: hidden;
}

.purity-qs-hero-content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
}

.purity-qs-hero-label {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.purity-qs-hero h1 {
	font-family: 'Satoshi', sans-serif;
	font-size: 52px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
}

.purity-qs-hero-sub {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin: 0 0 32px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.purity-qs-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	color: #1a2744;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.purity-qs-hero-btn:hover {
	background: #e8ecf2;
	transform: translateY(-1px);
}

/* ── Parameters Section ── */
/* ── What Is Verified — editorial numbered spec list ── */
.purity-qs-params {
	background: #ffffff;
	padding: 90px 40px;
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	grid-template-rows: auto auto 1fr;
	column-gap: 72px;
	align-items: start;
}

.purity-qs-params-label {
	grid-column: 1;
	grid-row: 1;
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: #8a93a6;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.purity-qs-params h2 {
	grid-column: 1;
	grid-row: 2;
	font-family: 'Satoshi', sans-serif;
	font-size: 44px;
	font-weight: 700;
	color: #1a2744;
	line-height: 1.08;
	margin: 0;
}

/* the five parameters become a numbered list in the right column */
.purity-qs-params-grid {
	grid-column: 2;
	grid-row: 1 / span 3;
	display: flex;
	flex-direction: column;
	counter-reset: param;
	border-top: 1px solid #e6e9ef;
}

.purity-qs-params-card {
	display: grid;
	grid-template-columns: 40px 56px 1fr;
	grid-template-rows: auto auto;
	column-gap: 22px;
	align-items: center;
	padding: 26px 10px;
	border-bottom: 1px solid #e6e9ef;
	background: transparent;
	border-radius: 0;
	transition: background 0.2s;
}

.purity-qs-params-card:hover {
	background: #f6f8fb;
}

/* auto-numbered index 01–05 */
.purity-qs-params-card::before {
	counter-increment: param;
	content: counter(param, decimal-leading-zero);
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: center;
	font-family: 'Satoshi', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #c2c9d6;
}

.purity-qs-params-icon {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	width: 56px;
	height: 56px;
	padding: 14px;
	margin: 0;
	object-fit: contain;
	background: #1a2744;
	border: none;
	border-radius: 12px;
}

.purity-qs-params-card h3 {
	grid-column: 3;
	grid-row: 1;
	align-self: end;
	font-family: 'Satoshi', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 4px;
}

.purity-qs-params-card p {
	grid-column: 3;
	grid-row: 2;
	align-self: start;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #5b6577;
	line-height: 1.55;
	margin: 0;
}

/* ── Verification & Documentation Section ── */
.purity-qs-verdoc {
	background: #0f1a2e;
	padding: 60px 40px;
}

.purity-qs-verdoc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.purity-qs-verdoc-card {
	background: #1a2744;
	border-radius: 14px;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.purity-qs-verdoc-label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: #666;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.purity-qs-verdoc-card h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 14px;
}

.purity-qs-verdoc-card p {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #999;
	line-height: 1.65;
	margin: 0 0 28px;
}

/* Visual panels */
.purity-qs-verdoc-visual {
	margin-top: auto;
	border-radius: 10px;
	overflow: hidden;
}

/* ISO Visual */
.purity-qs-verdoc-card-iso {
	overflow: hidden;
	position: relative;
	background: #ffffff;
	border: 1px solid #e5e5e5;
}

.purity-qs-verdoc-card-iso .purity-qs-verdoc-label {
	color: #999;
}

.purity-qs-verdoc-card-iso h2 {
	color: #111 !important;
}

.purity-qs-verdoc-card-iso p {
	color: #666 !important;
}

.purity-qs-iso-wrap {
	margin-top: auto;
	position: relative;
	min-height: 220px;
}

/* 3D Box */
.purity-qs-iso-box {
	position: absolute;
	right: 40%;
	bottom: 30px;
	display: flex;
	z-index: 1;
}

.purity-qs-iso-box-spine {
	width: 14px;
	height: 180px;
	background: linear-gradient(to right, #ccc, #e0e0e0);
	border-radius: 2px 0 0 2px;
	transform: skewY(-2deg);
}

.purity-qs-iso-box-face {
	width: 10px;
	height: 180px;
	background: linear-gradient(to right, #e8e8e8, #d8d8d8);
	transform: skewY(2deg);
}

/* ISO Panel - overflows right */
.purity-qs-iso-panel {
	position: absolute;
	right: -36px;
	bottom: 20px;
	background: #f5f5f3;
	border-radius: 10px 0 0 10px;
	padding: 40px 50px 40px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 2;
}

.purity-qs-iso-svg {
	width: 72px;
	height: 72px;
}

.purity-qs-iso-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.purity-qs-iso-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #111;
	letter-spacing: 0.02em;
}

.purity-qs-iso-num {
	font-family: 'Satoshi', sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: #111;
	line-height: 1;
}

/* US Footer pill */
.purity-qs-iso-footer {
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 24px;
	padding: 10px 20px;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #333;
	z-index: 3;
}

.purity-qs-flag {
	font-size: 16px;
}

/* Batch Doc Visual */
.purity-qs-batch-visual {
	position: relative;
	min-height: 260px;
	margin-top: auto;
	border-radius: 10px;
	overflow: hidden;
}

/* Doc 1: Far background (darkest) */
.purity-qs-batch-far {
	position: absolute;
	left: -20px;
	top: 20px;
	width: 48%;
	bottom: 10px;
	background: #0f1a2e;
	border-radius: 8px;
	padding: 14px 12px;
	border: 1px solid #1e3050;
	z-index: 0;
}

.purity-qs-batch-far-head {
	font-family: 'Manrope', sans-serif;
	font-size: 6px;
	font-weight: 600;
	color: #3a5070;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.purity-qs-batch-far-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 10px;
	font-weight: 700;
	color: #3a5070;
	line-height: 1.25;
}

/* Doc 2: Middle doc — label/tag */
.purity-qs-batch-bg {
	position: absolute;
	left: 10%;
	top: 8px;
	width: 50%;
	bottom: 0;
	background: #142036;
	border-radius: 8px;
	padding: 16px 14px;
	border: 1px solid #243a5a;
	z-index: 1;
}

.purity-qs-batch-bg-head {
	font-family: 'Manrope', sans-serif;
	font-size: 7px;
	font-weight: 600;
	color: #4a6a8a;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.purity-qs-batch-bg-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #7a9aba;
	line-height: 1.25;
	margin-bottom: 10px;
}

.purity-qs-batch-bg-detail {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 14px;
}

.purity-qs-batch-bg-detail span {
	font-family: 'Manrope', sans-serif;
	font-size: 7px;
	color: #4a6a8a;
	line-height: 1.4;
}

.purity-qs-batch-bg-barcode {
	position: absolute;
	bottom: 12px;
	left: 14px;
	right: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.purity-qs-barcode-lines {
	width: 70%;
	height: 28px;
	background: repeating-linear-gradient(
		to right,
		#3a5a7a 0px, #3a5a7a 1px,
		transparent 1px, transparent 3px,
		#3a5a7a 3px, #3a5a7a 5px,
		transparent 5px, transparent 6px,
		#3a5a7a 6px, #3a5a7a 7px,
		transparent 7px, transparent 9px
	);
}

.purity-qs-batch-bg-barcode span {
	font-family: 'Satoshi', sans-serif;
	font-size: 8px;
	font-weight: 700;
	color: #3a5a7a;
	letter-spacing: 0.15em;
}

/* Foreground doc — lighter overlay */
.purity-qs-batch-doc {
	position: absolute;
	right: -10px;
	top: 0;
	width: 62%;
	bottom: -10px;
	background: #1e3050;
	border: 1px solid #2a4a6a;
	border-radius: 10px;
	padding: 22px 20px;
	box-sizing: border-box;
	z-index: 2;
}

.purity-qs-batch-doc-head {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Manrope', sans-serif;
	font-size: 10px;
	font-weight: 600;
	color: #999;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.purity-qs-batch-doc strong {
	display: block;
	font-family: 'Satoshi', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.purity-qs-batch-doc-rows {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.purity-qs-batch-doc-rows span {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #bbb;
	line-height: 1.6;
}

/* ── Beyond Standard Testing Section ── */
/* ── Beyond Standard Testing — elevated comparison ── */
.purity-qs-beyond {
	background: #ffffff;
	padding: 96px 40px;
}

.purity-qs-beyond-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}

.purity-qs-beyond-label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: #8a93a6;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.purity-qs-beyond-header h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: 44px;
	font-weight: 700;
	color: #1a2744;
	line-height: 1.1;
	margin: 0 0 18px;
}

.purity-qs-beyond-header p {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #5b6577;
	line-height: 1.7;
	margin: 0;
}

/* Comparison — Purity Labs reads as an elevated, highlighted column */
.purity-qs-beyond-table {
	background: transparent;
	border: none;
	border-radius: 0;
	overflow: visible;
	max-width: 860px;
	margin: 0 auto;
	padding-top: 24px;
}

.purity-qs-beyond-row {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	align-items: center;
	min-height: 78px;
}

.purity-qs-beyond-row:not(:last-child) .purity-qs-beyond-col-param,
.purity-qs-beyond-row:not(:last-child) .purity-qs-beyond-col-std {
	align-self: stretch;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ebedf1;
}

.purity-qs-beyond-row-head {
	min-height: 54px;
}

.purity-qs-beyond-row-head .purity-qs-beyond-col-param,
.purity-qs-beyond-row-head .purity-qs-beyond-col-std {
	border-bottom: 2px solid #1a2744;
}

.purity-qs-beyond-col-param {
	padding: 0 24px 0 6px;
	font-family: 'Satoshi', sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #1a2744;
}

.purity-qs-beyond-row-head .purity-qs-beyond-col-param,
.purity-qs-beyond-row-head .purity-qs-beyond-col-std {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #98a1b2;
	text-transform: uppercase;
}

.purity-qs-beyond-col-std {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

/* Purity Labs column — elevated navy panel with a raised cap */
.purity-qs-beyond-col-pl {
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, #243353 0%, #1a2744 100%);
	align-self: stretch;
	padding: 0 20px;
	box-shadow: 0 0 50px rgba(26, 39, 68, 0.26);
}

.purity-qs-beyond-row-head .purity-qs-beyond-col-pl {
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
	border-radius: 16px 16px 0 0;
	margin-top: -24px;
	padding-top: 24px;
	min-height: 78px;
}

.purity-qs-beyond-row:last-child .purity-qs-beyond-col-pl {
	border-radius: 0 0 16px 16px;
}

.purity-qs-beyond-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

/* ── Controlled Standard Banner ── */
.purity-qs-controlled {
	position: relative;
	background: #1a2744;
	padding: 140px 40px;
	text-align: center;
}


.purity-qs-controlled-content {
	position: relative;
	z-index: 1;
	max-width: 650px;
	margin: 0 auto;
}

.purity-qs-controlled-content h2 {
	font-family: 'Satoshi', sans-serif;
	font-size: 44px;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 24px;
	letter-spacing: -0.01em;
}

.purity-qs-controlled-content p {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin: 0 0 6px;
}

/* ── RUO Compliance Notice ── */
.purity-qs-ruo {
	background: #faf8f2;
	border-top: 1px solid #e8e4d8;
	border-bottom: 1px solid #e8e4d8;
	padding: 40px 60px;
	text-align: center;
}

.purity-qs-ruo-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
}

.purity-qs-ruo-head span {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #8a7a3a;
	text-transform: uppercase;
}

.purity-qs-ruo p {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #8a7a3a;
	line-height: 1.75;
	margin: 0;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

/* ── Quality & Standards Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
	.purity-qs-hero {
		padding: 60px 30px 80px;
	}
	.purity-qs-hero h1 {
		font-size: 42px;
	}
	.purity-qs-hero-sub {
		font-size: 15px;
	}
	.purity-qs-params {
		grid-template-columns: 1fr;
		row-gap: 32px;
		padding: 60px 30px;
	}
	.purity-qs-params-label {
		grid-column: 1;
		grid-row: auto;
	}
	.purity-qs-params h2 {
		grid-column: 1;
		grid-row: auto;
		font-size: 36px;
	}
	.purity-qs-params-grid {
		grid-column: 1;
		grid-row: auto;
	}
	.purity-qs-verdoc {
		padding: 40px 30px;
	}
	.purity-qs-verdoc-card {
		padding: 32px 28px;
	}
	.purity-qs-verdoc-card h2 {
		font-size: 28px;
	}
	.purity-qs-iso-wrap {
		min-height: 200px;
	}
	.purity-qs-iso-panel {
		padding: 30px 40px 30px 28px;
	}
	.purity-qs-iso-svg {
		width: 56px;
		height: 56px;
	}
	.purity-qs-iso-name {
		font-size: 20px;
	}
	.purity-qs-iso-num {
		font-size: 40px;
	}
	.purity-qs-batch-visual {
		min-height: 220px;
	}
	.purity-qs-beyond {
		padding: 60px 30px;
	}
	.purity-qs-beyond-header h2 {
		font-size: 36px;
	}
	.purity-qs-beyond-header p {
		font-size: 14px;
	}
	.purity-qs-beyond-table {
		max-width: 100%;
	}
	.purity-qs-beyond-col-param {
		font-size: 15px;
		padding: 0 20px;
	}
	.purity-qs-beyond-row {
		min-height: 64px;
	}
	.purity-qs-controlled {
		padding: 80px 30px;
	}
	.purity-qs-controlled-content h2 {
		font-size: 38px;
	}
	.purity-qs-ruo {
		padding: 32px 40px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.purity-qs-hero {
		padding: 50px 20px 60px;
	}
	.purity-qs-hero-label {
		font-size: 10px;
		letter-spacing: 0.14em;
		margin-bottom: 16px;
	}
	.purity-qs-hero h1 {
		font-size: 32px;
		margin-bottom: 16px;
	}
	.purity-qs-hero-sub {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.purity-qs-params {
		padding: 40px 20px;
	}
	.purity-qs-params h2 {
		font-size: 28px;
		margin-bottom: 0;
	}
	.purity-qs-params-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.purity-qs-params-card {
		padding: 24px 22px;
	}
	.purity-qs-params-icon {
		width: 40px;
		height: 40px;
		padding: 10px;
		margin: 0;
	}
	.purity-qs-params-card h3 {
		font-size: 18px;
	}
	.purity-qs-params-card p {
		font-size: 13px;
	}
	.purity-qs-verdoc {
		padding: 32px 20px;
	}
	.purity-qs-verdoc-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.purity-qs-verdoc-card {
		padding: 28px 22px;
	}
	.purity-qs-verdoc-card h2 {
		font-size: 24px;
	}
	.purity-qs-verdoc-card p {
		font-size: 13px;
	}
	.purity-qs-iso-wrap {
		min-height: 180px;
	}
	.purity-qs-iso-box-spine {
		height: 140px;
	}
	.purity-qs-iso-box-face {
		height: 140px;
	}
	.purity-qs-iso-panel {
		padding: 24px 36px 24px 24px;
		right: -22px;
	}
	.purity-qs-iso-svg {
		width: 48px;
		height: 48px;
	}
	.purity-qs-iso-name {
		font-size: 18px;
	}
	.purity-qs-iso-num {
		font-size: 34px;
	}
	.purity-qs-iso-footer {
		padding: 8px 14px;
		font-size: 11px;
	}
	.purity-qs-batch-visual {
		min-height: 200px;
	}
	.purity-qs-batch-doc strong {
		font-size: 14px;
	}
	.purity-qs-batch-doc-rows span {
		font-size: 10px;
	}
	.purity-qs-batch-doc-head {
		font-size: 8px;
	}
	.purity-qs-beyond {
		padding: 40px 20px;
	}
	.purity-qs-beyond-header {
		margin-bottom: 32px;
	}
	.purity-qs-beyond-header h2 {
		font-size: 28px;
	}
	.purity-qs-beyond-header p {
		font-size: 13px;
	}
	.purity-qs-beyond-label {
		font-size: 10px;
		margin-bottom: 8px;
	}
	.purity-qs-beyond-col-param {
		font-size: 13px;
		padding: 0 14px;
	}
	.purity-qs-beyond-row {
		min-height: 56px;
	}
	.purity-qs-beyond-row-head .purity-qs-beyond-col-param,
	.purity-qs-beyond-row-head .purity-qs-beyond-col-std {
		font-size: 8px;
		letter-spacing: 0.08em;
	}
	.purity-qs-beyond-row-head .purity-qs-beyond-col-pl {
		font-size: 10px;
	}
	.purity-qs-beyond-check {
		width: 28px;
		height: 28px;
		box-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
	}
	.purity-qs-beyond-check svg {
		width: 14px;
		height: 14px;
	}
	.purity-qs-controlled {
		padding: 60px 20px;
	}
	.purity-qs-controlled-content h2 {
		font-size: 28px;
	}
	.purity-qs-controlled-content p {
		font-size: 13px;
	}
	.purity-qs-ruo {
		padding: 24px 20px;
	}
	.purity-qs-ruo-head {
		margin-bottom: 10px;
	}
	.purity-qs-ruo-head span {
		font-size: 10px;
		letter-spacing: 0.06em;
	}
	.purity-qs-ruo-head svg {
		width: 14px;
		height: 14px;
	}
	.purity-qs-ruo p {
		font-size: 11px;
		line-height: 1.6;
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.purity-qs-hero {
		padding: 40px 16px 50px;
	}
	.purity-qs-hero-label {
		font-size: 9px;
		letter-spacing: 0.12em;
	}
	.purity-qs-hero h1 {
		font-size: 28px;
	}
	.purity-qs-hero-sub {
		font-size: 13px;
		line-height: 1.6;
	}
	.purity-qs-hero-btn {
		padding: 12px 24px;
		font-size: 12px;
	}
	.purity-qs-params {
		padding: 32px 16px;
	}
	.purity-qs-params h2 {
		font-size: 24px;
		margin-bottom: 22px;
	}
	.purity-qs-params-label {
		font-size: 10px;
	}
	.purity-qs-verdoc {
		padding: 24px 16px;
	}
	.purity-qs-verdoc-card {
		padding: 24px 18px;
	}
	.purity-qs-verdoc-card h2 {
		font-size: 22px;
	}
	.purity-qs-verdoc-card p {
		font-size: 12px;
		margin-bottom: 20px;
	}
	.purity-qs-iso-wrap {
		min-height: 160px;
	}
	.purity-qs-iso-box {
		right: 45%;
	}
	.purity-qs-iso-box-spine {
		height: 120px;
	}
	.purity-qs-iso-box-face {
		height: 120px;
	}
	.purity-qs-iso-panel {
		padding: 20px 30px 20px 20px;
		right: -18px;
		bottom: 16px;
	}
	.purity-qs-iso-svg {
		width: 40px;
		height: 40px;
	}
	.purity-qs-iso-name {
		font-size: 15px;
	}
	.purity-qs-iso-num {
		font-size: 28px;
	}
	.purity-qs-iso-footer {
		padding: 7px 12px;
		font-size: 10px;
		gap: 6px;
	}
	.purity-qs-flag {
		font-size: 14px;
	}
	.purity-qs-batch-visual {
		min-height: 180px;
	}
	.purity-qs-batch-doc {
		padding: 16px 14px;
	}
	.purity-qs-batch-doc strong {
		font-size: 12px;
		margin-bottom: 10px;
	}
	.purity-qs-batch-doc-rows span {
		font-size: 9px;
	}
	.purity-qs-batch-doc-head {
		font-size: 7px;
		margin-bottom: 8px;
	}
	.purity-qs-beyond {
		padding: 28px 16px;
	}
	.purity-qs-beyond-header {
		margin-bottom: 24px;
	}
	.purity-qs-beyond-header h2 {
		font-size: 24px;
	}
	.purity-qs-beyond-header p {
		font-size: 12px;
	}
	.purity-qs-beyond-label {
		font-size: 9px;
	}
	.purity-qs-beyond-col-param {
		font-size: 12px;
		padding: 0 12px;
	}
	.purity-qs-beyond-row {
		min-height: 50px;
	}
	.purity-qs-beyond-row-head .purity-qs-beyond-col-param,
	.purity-qs-beyond-row-head .purity-qs-beyond-col-std {
		font-size: 7px;
		padding: 0 8px;
	}
	.purity-qs-beyond-row-head .purity-qs-beyond-col-pl {
		font-size: 9px;
	}
	.purity-qs-beyond-check {
		width: 24px;
		height: 24px;
	}
	.purity-qs-beyond-check svg {
		width: 12px;
		height: 12px;
	}
	.purity-qs-beyond-col-std svg {
		width: 14px;
		height: 14px;
	}
	.purity-qs-controlled {
		padding: 50px 16px;
	}
	.purity-qs-controlled-content h2 {
		font-size: 24px;
		margin-bottom: 18px;
	}
	.purity-qs-controlled-content p {
		font-size: 12px;
		line-height: 1.6;
	}
	.purity-qs-ruo {
		padding: 18px 16px;
	}
	.purity-qs-ruo-head {
		margin-bottom: 8px;
		gap: 6px;
	}
	.purity-qs-ruo-head span {
		font-size: 8px;
		letter-spacing: 0.04em;
	}
	.purity-qs-ruo-head svg {
		width: 12px;
		height: 12px;
	}
	.purity-qs-ruo p {
		font-size: 10px;
		line-height: 1.55;
	}
}

/* ── Cart Page ──────────────────────────────────────── */

.purity-cart {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 48px 80px;
}

/* Header */
.purity-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid #eee;
}
.purity-cart-header-left {
	display: flex;
	align-items: baseline;
	gap: 16px;
}
.purity-cart-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #1a2744;
	margin: 0;
	letter-spacing: -0.5px;
}
.purity-cart-item-count {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #999;
	font-weight: 500;
}
.purity-cart-continue {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1a2744;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	transition: background 0.2s, border-color 0.2s;
}
.purity-cart-continue:hover {
	background: #f5f5f5;
	border-color: #bbb;
}

/* Layout: items + summary */
.purity-cart-layout {
	display: flex;
	gap: 48px;
	align-items: flex-start;
}
.purity-cart-items-col {
	flex: 1;
	min-width: 0;
}
.purity-cart-summary-col {
	width: 380px;
	flex-shrink: 0;
	position: sticky;
	top: 24px;
}

/* Column labels */
.purity-cart-labels {
	display: flex;
	align-items: center;
	padding: 0 0 12px;
	border-bottom: 1px solid #eee;
	margin-bottom: 0;
}
.purity-cart-labels span {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #999;
	text-transform: uppercase;
}
.purity-cart-label-product {
	flex: 1;
}
.purity-cart-label-qty {
	width: 120px;
	text-align: center;
}
.purity-cart-label-total {
	width: 100px;
	text-align: right;
}

/* Cart item row */
.purity-cart-item {
	display: flex;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid #f0f0f0;
	gap: 20px;
	position: relative;
}
.purity-cart-item:last-child {
	border-bottom: 1px solid #eee;
}

/* Thumbnail */
.purity-cart-item-img {
	width: 90px;
	height: 90px;
	flex-shrink: 0;
	background: #f5f5f5;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.purity-cart-item-img a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.purity-cart-item-img img {
	width: 70px;
	height: 70px;
	object-fit: contain;
}

/* Product info */
.purity-cart-item-info {
	flex: 1;
	min-width: 0;
}
.purity-cart-item-top {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.purity-cart-item-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #1a2744;
	text-decoration: none;
	transition: color 0.15s;
}
.purity-cart-item-name:hover {
	color: #2a3a5c;
}
.purity-cart-item-size {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #777;
	padding: 2px 10px;
	border: 1px solid #ddd;
	border-radius: 20px;
	display: inline-block;
	width: fit-content;
}
.purity-cart-item-unit-price {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #999;
}

/* Quantity stepper */
.purity-cart-item-qty {
	width: 120px;
	display: flex;
	justify-content: center;
	flex-shrink: 0;
}
.purity-cart-qty {
	display: flex;
	align-items: center;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
}
.purity-cart-qty-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #1a2744;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
	line-height: 1;
}
.purity-cart-qty-btn:hover {
	background: #f5f5f5;
}
.purity-cart-qty-input {
	width: 36px;
	height: 36px;
	text-align: center;
	border: none;
	border-left: 1.5px solid #ddd;
	border-right: 1.5px solid #ddd;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
	background: #fff;
	-moz-appearance: textfield;
	appearance: textfield;
}
.purity-cart-qty-input::-webkit-inner-spin-button,
.purity-cart-qty-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Subtotal */
.purity-cart-item-total {
	width: 100px;
	text-align: right;
	flex-shrink: 0;
}
.purity-cart-item-subtotal {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1a2744;
}

/* Remove button */
.purity-cart-item-remove {
	flex-shrink: 0;
	margin-left: 8px;
}
.purity-cart-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	color: #bbb;
	transition: color 0.2s, background 0.2s;
}
.purity-cart-remove:hover {
	color: #e53e3e;
	background: #fef2f2;
}

/* Cart actions row */
.purity-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
	gap: 16px;
}
.purity-cart-coupon {
	display: flex;
	gap: 8px;
}
.purity-cart-coupon-input {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	padding: 10px 16px;
	border: 1.5px solid #ddd;
	border-radius: 10px;
	color: #1a2744;
	background: #fff;
	width: 200px;
	transition: border-color 0.2s;
}
.purity-cart-coupon-input:focus {
	outline: none;
	border-color: #1a2744;
}
.purity-cart-coupon-input::placeholder {
	color: #bbb;
}
.purity-cart-coupon-btn {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 20px;
	border: 1.5px solid #1a2744;
	border-radius: 10px;
	background: #fff;
	color: #1a2744;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.purity-cart-coupon-btn:hover {
	background: #1a2744;
	color: #fff;
}
.purity-cart-update {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
	color: #777;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	margin-left: auto;
}
.purity-cart-update:hover {
	background: #f5f5f5;
	color: #1a2744;
	border-color: #bbb;
}

/* ── Order Summary (cart totals) ── */
.purity-cart-totals {
	background: #f9f9f9;
	border-radius: 16px;
	padding: 32px;
	border: 1px solid #eee;
}
.purity-cart-totals-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 24px;
}

/* Summary rows */
.purity-cart-totals-rows {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.purity-cart-totals-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}
.purity-cart-totals-row span:first-child {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #666;
}
.purity-cart-totals-row span:last-child {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
}
.purity-cart-totals-discount span:last-child {
	color: #16a34a;
}
.purity-cart-shipping-note {
	font-style: italic;
	color: #999 !important;
	font-weight: 400 !important;
}

/* Total row */
.purity-cart-totals-total {
	border-bottom: none;
	padding: 16px 0 0;
	margin-top: 4px;
}
.purity-cart-totals-total span:first-child {
	font-size: 16px;
	font-weight: 700;
	color: #1a2744;
}
.purity-cart-totals-total span:last-child {
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
}

/* Checkout button */
.purity-cart-totals-checkout {
	margin-top: 24px;
}
.purity-cart-totals-checkout .checkout-button,
.purity-cart-totals-checkout .wc-forward {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	background: #1a2744 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 14px !important;
	font-family: 'Manrope', sans-serif;
	font-size: 15px !important;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none !important;
	transition: background 0.2s;
	box-sizing: border-box;
	padding: 0 !important;
	margin: 0 !important;
}
.purity-cart-totals-checkout .checkout-button:hover,
.purity-cart-totals-checkout .wc-forward:hover {
	background: #2a3a5c;
}

/* Secure / shipping notes */
.purity-cart-secure,
.purity-cart-shipping-info {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
}
.purity-cart-secure span,
.purity-cart-shipping-info span {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #999;
}

/* ── Empty Cart ── */
.purity-cart-empty {
	text-align: center;
	padding: 100px 40px 120px;
	max-width: 480px;
	margin: 0 auto;
}
.purity-cart-empty-icon {
	margin-bottom: 24px;
}
.purity-cart-empty-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 12px;
}
.purity-cart-empty-text {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: #888;
	margin: 0 0 32px;
	line-height: 1.6;
}
.purity-cart-empty-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 52px;
	padding: 0 32px;
	background: #1a2744;
	color: #fff;
	border: none;
	border-radius: 14px;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}
.purity-cart-empty-btn:hover {
	background: #2a3a5c;
}

/* ── WooCommerce cart page style overrides ── */

/* Hide WP page title on cart — our template has its own */
main[data-page="cart"] > .wp-block-post-title {
	display: none !important;
}

/* Make cart page full width */
main[data-page="cart"] {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
main[data-page="cart"] > .wp-block-post-content,
main[data-page="cart"] > .wc-block-store-notices,
main[data-page="cart"] .wp-block-group.alignwide {
	max-width: 100% !important;
}

/* Cart notices */
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	border-radius: 10px;
	margin-bottom: 16px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* WC cart messages */
.woocommerce-cart .woocommerce-message {
	border-top-color: #1a2744;
}
.woocommerce-cart .woocommerce-message::before {
	color: #1a2744;
}

/* Hide default WC empty cart message since we have our own */
.woocommerce-cart .cart-empty.woocommerce-info {
	display: none;
}


/* WooCommerce shipping table within our totals */
.purity-cart-totals .woocommerce-shipping-totals td,
.purity-cart-totals .woocommerce-shipping-totals th {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	color: #666;
}
.purity-cart-totals .woocommerce-shipping-totals th {
	text-align: left;
	font-weight: 400;
}
.purity-cart-totals .woocommerce-shipping-totals td {
	text-align: right;
	font-weight: 600;
	color: #1a2744;
}

/* ── Cart Page Responsive: Tablet ── */
@media (max-width: 1024px) {
	.purity-cart {
		padding: 36px 28px 64px;
	}
	.purity-cart-layout {
		gap: 32px;
	}
	.purity-cart-summary-col {
		width: 320px;
	}
	.purity-cart-item-img {
		width: 80px;
		height: 80px;
	}
	.purity-cart-item-img img {
		width: 60px;
		height: 60px;
	}
}

/* ── Cart Page Responsive: Mobile ── */
@media (max-width: 768px) {
	.purity-cart {
		padding: 24px 20px 60px;
	}
	.purity-cart-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 24px;
		padding-bottom: 20px;
	}
	.purity-cart-title {
		font-size: 26px;
	}
	.purity-cart-layout {
		flex-direction: column;
		gap: 32px;
	}
	.purity-cart-summary-col {
		width: 100%;
		position: static;
	}
	/* Column labels hidden on mobile */
	.purity-cart-labels {
		display: none;
	}
	/* Item layout stacked */
	.purity-cart-item {
		flex-wrap: wrap;
		gap: 16px;
		padding: 20px 0;
	}
	.purity-cart-item-img {
		width: 72px;
		height: 72px;
	}
	.purity-cart-item-img img {
		width: 56px;
		height: 56px;
	}
	.purity-cart-item-info {
		flex: 1;
		min-width: 0;
	}
	.purity-cart-item-qty {
		width: auto;
	}
	.purity-cart-item-total {
		width: auto;
		text-align: left;
	}
	.purity-cart-item-remove {
		position: absolute;
		top: 20px;
		right: 0;
		margin-left: 0;
	}
	/* Actions stack */
	.purity-cart-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.purity-cart-coupon {
		width: 100%;
	}
	.purity-cart-coupon-input {
		flex: 1;
		width: auto;
	}
	.purity-cart-update {
		margin-left: 0;
		justify-content: center;
	}
}

/* ── Cart Page Responsive: Small mobile ── */
@media (max-width: 480px) {
	.purity-cart {
		padding: 20px 16px 48px;
	}
	.purity-cart-title {
		font-size: 22px;
	}
	.purity-cart-item-count {
		font-size: 12px;
	}
	.purity-cart-continue {
		font-size: 12px;
		padding: 8px 16px;
	}
	.purity-cart-item {
		gap: 12px;
		padding: 16px 0;
	}
	.purity-cart-item-img {
		width: 64px;
		height: 64px;
	}
	.purity-cart-item-img img {
		width: 48px;
		height: 48px;
	}
	.purity-cart-item-name {
		font-size: 14px;
	}
	.purity-cart-item-unit-price {
		font-size: 12px;
	}
	.purity-cart-item-subtotal {
		font-size: 14px;
	}
	.purity-cart-qty-btn {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	.purity-cart-qty-input {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}
	.purity-cart-totals {
		padding: 24px 20px;
		border-radius: 14px;
	}
	.purity-cart-totals-title {
		font-size: 18px;
	}
	.purity-cart-empty {
		padding: 60px 20px 80px;
	}
	.purity-cart-empty-title {
		font-size: 22px;
	}
	.purity-cart-empty-text {
		font-size: 14px;
	}
}

/* ── WordPress Block Overrides ─────────────────────── */

.wp-site-blocks {
	padding: 0 !important;
}

.wp-site-blocks > * + * {
	margin-top: 0 !important;
}

.entry-content > * + * {
	margin-top: 0;
}

.wp-block-group.is-layout-constrained > * + * {
	margin-top: 0;
}

/* ═══════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════ */

/* Hide WP admin bar + block theme chrome on checkout */
.purity-checkout-page .wp-block-group,
.purity-checkout-page .wp-site-blocks { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
.purity-checkout-page #wpadminbar { display: none; }
.purity-checkout-page { margin-top: 0 !important; }

/* Hide WC coupon toggle + coupon form on checkout */
.purity-co .woocommerce-form-coupon-toggle,
.purity-co .checkout_coupon,
.purity-co .woocommerce-form-login-toggle,
.purity-co .woocommerce-form-login { display: none !important; }

.purity-co {
	min-height: 100vh;
	font-family: 'Manrope', sans-serif;
	color: #1a2744;
}

/* ── Logo bar ── */
.purity-co-logo-bar {
	padding: 24px 0;
	text-align: center;
	border-bottom: 1px solid #eee;
	background: #fff;
}
.purity-co-logo {
	font-family: 'Satoshi', sans-serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 6px;
	color: #1a2744;
	text-decoration: none;
}

/* ── Form reset ── */
.purity-co-form {
	margin: 0;
	padding: 0;
}
.purity-co > .woocommerce-notices-wrapper:empty {
	display: none;
}

/* ── Two-column layout ── */
.purity-co-layout {
	display: flex;
	min-height: calc(100vh - 73px);
	background: linear-gradient(to right, #fff 50%, #f7f7f7 50%);
}
.purity-co-left {
	width: 50%;
	padding: 48px 56px 64px 48px;
}
.purity-co-right {
	width: 50%;
	flex-shrink: 0;
	background: #f7f7f7;
	border-left: 1px solid #eee;
	display: flex;
	flex-direction: column;
	height: calc(100vh - 73px);
	position: sticky;
	top: 0;
}

/* ── Sections ── */
.purity-co-section {
	margin-bottom: 36px;
}
.purity-co-heading {
	font-family: 'Satoshi', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 18px;
}
.purity-co-subtext {
	font-size: 13px;
	color: #888;
	margin: -10px 0 16px;
}

/* ── Form fields ── */
.purity-co-field-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}
.purity-co-field-row-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}
.purity-co-field {
	margin: 0;
	flex: 1;
}
.purity-co-field-full {
	flex: 1 1 100%;
}
.purity-co-field-half {
	flex: 1;
}
.purity-co-field input,
.purity-co-field select {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #1a2744;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	outline: none;
	transition: border-color 0.2s;
	-webkit-appearance: none;
	appearance: none;
}
.purity-co-field select {
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}
.purity-co-field input:focus,
.purity-co-field select:focus {
	border-color: #1a2744;
}
.purity-co-field input::placeholder {
	color: #aaa;
}

/* ── Checkboxes ── */
.purity-co-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #444;
	cursor: pointer;
	margin-top: 14px;
	line-height: 1.4;
}
.purity-co-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.purity-co-check-box {
	width: 20px;
	height: 20px;
	border: 1.5px solid #ccc;
	border-radius: 5px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, border-color 0.15s;
}
.purity-co-checkbox-label input:checked + .purity-co-check-box {
	background: #1a2744;
	border-color: #1a2744;
}
.purity-co-checkbox-label input:checked + .purity-co-check-box::after {
	content: '';
	width: 10px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	margin-top: -2px;
}

/* ── Payment gateways ── */
.purity-co-pay-label {
	font-size: 14px;
	color: #1a2744;
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.purity-co-pay-label svg {
	flex-shrink: 0;
}
.purity-co-gateways {
	display: flex;
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 14px;
	margin-bottom: 16px;
	background: #fff;
	padding: 4px;
	height: 52px;
	box-sizing: border-box;
}
.purity-co-gw {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 100%;
	padding: 0 8px;
	border: none;
	background: none;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #1a2744;
	cursor: pointer;
	border-radius: 10px;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}
.purity-co-gw img {
	height: 20px;
	width: auto;
	filter: brightness(0);
	transition: filter 0.2s;
}
.purity-co-gw.active {
	background: #1a2744;
	color: #fff;
}
.purity-co-gw.active img {
	filter: brightness(0) invert(1);
}
/* Keep original icon color (e.g. Bitcoin orange) */
.purity-co-gw--color img {
	filter: none !important;
}
.purity-co-gw[data-method="venmo"] img {
	height: 26px;
}
.purity-co-gw-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
.purity-co-gateway-fields {
	margin-bottom: 16px;
}
/* Style WC payment gateway fields */
.purity-co-gateway-fields .form-row,
.purity-co-gateway-fields p {
	margin-bottom: 12px;
}
.purity-co-gateway-fields input[type="text"],
.purity-co-gateway-fields input[type="tel"],
.purity-co-gateway-fields input[type="number"] {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #1a2744;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	outline: none;
}
.purity-co-gateway-fields input:focus {
	border-color: #1a2744;
}
/* Hide default WC payment box styling */
.purity-co .woocommerce-checkout-payment {
	background: none !important;
	border: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
}
.purity-co .woocommerce-checkout-payment .place-order {
	display: none;
}
.purity-co #payment ul.payment_methods {
	display: none;
}

/* ── I Agree / Terms ── */
.purity-co-agree-label {
	margin-top: 0;
	margin-bottom: 12px;
}
.purity-co-ruo {
	margin-bottom: 0;
	margin-top: -20px;
	padding: 0;
}
.purity-co-agree-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1a2744;
}
.purity-co-terms-intro {
	font-size: 13px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 12px;
}
.purity-co-terms-list {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}
.purity-co-terms-list li {
	position: relative;
	padding-left: 28px;
	font-size: 13px;
	color: #444;
	line-height: 1.6;
	margin-bottom: 8px;
}
.purity-co-terms-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #e8f5e9;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 3L9 1' stroke='%234caf50' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}
.purity-co-terms-legal {
	font-size: 12px;
	color: #888;
	line-height: 1.6;
}
.purity-co-terms-legal a {
	color: #1a2744;
	font-weight: 600;
	text-decoration: underline;
}

/* ── Submit button ── */
.purity-co-submit {
	width: 100%;
	height: 56px;
	background: #1a2744;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 14px;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 8px;
}
.purity-co-submit:hover {
	background: #2a3a5c;
}
.purity-co-submit:disabled {
	background: #ccc;
	color: #888;
	cursor: not-allowed;
}

/* ── Order summary (right column) ── */
.purity-co-items-scroll {
	flex: 1;
	overflow-y: auto;
	padding: 48px 64px 24px 48px;
}
.purity-co-item {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	padding: 20px 24px;
	margin-bottom: 12px;
}
.purity-co-item-img {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	background: #f5f5f5;
	overflow: visible;
	flex-shrink: 0;
	position: relative;
}
.purity-co-item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
}
.purity-co-item-qty {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #1a2744;
	color: #fff;
	font-family: 'Satoshi', sans-serif;
	font-size: 11px;
	font-weight: 700;
	width: 22px;
	height: 22px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.purity-co-item-info {
	flex: 1;
	min-width: 0;
}
.purity-co-item-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #1a2744;
	display: block;
	margin-bottom: 6px;
}
.purity-co-item-meta {
	font-size: 13px;
	color: #999;
	display: block;
}
.purity-co-item-price {
	font-family: 'Satoshi', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1a2744;
	flex-shrink: 0;
	white-space: nowrap;
}
/* Force WC price spans inline inside checkout */
.purity-co .woocommerce-Price-amount,
.purity-co .woocommerce-Price-amount bdi,
.purity-co .woocommerce-Price-currencySymbol {
	display: inline !important;
	white-space: nowrap;
}
.purity-co-item + .purity-co-item {
	margin-top: 0;
}

/* Totals — pinned to bottom on desktop */
.purity-co-totals {
	flex-shrink: 0;
	padding: 24px 64px 48px 48px;
	border-top: 1px solid #e8e8e8;
	background: #f7f7f7;
}
.purity-co-totals-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.purity-co-totals-row span:first-child {
	font-size: 14px;
	color: #555;
	display: flex;
	align-items: center;
	gap: 4px;
}
.purity-co-totals-row span:last-child {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	white-space: nowrap;
}
.purity-co-totals-total {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #ddd;
}
.purity-co-totals-total span:first-child {
	font-family: 'Satoshi', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1a2744;
}
.purity-co-totals-total span:last-child {
	font-size: 20px;
}

/* Hide the outer .woocommerce wrapper the shortcode injects before our <!DOCTYPE> */
.purity-checkout-page > .wp-block-group > .wp-block-post-content > .woocommerce {
	display: contents;
}
.purity-checkout-page > .wp-block-group > .wp-block-post-content > .woocommerce > .woocommerce-notices-wrapper:first-child {
	display: none;
}

/* ── WC notices on checkout ── */
.purity-checkout-page .woocommerce-NoticeGroup,
.purity-co .woocommerce-notices-wrapper {
	max-width: 58%;
	margin: 0;
	margin-left: auto;
	padding: 16px 80px 0;
	margin-right: 42%;
}
.purity-checkout-page .woocommerce-error {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 14px 20px;
	color: #991b1b;
	list-style: none;
	margin: 0;
}

/* ── Checkout Responsive: Tablet (<=1024px) ── */
@media (max-width: 1024px) {
	.purity-co-left {
		padding: 40px 36px 56px 36px;
	}
	.purity-co-items-scroll {
		padding: 40px 36px 20px 36px;
	}
	.purity-co-totals {
		padding: 20px 36px 40px 36px;
	}
}

/* ── Checkout Responsive: Small Tablet / Large Phone (<=768px) ── */
@media (max-width: 768px) {
	.purity-co-layout {
		flex-direction: column-reverse;
		background: #fff;
	}
	.purity-co-left {
		width: 100%;
		padding: 32px 24px 48px;
	}
	.purity-co-right {
		width: 100%;
		height: auto;
		position: static;
		border-left: none;
		border-bottom: 1px solid #eee;
	}
	.purity-co-items-scroll {
		padding: 24px 24px 16px;
		overflow-y: visible;
	}
	.purity-co-totals {
		padding: 16px 24px 24px;
	}
	.purity-co-item {
		margin-bottom: 12px;
	}
	.purity-co-field-row {
		flex-direction: row;
	}
	.purity-co-heading {
		font-size: 18px;
	}
	.purity-co-logo-bar {
		padding: 18px 0;
	}
	.purity-co-logo {
		font-size: 20px;
		letter-spacing: 5px;
	}
}

/* ── Checkout Responsive: Mobile (<=480px) ── */
@media (max-width: 480px) {
	.purity-co-left {
		padding: 24px 16px 40px;
	}
	.purity-co-items-scroll {
		padding: 20px 16px 12px;
	}
	.purity-co-totals {
		padding: 12px 16px 20px;
	}
	.purity-co-field-row {
		flex-direction: column;
	}
	.purity-co-field-half {
		flex: 1 1 100%;
	}
	.purity-co-field-row-3 {
		grid-template-columns: 1fr;
	}
	.purity-co-gateways {
		height: 48px;
		padding: 4px;
	}
	.purity-co-gw {
		height: 100%;
		padding: 0 6px;
		gap: 0;
	}
	.purity-co-gw span {
		display: none;
	}
	.purity-co-gw img {
		height: 18px;
	}
	.purity-co-pay-label {
		white-space: nowrap;
	}
	.purity-co-heading {
		font-size: 17px;
		margin-bottom: 14px;
	}
	.purity-co-submit {
		height: 52px;
		font-size: 15px;
	}
	.purity-co-item {
		padding: 16px;
		gap: 14px;
	}
	.purity-co-item-img {
		width: 56px;
		height: 56px;
	}
	.purity-co-item-name {
		font-size: 15px;
	}
	.purity-co-item-price {
		font-size: 16px;
	}
	.purity-co-totals-total span:last-child {
		font-size: 18px;
	}
	.purity-co-terms-list li {
		font-size: 12px;
	}
	.purity-co-logo {
		font-size: 18px;
		letter-spacing: 4px;
	}
	.purity-co-logo-bar {
		padding: 16px 0;
	}
	.purity-co-card-fields .purity-co-field-row {
		flex-direction: row;
	}
	.purity-co-card-fields .purity-co-field-half {
		flex: 1;
	}
}

/* ═══════════════════════════════════════════════════
   ORDER CONFIRMED / THANK YOU PAGE
   ═══════════════════════════════════════════════════ */

.purity-ty {
	background: #f7f7f7;
	min-height: calc(100vh - 73px);
	display: flex;
	justify-content: center;
	padding: 60px 24px 80px;
}
.purity-ty-inner {
	width: 100%;
	max-width: 680px;
	text-align: center;
}

/* ── Checkmark ── */
.purity-ty-check {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #1a2744;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 28px;
}

/* ── Heading ── */
.purity-ty-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 36px;
	font-weight: 500;
	color: #1a2744;
	margin: 0 0 10px;
}
.purity-ty-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: #888;
	margin: 0 0 40px;
}

/* ── Summary card ── */
.purity-ty-card {
	background: #f0f2f5;
	border-radius: 16px;
	padding: 28px 32px;
	text-align: left;
	margin-bottom: 36px;
}
.purity-ty-card-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 20px;
}
.purity-ty-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
}
.purity-ty-label {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #888;
	display: flex;
	align-items: center;
	gap: 4px;
}
.purity-ty-value {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	text-align: right;
}
/* ── Items table ── */
.purity-ty-items-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 4px;
}
.purity-ty-items-table thead th {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
	text-align: left;
}
.purity-ty-items-table thead th:nth-child(2) {
	text-align: center;
	width: 50px;
}
.purity-ty-items-table thead th:nth-child(3),
.purity-ty-items-table thead th:nth-child(4) {
	text-align: right;
}
.purity-ty-items-table tbody td {
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1a2744;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}
.purity-ty-items-table tbody td:first-child {
	font-weight: 600;
	padding-right: 16px;
}
.purity-ty-items-table tbody td:nth-child(2) {
	text-align: center;
	color: #666;
	font-weight: 600;
	width: 50px;
}
.purity-ty-items-table tbody td:nth-child(3) {
	text-align: right;
	white-space: nowrap;
	color: #666;
	font-weight: 600;
}
.purity-ty-items-table tbody td:nth-child(4) {
	text-align: right;
	white-space: nowrap;
}
.purity-ty-items-table tbody tr:last-child td {
	border-bottom: none;
}
.purity-ty-divider {
	border-top: 1px solid #ddd;
	margin: 16px 0;
}
.purity-ty-row-total .purity-ty-label {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
}
.purity-ty-row-total .purity-ty-value {
	font-size: 17px;
}

/* ── Addresses ── */
.purity-ty-addresses {
	display: flex;
	gap: 24px;
	margin-bottom: 36px;
	text-align: left;
}
.purity-ty-address-col {
	flex: 1;
	background: #f0f2f5;
	border-radius: 16px;
	padding: 24px 28px;
}
.purity-ty-address-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 10px;
}
.purity-ty-address-text {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin: 0;
}

/* ── Info bullets ── */
.purity-ty-info {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	text-align: left;
}
.purity-ty-info li {
	position: relative;
	padding-left: 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #444;
	line-height: 1.7;
	margin-bottom: 14px;
}
.purity-ty-info li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: #999;
}
.purity-ty-info li a {
	color: #1a2744;
	text-decoration: underline;
}
.purity-ty-info li strong {
	color: #1a2744;
}

/* ── Continue Browsing button ── */
.purity-ty-btn {
	display: block;
	width: 100%;
	height: 56px;
	line-height: 56px;
	background: #1a2744;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 14px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
}
.purity-ty-btn:hover {
	background: #2a3a5c;
	color: #fff;
}

/* ── Thank You Responsive: Tablet (<=768px) ── */
@media (max-width: 768px) {
	.purity-ty {
		padding: 40px 20px 60px;
	}
	.purity-ty-title {
		font-size: 28px;
	}
	.purity-ty-card {
		padding: 24px;
	}
	.purity-ty-addresses {
		flex-direction: column;
		gap: 16px;
	}
}

/* ── Thank You Responsive: Mobile (<=480px) ── */
@media (max-width: 480px) {
	.purity-ty {
		padding: 32px 16px 48px;
	}
	.purity-ty-check {
		width: 56px;
		height: 56px;
		margin-bottom: 20px;
	}
	.purity-ty-check svg {
		width: 26px;
		height: 26px;
	}
	.purity-ty-title {
		font-size: 24px;
	}
	.purity-ty-subtitle {
		font-size: 14px;
		margin-bottom: 28px;
	}
	.purity-ty-card {
		padding: 20px 16px;
		border-radius: 14px;
	}
	.purity-ty-address-col {
		padding: 20px 16px;
		border-radius: 14px;
	}
	.purity-ty-row {
		flex-direction: column;
		gap: 2px;
		margin-bottom: 14px;
	}
	.purity-ty-value {
		text-align: left;
	}
	.purity-ty-btn {
		height: 52px;
		line-height: 52px;
		font-size: 15px;
	}
}
}

/* ── COA Public Page ── */
.purity-coa-section {
	max-width: 960px;
	margin: 0 auto;
	padding: 64px 40px 80px;
}

/* Header */
.purity-coa-header {
	margin-bottom: 36px;
}
.purity-coa-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin: 0 0 12px;
}
.purity-coa-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Search bar */
.purity-coa-search-bar {
	margin-bottom: 32px;
}
.purity-coa-search-input-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 14px 18px;
	transition: border-color 0.2s;
}
.purity-coa-search-input-wrap:focus-within {
	border-color: #111;
}
.purity-coa-search-input {
	flex: 1;
	border: none;
	outline: none;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: #111;
	background: transparent;
}
.purity-coa-search-input::placeholder {
	color: #aaa;
}

/* Cards container */
.purity-coa-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Individual card */
.purity-coa-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	padding: 24px 32px 28px;
	transition: border-color 0.2s;
}
.purity-coa-card:hover {
	border-color: #ccc;
}

/* Card tags */
.purity-coa-card-tags {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
}
.purity-coa-tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #999;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	letter-spacing: 0.02em;
}
.purity-coa-tag--active {
	color: #111;
	border-color: #111;
	background: #f8f8f8;
}

/* Card body */
.purity-coa-card-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Card left: image + product info */
.purity-coa-card-left {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}
.purity-coa-card-thumb {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	object-fit: cover;
	background: #f5f5f5;
	flex-shrink: 0;
}
.purity-coa-card-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.purity-coa-card-label {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #999;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.purity-coa-card-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111;
	margin: 0;
}

/* Card right: dose pills */
.purity-coa-card-right {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}
.purity-coa-dose-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.purity-coa-dose-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111;
	background: #fff;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	white-space: nowrap;
	position: relative;
}
.purity-coa-dose-pill:hover {
	background: #111;
	border-color: #111;
	color: transparent;
}
.purity-coa-dose-pill:hover::after {
	content: 'View COA';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.03em;
}
.purity-coa-dose-pill:active {
	background: #000;
	border-color: #000;
	color: #fff;
}

/* Note */
.purity-coa-note {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: #999;
	text-align: center;
	margin-top: 32px;
	line-height: 1.5;
}
.purity-coa-note a {
	color: #111;
	text-decoration: underline;
}

/* ── COA Responsive ── */
@media (max-width: 768px) {
	.purity-coa-section {
		padding: 40px 20px 60px;
	}
	.purity-coa-title {
		font-size: 28px;
	}
	.purity-coa-subtitle {
		font-size: 14px;
	}
	.purity-coa-card {
		padding: 18px 20px 22px;
	}
	.purity-coa-card-tags {
		margin-bottom: 14px;
	}
	.purity-coa-card-body {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.purity-coa-card-left {
		width: 100%;
	}
	.purity-coa-card-thumb {
		width: 60px;
		height: 60px;
	}
	.purity-coa-card-name {
		font-size: 18px;
	}
	.purity-coa-card-right {
		width: 100%;
		padding-left: 80px;
	}
	.purity-coa-dose-pill {
		padding: 7px 16px;
		font-size: 12px;
	}
}
@media (max-width: 480px) {
	.purity-coa-card-right {
		padding-left: 0;
	}
}

/* ==========================================================================
   Collections Page
   ========================================================================== */
.purity-collections-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 40px 80px;
}

/* ── Collection Tabs ── */
.purity-collections-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}
.purity-collections-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 100px;
	border: 1px solid #d0d0d0;
	background: #fff;
	color: #444;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}
.purity-collections-tab:hover {
	border-color: #1a2744;
	color: #1a2744;
}
.purity-collections-tab.active {
	background: #1a2744;
	border-color: #1a2744;
	color: #fff;
}
.purity-collections-tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 100px;
	background: rgba(0,0,0,0.08);
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}
.purity-collections-tab.active .purity-collections-tab-count {
	background: rgba(255,255,255,0.2);
	color: #fff;
}

/* ── Collection Description ── */
.purity-collections-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 700px;
}

/* ── Reuse PLP grid for product cards ── */
.purity-collections-section .purity-plp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* ── Collections Responsive ── */
@media (max-width: 1024px) {
	.purity-collections-section {
		padding: 0 32px 60px;
	}
	.purity-collections-section .purity-plp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.purity-collections-tab {
		font-size: 13px;
		padding: 8px 16px;
	}
}
@media (max-width: 768px) {
	.purity-collections-section {
		padding: 0 20px 48px;
	}
	.purity-collections-tabs {
		gap: 8px;
		margin-bottom: 28px;
		padding-bottom: 16px;
	}
	.purity-collections-tab {
		font-size: 12px;
		padding: 8px 14px;
	}
	.purity-collections-tab-count {
		min-width: 18px;
		height: 18px;
		font-size: 10px;
	}
	.purity-collections-section .purity-plp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}
@media (max-width: 480px) {
	.purity-collections-section {
		padding: 0 14px 36px;
	}
	.purity-collections-tabs {
		gap: 6px;
		margin-bottom: 24px;
	}
	.purity-collections-tab {
		font-size: 11px;
		padding: 6px 12px;
	}
	.purity-collections-section .purity-plp-grid {
		gap: 10px;
	}
}

/* Hidden per request — "The Purity Labs Difference" section (hide, not delete; remove this rule to restore) */
.pd { display: none !important; }

/* Hidden per request — "Browse by Research Focus" card images (hide, not delete; remove to restore) */
.purity-brf-card-img { display: none !important; }

/* Hero trust row — compact badges under the CTAs (revamped from the old .purity-badges strip) */
.purity-hero-trust {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 28px;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(26, 39, 68, 0.12);
}
.purity-hero-trust-icon {
	display: block;
	max-height: 40px;
	width: auto;
}
@media (max-width: 768px) {
	.purity-hero-trust {
		gap: 28px;
		margin-top: 20px;
		padding-top: 18px;
		justify-content: center;
	}
	.purity-hero-trust-icon {
		max-height: 38px;
	}
}

/* Research Compounds — "View More" link below the grid */
.purity-compounds-more {
	text-align: center;
	margin-top: 44px;
}

/* ===== PLP custom filter dropdowns (Navy-rebranded) ===== */
.purity-dropdown-wrap {
	position: relative;
}
.purity-dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 8px 0;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #888;
	cursor: pointer;
	min-width: 180px;
}
.purity-dropdown-trigger-text {
	flex: 1;
	text-align: left;
}
.purity-dropdown-chevron {
	flex-shrink: 0;
	transition: transform 0.2s;
	color: #999;
}
.purity-dropdown-wrap--open .purity-dropdown-chevron {
	transform: rotate(180deg);
}
.purity-dropdown-trigger--active {
	color: #1a2744;
	font-weight: 600;
}
.purity-dropdown-trigger--active .purity-dropdown-chevron {
	color: #1a2744;
}
.purity-dropdown-panel {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: 280px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.09);
	z-index: 1000;
	overflow: hidden;
}
.purity-dropdown-wrap--right .purity-dropdown-panel {
	left: auto;
	right: 0;
}
.purity-dropdown-wrap--open .purity-dropdown-panel {
	display: block;
}
.purity-dropdown-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px 8px;
	border-bottom: 1px solid #f0f0f0;
}
.purity-dropdown-header-title {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #1a2744;
}
.purity-dropdown-clear {
	background: none;
	border: none;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #bbb;
	cursor: pointer;
	padding: 0;
	transition: color 0.15s;
}
.purity-dropdown-clear:hover {
	color: #666;
}
.purity-dropdown-list {
	padding: 4px 0;
}
.purity-dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px;
	cursor: pointer;
	transition: background 0.12s;
}
.purity-dropdown-item:hover {
	background: #fafafa;
}
.purity-dropdown-radio {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border: 1.5px solid #ddd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
}
.purity-dropdown-radio-dot {
	width: 0;
	height: 0;
	border-radius: 50%;
	background: #fff;
	transition: all 0.15s;
}
.purity-dropdown-item--active .purity-dropdown-radio {
	background: #1a2744;
	border-color: #1a2744;
}
.purity-dropdown-item--active .purity-dropdown-radio-dot {
	width: 6px;
	height: 6px;
}
.purity-dropdown-item-name {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #1a2744;
	flex: 1;
}
.purity-dropdown-item-count {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	color: #999;
	flex-shrink: 0;
}

/* ── Collection Dropdown ── */
.purity-collection-wrap {
	position: relative;
}
.purity-collection-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 8px 0;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #888;
	cursor: pointer;
	min-width: 180px;
}
.purity-collection-trigger-text {
	flex: 1;
	text-align: left;
}
.purity-collection-chevron {
	flex-shrink: 0;
	transition: transform 0.2s;
	color: #999;
}
.purity-collection-wrap--open .purity-collection-chevron {
	transform: rotate(180deg);
}
.purity-collection-trigger--active {
	color: #1a2744;
	font-weight: 600;
}
.purity-collection-trigger--active .purity-collection-chevron {
	color: #1a2744;
}
.purity-collection-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: 300px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba(0,0,0,0.09);
	z-index: 1000;
	overflow: hidden;
}
.purity-collection-wrap--open .purity-collection-dropdown {
	display: block;
}
.purity-collection-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 14px 16px 10px;
	border-bottom: 1px solid #f0f0f0;
}
.purity-collection-header-title {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #1a2744;
}
.purity-collection-header-count {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #999;
	margin-top: 1px;
}
.purity-collection-header-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}
.purity-collection-selectall,
.purity-collection-clear {
	background: none;
	border: none;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #bbb;
	cursor: pointer;
	padding: 0;
	transition: color 0.15s;
}
.purity-collection-selectall:hover,
.purity-collection-clear:hover {
	color: #666;
}
.purity-collection-list {
	max-height: 280px;
	overflow-y: auto;
	padding: 4px 0;
}
.purity-collection-list::-webkit-scrollbar {
	width: 3px;
}
.purity-collection-list::-webkit-scrollbar-track {
	background: transparent;
}
.purity-collection-list::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 3px;
}
.purity-collection-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px;
	cursor: pointer;
	transition: background 0.12s;
}
.purity-collection-item:hover {
	background: #fafafa;
}
.purity-collection-check {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}
.purity-collection-check input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.purity-collection-checkmark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1.5px solid #ddd;
	border-radius: 6px;
	background: #fff;
	transition: all 0.15s;
}
.purity-collection-checkmark svg {
	opacity: 0;
	transition: opacity 0.15s;
}
.purity-collection-item--active .purity-collection-checkmark {
	background: #1a2744;
	border-color: #1a2744;
}
.purity-collection-item--active .purity-collection-checkmark svg {
	opacity: 1;
}
.purity-collection-item-name {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #1a2744;
	flex: 1;
}
.purity-collection-badge {
	font-family: 'Manrope', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.4px;
	padding: 3px 8px;
	border-radius: 5px;
	flex-shrink: 0;
}
.purity-collection-badge--popular {
	background: #f3f3f3;
	color: #1a2744;
	border: 1px solid #e5e5e5;
}
.purity-collection-badge--new {
	background: transparent;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}
.purity-collection-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	border-top: 1px solid #f0f0f0;
}
.purity-collection-footer-count {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #bbb;
}
.purity-collection-apply {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	background: #1a2744;
	border: none;
	border-radius: 8px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background 0.15s;
}
.purity-collection-apply:hover {
	background: #2a3a5c;
}
.purity-plp-apply {
	display: none;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	background: #1a2744;
	border: none;
	border-radius: 8px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background 0.15s;
	flex-shrink: 0;
}
.purity-plp-apply:hover { background: #2a3a5c; }
.purity-plp-apply--visible { display: block; }

/* ===== PLP filters — mobile bottom-sheet ===== */
@media (max-width: 768px) {
	.purity-plp-filters { flex-direction: row; flex-wrap: nowrap; gap: 0; padding: 28px 0 24px; align-items: center; }
	.purity-plp-filters-label { display: none; }
	.purity-plp-filters-left { flex: 1; gap: 0; min-width: 0; }
	.purity-plp-filter-group { flex: 1; flex-direction: row; gap: 0; }
	.purity-plp-filters-right { margin-left: 0; flex-shrink: 0; }
	.purity-plp-apply { padding: 7px 14px; font-size: 11px; }
	.purity-dropdown-wrap,
	.purity-collection-wrap { flex: 1; min-width: 0; }
	.purity-dropdown-trigger,
	.purity-collection-trigger { min-width: 0; font-size: 11px; gap: 4px; padding: 8px 0; }
	.purity-dropdown-trigger svg:first-child,
	.purity-collection-trigger svg:first-child { display: none; }
	.purity-dropdown-trigger-text,
	.purity-collection-trigger-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.purity-dropdown-chevron,
	.purity-collection-chevron { width: 10px; height: 10px; flex-shrink: 0; }
	.purity-dropdown-panel,
	.purity-collection-dropdown {
		position: fixed; top: auto; bottom: 0; left: 0; right: 0;
		width: 100%; border-radius: 16px 16px 0 0;
		max-height: 80vh;
		display: flex; flex-direction: column;
		overflow: hidden;
		transform: translateY(100%); transition: transform 0.25s ease;
		visibility: hidden;
	}
	.purity-dropdown-wrap--open .purity-dropdown-panel,
	.purity-collection-wrap--open .purity-collection-dropdown {
		transform: translateY(0); visibility: visible;
	}
	/* Pinned header/footer, scrollable list so APPLY + all items stay reachable */
	.purity-dropdown-header,
	.purity-collection-header,
	.purity-collection-footer {
		flex-shrink: 0;
	}
	.purity-dropdown-list,
	.purity-collection-list {
		flex: 1 1 auto;
		max-height: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.purity-collection-footer {
		padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	}
	.purity-filter-overlay {
		display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
		background: rgba(0,0,0,0.35); z-index: 999; opacity: 0;
		transition: opacity 0.25s ease;
	}
	.purity-filter-overlay--visible { display: block; opacity: 1; }
}

/* Shop hero — solid navy variant (scoped so Collections/COA heroes stay gray) */
.purity-plp-hero--navy {
	background: #1a2744;
}
.purity-plp-hero--navy .purity-plp-hero-inner h1 {
	color: #fff;
}
.purity-plp-hero--navy .purity-plp-hero-sub {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	max-width: 540px;
	margin: 14px 0 0;
}

/* ===== Order Status page (Navy-rebranded) ===== */
.purity-ost-section {
	max-width: 720px;
	margin: 0 auto;
	padding: 64px 40px 80px;
}
.purity-ost-intro {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 32px;
}

/* Form */
.purity-ost-form-wrap--collapsed {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #eee;
}
.purity-ost-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.purity-ost-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.purity-ost-field label {
	display: block;
	font-family: 'Satoshi', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #333;
	margin-bottom: 6px;
}
.purity-ost-field input {
	width: 100%;
	padding: 12px 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #1a2744;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.purity-ost-field input:focus {
	border-color: #1a2744;
	background: #fff;
}
.purity-ost-field input::placeholder {
	color: #bbb;
}
.purity-ost-submit {
	align-self: center;
	padding: 13px 48px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: #1a2744;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 4px;
}
.purity-ost-submit:hover {
	background: #222;
}
.purity-ost-error {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	padding: 12px 18px;
	background: #fef2f2;
	color: #c62828;
	font-size: 14px;
	border-radius: 10px;
}

/* Result Header */
.purity-ost-result {
	animation: purity-ost-fadein 0.3s ease;
}
@keyframes purity-ost-fadein {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.purity-ost-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 32px;
}
.purity-ost-ref {
	font-family: 'Satoshi', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 4px;
}
.purity-ost-date {
	font-size: 13px;
	color: #999;
}
.purity-ost-status {
	display: inline-block;
	padding: 6px 14px;
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
	text-transform: capitalize;
	white-space: nowrap;
}
.purity-ost-status--completed {
	background: #e8f5e9;
	color: #2e7d32;
}
.purity-ost-status--processing {
	background: #e3f2fd;
	color: #1565c0;
}
.purity-ost-status--on-hold,
.purity-ost-status--pending {
	background: #fff8e1;
	color: #f57f17;
}
.purity-ost-status--cancelled,
.purity-ost-status--refunded,
.purity-ost-status--failed {
	background: #fce4ec;
	color: #c62828;
}

/* Cancelled Banner */
.purity-ost-cancelled {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px;
	background: #fce4ec;
	color: #c62828;
	font-size: 14px;
	font-weight: 500;
	border-radius: 12px;
	margin-bottom: 32px;
}

/* Progress Tracker */
.purity-ost-progress {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 40px;
	padding: 28px 0;
}
.purity-ost-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.purity-ost-step-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	color: #bbb;
	transition: all 0.3s;
}
.purity-ost-step--completed .purity-ost-step-icon {
	background: #1a2744;
	color: #fff;
}
.purity-ost-step--active .purity-ost-step-icon {
	background: #1a2744;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.12);
}
.purity-ost-step-label {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #bbb;
	text-align: center;
	max-width: 80px;
}
.purity-ost-step--completed .purity-ost-step-label,
.purity-ost-step--active .purity-ost-step-label {
	color: #1a2744;
}
.purity-ost-step-line {
	flex: 1;
	height: 2px;
	background: #e8e8e8;
	margin: 22px 12px 0;
	min-width: 40px;
}
.purity-ost-step-line--done {
	background: #1a2744;
}

/* Cards */
.purity-ost-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 16px;
}
.purity-ost-card-title {
	font-family: 'Satoshi', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 16px;
}

/* Items */
.purity-ost-items {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.purity-ost-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f5f5f5;
}
.purity-ost-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.purity-ost-item:first-child {
	padding-top: 0;
}
.purity-ost-item-thumb {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	object-fit: cover;
	background: #f5f5f5;
	flex-shrink: 0;
}
.purity-ost-item-thumb--empty {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #f5f5f5;
	flex-shrink: 0;
}
.purity-ost-item-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}
.purity-ost-item-name {
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1a2744;
}
.purity-ost-item-qty {
	font-size: 12px;
	color: #999;
}
.purity-ost-item-total {
	font-family: 'Satoshi', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1a2744;
	flex-shrink: 0;
}

/* Summary */
.purity-ost-summary {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.purity-ost-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
	color: #666;
	border-bottom: 1px solid #f5f5f5;
}
.purity-ost-summary-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.purity-ost-summary-row:first-child {
	padding-top: 0;
}
.purity-ost-summary-total {
	font-family: 'Satoshi', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #1a2744;
	border-bottom: none;
	padding-top: 12px;
	margin-top: 4px;
	border-top: 1px solid #eee;
}
.purity-ost-summary-method {
	font-size: 13px;
	color: #999;
	border-top: none;
	padding-top: 4px;
}

/* Address */
.purity-ost-address {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

/* Track another */
.purity-ost-another {
	text-align: center;
	margin-top: 32px;
}
.purity-ost-another a {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.purity-ost-another a:hover {
	color: #444;
}

/* Order Status Responsive */
@media (max-width: 600px) {
	.purity-ost-section {
		padding: 40px 20px 60px;
	}
	.purity-ost-fields {
		grid-template-columns: 1fr;
	}
	.purity-ost-header {
		flex-direction: column;
		gap: 12px;
	}
	.purity-ost-ref {
		font-size: 18px;
	}
	.purity-ost-progress {
		padding: 20px 0;
	}
	.purity-ost-step-icon {
		width: 36px;
		height: 36px;
	}
	.purity-ost-step-icon svg {
		width: 16px;
		height: 16px;
	}
	.purity-ost-step-label {
		font-size: 11px;
		max-width: 60px;
	}
	.purity-ost-step-line {
		margin: 18px 6px 0;
		min-width: 20px;
	}
	.purity-ost-card {
		padding: 18px;
	}
	.purity-ost-item {
		gap: 10px;
	}
	.purity-ost-item-thumb,
	.purity-ost-item-thumb--empty {
		width: 38px;
		height: 38px;
	}
	.purity-ost-submit {
		width: 100%;
	}
}

/* ════════════════════════════════════════════════════════════
   PDP — Refined Clinical / Premium restyle (visual layer)
   Elevates buy box + harmonizes section cards/tabs/titles.
   Visual-only (borders, shadows, radius, type) — no layout/markup change.
   ════════════════════════════════════════════════════════════ */

/* — Buy box: premium image frame — */
.purity-pdp-image {
	background: linear-gradient(160deg, #f3f4f6 0%, #e7e9ee 55%, #dfe2e8 100%);
	box-shadow: inset 0 0 80px rgba(26,39,68,0.06);
}

/* — Buy box: title + price polish — */
.purity-pdp-title { letter-spacing: -0.6px; }

/* — Variation cards: softer, premium — */
.purity-pdp-var {
	border-color: #e4e6ea;
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.purity-pdp-var:hover {
	border-color: #1a2744;
	box-shadow: 0 4px 14px rgba(26,39,68,0.08);
	transform: translateY(-1px);
}
.purity-pdp-var.active {
	box-shadow: 0 6px 18px rgba(26,39,68,0.18);
}

/* — Qty + Add-to-cart: refined — */
.purity-pdp-qty { border-color: #e4e6ea; }
.purity-pdp-add-to-cart {
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(26,39,68,0.16);
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.purity-pdp-add-to-cart:hover {
	background: #2a3a5c;
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(26,39,68,0.22);
}

/* — Unified premium card treatment across info sections — */
.purity-pdp-cert-card,
.purity-pdp-specs,
.purity-pdp-rc {
	background: #fff;
	border: 1px solid #ececf0;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(26,39,68,0.04);
}

/* — Section titles: tightened, premium — */
.purity-pdp-certs-title,
.purity-pdp-labresearch-title,
.purity-pdp-faq-left h2,
.purity-pdp-rc-inner h2 {
	font-family: 'Satoshi', sans-serif;
	color: #1a2744;
	letter-spacing: -0.4px;
}
/* Handling title stays white (sits on the navy band) */
.purity-pdp-handling-title {
	font-family: 'Satoshi', sans-serif;
	color: #fff;
	letter-spacing: -0.4px;
}

/* — Lab-research tabs: refined active state — */
.purity-pdp-lr-tab {
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
	border-radius: 10px;
}
.purity-pdp-lr-tab.active {
	background: #1a2744;
	color: #fff;
}

/* — FAQ: carded accordion — */
.purity-pdp-faq-right details {
	border: 1px solid #ececf0;
	border-radius: 14px;
	margin-bottom: 12px;
	padding: 0 24px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(26,39,68,0.04);
	transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.purity-pdp-faq-right details:first-child { border-top: 1px solid #ececf0; }
.purity-pdp-faq-right details:hover { box-shadow: 0 4px 14px rgba(26,39,68,0.07); }
.purity-pdp-faq-right details[open] {
	background: #f7f9fc;
	border-color: #d7deea;
	box-shadow: 0 6px 18px rgba(26,39,68,0.08);
}
.purity-pdp-faq-right .purity-faq-chevron {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	padding: 7px;
	border-radius: 50%;
	background: #f1f3f7;
	color: #1a2744;
	transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.purity-pdp-faq-right details[open] .purity-faq-chevron {
	transform: rotate(180deg);
	background: #1a2744;
	color: #fff;
}

/* COA section — trust strip beneath the report card */
.purity-pdp-certs-trust {
	max-width: 1400px;
	margin: 40px auto 0;
	padding: 28px 48px 0;
	border-top: 1px solid #ececf0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 44px;
}
.purity-pdp-certs-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: var(--text-sm);
	font-weight: 600;
	color: #1a2744;
}
.purity-pdp-certs-trust-item svg { flex-shrink: 0; }

/* PDP FAQ — more readable Q/A sizing */
.purity-pdp-faq-right summary { font-size: 17px; }
.purity-pdp-faq-right details p { font-size: 15px; }

/* ── Lab Research: all-light carded (pill tabs on top + light content card) ── */
.purity-pdp-labresearch-panel {
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-height: 0;
	overflow: visible;
	border-radius: 0;
}
.purity-pdp-lr-tabs {
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	gap: 10px;
	justify-content: center;
}
.purity-pdp-lr-tab,
.purity-pdp-lr-tab:nth-child(1),
.purity-pdp-lr-tab:nth-child(2),
.purity-pdp-lr-tab:nth-child(3),
.purity-pdp-lr-tab:nth-child(4),
.purity-pdp-lr-tab:nth-child(5) {
	flex: 0 0 auto;
	background: #fff;
	border: 1px solid #e4e6ea;
	border-radius: 50px;
	padding: 12px 22px;
	color: #1a2744;
	box-shadow: 0 1px 3px rgba(26,39,68,0.05);
}
.purity-pdp-lr-tab:first-child,
.purity-pdp-lr-tab:last-child { border-radius: 50px; }
.purity-pdp-lr-tab:hover {
	filter: none;
	border-color: #1a2744;
	box-shadow: 0 4px 12px rgba(26,39,68,0.08);
}
.purity-pdp-lr-tab.active {
	background: #1a2744;
	color: #fff;
	border-color: #1a2744;
	box-shadow: 0 6px 16px rgba(26,39,68,0.18);
}
.purity-pdp-lr-tab .purity-pdp-lr-tab-icon {
	width: 20px;
	height: 20px;
	filter: brightness(0);
	opacity: 0.6;
}
.purity-pdp-lr-tab.active .purity-pdp-lr-tab-icon {
	filter: brightness(0) invert(1);
	opacity: 1;
}
.purity-pdp-lr-content {
	background: #fff;
	border: 1px solid #ececf0;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(26,39,68,0.05);
}
.purity-pdp-lr-pane {
	padding: 44px 48px;
	color: #444;
	background: transparent;
	border: none;
	box-shadow: none;
}
.purity-pdp-lr-pane-header h3 { color: #1a2744; }
.purity-pdp-lr-bg-icon { opacity: 0.08; filter: brightness(0); }
.purity-pdp-lr-pane p { color: #555; }
.purity-pdp-lr-overall { border-top: 1px solid #ececf0; }
.purity-pdp-lr-overall p { color: #555; }
.purity-pdp-lr-overall strong { color: #1a2744; }

/* ── Lab Research: mobile accordion (works with pdp.js moving content after active tab @ <=900) ── */
@media (max-width: 900px) {
	.purity-pdp-labresearch-inner { padding: 0 16px; }
	.purity-pdp-lr-tabs {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
	.purity-pdp-lr-tab,
	.purity-pdp-lr-tab:nth-child(1),
	.purity-pdp-lr-tab:nth-child(2),
	.purity-pdp-lr-tab:nth-child(3),
	.purity-pdp-lr-tab:nth-child(4),
	.purity-pdp-lr-tab:nth-child(5) {
		width: 100%;
		justify-content: flex-start;
		border-radius: 12px;
		padding: 14px 18px;
		font-size: var(--text-base);
	}
	.purity-pdp-lr-tab .purity-pdp-lr-tab-icon { width: 18px; height: 18px; }
	.purity-pdp-lr-content {
		width: 100%;
		margin: 4px 0 8px;
	}
	.purity-pdp-lr-pane { padding: 26px 22px; }
	.purity-pdp-lr-pane-header { margin-bottom: 22px; align-items: center; gap: 14px; }
	.purity-pdp-lr-pane-header h3 { font-size: 22px; }
	.purity-pdp-lr-bg-icon { width: 44px; height: 44px; }
	.purity-pdp-lr-pane p { font-size: var(--text-base); line-height: 1.7; }
	.purity-pdp-lr-overall p { font-size: var(--text-sm); }
}

/* ── PDP: People Also Bought (reuses .purity-pdp-sug-card styling) ── */
.purity-pdp-pab {
	padding: 64px 0 84px;
	background: #fff;
}
.purity-pdp-pab-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
}
.purity-pdp-pab-title {
	font-family: 'Satoshi', sans-serif;
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 500;
	color: #1a2744;
	text-align: center;
	letter-spacing: -0.4px;
	margin: 0 0 40px;
}
/* PAB track inherits the Suggested slider (.purity-pdp-recs-track) as-is —
   a single-row horizontal scroller, not a wrapping grid. */
@media (max-width: 768px) {
	.purity-pdp-pab { padding: 48px 0 56px; }
	.purity-pdp-pab-inner { padding: 0 16px; }
}
