:root {
	--tl-ink: #082536;
	--tl-ink-deep: #031822;
	--tl-ink-soft: #173d4d;
	--tl-teal: #15978e;
	--tl-teal-bright: #24c7b7;
	--tl-teal-pale: #dff5f1;
	--tl-gold: #d89b32;
	--tl-gold-bright: #f2b84f;
	--tl-cream: #f5f3ed;
	--tl-white: #ffffff;
	--tl-mist: #f1f7f6;
	--tl-line: #d8e5e2;
	--tl-muted: #607782;
	--tl-shadow: 0 30px 90px rgba(4, 31, 43, 0.15);
	--tl-shadow-dark: 0 32px 110px rgba(0, 0, 0, 0.38);
	--tl-radius: 26px;
	--tl-width: 1440px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--tl-white);
	color: var(--tl-ink);
	font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, Helvetica, sans-serif;
	margin: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

img {
	height: auto;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

::selection {
	background: var(--tl-gold);
	color: var(--tl-ink-deep);
}

.screen-reader-text,
.tl-skip-link {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.tl-skip-link:focus {
	background: var(--tl-white);
	clip: auto !important;
	clip-path: none;
	color: var(--tl-ink);
	display: block;
	font-weight: 800;
	height: auto;
	left: 12px;
	padding: 14px 18px;
	top: 12px;
	width: auto;
	z-index: 9999;
}

/* Header */
.tl-announcement-bar {
	background: var(--tl-teal);
	color: var(--tl-white);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
	padding: 8px 22px;
	text-align: center;
	text-transform: uppercase;
}

.tl-announcement-bar a {
	color: inherit;
	display: block;
	text-decoration: none;
}

.tl-announcement-bar a:hover,
.tl-announcement-bar a:focus-visible {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tl-header {
	align-items: center;
	background: rgba(3, 24, 34, 0.97);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	grid-template-columns: auto 1fr auto;
	min-height: 84px;
	padding: 0 clamp(22px, 4.5vw, 72px);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(18px);
}

.tl-header.is-scrolled {
	box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
}

.admin-bar .tl-header {
	top: 32px;
}

.tl-brand img,
.tl-footer-brand img {
	display: block;
	width: clamp(184px, 16vw, 228px);
}

.tl-primary-nav {
	justify-self: end;
	margin-right: clamp(20px, 3vw, 44px);
}

.tl-menu {
	align-items: center;
	display: flex;
	gap: clamp(20px, 2.2vw, 38px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.tl-menu a,
.tl-sign-in {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.tl-menu a {
	color: rgba(255, 255, 255, 0.78);
	position: relative;
	transition: color 180ms ease;
}

.tl-menu a::after {
	background: var(--tl-gold-bright);
	bottom: -11px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.tl-menu a:hover,
.tl-menu a:focus-visible {
	color: var(--tl-white);
}

.tl-menu a:hover::after,
.tl-menu a:focus-visible::after,
.tl-menu .current-menu-item a::after {
	transform: scaleX(1);
}

.tl-sign-in {
	align-items: center;
	background: var(--tl-gold);
	border-radius: 999px;
	color: var(--tl-ink-deep);
	display: flex;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	white-space: nowrap;
	transition: background 180ms ease, transform 180ms ease;
}

.tl-sign-in:hover,
.tl-sign-in:focus-visible {
	background: var(--tl-gold-bright);
	transform: translateY(-2px);
}

.tl-menu-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: none;
	height: 44px;
	padding: 10px;
	width: 44px;
}

.tl-menu-toggle > span:not(.screen-reader-text) {
	background: var(--tl-white);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 23px;
}

/* Shared type and buttons */
.tl-eyebrow,
.tl-hero-kicker {
	align-items: center;
	display: flex;
	font-size: 10px;
	font-weight: 850;
	gap: 12px;
	letter-spacing: 0.19em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.tl-eyebrow {
	color: var(--tl-teal);
}

.tl-eyebrow::before {
	background: var(--tl-gold);
	content: "";
	height: 2px;
	width: 34px;
}

.tl-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: 10px;
	font-weight: 850;
	gap: 18px;
	justify-content: center;
	letter-spacing: 0.09em;
	min-height: 54px;
	padding: 0 27px;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tl-button:hover,
.tl-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	transform: translateY(-3px);
}

.tl-button-gold,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--tl-gold);
	color: var(--tl-ink-deep);
}

.tl-button-gold:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--tl-gold-bright);
	color: var(--tl-ink-deep);
}

.tl-button-ghost {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--tl-white);
}

.tl-button-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.52);
}

.tl-button-light {
	background: var(--tl-white);
	color: var(--tl-ink);
}

.tl-button-dark {
	background: var(--tl-ink-deep);
	color: var(--tl-white);
}

.tl-text-link {
	align-items: center;
	color: var(--tl-teal);
	display: inline-flex;
	font-size: 11px;
	font-weight: 850;
	gap: 13px;
	letter-spacing: 0.08em;
	padding-bottom: 7px;
	position: relative;
	text-transform: uppercase;
}

.tl-text-link::after {
	background: currentColor;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width 180ms ease;
	width: 46%;
}

.tl-text-link:hover::after {
	width: 100%;
}

.tl-text-link-dark {
	color: var(--tl-ink-deep);
}

.tl-js .tl-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 650ms ease, transform 650ms ease;
}

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

/* Homepage hero */
.tl-home-hero {
	background: var(--tl-ink-deep);
	color: var(--tl-white);
	min-height: 820px;
	overflow: hidden;
	position: relative;
}

.tl-hero-atmosphere,
.tl-hero-grid,
.tl-hero-glow {
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.tl-hero-atmosphere {
	overflow: hidden;
}

.tl-hero-grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: linear-gradient(90deg, black, transparent 88%);
}

.tl-hero-grid::after {
	background: linear-gradient(90deg, transparent, rgba(21, 151, 142, 0.08), transparent);
	content: "";
	inset: 0;
	position: absolute;
	transform: skewX(-14deg) translateX(22%);
}

.tl-hero-glow-one {
	background: radial-gradient(circle, rgba(36, 199, 183, 0.24), rgba(21, 151, 142, 0.06) 34%, transparent 68%);
	height: 820px;
	left: 54%;
	top: -80px;
	width: 820px;
}

.tl-hero-glow-two {
	background: radial-gradient(circle, rgba(216, 155, 50, 0.16), transparent 66%);
	height: 480px;
	left: 78%;
	top: 34%;
	width: 480px;
}

.tl-hero-molecule {
	color: rgba(36, 199, 183, 0.22);
	height: 780px;
	position: absolute;
	right: -120px;
	top: -55px;
	transform: rotate(-8deg);
	width: 780px;
}

.tl-hero-layout {
	align-items: center;
	display: grid;
	gap: clamp(42px, 4vw, 80px);
	grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
	margin: 0 auto;
	max-width: 1540px;
	min-height: 680px;
	padding: clamp(66px, 7vw, 108px) clamp(24px, 4.5vw, 74px) 62px;
	position: relative;
	z-index: 2;
}

.tl-hero-copy {
	max-width: 700px;
}

.tl-hero-kicker {
	color: var(--tl-teal-bright);
}

.tl-hero-kicker > span {
	background: var(--tl-gold-bright);
	border-radius: 50%;
	box-shadow: 0 0 0 7px rgba(216, 155, 50, 0.12);
	height: 7px;
	width: 7px;
}

.tl-home-hero h1 {
	font-size: clamp(68px, 7.2vw, 118px);
	font-weight: 800;
	letter-spacing: -0.07em;
	line-height: 0.88;
	margin: 0;
	max-width: 800px;
	text-transform: uppercase;
}

.tl-home-hero h1 > span {
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.tl-hero-intro {
	color: #b9ccd2;
	font-size: clamp(17px, 1.35vw, 21px);
	line-height: 1.72;
	margin: 30px 0 0;
	max-width: 610px;
}

.tl-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.tl-hero-standard {
	border-left: 2px solid var(--tl-gold);
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 42px;
	padding: 2px 0 2px 18px;
}

.tl-hero-standard span {
	color: #7fa4ad;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.tl-hero-standard strong {
	font-size: 13px;
	letter-spacing: 0.04em;
}

.tl-hero-stage {
	height: 570px;
	justify-self: stretch;
	position: relative;
}

.tl-stage-orbit {
	border: 1px solid rgba(36, 199, 183, 0.28);
	border-radius: 50%;
	left: 52%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-16deg);
}

.tl-stage-orbit::before,
.tl-stage-orbit::after {
	background: var(--tl-gold-bright);
	border: 4px solid var(--tl-ink-deep);
	border-radius: 50%;
	box-shadow: 0 0 28px rgba(242, 184, 79, 0.7);
	content: "";
	height: 11px;
	position: absolute;
	width: 11px;
}

.tl-stage-orbit::before {
	left: 12%;
	top: 9%;
}

.tl-stage-orbit::after {
	bottom: 12%;
	right: 10%;
}

.tl-orbit-large {
	height: 500px;
	width: 650px;
}

.tl-orbit-small {
	border-color: rgba(216, 155, 50, 0.22);
	height: 350px;
	transform: translate(-50%, -50%) rotate(22deg);
	width: 470px;
}

.tl-stage-index {
	color: rgba(255, 255, 255, 0.22);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 9px;
	letter-spacing: 0.18em;
	position: absolute;
	right: 3%;
	top: 4%;
}

.tl-hero-vial {
	background: #f7f7f5;
	box-shadow: var(--tl-shadow-dark);
	overflow: hidden;
	position: absolute;
}

.tl-hero-vial img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.tl-vial-main {
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 34px;
	height: 430px;
	left: 50%;
	top: 48%;
	transform: translate(-50%, -50%) rotate(-6deg);
	width: 430px;
	z-index: 3;
}

.tl-vial-main::after {
	border: 1px solid rgba(8, 37, 54, 0.12);
	border-radius: 27px;
	content: "";
	inset: 12px;
	pointer-events: none;
	position: absolute;
}

.tl-vial-klow,
.tl-vial-nad {
	border: 1px solid rgba(255, 255, 255, 0.54);
	border-radius: 20px;
	height: 170px;
	width: 170px;
	z-index: 2;
}

.tl-vial-klow {
	bottom: 1%;
	left: 2%;
	transform: rotate(10deg);
}

.tl-vial-nad {
	right: 0;
	top: 5%;
	transform: rotate(8deg);
}

.tl-stage-card {
	backdrop-filter: blur(16px);
	background: rgba(6, 38, 50, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
	color: var(--tl-white);
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 17px 19px;
	position: absolute;
	z-index: 5;
}

.tl-stage-card span,
.tl-stage-card small {
	color: #80aaaF;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tl-stage-card strong {
	font-size: 13px;
	letter-spacing: 0.03em;
}

.tl-stage-card-lot {
	bottom: 12%;
	right: 0;
	width: 190px;
}

.tl-stage-card-panel {
	left: 0;
	top: 16%;
	width: 210px;
}

.tl-proof-rail {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
	max-width: 1540px;
	padding: 0 clamp(24px, 4.5vw, 74px);
	position: relative;
	z-index: 3;
}

.tl-proof-rail > div {
	align-items: center;
	display: flex;
	gap: 17px;
	min-height: 82px;
	padding: 0 26px;
}

.tl-proof-rail > div:first-child {
	padding-left: 0;
}

.tl-proof-rail > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.tl-proof-rail span {
	color: var(--tl-gold-bright);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 8px;
}

.tl-proof-rail strong {
	font-size: 10px;
	letter-spacing: 0.09em;
	line-height: 1.5;
	text-transform: uppercase;
}

.tl-hero-disclaimer {
	color: #728f97;
	font-size: 8px;
	letter-spacing: 0.05em;
	margin: 0 auto;
	max-width: 1540px;
	padding: 18px clamp(24px, 4.5vw, 74px) 20px;
	position: relative;
	z-index: 3;
}

.tl-signal-strip {
	background: var(--tl-gold);
	color: var(--tl-ink-deep);
	overflow: hidden;
	white-space: nowrap;
}

.tl-signal-strip > div {
	align-items: center;
	display: flex;
	gap: 35px;
	min-width: max-content;
	padding: 14px 0;
	width: max-content;
	animation: tl-marquee 32s linear infinite;
}

.tl-signal-strip span {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.tl-signal-strip i {
	background: var(--tl-ink-deep);
	border-radius: 50%;
	height: 5px;
	width: 5px;
}

/* Catalog section */
.tl-catalog-section,
.tl-proof-section,
.tl-page-shell,
.tl-commerce-shell {
	margin: 0 auto;
	max-width: var(--tl-width);
	padding: 118px clamp(24px, 5.5vw, 82px);
}

.tl-section-lead {
	align-items: end;
	display: grid;
	gap: 55px;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	margin-bottom: 62px;
}

.tl-section-lead h2,
.tl-standard-section h2,
.tl-proof-heading h2,
.tl-library-section h2,
.tl-access-section h2,
.tl-page-header h1 {
	font-size: clamp(48px, 5.5vw, 82px);
	font-weight: 800;
	letter-spacing: -0.065em;
	line-height: 0.96;
	margin: 0;
}

.tl-section-lead h2 span {
	color: var(--tl-teal);
}

.tl-section-lead > p {
	color: var(--tl-muted);
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 7px;
}

.tl-showcase-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1.35fr 1fr 1fr;
}

.tl-showcase-card {
	background: var(--tl-mist);
	border: 1px solid var(--tl-line);
	border-radius: var(--tl-radius);
	display: flex;
	flex-direction: column;
	min-height: 510px;
	overflow: hidden;
	position: relative;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.tl-showcase-card:hover {
	border-color: rgba(21, 151, 142, 0.5);
	box-shadow: var(--tl-shadow);
	transform: translateY(-8px);
}

.tl-showcase-featured {
	background: var(--tl-ink);
	border-color: var(--tl-ink);
	color: var(--tl-white);
}

.tl-showcase-copy {
	padding: 32px 31px 0;
	position: relative;
	z-index: 2;
}

.tl-showcase-copy > span {
	color: var(--tl-teal);
	display: block;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.17em;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.tl-showcase-featured .tl-showcase-copy > span {
	color: var(--tl-teal-bright);
}

.tl-showcase-copy h3 {
	font-size: clamp(31px, 2.7vw, 44px);
	letter-spacing: -0.04em;
	line-height: 0.98;
	margin: 0;
	text-wrap: balance;
}

.tl-showcase-title--structured > span {
	display: block;
}

.tl-showcase-title__material {
	font-size: 1em;
}

.tl-showcase-title__kind {
	font-size: 0.5em;
	font-weight: 680;
	letter-spacing: -0.018em;
	line-height: 1.08;
	margin-top: 8px;
}

.tl-showcase-title__strength {
	color: var(--tl-teal);
	font-size: 0.48em;
	font-weight: 850;
	letter-spacing: 0.025em;
	line-height: 1.15;
	margin-top: 9px;
}

.tl-showcase-featured .tl-showcase-title__strength {
	color: var(--tl-teal-bright);
}

.tl-showcase-copy h3 sup {
	font-size: 0.4em;
	position: relative;
	top: -0.7em;
}

.tl-showcase-copy p {
	color: var(--tl-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 9px 0 18px;
}

.tl-showcase-featured .tl-showcase-copy p {
	color: #a6bec5;
}

.tl-showcase-copy strong {
	align-items: center;
	display: flex;
	font-size: 9px;
	gap: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tl-showcase-card img {
	border-radius: 20px;
	display: block;
	margin: auto auto clamp(18px, 2vw, 26px);
	max-width: 92%;
	transition: transform 300ms ease;
}

.tl-showcase-card:hover img {
	transform: scale(1.035) rotate(-1deg);
}

.tl-showcase-featured img {
	box-shadow: 0 -20px 70px rgba(36, 199, 183, 0.17);
	max-width: 84%;
}

.tl-catalog-action {
	display: flex;
	justify-content: flex-end;
	margin-top: 34px;
}

/* TrueLot standard */
.tl-standard-section {
	background:
		radial-gradient(circle at 8% 18%, rgba(36, 199, 183, 0.18), transparent 32%),
		linear-gradient(135deg, var(--tl-ink-deep), #0a3545 72%, #0a4149);
	color: var(--tl-white);
	display: grid;
	gap: clamp(60px, 9vw, 140px);
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	overflow: hidden;
	padding: 126px max(24px, calc((100vw - 1280px) / 2));
	position: relative;
}

.tl-standard-section::after {
	color: rgba(255, 255, 255, 0.025);
	content: "TRUELOT";
	font-size: clamp(130px, 23vw, 360px);
	font-weight: 900;
	left: -3vw;
	letter-spacing: -0.08em;
	line-height: 0.7;
	pointer-events: none;
	position: absolute;
	top: 20px;
	white-space: nowrap;
}

.tl-standard-statement,
.tl-standard-process {
	position: relative;
	z-index: 2;
}

.tl-standard-section .tl-eyebrow {
	color: var(--tl-teal-bright);
}

.tl-standard-lede {
	color: #b4c7cd;
	font-size: 16px;
	line-height: 1.8;
	margin: 31px 0 36px;
	max-width: 550px;
}

.tl-standard-process {
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
	padding: 20px 32px 12px;
	backdrop-filter: blur(12px);
}

.tl-process-heading {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	justify-content: space-between;
	padding: 5px 0 18px;
}

.tl-process-heading span,
.tl-process-heading strong {
	color: #91acb3;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.tl-standard-process ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tl-standard-process li {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	display: grid;
	gap: 20px;
	grid-template-columns: 45px 1fr 12px;
	min-height: 88px;
	padding: 17px 0;
}

.tl-standard-process li:last-child {
	border-bottom: 0;
}

.tl-standard-process li > span {
	color: var(--tl-gold-bright);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 9px;
}

.tl-standard-process h3 {
	font-size: 19px;
	letter-spacing: -0.02em;
	margin: 0 0 4px;
}

.tl-standard-process p {
	color: #9eb5bb;
	font-size: 10px;
	line-height: 1.55;
	margin: 0;
}

.tl-standard-process li > i {
	border: 1px solid rgba(36, 199, 183, 0.75);
	border-radius: 50%;
	height: 9px;
	position: relative;
	width: 9px;
}

.tl-standard-process li > i::after {
	background: var(--tl-teal-bright);
	border-radius: 50%;
	content: "";
	inset: 2px;
	position: absolute;
}

/* Published panel */
.tl-proof-section {
	display: grid;
	gap: clamp(60px, 8vw, 120px);
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.tl-proof-heading {
	align-self: start;
	position: sticky;
	top: 140px;
}

.tl-proof-cards {
	border-top: 1px solid var(--tl-line);
}

.tl-proof-cards article {
	border-bottom: 1px solid var(--tl-line);
	display: grid;
	gap: 30px;
	grid-template-columns: 76px 170px 1fr;
	padding: 34px 4px;
	transition: background 180ms ease, padding 180ms ease;
}

.tl-proof-cards article:hover {
	background: var(--tl-mist);
	padding-left: 20px;
	padding-right: 20px;
}

.tl-proof-cards article > span {
	color: var(--tl-gold);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 8px;
	letter-spacing: 0.11em;
}

.tl-proof-cards h3 {
	font-size: 24px;
	letter-spacing: -0.03em;
	margin: -7px 0 0;
}

.tl-proof-cards p {
	color: var(--tl-muted);
	font-size: 13px;
	line-height: 1.75;
	margin: -4px 0 0;
}

/* Lot library */
.tl-library-section {
	align-items: center;
	background:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		var(--tl-teal);
	background-size: 58px 58px;
	display: grid;
	gap: clamp(60px, 9vw, 145px);
	grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
	padding: 120px max(24px, calc((100vw - 1280px) / 2));
}

.tl-library-section .tl-eyebrow {
	color: var(--tl-ink-deep);
}

.tl-library-section .tl-eyebrow::before {
	background: var(--tl-ink-deep);
}

.tl-library-section h2 span {
	color: rgba(255, 255, 255, 0.94);
}

.tl-library-copy > p:not(.tl-eyebrow) {
	color: #083844;
	font-size: 15px;
	line-height: 1.75;
	margin: 30px 0 0;
	max-width: 620px;
}

.tl-public-library-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 34px;
}

.tl-library-card {
	background: var(--tl-white);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 40px 100px rgba(3, 24, 34, 0.26);
	padding: clamp(28px, 4vw, 48px);
	position: relative;
}

.tl-library-card::after {
	border: 1px solid var(--tl-line);
	content: "";
	inset: 10px;
	pointer-events: none;
	position: absolute;
}

.tl-library-card > * {
	position: relative;
	z-index: 2;
}

.tl-library-card-top {
	align-items: center;
	border-bottom: 1px solid var(--tl-line);
	display: flex;
	justify-content: space-between;
	margin-bottom: 38px;
	padding-bottom: 17px;
}

.tl-library-card-top span {
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.tl-library-card-top i {
	background: var(--tl-teal);
	border-radius: 50%;
	box-shadow: 0 0 0 6px var(--tl-teal-pale);
	height: 8px;
	width: 8px;
}

.tl-library-card h3 {
	font-size: clamp(28px, 3vw, 42px);
	letter-spacing: -0.045em;
	margin: 0 0 24px;
}

.tl-library-example {
	color: var(--tl-muted);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 8px;
	letter-spacing: 0.08em;
	margin: 19px 0 0;
}

/* Access CTA */
.tl-access-section {
	align-items: center;
	background: var(--tl-gold);
	display: flex;
	gap: 60px;
	justify-content: space-between;
	padding: 92px max(24px, calc((100vw - 1280px) / 2));
}

.tl-access-section .tl-eyebrow {
	color: var(--tl-ink-deep);
}

.tl-access-section .tl-eyebrow::before {
	background: var(--tl-ink-deep);
}

.tl-access-section h2 {
	font-size: clamp(46px, 5vw, 74px);
}

.tl-access-section p {
	color: var(--tl-ink-soft);
	font-size: 13px;
	line-height: 1.7;
	max-width: 660px;
}

.tl-access-actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 250px;
}

/* Interior pages */
.tl-page-shell,
.tl-commerce-shell {
	min-height: 65vh;
}

.tl-page {
	margin: 0 auto;
	max-width: 1100px;
}

.tl-page-header {
	background: var(--tl-ink-deep);
	color: var(--tl-white);
	margin: -118px calc(clamp(24px, 5.5vw, 82px) * -1) 58px;
	overflow: hidden;
	padding: 95px clamp(24px, 5.5vw, 82px) 65px;
	position: relative;
}

.tl-page-header::after {
	background: radial-gradient(circle, rgba(36, 199, 183, 0.22), transparent 67%);
	content: "";
	height: 480px;
	position: absolute;
	right: -100px;
	top: -250px;
	width: 480px;
}

.tl-page-header h1 {
	max-width: 900px;
	position: relative;
	z-index: 2;
}

.tl-page-content {
	color: var(--tl-muted);
	font-size: 15px;
	line-height: 1.85;
}

.tl-page-content h2,
.tl-page-content h3 {
	color: var(--tl-ink);
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.tl-page-content h2 {
	font-size: clamp(32px, 4vw, 50px);
	margin-top: 55px;
}

.tl-page-content a {
	color: var(--tl-teal);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.tl-record-grid {
	border-left: 1px solid var(--tl-line);
	border-top: 1px solid var(--tl-line);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 36px;
}

.tl-record-grid > div {
	border-bottom: 1px solid var(--tl-line);
	border-right: 1px solid var(--tl-line);
	display: flex;
	flex-direction: column;
	min-height: 94px;
	padding: 24px;
}

.tl-record-grid span {
	color: var(--tl-muted);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tl-record-grid strong {
	font-size: 14px;
	margin-top: 9px;
}

/* Footer */
.tl-footer {
	background: var(--tl-ink-deep);
	color: var(--tl-white);
	padding: 82px max(24px, calc((100vw - 1280px) / 2)) 30px;
}

.tl-footer-main {
	align-items: start;
	display: grid;
	gap: 54px;
	grid-template-columns: 0.85fr 1.15fr 1fr;
	min-height: 190px;
}

.tl-footer-brand {
	display: inline-block;
	width: max-content;
}

.tl-footer-tagline {
	color: #9bb4bb;
	font-size: 18px;
	letter-spacing: -0.02em;
	margin: 6px 0;
}

.tl-footer-standard {
	color: var(--tl-gold-bright);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
	line-height: 1.7;
	margin: 18px 0 0;
	text-transform: uppercase;
}

.tl-footer-links {
	display: grid;
	gap: 13px 24px;
	grid-template-columns: 1fr 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tl-footer-links a {
	color: #a9bec4;
	font-size: 10px;
	transition: color 180ms ease;
}

.tl-footer-links a:hover {
	color: var(--tl-white);
}

.tl-footer-legal {
	align-items: end;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #748e95;
	display: flex;
	font-size: 8px;
	gap: 35px;
	justify-content: space-between;
	letter-spacing: 0.03em;
	padding-top: 24px;
}

.tl-footer-legal p {
	line-height: 1.7;
	margin: 0;
	max-width: 940px;
}

/* WooCommerce catalog */
.woocommerce .woocommerce-breadcrumb {
	color: var(--tl-muted);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 34px;
	text-transform: uppercase;
}

.woocommerce .woocommerce-products-header {
	background:
		radial-gradient(circle at 82% 20%, rgba(36, 199, 183, 0.22), transparent 34%),
		var(--tl-ink-deep);
	color: var(--tl-white);
	margin: -42px -42px 55px;
	padding: 70px 42px 54px;
}

.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-account .woocommerce h2 {
	font-size: clamp(40px, 5vw, 68px);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	font-size: 10px;
}

.woocommerce .woocommerce-ordering select {
	background: var(--tl-white);
	border: 1px solid var(--tl-line);
	border-radius: 999px;
	min-height: 44px;
	padding: 0 38px 0 17px;
}

.woocommerce ul.products {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	background: var(--tl-white);
	border: 1px solid var(--tl-line);
	border-radius: 22px;
	float: none;
	margin: 0;
	overflow: hidden;
	padding: 0 0 28px;
	position: relative;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
	width: auto;
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(21, 151, 142, 0.5);
	box-shadow: var(--tl-shadow);
	transform: translateY(-7px);
}

.woocommerce ul.products li.product a img {
	background: var(--tl-mist);
	margin: 0 0 22px;
	transition: transform 240ms ease;
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.025);
}

.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
	background: var(--tl-gold);
	border-radius: 999px;
	color: var(--tl-ink-deep);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1;
	min-height: auto;
	padding: 9px 12px;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-left: 22px;
	margin-right: 22px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--tl-ink);
	font-size: 20px;
	letter-spacing: -0.025em;
	padding: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--tl-teal);
	font-weight: 800;
}

.woocommerce ul.products li.product a.button {
	align-items: center;
	background: var(--tl-ink);
	border: 1px solid var(--tl-ink);
	border-radius: 12px;
	color: var(--tl-white);
	display: flex;
	font-size: 16px;
	font-weight: 750;
	justify-content: center;
	letter-spacing: 0.01em;
	line-height: 1.25;
	margin-top: 15px;
	min-height: 54px;
	padding: 13px 18px;
	text-align: center;
	text-transform: none;
	white-space: normal;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product a.button:focus-visible {
	background: var(--tl-teal);
	border-color: var(--tl-teal);
	color: var(--tl-white);
	transform: none;
}

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 74px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	background: linear-gradient(145deg, #ffffff 0%, #eef6f4 100%);
	border: 1px solid var(--tl-line);
	border-radius: var(--tl-radius);
	overflow: hidden;
}

.woocommerce div.product div.summary {
	padding-top: 8px;
}

.woocommerce div.product .product_title {
	margin-bottom: 17px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: clamp(25px, 3vw, 38px);
	letter-spacing: -0.025em;
}

.woocommerce div.product p.stock {
	color: #0f7a5c;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.08em;
	margin: 14px 0;
	text-transform: uppercase;
}

.woocommerce div.product form.cart {
	border-top: 1px solid var(--tl-line);
	margin-top: 27px;
	padding-top: 25px;
}

.woocommerce div.product form.cart table.variations {
	margin-bottom: 14px;
}

.woocommerce div.product form.cart table.variations th,
.woocommerce div.product form.cart table.variations td {
	display: block;
	padding: 0;
	text-align: left;
	width: 100%;
}

.woocommerce div.product form.cart table.variations label {
	color: var(--tl-muted);
	display: block;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.14em;
	margin-bottom: 9px;
	text-transform: uppercase;
}

.woocommerce div.product form.cart table.variations select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	appearance: none;
	background: var(--tl-white);
	border: 1px solid #b8cbc7;
	border-radius: 12px;
	color: var(--tl-ink);
	font-size: 14px;
	min-height: 55px;
	padding: 10px 16px;
	width: 100%;
}

.woocommerce div.product form.cart .reset_variations {
	color: var(--tl-teal);
	display: inline-block;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.1em;
	margin-top: 8px;
	text-transform: uppercase;
}

.woocommerce div.product .woocommerce-variation-description {
	color: var(--tl-muted);
	font-size: 11px;
	line-height: 1.6;
}

.woocommerce div.product .woocommerce-variation-add-to-cart {
	align-items: stretch;
	display: grid;
	gap: 11px;
	grid-template-columns: 90px minmax(0, 1fr);
	margin-top: 16px;
}

.woocommerce div.product .woocommerce-variation-add-to-cart .quantity {
	margin: 0;
}

.woocommerce div.product .woocommerce-variation-add-to-cart .qty {
	border: 1px solid var(--tl-line);
	border-radius: 999px;
	height: 100%;
	width: 100%;
}

.woocommerce div.product .single_add_to_cart_button {
	background: var(--tl-ink-deep);
	color: var(--tl-white);
	min-height: 58px;
	width: 100%;
}

.woocommerce div.product .single_add_to_cart_button:hover {
	background: var(--tl-teal);
	color: var(--tl-white);
}

.woocommerce div.product .woocommerce-tabs {
	border-top: 1px solid var(--tl-line);
	clear: both;
	margin-top: 30px;
	padding-top: 36px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	padding-left: 0;
	white-space: nowrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom-color: var(--tl-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: var(--tl-gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.11em;
	padding: 12px 0;
	text-transform: uppercase;
}

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-content {
	background: var(--tl-mist);
	border: 1px solid var(--tl-line);
	padding: 28px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--tl-mist);
	border-top-color: var(--tl-teal);
	color: var(--tl-ink);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--tl-teal);
}

/* Premium session visitor notice; Core owns the behavior when active. */
body.tl-visitor-notice-open {
	overflow: hidden;
}

.tl-visitor-notice {
	align-items: center;
	backdrop-filter: blur(18px);
	background:
		radial-gradient(circle at 15% 15%, rgba(36, 199, 183, 0.22), transparent 32%),
		radial-gradient(circle at 86% 82%, rgba(216, 155, 50, 0.13), transparent 28%),
		linear-gradient(135deg, rgba(2, 18, 28, 0.97), rgba(6, 42, 53, 0.94));
	display: flex;
	inset: 0;
	justify-content: center;
	overflow-y: auto;
	padding: 20px;
	position: fixed;
	z-index: 2147483000;
}

.tl-visitor-notice[hidden],
.tl-visitor-notice-accepted .tl-visitor-notice {
	display: none !important;
}

.tl-visitor-notice-card {
	background: linear-gradient(145deg, var(--tl-white) 0%, var(--tl-white) 69%, #f1f8f7 100%);
	border: 1px solid rgba(153, 189, 183, 0.68);
	border-radius: 26px;
	box-shadow:
		0 42px 130px rgba(0, 0, 0, 0.52),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	color: var(--tl-ink-deep);
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	max-height: calc(100vh - 40px);
	max-height: calc(100svh - 40px);
	max-width: 680px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: clamp(30px, 5vw, 48px);
	position: relative;
	text-align: left;
	width: 100%;
}

.tl-visitor-notice-card::before {
	background: linear-gradient(90deg, var(--tl-teal) 0 72%, var(--tl-gold) 72% 100%);
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.tl-visitor-notice-card::after {
	border: 1px solid rgba(21, 151, 142, 0.15);
	border-radius: 50%;
	content: "";
	height: 250px;
	pointer-events: none;
	position: absolute;
	right: -158px;
	top: -164px;
	width: 250px;
}

.tl-visitor-notice-card > * {
	position: relative;
	z-index: 2;
}

.tl-visitor-notice-mark {
	background: url("../images/truelot-logo.svg") left center / contain no-repeat;
	grid-column: 1;
	height: 67px;
	margin: 0 26px 22px 0;
	width: min(248px, 100%);
}

.tl-visitor-notice-mark::before,
.tl-visitor-notice-mark::after,
.tl-visitor-notice-mark span {
	display: none;
}

.tl-visitor-notice-eyebrow {
	align-self: center;
	background: rgba(223, 245, 241, 0.66);
	border: 1px solid rgba(15, 117, 111, 0.24);
	border-radius: 999px;
	color: #0f756f;
	font-size: 10px;
	font-weight: 850;
	grid-column: 2;
	letter-spacing: 0.18em;
	margin: 0 0 22px;
	padding: 10px 13px;
	text-transform: uppercase;
	white-space: nowrap;
}

.tl-visitor-notice-card h2 {
	color: var(--tl-ink-deep);
	font-size: clamp(38px, 6vw, 52px);
	font-weight: 800;
	grid-column: 1 / -1;
	letter-spacing: -0.05em;
	line-height: 1;
	margin: 2px 0 22px;
}

.tl-visitor-notice-card > p:not(.tl-visitor-notice-eyebrow) {
	font-size: 15px;
	grid-column: 1 / -1;
	line-height: 1.62;
	margin: 0 0 15px;
	max-width: 590px;
}

.tl-visitor-notice-restriction {
	color: var(--tl-muted);
}

.tl-visitor-notice-confirmation {
	background: rgba(223, 245, 241, 0.55);
	border: 1px solid rgba(21, 151, 142, 0.14);
	border-left: 3px solid var(--tl-gold);
	border-radius: 0 12px 12px 0;
	color: var(--tl-ink-deep);
	font-weight: 750;
	padding: 16px 18px;
}

.tl-visitor-notice-actions {
	display: grid;
	gap: 12px;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: 24px;
}

.tl-visitor-notice-accept,
.tl-visitor-notice-exit {
	align-items: center;
	border-radius: 999px;
	box-sizing: border-box;
	display: inline-flex;
	font-size: 10px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.1em;
	min-height: 56px;
	padding: 13px 24px;
	text-transform: uppercase;
}

.tl-visitor-notice-accept {
	background: var(--tl-ink-deep);
	border: 1px solid var(--tl-ink-deep);
	color: var(--tl-white);
	cursor: pointer;
}

.tl-visitor-notice-accept:hover,
.tl-visitor-notice-accept:focus-visible {
	background: #0f756f;
	border-color: #0f756f;
}

.tl-visitor-notice-exit {
	background: var(--tl-white);
	border: 1px solid #b8c9c5;
	color: var(--tl-muted);
}

.tl-visitor-notice-exit:hover,
.tl-visitor-notice-exit:focus-visible {
	border-color: var(--tl-ink-deep);
	color: var(--tl-ink-deep);
}

.tl-visitor-notice-accept:focus-visible,
.tl-visitor-notice-exit:focus-visible {
	outline: 3px solid #0f756f;
	outline-offset: 3px;
}

.tl-visitor-notice-card small {
	color: var(--tl-muted);
	display: block;
	font-size: 12px;
	grid-column: 1 / -1;
	line-height: 1.5;
	margin-top: 16px;
}

/* Core plugin visual alignment */
.tl-library-card .truelot-lookup,
.tl-library-card .tl-lookup,
.tl-library-card form {
	margin: 0;
}

.tl-library-card input[type="search"],
.tl-library-card input[type="text"] {
	border: 1px solid #b9cbc7;
	border-radius: 999px;
	min-height: 54px;
	padding: 0 18px;
	width: 100%;
}

.tl-library-card button,
.tl-library-card input[type="submit"] {
	background: var(--tl-ink-deep);
	border: 0;
	border-radius: 999px;
	color: var(--tl-white);
	cursor: pointer;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.1em;
	min-height: 48px;
	padding: 0 21px;
	text-transform: uppercase;
}

@keyframes tl-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-44%); }
}

@keyframes tl-float-main {
	0%, 100% { transform: translate(-50%, -50%) rotate(-6deg); }
	50% { transform: translate(-50%, calc(-50% - 9px)) rotate(-4.5deg); }
}

.tl-vial-main {
	animation: tl-float-main 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1220px) {
	.tl-hero-layout {
		grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
	}

	.tl-vial-main {
		height: 385px;
		width: 385px;
	}

	.tl-vial-klow,
	.tl-vial-nad {
		height: 145px;
		width: 145px;
	}

	.tl-showcase-grid {
		grid-template-columns: 1.15fr 1fr 1fr;
	}
}

@media (max-width: 1040px) {
	.tl-primary-nav {
		margin-right: 16px;
	}

	.tl-menu {
		gap: 18px;
	}

	.tl-hero-layout {
		grid-template-columns: 1fr;
		padding-bottom: 20px;
	}

	.tl-hero-copy {
		max-width: 780px;
	}

	.tl-hero-stage {
		height: 580px;
		margin: 0 auto;
		max-width: 720px;
		width: 100%;
	}

	.tl-proof-rail {
		grid-template-columns: repeat(2, 1fr);
	}

	.tl-proof-rail > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.tl-proof-rail > div:nth-child(4) {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.tl-showcase-grid {
		grid-template-columns: 1fr 1fr;
	}

	.tl-showcase-featured {
		grid-column: 1 / -1;
		min-height: 560px;
	}

	.tl-showcase-featured img {
		max-width: 560px;
	}

	.tl-standard-section,
	.tl-proof-section,
	.tl-library-section {
		grid-template-columns: 1fr;
	}

	.tl-proof-heading {
		position: static;
	}

	.tl-library-card {
		max-width: 620px;
	}
}

@media (max-width: 860px) {
	.admin-bar .tl-header {
		top: 46px;
	}

	.tl-header {
		grid-template-columns: 1fr auto;
		min-height: 74px;
	}

	.tl-brand img {
		width: 190px;
	}

	.tl-menu-toggle {
		display: block;
		grid-column: 2;
		grid-row: 1;
	}

	.tl-primary-nav {
		background: var(--tl-ink-deep);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		display: none;
		grid-column: 1 / -1;
		margin: 0 -22px;
		padding: 10px 22px 20px;
		width: calc(100% + 44px);
	}

	.tl-primary-nav.is-open {
		display: block;
	}

	.tl-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.tl-menu a {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		display: block;
		padding: 14px 0;
	}

	.tl-menu a::after {
		display: none;
	}

	.tl-sign-in {
		display: none;
	}

	.tl-section-lead {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.tl-proof-cards article {
		grid-template-columns: 60px 135px 1fr;
	}

	.tl-access-section {
		align-items: flex-start;
		flex-direction: column;
	}

	.tl-access-actions {
		align-items: flex-start;
	}

	.tl-footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.tl-footer-main nav {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.tl-announcement-bar {
		font-size: 8px;
		letter-spacing: 0.12em;
		line-height: 1.45;
		overflow-wrap: anywhere;
		padding-left: 14px;
		padding-right: 14px;
	}

	.tl-home-hero h1 {
		font-size: clamp(54px, 18vw, 82px);
	}

	.tl-hero-layout {
		padding-top: 64px;
	}

	.tl-hero-intro {
		font-size: 16px;
	}

	.tl-hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.tl-hero-actions .tl-button {
		width: 100%;
	}

	.tl-hero-stage {
		height: 445px;
	}

	.tl-vial-main {
		border-radius: 25px;
		height: 310px;
		width: 310px;
	}

	.tl-vial-klow,
	.tl-vial-nad {
		height: 105px;
		width: 105px;
	}

	.tl-vial-klow {
		bottom: 5%;
	}

	.tl-vial-nad {
		right: 1%;
		top: 4%;
	}

	.tl-stage-card-panel {
		left: 0;
		top: 13%;
		width: 160px;
	}

	.tl-stage-card-lot {
		bottom: 8%;
		right: 0;
		width: 150px;
	}

	.tl-stage-card strong {
		font-size: 10px;
	}

	.tl-orbit-large {
		height: 350px;
		width: 430px;
	}

	.tl-orbit-small {
		height: 255px;
		width: 330px;
	}

	.tl-proof-rail {
		grid-template-columns: 1fr;
	}

	.tl-proof-rail > div,
	.tl-proof-rail > div:first-child {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		min-height: 64px;
		padding: 0;
	}

	.tl-proof-rail > div:first-child {
		border-top: 0;
	}

	.tl-section-lead h2,
	.tl-standard-section h2,
	.tl-proof-heading h2,
	.tl-library-section h2,
	.tl-access-section h2,
	.tl-page-header h1 {
		font-size: clamp(42px, 13vw, 64px);
	}

	.tl-showcase-grid {
		grid-template-columns: 1fr;
	}

	.tl-showcase-featured {
		grid-column: auto;
	}

	.tl-showcase-card,
	.tl-showcase-featured {
		min-height: 490px;
	}

	.tl-standard-section,
	.tl-library-section {
		padding-bottom: 92px;
		padding-top: 92px;
	}

	.tl-standard-process {
		padding: 18px 20px 8px;
	}

	.tl-proof-cards article {
		gap: 12px 22px;
		grid-template-columns: 60px 1fr;
	}

	.tl-proof-cards article p {
		grid-column: 2;
	}

	.tl-library-section {
		grid-template-columns: minmax(0, 1fr);
	}

	.tl-library-card {
		min-width: 0;
	}

	.tl-public-library-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.tl-record-grid {
		grid-template-columns: 1fr;
	}

	.tl-footer-main {
		grid-template-columns: 1fr;
	}

	.tl-footer-main nav {
		grid-column: auto;
	}

	.tl-footer-links {
		grid-template-columns: 1fr;
	}

	.tl-footer-legal {
		align-items: flex-start;
		flex-direction: column;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product .woocommerce-variation-add-to-cart {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.tl-visitor-notice {
		align-items: flex-start;
		padding: 14px;
	}

	.tl-visitor-notice-card {
		grid-template-columns: 1fr;
		max-height: calc(100vh - 28px);
		max-height: calc(100dvh - 28px);
		padding: 27px 23px 25px;
	}

	.tl-visitor-notice-mark {
		grid-column: 1;
		height: 54px;
		margin: 0 0 14px;
		width: 196px;
	}

	.tl-visitor-notice-eyebrow {
		grid-column: 1;
		justify-self: start;
		margin: 0 0 20px;
		padding: 8px 11px;
	}

	.tl-visitor-notice-card h2 {
		font-size: 38px;
	}

	.tl-visitor-notice-actions {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Refined 3.8 single-product presentation. */

body.truelot-coa-page .tl-page {
	max-width: 1380px;
}

body.single-product .tl-commerce-shell {
	background:
		radial-gradient(circle at 8% 0%, rgba(36, 199, 183, 0.08), transparent 24%),
		linear-gradient(180deg, #f7faf9 0, #ffffff 260px, #ffffff 100%);
	max-width: none;
	padding: clamp(44px, 5vw, 72px) clamp(28px, 6vw, 96px) clamp(96px, 10vw, 140px);
}

body.single-product .tl-commerce-shell > .tl-container {
	margin: 0 auto;
	max-width: 1280px;
	min-width: 0;
	width: 100%;
}

body.single-product .woocommerce-breadcrumb {
	margin-bottom: 34px;
	overflow-wrap: anywhere;
}

body.single-product .tl-commerce-shell div.product {
	align-items: start;
	display: grid;
	gap: 46px;
	grid-template-columns: minmax(0, 1fr);
	max-width: 100%;
	min-width: 0;
}

body.single-product .tl-commerce-shell div.product div.images,
body.single-product .tl-commerce-shell div.product div.summary {
	float: none;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	width: auto;
}

body.single-product .tl-commerce-shell div.product div.images {
	background:
		radial-gradient(circle at 78% 12%, rgba(36, 199, 183, 0.17), transparent 32%),
		radial-gradient(circle at 15% 92%, rgba(216, 155, 50, 0.08), transparent 31%),
		linear-gradient(150deg, #010b12 0%, #041722 54%, #082936 100%);
	border: 1px solid rgba(137, 211, 203, 0.13);
	border-radius: 26px;
	box-shadow: 0 28px 64px rgba(3, 19, 29, 0.2);
	isolation: isolate;
	justify-self: center;
	max-width: 380px;
	overflow: hidden;
	padding: clamp(20px, 2.8vw, 27px);
	position: relative;
	width: 100%;
}

/* WooCommerce's legacy clearfix pseudo-elements become anonymous grid items
 * when the product shell is a grid. Remove them from this modern composition. */
body.single-product .tl-commerce-shell div.product::before,
body.single-product .tl-commerce-shell div.product::after {
	content: none !important;
	display: none !important;
}

body.single-product .tl-commerce-shell div.product div.images::before {
	display: none;
}

body.single-product .tl-commerce-shell div.product div.images::after {
	background: radial-gradient(circle, rgba(61, 190, 179, 0.12), transparent 68%);
	border-radius: 50%;
	content: "";
	height: 250px;
	pointer-events: none;
	position: absolute;
	right: -92px;
	top: -106px;
	width: 250px;
	z-index: 0;
}

body.single-product .tl-commerce-shell div.product div.images > * {
	position: relative;
	z-index: 1;
}

body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__wrapper {
	background: linear-gradient(145deg, #f7f8f7, #e9eeed);
	border: 0;
	border-radius: 17px;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.72),
		0 14px 36px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

body.single-product .tl-commerce-shell div.product div.images img {
	background: #eef1f0;
	cursor: default;
	display: block;
	transform: none !important;
	transition: none !important;
}

body.single-product .tl-commerce-shell div.product div.images .zoomImg,
body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__trigger {
	display: none !important;
}

body.single-product .tl-commerce-shell div.product div.images .tl-product-image-static {
	display: block;
}

body.single-product .tl-commerce-shell div.product div.images.tl-product-gallery--multiple .flex-control-thumbs {
	display: flex;
	gap: 10px;
	margin: 14px 0 0;
	overflow-x: auto;
	padding: 0 0 2px;
	scrollbar-width: thin;
}

body.single-product .tl-commerce-shell div.product div.images.tl-product-gallery--multiple .flex-control-thumbs li {
	flex: 0 0 62px;
	float: none;
	width: 62px;
}

body.single-product .tl-commerce-shell div.product div.images.tl-product-gallery--multiple .flex-control-thumbs img {
	background: #fff;
	border: 2px solid transparent;
	border-radius: 10px;
	box-sizing: border-box;
	cursor: pointer;
	opacity: 0.62;
	padding: 2px;
}

body.single-product .tl-commerce-shell div.product div.images.tl-product-gallery--multiple .flex-control-thumbs img.flex-active {
	border-color: var(--tl-teal);
	opacity: 1;
}

body.single-product .tl-commerce-shell div.product div.summary {
	align-self: start;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dce8e5;
	border-radius: 28px;
	box-shadow: 0 22px 54px rgba(11, 38, 54, 0.075);
	justify-self: center;
	max-width: 720px;
	padding: clamp(30px, 3.2vw, 42px);
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .summary p,
body.single-product .tl-commerce-shell div.product .product_meta,
body.single-product .tl-commerce-shell div.product .product_meta * {
	overflow-wrap: break-word;
}

body.single-product .tl-commerce-shell div.product .product_title {
	color: var(--tl-ink-deep);
	font-size: clamp(34px, 3.4vw, 46px);
	letter-spacing: -0.043em;
	line-height: 1.04;
	margin: 0 0 20px;
	overflow-wrap: normal;
	word-break: normal;
	text-wrap: balance;
}

body.single-product .tl-commerce-shell div.product .product_title.tl-product-title--long {
	font-size: clamp(34px, 3vw, 40px);
	letter-spacing: -0.035em;
	line-height: 1.06;
	text-wrap: wrap;
}

body.single-product .tl-commerce-shell div.product .tl-product-title--long > span {
	display: block;
}

body.single-product .tl-commerce-shell div.product .tl-product-title__kind {
	font-size: 0.72em;
	font-weight: 650;
	letter-spacing: -0.018em;
	margin-top: 7px;
}

body.single-product .tl-commerce-shell div.product .tl-product-title__strength {
	color: var(--tl-teal);
	font-size: 0.63em;
	font-weight: 780;
	letter-spacing: 0.015em;
	margin-top: 10px;
}

body.single-product .tl-commerce-shell div.product .summary > .price {
	color: var(--tl-ink-deep);
	font-size: clamp(29px, 3.1vw, 40px);
	margin: 24px 0 10px;
}

body.single-product .tl-commerce-shell div.product .summary > .price::after {
	content: none;
}

body.single-product .woocommerce-product-details__short-description {
	color: var(--tl-muted);
	font-size: 14.5px;
	line-height: 1.72;
	margin: 14px 0 26px;
	max-width: 62ch;
}

body.single-product .tl-commerce-shell div.product .tl-product-hero-kicker {
	margin-bottom: 19px;
}

body.single-product .tl-commerce-shell div.product .tl-product-disclaimer {
	background: #f7faf9;
	border: 1px solid #dfeae7;
	border-left: 3px solid var(--tl-teal);
	border-radius: 12px;
	margin-bottom: 28px;
	padding: 14px 16px;
}

body.single-product .tl-commerce-shell div.product .tl-selected-strength {
	margin-bottom: 22px;
	padding-bottom: 18px;
}

body.single-product .tl-commerce-shell div.product .tl-product-proof-points {
	gap: 8px 18px;
	margin-bottom: 20px;
	overflow: visible;
}

body.single-product .tl-commerce-shell div.product .tl-product-proof-points > div,
body.single-product .tl-commerce-shell div.product .tl-product-proof-points > div:first-child,
body.single-product .tl-commerce-shell div.product .tl-product-proof-points > div:last-child {
	background: transparent;
	border: 0;
	border-radius: 0;
	min-height: 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary {
	background: linear-gradient(145deg, #f6faf9, #eef6f4);
	border: 1px solid #d4e4e0;
	border-radius: 19px;
	box-shadow: 0 12px 32px rgba(11, 38, 54, 0.055);
	margin: 28px 0 24px;
	padding: 20px 21px;
}

body.single-product .tl-commerce-shell div.product .tl-release-heading {
	background: transparent;
	gap: 14px;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid[hidden],
body.single-product .tl-commerce-shell div.product .tl-release-empty[hidden],
body.single-product .tl-commerce-shell div.product .tl-release-fact[hidden] {
	display: none !important;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid {
	gap: 15px 22px;
	margin-top: 18px;
	padding-top: 18px;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-heading > strong {
	display: none;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid strong {
	overflow-wrap: anywhere;
}

body.single-product .tl-commerce-shell div.product .tl-strength-options {
	gap: 10px;
	margin-bottom: 12px;
}

body.single-product .tl-commerce-shell div.product .tl-strength-option {
	box-shadow: none;
	transform: none;
}

body.single-product .tl-commerce-shell div.product .tl-volume-pricing {
	background: #f4f8f7;
	border: 1px solid #dce8e5;
	border-radius: 18px;
	margin: 26px 0 22px;
	padding: 19px;
}

body.single-product .tl-commerce-shell div.product .tl-volume-heading {
	gap: 14px;
	margin-bottom: 14px;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options {
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button {
	border-radius: 13px;
	min-height: 80px;
	padding: 12px;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button:hover,
body.single-product .tl-commerce-shell div.product .tl-volume-options button.is-selected {
	transform: none;
}

body.single-product .tl-commerce-shell div.product .tl-order-access-card {
	background: #061e2b;
	border: 1px solid rgba(119, 195, 187, 0.12);
	border-radius: 16px;
	margin: 24px 0 28px;
	padding: 24px;
}

body.single-product .tl-commerce-shell div.product form.cart {
	border-top: 0;
	margin: 24px 0 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product form.cart table.variations {
	background: #fff;
	border: 0;
	margin: 0;
	max-width: 100%;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product form.cart table.variations label {
	color: var(--tl-ink-deep);
	font-size: 10px;
	margin-bottom: 12px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-price {
	margin: 11px 0 0;
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-price .price {
	font-size: 30px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-availability .stock,
body.single-product .tl-commerce-shell div.product form.cart .stock {
	background: #e2f6f1;
	border-radius: 999px;
	display: inline-flex;
	margin: 11px 0 0;
	padding: 8px 11px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart {
	background: #061e2b;
	border-radius: 16px;
	gap: 12px;
	grid-template-columns: 88px minmax(0, 1fr);
	margin-top: 18px;
	padding: 12px;
}

body.single-product .tl-commerce-shell div.product.product-type-simple form.cart {
	align-items: stretch;
	background: #061e2b;
	border-radius: 16px;
	display: grid;
	gap: 12px;
	grid-template-columns: 88px minmax(0, 1fr);
	padding: 12px;
}

body.single-product .tl-commerce-shell div.product.product-type-simple form.cart > .quantity {
	float: none;
	margin: 0;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product.product-type-simple form.cart > .quantity .qty {
	height: 100%;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .single_add_to_cart_button {
	background: var(--tl-teal);
	border-radius: 11px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.single-product .tl-commerce-shell div.product .single_add_to_cart_button:hover {
	background: #24c7b7;
}

body.single-product.truelot-order-login-required .tl-commerce-shell div.product .woocommerce-variation-add-to-cart {
	display: none !important;
}

body.single-product.truelot-order-login-required .tl-commerce-shell div.product.product-type-simple form.cart {
	display: none !important;
}

body.single-product .tl-commerce-shell div.product .tl-order-access-card--compact {
	background: transparent;
	border: 0;
	margin: 20px 0 24px;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-order-access-card--compact > a {
	align-items: center;
	background: var(--tl-gold);
	border-radius: 12px;
	color: var(--tl-ink-deep);
	display: flex;
	font-size: 11px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.06em;
	min-height: 52px;
	padding: 12px 20px;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs,
body.single-product .tl-commerce-shell div.product .related,
body.single-product .tl-commerce-shell div.product .upsells {
	grid-column: 1 / -1;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs {
	background: transparent;
	border: 0;
	border-radius: 0;
	border-top: 1px solid var(--tl-line);
	margin-top: 24px;
	justify-self: center;
	max-width: 920px;
	min-width: 0;
	padding: 40px 0 18px;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs .panel {
	max-width: 100%;
	min-width: 0;
	overflow-wrap: break-word;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs .panel table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs {
	gap: 32px;
	margin-bottom: 34px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li a {
	font-size: 10px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs .panel > h2:first-child {
	color: var(--tl-ink-deep);
	font-size: clamp(28px, 3.5vw, 42px);
	letter-spacing: -0.04em;
	margin-top: 0;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs .panel > p {
	max-width: 72ch;
}

@media (min-width: 1100px) {
	body.single-product .tl-commerce-shell div.product {
		column-gap: clamp(52px, 6vw, 82px);
		grid-template-columns: minmax(330px, 400px) minmax(0, 620px);
		justify-content: center;
		row-gap: 64px;
	}

	body.single-product .tl-commerce-shell div.product div.images {
		justify-self: start;
		max-width: 400px;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		justify-self: end;
		max-width: 620px;
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-options {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1099px) {
	body.single-product .tl-commerce-shell {
		padding: 38px clamp(32px, 6vw, 48px) 100px;
	}

	body.single-product .tl-commerce-shell div.product {
		gap: 42px;
	}

	body.single-product .tl-commerce-shell div.product div.images,
	body.single-product .tl-commerce-shell div.product div.summary,
	body.single-product .tl-commerce-shell div.product .woocommerce-tabs {
		grid-column: 1;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		max-width: 720px;
	}
}

@media (max-width: 600px) {
	body.single-product .tl-commerce-shell {
		padding: 28px max(18px, env(safe-area-inset-left)) 88px max(18px, env(safe-area-inset-right));
	}

	body.single-product .tl-commerce-shell div.product {
		gap: 32px;
	}

	body.single-product .tl-commerce-shell div.product div.images {
		border-radius: 20px;
		max-width: min(78vw, 290px);
		padding: 15px;
	}

	body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__wrapper {
		border-radius: 14px;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		border-radius: 21px;
		padding: 24px 20px 25px;
	}

	body.single-product .tl-commerce-shell div.product .product_title {
		font-size: clamp(29px, 8vw, 33px);
		letter-spacing: -0.04em;
		line-height: 1.05;
	}

	body.single-product .tl-commerce-shell div.product .product_title.tl-product-title--long {
		font-size: clamp(24px, 7.4vw, 31px);
		line-height: 1.08;
	}

	body.single-product .tl-commerce-shell div.product .tl-product-title__kind {
		margin-top: 5px;
	}

	body.single-product .tl-commerce-shell div.product .tl-product-title__strength {
		margin-top: 8px;
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-pricing {
		padding: 16px;
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart,
	body.single-product .tl-commerce-shell div.product.product-type-simple form.cart {
		gap: 10px;
		grid-template-columns: 76px minmax(0, 1fr);
		padding: 10px;
	}

	body.single-product .tl-commerce-shell div.product .single_add_to_cart_button {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.single-product .tl-commerce-shell div.product .tl-order-access-card--compact > a {
		width: 100%;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs {
		padding-top: 32px;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs {
		display: grid;
		gap: 8px;
		grid-template-columns: minmax(0, 1fr);
		margin-bottom: 28px;
		overflow: visible;
		white-space: normal;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs::before,
	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li::before,
	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li::after {
		display: none;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li {
		border: 1px solid var(--tl-line);
		border-radius: 10px;
		float: none;
		min-width: 0;
		text-align: center;
		width: 100% !important;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li.active {
		background: var(--tl-ink-deep);
		border-color: var(--tl-ink-deep);
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li.active a {
		color: var(--tl-white);
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li a {
		align-items: center;
		display: flex;
		justify-content: center;
		line-height: 1.3;
		min-height: 44px;
		overflow-wrap: anywhere;
		padding: 8px 10px;
		white-space: normal;
		width: 100%;
	}
}

@media (min-width: 601px) {
	body.single-product .tl-commerce-shell div.product .tl-release-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.single-product .tl-commerce-shell div.product .tl-release-fact--lot,
	body.single-product .tl-commerce-shell div.product .tl-release-fact--lab {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	body.single-product .tl-commerce-shell div.product .tl-release-summary {
		padding: 17px;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-coa-button,
	body.single-product .tl-commerce-shell div.product .tl-release-coa-pending {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-coa-button > span,
	body.single-product .tl-commerce-shell div.product .tl-release-coa-pending span {
		text-align: left;
	}
}

@media (max-width: 375px) {
	body.single-product .tl-commerce-shell div.product div.images {
		max-width: 270px;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* Bold 2.3 header and footer */
.tl-header {
	min-height: 94px;
	padding-left: clamp(24px, 5vw, 86px);
	padding-right: clamp(24px, 5vw, 86px);
}

.tl-header .tl-brand img {
	width: clamp(214px, 17vw, 260px);
}

.tl-header-actions {
	align-items: center;
	display: flex;
	gap: 11px;
	justify-self: end;
}

.tl-header-contact,
.tl-header-cart {
	align-items: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: var(--tl-white);
	display: inline-flex;
	font-size: 10px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0.06em;
	min-height: 44px;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tl-header-contact {
	padding: 0 17px;
	text-transform: uppercase;
}

.tl-header-cart {
	cursor: pointer;
	padding: 0;
	position: relative;
	width: 46px;
}

.tl-header-contact:hover,
.tl-header-contact:focus-visible,
.tl-header-cart:hover,
.tl-header-cart:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--tl-teal-bright);
	transform: translateY(-2px);
}

.tl-cart-count {
	align-items: center;
	background: var(--tl-teal-bright);
	border: 2px solid var(--tl-ink-deep);
	border-radius: 999px;
	color: var(--tl-ink-deep);
	display: flex;
	font-size: 8px;
	font-weight: 900;
	height: 19px;
	justify-content: center;
	line-height: 1;
	min-width: 19px;
	padding: 0 4px;
	position: absolute;
	right: -5px;
	top: -6px;
}

.tl-footer {
	background:
		radial-gradient(circle at 8% 12%, rgba(21, 151, 142, 0.17), transparent 25%),
		linear-gradient(145deg, #041b27 0%, #020f17 72%);
	border-top: 5px solid var(--tl-teal);
	padding-top: 78px;
}

.tl-footer-main {
	gap: clamp(34px, 4vw, 72px);
	grid-template-columns: minmax(290px, 1.45fr) minmax(130px, 0.65fr) minmax(165px, 0.8fr) minmax(250px, 1.1fr);
	min-height: 280px;
}

.tl-footer-brand-block {
	max-width: 410px;
}

.tl-footer-brand img,
.tl-footer .tl-footer-brand img {
	width: clamp(255px, 21vw, 320px);
}

.tl-footer-standard {
	color: var(--tl-gold-bright);
	font-size: 11px;
	letter-spacing: 0.15em;
	margin: 27px 0 14px;
}

.tl-footer-tagline {
	color: #a9bec4;
	font-size: 13px;
	letter-spacing: 0;
	line-height: 1.8;
	margin: 0;
}

.tl-footer-column h2 {
	color: var(--tl-white);
	font-size: 17px;
	letter-spacing: -0.025em;
	margin: 6px 0 24px;
}

.tl-footer .tl-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tl-footer .tl-footer-links a {
	color: #a9bec4;
	font-size: 11px;
	line-height: 1.4;
}

.tl-footer-support {
	display: flex;
	flex-direction: column;
}

.tl-footer-contact {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	display: flex;
	gap: 12px;
	padding: 12px 0;
}

.tl-footer-contact span {
	align-items: center;
	background: rgba(36, 199, 183, 0.12);
	border: 1px solid rgba(36, 199, 183, 0.28);
	border-radius: 50%;
	color: var(--tl-teal-bright);
	display: flex;
	font-size: 8px;
	font-weight: 900;
	height: 33px;
	justify-content: center;
	letter-spacing: -0.03em;
	width: 33px;
}

.tl-footer-contact strong {
	color: var(--tl-white);
	font-size: 11px;
	font-weight: 700;
}

.tl-footer-mailing-address {
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	color: #a9bec4;
	font-size: 10px;
	font-style: normal;
	line-height: 1.6;
	padding: 13px 0 14px;
}

.tl-footer-mailing-address strong,
.tl-footer-mailing-address span,
.tl-footer-mailing-address small {
	display: block;
}

.tl-footer-mailing-address strong {
	color: var(--tl-white);
	font-size: 10px;
	letter-spacing: 0.04em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.tl-footer-mailing-address small {
	color: #748e95;
	font-size: 8px;
	letter-spacing: 0.03em;
	margin-top: 3px;
	text-transform: uppercase;
}

.tl-footer-support > p {
	color: #748e95;
	font-size: 9px;
	line-height: 1.65;
	margin: 18px 0 0;
}

.tl-footer-legal {
	align-items: center;
	margin-top: 38px;
	padding-top: 26px;
}

.tl-footer-legal p:last-child {
	color: #a9bec4;
	min-width: 180px;
	text-align: right;
}

@media (max-width: 1160px) {
	.tl-header-contact {
		display: none;
	}

	.tl-footer-main {
		grid-template-columns: minmax(290px, 1.3fr) 0.7fr 0.8fr;
	}

	.tl-footer-support {
		grid-column: 1 / -1;
		max-width: 560px;
	}
}

@media (max-width: 860px) {
	.tl-header {
		grid-template-columns: 1fr auto auto;
		min-height: 78px;
	}

	.tl-header .tl-brand img {
		width: 194px;
	}

	.tl-menu-toggle {
		grid-column: 3;
	}

	.tl-header-actions {
		grid-column: 2;
		grid-row: 1;
		margin-right: 3px;
	}

	.tl-header-actions .tl-sign-in,
	.tl-header-actions .tl-header-contact {
		display: none;
	}

	.tl-primary-nav {
		grid-column: 1 / -1;
	}

	.tl-footer-main,
	.tl-footer-main nav {
		grid-column: auto;
		grid-template-columns: 1fr 1fr;
	}

	.tl-footer-brand-block,
	.tl-footer-support {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	.tl-footer-main,
	.tl-footer-main nav {
		grid-template-columns: 1fr;
	}

	.tl-footer-column,
	.tl-footer-brand-block,
	.tl-footer-support {
		grid-column: 1;
	}

	.tl-footer {
		padding-top: 58px;
	}

	.tl-footer-legal p:last-child {
		text-align: left;
	}
}

/* Bold 2.8 policy center. Core supplies the semantic policy document; the
 * theme owns a strong, readable, responsive presentation around that markup. */
body.truelot-policy-page {
	--tl-policy-accent: var(--tl-teal);
	--tl-policy-accent-bright: var(--tl-teal-bright);
	--tl-policy-accent-pale: #e7f7f4;
	--tl-policy-notice: var(--tl-gold);
	background: #eef8f6;
}

body.truelot-policy-page--privacy-policy {
	--tl-policy-accent: #157f8f;
	--tl-policy-accent-bright: #35c5c0;
	--tl-policy-accent-pale: #e7f6f7;
}

body.truelot-policy-page--shipping-returns,
body.truelot-policy-page--sales-final-policy {
	--tl-policy-notice: var(--tl-gold-bright);
}

body.truelot-policy-page .tl-page-shell {
	background:
		radial-gradient(circle at 9% 29%, rgba(36, 199, 183, 0.12), transparent 24rem),
		linear-gradient(180deg, #dff4f0 0, #eef8f6 560px, #f7fbfa 100%);
	max-width: none;
	overflow: clip;
	padding: 0 0 clamp(76px, 9vw, 132px);
}

body.truelot-policy-page .tl-page {
	margin: 0;
	max-width: none;
	min-width: 0;
}

body.truelot-policy-page .tl-page-header {
	background:
		radial-gradient(circle at 82% 18%, rgba(36, 199, 183, 0.26), transparent 29%),
		radial-gradient(circle at 58% 120%, rgba(16, 119, 114, 0.26), transparent 38%),
		linear-gradient(128deg, #031822 0%, #062b38 56%, #073e49 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--tl-white);
	isolation: isolate;
	margin: 0;
	overflow: hidden;
	padding: clamp(72px, 8vw, 116px) clamp(22px, 5.5vw, 82px) clamp(58px, 7vw, 96px);
	position: relative;
}

body.truelot-policy-page .tl-page-header::before {
	background:
		linear-gradient(124deg, transparent 0 46%, rgba(255, 255, 255, 0.045) 46.2% 46.8%, transparent 47% 100%),
		linear-gradient(56deg, transparent 0 59%, rgba(36, 199, 183, 0.08) 59.2% 59.8%, transparent 60% 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

body.truelot-policy-page .tl-page-header::after {
	background: var(--tl-policy-notice);
	bottom: 0;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	top: auto;
	width: min(36vw, 520px);
}

.tl-policy-hero-inner {
	margin: 0 auto;
	max-width: 1280px;
	min-width: 0;
	position: relative;
	z-index: 2;
}

body.truelot-policy-page .tl-page-header .tl-eyebrow {
	color: var(--tl-policy-accent-bright);
	font-size: 11px;
	letter-spacing: 0.18em;
	margin-bottom: 21px;
}

body.truelot-policy-page .tl-page-header .tl-eyebrow::before {
	background: var(--tl-policy-accent-bright);
}

body.truelot-policy-page .tl-page-header h1 {
	color: var(--tl-white);
	font-size: clamp(52px, 7.4vw, 104px);
	letter-spacing: -0.07em;
	line-height: 0.91;
	margin: 0;
	max-width: 1040px;
}

.tl-policy-hero-deck {
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 520;
	letter-spacing: -0.025em;
	line-height: 1.45;
	margin: clamp(25px, 3vw, 38px) 0 0;
	max-width: 720px;
}

.tl-policy-hero-meta {
	align-items: end;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	margin-top: clamp(42px, 5vw, 70px);
}

.tl-policy-effective {
	color: var(--tl-white);
	display: grid;
	font-size: 14px;
	font-weight: 760;
	gap: 5px;
	letter-spacing: 0.015em;
	margin: 0;
}

.tl-policy-effective span {
	color: rgba(255, 255, 255, 0.54);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.tl-policy-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tl-policy-hero-tags li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.035em;
	padding: 10px 15px;
}

body.truelot-policy-page .tl-page-content {
	color: #435f6b;
	font-size: 17px;
	line-height: 1.78;
	margin: 0 auto;
	max-width: 1440px;
	min-width: 0;
	padding: clamp(34px, 5vw, 70px) clamp(16px, 4.5vw, 64px) 0;
}

body.truelot-policy-page .tl-page-content > .tl-policy,
body.truelot-policy-page .tl-page-content > :only-child {
	min-width: 0;
}

/* page.php is the single policy-hero owner. Suppress a legacy shortcode hero
 * if an older Core build briefly leaves one at the top of the policy wrapper. */
body.truelot-policy-page .tl-page-content .tl-policy > .tl-policy-hero {
	display: none;
}

body.truelot-policy-page .tl-page-content a {
	color: #087e76;
	font-weight: 760;
	text-decoration-color: rgba(8, 126, 118, 0.38);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

body.truelot-policy-page .tl-page-content a:hover {
	color: #035b57;
	text-decoration-color: currentColor;
}

body.truelot-policy-page .tl-page-content a:focus-visible,
.tl-policy-index a:focus-visible,
.tl-policy-mobile-index summary:focus-visible,
.tl-policy-mobile-index a:focus-visible,
.tl-policy-support a:focus-visible {
	border-radius: 8px;
	outline: 3px solid rgba(216, 155, 50, 0.75);
	outline-offset: 4px;
}

.tl-policy,
.tl-policy--terms,
.tl-policy--terms-conditions,
.tl-policy--privacy,
.tl-policy--privacy-policy,
.tl-policy--shipping,
.tl-policy--shipping-returns,
.tl-policy--sales-final,
.tl-policy--sales-final-policy,
.tl-policy--research-use,
.tl-policy--research-use-terms {
	--tl-policy-card-border: #d5e6e2;
	min-width: 0;
	width: 100%;
}

.tl-policy p,
.tl-policy li,
.tl-policy a,
.tl-policy strong,
.tl-policy-section {
	overflow-wrap: anywhere;
}

.tl-policy--privacy,
.tl-policy--privacy-policy {
	--tl-policy-card-border: #d3e6e9;
}

.tl-policy-highlights {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 clamp(30px, 4vw, 48px);
}

.tl-policy-highlight {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--tl-policy-card-border);
	border-radius: 22px;
	box-shadow: 0 18px 52px rgba(5, 45, 57, 0.07);
	min-height: 190px;
	overflow: hidden;
	padding: clamp(24px, 3vw, 34px);
	position: relative;
}

.tl-policy-highlight::before {
	background: var(--tl-policy-accent);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	top: 0;
	width: 64px;
}

.tl-policy-highlight:nth-child(2)::before {
	background: var(--tl-gold);
}

.tl-policy-highlight:nth-child(3)::before {
	background: var(--tl-ink-soft);
}

.tl-policy-highlight > :first-child {
	margin-top: 0;
}

.tl-policy-highlight > :last-child {
	margin-bottom: 0;
}

.tl-policy-highlight > span {
	align-items: center;
	background: var(--tl-policy-accent-pale);
	border: 1px solid rgba(21, 151, 142, 0.2);
	border-radius: 14px;
	color: var(--tl-policy-accent);
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	letter-spacing: 0.04em;
	margin: 0 0 24px;
	width: 48px;
}

.tl-policy-highlight:nth-child(2) > span {
	background: #fff7e7;
	border-color: rgba(216, 155, 50, 0.28);
	color: #a86f11;
}

.tl-policy-highlight:nth-child(3) > span {
	background: #eaf0f1;
	border-color: rgba(8, 37, 54, 0.15);
	color: var(--tl-ink-soft);
}

.tl-policy-highlight strong,
.tl-policy-highlight h2,
.tl-policy-highlight h3 {
	color: var(--tl-ink-deep);
	display: block;
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.12;
	margin: 0 0 13px;
}

.tl-policy-highlight p {
	color: #5a727c;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.tl-policy-layout {
	align-items: start;
	display: grid;
	gap: clamp(25px, 3vw, 44px);
	grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
	min-width: 0;
}

.tl-policy-index {
	align-self: start;
	min-width: 0;
	position: sticky;
	top: 118px;
}

.tl-policy-index-inner {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--tl-policy-card-border);
	border-radius: 22px;
	box-shadow: 0 17px 48px rgba(5, 45, 57, 0.07);
	max-height: calc(100vh - 140px);
	overscroll-behavior: contain;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 16px;
	position: static;
	scrollbar-color: rgba(21, 151, 142, 0.45) transparent;
	scrollbar-width: thin;
}

.admin-bar .tl-policy-index {
	top: 150px;
}

.admin-bar .tl-policy-index-inner {
	max-height: calc(100vh - 172px);
}

.tl-policy-index-inner::-webkit-scrollbar {
	width: 7px;
}

.tl-policy-index-inner::-webkit-scrollbar-track {
	background: transparent;
}

.tl-policy-index-inner::-webkit-scrollbar-thumb {
	background: rgba(21, 151, 142, 0.38);
	border: 2px solid transparent;
	border-radius: 999px;
	background-clip: padding-box;
}

.tl-policy-index-inner::-webkit-scrollbar-thumb:hover {
	background: rgba(21, 151, 142, 0.62);
	background-clip: padding-box;
}

.tl-policy-index h2,
.tl-policy-index h3,
.tl-policy-index-title {
	color: var(--tl-ink-deep);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
	padding: 10px 11px 13px;
}

.tl-policy-index p {
	color: #718690;
	font-size: 13px;
	line-height: 1.5;
	margin: -7px 0 10px;
	padding: 0 11px;
}

.tl-policy-index ul,
.tl-policy-index ol,
.tl-policy-mobile-index ul,
.tl-policy-mobile-index ol {
	display: grid;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tl-policy-index a,
.tl-policy-mobile-index a {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 12px;
	color: #3e5965;
	display: flex;
	font-size: 13px;
	font-weight: 720;
	gap: 10px;
	justify-content: space-between;
	line-height: 1.35;
	padding: 11px 12px;
	text-decoration: none !important;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tl-policy-index a::after,
.tl-policy-mobile-index a::after {
	color: var(--tl-policy-accent);
	content: "›";
	font-size: 19px;
	font-weight: 500;
	line-height: 1;
}

.tl-policy-index a:hover,
.tl-policy-index a.is-active,
.tl-policy-index a[aria-current="location"],
.tl-policy-mobile-index a:hover,
.tl-policy-mobile-index a.is-active,
.tl-policy-mobile-index a[aria-current="location"] {
	background: var(--tl-policy-accent-pale);
	border-color: rgba(21, 151, 142, 0.24);
	color: #075e59;
	transform: translateX(2px);
}

.tl-policy-mobile-index {
	display: none;
	margin: 0 0 22px;
}

.tl-policy-mobile-index summary {
	align-items: center;
	background: var(--tl-white);
	border: 1px solid var(--tl-policy-card-border);
	border-radius: 15px;
	color: var(--tl-ink-deep);
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: space-between;
	list-style: none;
	min-height: 56px;
	padding: 14px 17px;
}

.tl-policy-mobile-index summary::-webkit-details-marker {
	display: none;
}

.tl-policy-mobile-index summary::after {
	color: var(--tl-policy-accent);
	content: "+";
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

.tl-policy-mobile-index[open] summary {
	border-radius: 15px 15px 0 0;
}

.tl-policy-mobile-index[open] summary::after {
	content: "−";
}

.tl-policy-mobile-index > :not(summary) {
	background: var(--tl-white);
	border: 1px solid var(--tl-policy-card-border);
	border-radius: 0 0 15px 15px;
	border-top: 0;
	padding: 10px;
}

.tl-policy-document {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.tl-policy-section {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--tl-policy-card-border);
	border-radius: 24px;
	box-shadow: 0 18px 55px rgba(5, 45, 57, 0.065);
	min-width: 0;
	padding: clamp(27px, 4vw, 50px);
	scroll-margin-top: 124px;
}

.tl-policy-section > :first-child {
	margin-top: 0;
}

.tl-policy-section > :last-child {
	margin-bottom: 0;
}

.tl-policy-section h2,
.tl-policy-section h3,
body.truelot-policy-page .tl-page-content .tl-policy-section h2,
body.truelot-policy-page .tl-page-content .tl-policy-section h3 {
	border: 0;
	color: var(--tl-ink-deep);
	letter-spacing: -0.045em;
	line-height: 1.08;
	margin: 0 0 20px;
	padding: 0;
}

.tl-policy-section h2,
body.truelot-policy-page .tl-page-content .tl-policy-section h2 {
	font-size: clamp(30px, 3.3vw, 44px);
}

.tl-policy-section h3,
body.truelot-policy-page .tl-page-content .tl-policy-section h3 {
	font-size: clamp(23px, 2.4vw, 31px);
	margin-top: 32px;
}

.tl-policy-section p {
	color: #4f6873;
	font-size: 17px;
	line-height: 1.78;
	margin: 0 0 18px;
}

.tl-policy-section p + p {
	margin-top: 15px;
}

.tl-policy-section strong {
	color: #163b49;
}

.tl-policy-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 22px 0;
	padding: 0;
}

.tl-policy-list li {
	background: #f8fbfa;
	border: 1px solid #e0ece9;
	border-radius: 14px;
	color: #4b6570;
	font-size: 16px;
	line-height: 1.65;
	padding: 16px 18px 16px 49px;
	position: relative;
}

.tl-policy-list li::before {
	background: var(--tl-policy-accent);
	border: 5px solid var(--tl-policy-accent-pale);
	border-radius: 50%;
	content: "";
	height: 18px;
	left: 18px;
	position: absolute;
	top: 20px;
	width: 18px;
}

.tl-policy-callout {
	background: var(--tl-policy-accent-pale);
	border: 1px solid rgba(21, 151, 142, 0.25);
	border-left: 5px solid var(--tl-policy-accent);
	border-radius: 16px;
	color: #264c59;
	margin: 25px 0;
	padding: 21px 23px;
}

.tl-policy-callout > :first-child {
	margin-top: 0;
}

.tl-policy-callout > :last-child {
	margin-bottom: 0;
}

.tl-policy-callout p,
.tl-policy-callout li {
	color: inherit;
}

.tl-policy-callout--deadline,
.tl-policy-callout--gold,
.tl-policy-callout--warning,
.tl-policy-callout--important {
	background: #fff8e8;
	border-color: rgba(216, 155, 50, 0.36);
	border-left-color: var(--tl-policy-notice);
	color: #5d491f;
}

.tl-policy-callout--navy,
.tl-policy-callout--restriction,
.tl-policy-callout--dark {
	background: var(--tl-ink-deep);
	border-color: var(--tl-ink-deep);
	border-left-color: var(--tl-gold);
	color: rgba(255, 255, 255, 0.83);
}

.tl-policy-callout--navy strong,
.tl-policy-callout--restriction strong,
.tl-policy-callout--dark strong,
.tl-policy-callout--navy a,
.tl-policy-callout--restriction a,
.tl-policy-callout--dark a {
	color: var(--tl-white) !important;
}

.tl-policy-support {
	background:
		radial-gradient(circle at 94% 0, rgba(36, 199, 183, 0.22), transparent 42%),
		var(--tl-ink-deep);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 15px;
	overflow: hidden;
	padding: 23px;
}

.tl-policy-support > :first-child {
	margin-top: 0;
}

.tl-policy-support > :last-child {
	margin-bottom: 0;
}

.tl-policy-support strong,
.tl-policy-support h2,
.tl-policy-support h3 {
	color: var(--tl-white);
	display: block;
	font-size: 16px;
	letter-spacing: -0.02em;
	margin: 0 0 7px;
}

.tl-policy-support p {
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	line-height: 1.55;
	margin: 0 0 10px;
	padding: 0;
}

.tl-policy-support a {
	color: var(--tl-gold-bright) !important;
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	overflow-wrap: anywhere;
	text-decoration-color: currentColor !important;
}

.tl-policy-support--footer {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-top: 0;
	padding: clamp(24px, 3vw, 32px);
}

.tl-policy-support--footer p {
	margin-bottom: 0;
}

.tl-policy-support--footer a {
	flex: 0 0 auto;
}

@media (max-width: 960px) {
	.tl-policy-highlights {
		grid-template-columns: 1fr 1fr;
	}

	.tl-policy-highlight:last-child {
		grid-column: 1 / -1;
		min-height: 0;
	}

	.tl-policy-layout {
		grid-template-columns: 1fr;
	}

	.tl-policy-index {
		display: none;
	}

	.tl-policy-mobile-index {
		background: var(--tl-white);
		border-radius: 15px;
		box-shadow: 0 14px 38px rgba(5, 45, 57, 0.13);
		display: block;
		max-height: calc(100vh - 126px);
		overscroll-behavior: contain;
		overflow-y: auto;
		position: sticky;
		top: 106px;
		z-index: 45;
	}

	.admin-bar .tl-policy-mobile-index {
		max-height: calc(100vh - 158px);
		top: 138px;
	}

	.tl-policy-mobile-index summary {
		position: sticky;
		top: 0;
		z-index: 2;
	}

	.tl-policy-section {
		scroll-margin-top: 178px;
	}

	.admin-bar .tl-policy-section {
		scroll-margin-top: 210px;
	}
}

@media (max-width: 782px) {
	.admin-bar .tl-policy-mobile-index {
		max-height: calc(100vh - 172px);
		top: 152px;
	}

	.admin-bar .tl-policy-section {
		scroll-margin-top: 224px;
	}
}

@media (max-width: 680px) {
	body.truelot-policy-page .tl-page-header {
		padding-bottom: 55px;
		padding-top: 60px;
	}

	body.truelot-policy-page .tl-page-header h1 {
		font-size: clamp(48px, 15vw, 72px);
	}

	.tl-policy-hero-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 25px;
	}

	.tl-policy-hero-tags {
		justify-content: flex-start;
	}

	.tl-policy-highlights {
		grid-template-columns: 1fr;
	}

	.tl-policy-highlight,
	.tl-policy-highlight:last-child {
		grid-column: auto;
		min-height: 0;
	}

	.tl-policy-section {
		border-radius: 18px;
		padding: 25px 21px;
	}

	.tl-policy-section p,
	.tl-policy-list li {
		font-size: 16px;
	}

	.tl-policy-list li {
		padding-left: 45px;
	}

	.tl-policy-callout {
		padding: 18px;
	}

	.tl-policy-support--footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Bold 2.5 scalable catalog and account actions */
.tl-header-login {
	color: rgba(255, 255, 255, 0.84);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	padding: 13px 7px;
	text-transform: uppercase;
	white-space: nowrap;
}

.tl-header-login:hover,
.tl-header-login:focus-visible {
	color: var(--tl-white);
}

.tl-create-account {
	font-size: 9px;
	min-width: 210px;
	padding-left: 16px;
	padding-right: 16px;
}

.tl-mobile-account-links {
	display: none;
}

body.tl-shop-filters-open {
	overflow: hidden;
}

.tl-shop-page {
	background:
		linear-gradient(180deg, #eef7f5 0, #f8fbfa 720px, #fff 1180px);
	min-height: 70vh;
}

.tl-shop-hero {
	background:
		radial-gradient(circle at 78% 14%, rgba(36, 199, 183, 0.22), transparent 30%),
		radial-gradient(circle at 9% 88%, rgba(216, 155, 50, 0.12), transparent 28%),
		linear-gradient(135deg, #031822 0%, #082f40 64%, #063647 100%);
	color: var(--tl-white);
	overflow: hidden;
	position: relative;
}

.tl-shop-hero-grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 76px 76px;
	inset: 0;
	mask-image: linear-gradient(90deg, black 0, rgba(0, 0, 0, 0.65) 62%, transparent 100%);
	pointer-events: none;
	position: absolute;
}

.tl-shop-hero-inner {
	align-items: end;
	display: grid;
	gap: clamp(44px, 7vw, 112px);
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
	margin: 0 auto;
	max-width: 1600px;
	padding: clamp(76px, 8vw, 126px) clamp(24px, 5vw, 78px) 70px;
	position: relative;
	z-index: 1;
}

.tl-shop-hero-copy {
	max-width: 920px;
}

.tl-shop-kicker {
	color: var(--tl-teal-bright);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.18em;
	margin: 0 0 27px;
	text-transform: uppercase;
}

.tl-shop-hero h1 {
	font-size: clamp(64px, 7.2vw, 112px);
	font-weight: 850;
	letter-spacing: -0.07em;
	line-height: 0.86;
	margin: 0;
	text-transform: uppercase;
}

.tl-shop-hero h1 span {
	color: var(--tl-gold-bright);
	display: block;
	font-size: 0.64em;
	letter-spacing: -0.055em;
	margin-top: 20px;
}

.tl-shop-hero-copy > p:last-child {
	color: #c2d5da;
	font-size: clamp(14px, 1.2vw, 18px);
	line-height: 1.75;
	margin: 34px 0 0;
	max-width: 760px;
}

.tl-shop-hero-standard {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
	padding: clamp(28px, 3vw, 42px);
}

.tl-shop-hero-standard span {
	color: var(--tl-teal-bright);
	display: block;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.16em;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.tl-shop-hero-standard strong {
	display: block;
	font-size: clamp(23px, 2.2vw, 34px);
	letter-spacing: -0.045em;
	line-height: 1.12;
}

.tl-shop-hero-standard strong:last-child {
	color: var(--tl-gold-bright);
}

.tl-shop-proof-rail {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 1600px;
	padding: 0 clamp(24px, 5vw, 78px);
	position: relative;
	z-index: 1;
}

.tl-shop-proof-rail > div {
	align-items: center;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 16px;
	min-height: 72px;
	padding: 0 28px;
}

.tl-shop-proof-rail > div:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tl-shop-proof-rail strong {
	color: var(--tl-gold-bright);
	font-size: 10px;
	letter-spacing: 0.1em;
}

.tl-shop-proof-rail span {
	color: #d7e5e8;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tl-shop-container {
	margin: 0 auto;
	max-width: 1600px;
	padding: clamp(48px, 6vw, 92px) clamp(20px, 4vw, 64px) 130px;
}

.tl-shop-layout {
	display: grid;
	gap: clamp(24px, 2.5vw, 38px);
	grid-template-columns: 270px minmax(0, 1fr);
}

.tl-shop-sidebar {
	align-self: start;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d7e5e2;
	border-radius: 24px;
	box-shadow: 0 24px 65px rgba(8, 37, 54, 0.08);
	overflow: hidden;
	position: sticky;
	top: 126px;
}

.tl-shop-sidebar-heading {
	align-items: start;
	background: var(--tl-ink-deep);
	color: var(--tl-white);
	display: flex;
	justify-content: space-between;
	padding: 26px 24px 23px;
}

.tl-shop-sidebar-heading span,
.tl-shop-search label,
.tl-shop-filter-group h3,
.tl-shop-toolbar > div > span {
	color: var(--tl-teal);
	display: block;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.tl-shop-sidebar-heading span {
	color: var(--tl-teal-bright);
}

.tl-shop-sidebar-heading h2 {
	font-size: 22px;
	letter-spacing: -0.04em;
	margin: 0;
}

.tl-shop-sidebar-heading button {
	background: transparent;
	border: 0;
	color: var(--tl-white);
	cursor: pointer;
	display: none;
	font-size: 30px;
	line-height: 1;
	padding: 0;
}

.tl-shop-search {
	border-bottom: 1px solid var(--tl-line);
	padding: 23px;
}

.tl-shop-search > div {
	display: grid;
	grid-template-columns: 1fr 42px;
}

.tl-shop-search input {
	background: var(--tl-mist);
	border: 1px solid var(--tl-line);
	border-radius: 10px 0 0 10px;
	color: var(--tl-ink);
	font-size: 12px;
	min-width: 0;
	padding: 0 13px;
}

.tl-shop-search button {
	align-items: center;
	background: var(--tl-teal);
	border: 0;
	border-radius: 0 10px 10px 0;
	color: var(--tl-white);
	cursor: pointer;
	display: flex;
	font-size: 18px;
	justify-content: center;
	min-height: 44px;
}

.tl-shop-filter-group {
	border-bottom: 1px solid var(--tl-line);
	padding: 22px 23px 17px;
}

.tl-shop-filter-group a {
	align-items: center;
	border-radius: 9px;
	color: #4f6974;
	display: flex;
	font-size: 11px;
	font-weight: 700;
	justify-content: space-between;
	margin: 2px 0;
	min-height: 38px;
	padding: 0 10px;
	transition: background 160ms ease, color 160ms ease;
}

.tl-shop-filter-group a:hover,
.tl-shop-filter-group a:focus-visible {
	background: var(--tl-mist);
	color: var(--tl-ink);
}

.tl-shop-filter-group a.is-active {
	background: var(--tl-teal-pale);
	color: #08766f;
}

.tl-shop-filter-group a.is-active::before {
	background: var(--tl-teal);
	border-radius: 999px;
	content: "";
	height: 6px;
	margin-right: 9px;
	width: 6px;
}

.tl-shop-filter-group a.is-active span {
	margin-right: auto;
}

.tl-shop-filter-group small {
	color: #82959c;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tl-shop-filter-group i {
	background: #21a377;
	border-radius: 999px;
	height: 7px;
	width: 7px;
}

.tl-shop-clear {
	color: #8a4b35;
	display: block;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.1em;
	padding: 18px 23px;
	text-transform: uppercase;
}

.tl-shop-sidebar-proof {
	background:
		radial-gradient(circle at 88% 18%, rgba(36, 199, 183, 0.25), transparent 31%),
		var(--tl-ink-deep);
	color: var(--tl-white);
	padding: 28px 24px 30px;
}

.tl-shop-sidebar-proof span {
	color: var(--tl-gold-bright);
	display: block;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.14em;
	margin-bottom: 13px;
	text-transform: uppercase;
}

.tl-shop-sidebar-proof strong {
	display: block;
	font-size: 17px;
	letter-spacing: -0.03em;
	line-height: 1.35;
	margin-bottom: 18px;
}

.tl-shop-sidebar-proof a {
	color: var(--tl-teal-bright);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tl-shop-results {
	min-width: 0;
}

.tl-shop-toolbar {
	align-items: end;
	border-bottom: 1px solid #ccdcda;
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
	min-height: 55px;
	padding-bottom: 16px;
}

.tl-shop-toolbar .woocommerce-result-count,
.tl-shop-toolbar .woocommerce-ordering {
	float: none;
	margin: 0;
}

.tl-shop-toolbar .woocommerce-result-count {
	color: var(--tl-ink);
	font-size: 13px;
	font-weight: 750;
}

.tl-shop-results ul.products {
	align-items: stretch;
	display: grid !important;
	gap: clamp(16px, 1.5vw, 24px);
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	margin: 0;
	padding: 0;
}

/*
 * WooCommerce assigns percentage widths to .products.columns-* cards. Those
 * widths are correct for its floated layout but collapse cards when the list
 * is a CSS grid. Reset them at this integration boundary so every product
 * fills one complete TrueLot grid track on the live archive.
 */
body.truelot-catalog.woocommerce .tl-shop-results ul.products[class*="columns-"] > li.product:nth-child(n),
body.truelot-catalog.woocommerce-page .tl-shop-results ul.products[class*="columns-"] > li.product:nth-child(n),
.woocommerce .tl-shop-results ul.products[class*="columns-"] > li.product:nth-child(n) {
	clear: none !important;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.tl-shop-results ul.products li.product {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid #d4e3e0;
	border-radius: 24px;
	box-shadow: 0 14px 40px rgba(8, 37, 54, 0.055);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	padding-bottom: 22px;
	transform: none;
	transition: border-color 200ms ease, box-shadow 200ms ease;
}

/* Catalogue cards stay still; retain the existing thin teal hover outline. */
.tl-shop-results ul.products li.product:hover { transform: none; }

.tl-shop-results ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.tl-shop-results ul.products li.product a img {
	/* Round the artwork itself; internal padding would leave its corners square. */
	background: transparent;
	border: 0;
	border-radius: 12px;
	display: block;
	height: auto !important;
	margin: 14px 14px 0;
	object-fit: contain;
	object-position: center;
	padding: 0;
	width: calc(100% - 28px) !important;
	transform: none;
	transition: none;
}

.tl-shop-results ul.products li.product:hover a img {
	transform: none;
}

.tl-product-card-meta {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin: 20px 20px 10px;
}

.tl-product-card-meta span,
.tl-product-card-meta span a {
	color: var(--tl-teal);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tl-product-card-meta strong {
	background: var(--tl-mist);
	border-radius: 999px;
	color: #667c84;
	font-size: 7px;
	font-weight: 850;
	letter-spacing: 0.08em;
	padding: 7px 9px;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .tl-catalog-product-title {
	font-size: clamp(18px, 1.5vw, 23px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0 20px 12px;
	min-height: 2.3em;
	overflow-wrap: normal;
	text-wrap: balance;
	word-break: normal;
}

.woocommerce ul.products li.product .tl-catalog-product-title.tl-product-title--long {
	font-size: clamp(18px, 1.45vw, 22px);
	letter-spacing: -0.035em;
	line-height: 1.03;
	min-height: 0;
}

.woocommerce ul.products li.product .tl-catalog-product-title.tl-product-title--long > span {
	display: block;
}

.woocommerce ul.products li.product .tl-catalog-product-title .tl-product-title__material {
	font-size: 1em;
}

.woocommerce ul.products li.product .tl-catalog-product-title .tl-product-title__kind {
	font-size: 0.72em;
	font-weight: 680;
	letter-spacing: -0.018em;
	margin-top: 6px;
}

.woocommerce ul.products li.product .tl-catalog-product-title .tl-product-title__strength {
	color: var(--tl-teal);
	font-size: 0.66em;
	font-weight: 800;
	letter-spacing: 0.025em;
	margin-top: 8px;
}

.tl-shop-results ul.products li.product .price {
	font-size: 19px;
	letter-spacing: -0.025em;
	margin: auto 20px 0;
}

.tl-product-card-proof {
	border-top: 1px solid var(--tl-line);
	display: grid;
	gap: 7px;
	margin: 17px 20px 0;
	padding-top: 14px;
}

.tl-product-card-proof span,
.tl-product-card-proof small {
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.tl-product-card-proof span::before {
	background: currentColor;
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 6px;
	margin-right: 7px;
	width: 6px;
}

.tl-product-card-proof .is-released {
	color: #0b8d68;
}

.tl-product-card-proof .is-pending {
	color: #9a6b1e;
}

.tl-product-card-proof small {
	color: #73888f;
}

.tl-shop-results ul.products li.product .button {
	align-self: stretch;
	margin: 19px 20px 0;
	min-height: 54px;
}

.tl-shop-results .woocommerce-pagination {
	margin-top: 44px;
}

.tl-shop-results .woocommerce-pagination ul.page-numbers {
	border: 0;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.tl-shop-results .woocommerce-pagination ul.page-numbers li {
	border: 0;
}

.tl-shop-results .woocommerce-pagination .page-numbers li span,
.tl-shop-results .woocommerce-pagination .page-numbers li a {
	align-items: center;
	border: 1px solid var(--tl-line);
	border-radius: 50%;
	display: flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.tl-shop-results .woocommerce-pagination .page-numbers li span.current {
	background: var(--tl-ink-deep);
	color: var(--tl-white);
}

.tl-shop-empty {
	background: var(--tl-white);
	border: 1px solid var(--tl-line);
	border-radius: 24px;
	padding: clamp(38px, 6vw, 80px);
	text-align: center;
}

.tl-shop-empty > span {
	color: var(--tl-teal);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tl-shop-empty h2 {
	font-size: clamp(34px, 4vw, 58px);
	letter-spacing: -0.055em;
	margin: 15px 0;
}

.tl-shop-empty p {
	color: var(--tl-muted);
	line-height: 1.7;
	margin: 0 auto 26px;
	max-width: 560px;
}

.tl-shop-filter-toggle {
	display: none;
}

@media (max-width: 1280px) {
	.tl-header-contact {
		display: none;
	}

	.tl-header .tl-brand img {
		width: 216px;
	}

	.tl-primary-nav {
		margin-right: 20px;
	}

	.tl-shop-layout {
		grid-template-columns: 238px minmax(0, 1fr);
	}

	.tl-shop-results ul.products li.product a img {
		height: 270px;
	}
}

@media (max-width: 1100px) {
	.tl-header-login {
		display: none;
	}

	.tl-shop-hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
	}

	.tl-shop-results ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.tl-shop-results ul.products li.product a img {
		height: 320px;
	}
}

@media (max-width: 920px) {
	.tl-shop-hero-inner {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.tl-shop-hero-standard {
		display: grid;
		gap: 9px;
		grid-template-columns: repeat(3, 1fr);
	}

	.tl-shop-hero-standard span {
		grid-column: 1 / -1;
	}

	.tl-shop-proof-rail span {
		font-size: 8px;
	}

	.tl-shop-filter-toggle {
		align-items: center;
		background: var(--tl-ink-deep);
		border: 0;
		border-radius: 14px;
		color: var(--tl-white);
		cursor: pointer;
		display: flex;
		font-size: 10px;
		font-weight: 850;
		justify-content: space-between;
		letter-spacing: 0.09em;
		margin-bottom: 22px;
		min-height: 54px;
		padding: 0 19px;
		text-transform: uppercase;
		width: 100%;
	}

	.tl-shop-filter-toggle small {
		color: var(--tl-teal-bright);
		font-size: 8px;
	}

	.tl-shop-layout {
		display: block;
	}

	.tl-shop-sidebar {
		border-radius: 0 24px 24px 0;
		bottom: 0;
		left: 0;
		max-width: 360px;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform 240ms ease;
		width: calc(100% - 44px);
		z-index: 1002;
	}

	body.tl-shop-filters-open .tl-shop-sidebar {
		transform: translateX(0);
	}

	.tl-shop-sidebar-heading button {
		display: block;
	}

	.tl-shop-filter-scrim {
		backdrop-filter: blur(4px);
		background: rgba(3, 24, 34, 0.68);
		inset: 0;
		position: fixed;
		z-index: 1001;
	}

	.tl-shop-filter-scrim:not([hidden]) {
		display: block;
	}
}

@media (max-width: 860px) {
	.tl-primary-nav {
		justify-self: stretch;
		margin: 0;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.tl-mobile-account-links {
		display: grid;
		gap: 10px;
		grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
		padding-top: 15px;
	}

	.tl-mobile-account-links a {
		align-items: center;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 999px;
		color: var(--tl-white);
		display: flex;
		font-size: 9px;
		font-weight: 850;
		justify-content: center;
		letter-spacing: 0.08em;
		min-height: 44px;
		text-transform: uppercase;
	}

	.tl-mobile-account-links a.is-primary {
		background: var(--tl-gold);
		border-color: var(--tl-gold);
		color: var(--tl-ink-deep);
	}
}

@media (max-width: 420px) {
	.tl-mobile-account-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.tl-shop-hero-inner {
		padding-bottom: 48px;
		padding-top: 68px;
	}

	.tl-shop-hero h1 {
		font-size: clamp(51px, 16vw, 74px);
	}

	.tl-shop-hero h1 span {
		font-size: 0.61em;
		margin-top: 13px;
	}

	.tl-shop-hero-standard {
		grid-template-columns: 1fr;
	}

	.tl-shop-hero-standard span {
		grid-column: auto;
	}

	.tl-shop-proof-rail {
		grid-template-columns: 1fr;
		padding: 0 20px;
	}

	.tl-shop-proof-rail > div,
	.tl-shop-proof-rail > div:last-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		min-height: 58px;
		padding: 0;
	}

	.tl-shop-proof-rail > div:first-child {
		border-top: 0;
	}

	.tl-shop-container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.tl-shop-toolbar {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.tl-shop-toolbar .woocommerce-ordering,
	.tl-shop-toolbar .woocommerce-ordering select {
		width: 100%;
	}

	.tl-shop-results ul.products {
		grid-template-columns: 1fr !important;
	}

	.tl-shop-results ul.products li.product a img {
		height: 360px;
	}
}

@media (max-width: 420px) {
	.tl-shop-results ul.products li.product a img {
		height: 310px;
	}
}

/* Bold 2.7 content-page integration. */
body.truelot-standard-page .tl-page,
body.truelot-faq-page .tl-page,
body.truelot-coa-page .tl-page {
	max-width: 1320px;
}

body.truelot-standard-page .tl-page-content,
body.truelot-faq-page .tl-page-content,
body.truelot-coa-page .tl-page-content {
	font-size: 17px;
}

body.truelot-standard-page .tl-page-header h1,
body.truelot-faq-page .tl-page-header h1,
body.truelot-coa-page .tl-page-header h1 {
	font-size: clamp(48px, 7vw, 92px);
	letter-spacing: -0.06em;
	line-height: 0.95;
}

@media (max-width: 860px) {
	.tl-mobile-account-links a:only-child {
		grid-column: 1 / -1;
	}
}

/* Bold 2.9 prelaunch catalog status. */
.tl-prelaunch-catalog-notice {
	align-items: center;
	background: linear-gradient(120deg, #fff8e8 0%, #ffffff 58%, #eef9f7 100%);
	border: 1px solid rgba(216, 155, 50, 0.34);
	border-radius: 22px;
	box-shadow: 0 22px 62px rgba(4, 33, 44, 0.09);
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
	margin: 34px auto 0;
	max-width: 1600px;
	padding: 28px clamp(24px, 4vw, 54px);
}

.tl-prelaunch-catalog-notice span {
	color: #9d6b12;
	display: block;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.15em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.tl-prelaunch-catalog-notice strong {
	color: var(--tl-ink-deep);
	display: block;
	font-size: clamp(21px, 2vw, 31px);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.tl-prelaunch-catalog-notice p {
	color: #47616a;
	font-size: 15px;
	line-height: 1.72;
	margin: 0;
}

body.truelot-prelaunch-review .tl-product-card-proof .is-pending {
	background: #fff4da;
	border-color: rgba(216, 155, 50, 0.35);
	color: #8a5c0c;
}

@media (max-width: 760px) {
	.tl-prelaunch-catalog-notice {
		border-radius: 18px;
		gap: 14px;
		grid-template-columns: 1fr;
		margin: 20px 14px 0;
		padding: 24px 22px;
	}
}

/* Fast, restrained page-entry motion. Content never depends on JavaScript, and
 * the site-wide reduced-motion rule disables these animations automatically. */
@keyframes tl-page-enter {
	from {
		opacity: 0;
		transform: translate3d(0, 12px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.tl-home-hero .tl-hero-copy > *,
	.tl-home-hero .tl-hero-stage,
	.tl-shop-hero-copy > *,
	.tl-shop-hero-standard,
	.tl-prelaunch-catalog-notice > *,
	.tl-page-header > *,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-product-hero-kicker,
	body.single-product .tl-commerce-shell div.product div.summary > .product_title,
	body.single-product .tl-commerce-shell div.product div.summary > .price,
	body.single-product .tl-commerce-shell div.product div.summary > .woocommerce-product-details__short-description,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-selected-strength,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-product-disclaimer,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-product-proof-points,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-release-summary,
	.tl-shop-results ul.products li.product {
		animation: tl-page-enter 260ms cubic-bezier(0.22, 0.75, 0.28, 1) both;
	}

	.tl-home-hero .tl-hero-copy > :nth-child(2),
	.tl-shop-hero-copy > :nth-child(2),
	.tl-page-header > :nth-child(2),
	body.single-product .tl-commerce-shell div.product div.summary > .product_title {
		animation-delay: 45ms;
	}

	.tl-home-hero .tl-hero-copy > :nth-child(3),
	.tl-shop-hero-copy > :nth-child(3),
	.tl-page-header > :nth-child(3),
	body.single-product .tl-commerce-shell div.product div.summary > .price {
		animation-delay: 90ms;
	}

	.tl-home-hero .tl-hero-copy > :nth-child(n + 4),
	.tl-shop-hero-standard,
	.tl-prelaunch-catalog-notice > :nth-child(2),
	body.single-product .tl-commerce-shell div.product div.summary > .woocommerce-product-details__short-description,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-selected-strength,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-product-disclaimer,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-product-proof-points,
	body.single-product .tl-commerce-shell div.product div.summary > .tl-release-summary {
		animation-delay: 130ms;
	}

	.tl-shop-results ul.products li.product:nth-child(3n + 2) {
		animation-delay: 45ms;
	}

	.tl-shop-results ul.products li.product:nth-child(3n + 3) {
		animation-delay: 90ms;
	}
}

/* Bold 3.6 production-home presentation. */
.tl-hero-photo {
	background-image:
		linear-gradient(90deg, rgba(2, 23, 35, 0.98) 0%, rgba(2, 23, 35, 0.86) 38%, rgba(2, 23, 35, 0.28) 69%, rgba(2, 23, 35, 0.1) 100%),
		linear-gradient(180deg, rgba(2, 23, 35, 0.12), rgba(2, 23, 35, 0.52)),
		url("../images/truelot-hero-lab.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	inset: 0;
	position: absolute;
}

.tl-home-hero {
	min-height: 900px;
}

.tl-home-hero .tl-hero-layout {
	min-height: 760px;
}

.tl-home-hero h1 {
	font-size: clamp(54px, 5.7vw, 94px);
	line-height: 0.93;
	max-width: 780px;
	text-transform: none;
}

.tl-home-hero h1 > span {
	color: var(--tl-teal-bright);
	-webkit-text-stroke: 0;
}

.tl-home-hero .tl-hero-copy {
	max-width: 750px;
}

.tl-home-hero .tl-hero-intro {
	color: #d3e1e4;
	max-width: 650px;
}

.tl-home-hero .tl-hero-stage {
	filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.38));
}

.tl-home-hero .tl-stage-card {
	background: rgba(4, 31, 43, 0.82);
	border-color: rgba(66, 214, 199, 0.26);
}

.tl-home-hero .tl-stage-card-lot {
	width: 235px;
}

.tl-home-hero .tl-stage-card-panel {
	width: 235px;
}

.tl-trust-section {
	background:
		linear-gradient(180deg, rgba(238, 246, 244, 0.78), rgba(255, 255, 255, 0.98)),
		var(--tl-white);
	margin: 0 auto;
	max-width: var(--tl-width);
	padding: 36px clamp(24px, 5.5vw, 82px) 126px;
}

.tl-trust-heading {
	align-items: end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 52px;
}

.tl-trust-heading h2 {
	font-size: clamp(48px, 5.2vw, 78px);
	font-weight: 800;
	letter-spacing: -0.065em;
	line-height: 0.96;
	margin: 0;
}

.tl-trust-heading h2 span {
	color: var(--tl-teal);
}

.tl-trust-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tl-trust-card {
	background: var(--tl-ink-deep);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 28px;
	box-shadow: 0 28px 70px rgba(4, 31, 43, 0.15);
	color: var(--tl-white);
	display: flex;
	flex-direction: column;
	isolation: isolate;
	justify-content: flex-end;
	min-height: 500px;
	overflow: hidden;
	padding: clamp(30px, 3vw, 44px);
	position: relative;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.tl-trust-card::before,
.tl-trust-card::after {
	content: "";
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.tl-trust-card::before {
	background:
		radial-gradient(circle at 75% 18%, rgba(36, 199, 183, 0.33), transparent 32%),
		linear-gradient(145deg, transparent 24%, rgba(255, 255, 255, 0.035) 24.5%, transparent 25%, transparent 47%, rgba(255, 255, 255, 0.035) 47.5%, transparent 48%);
	inset: 0;
}

.tl-trust-card::after {
	border: 1px solid rgba(36, 199, 183, 0.35);
	border-radius: 50%;
	height: 280px;
	right: -95px;
	top: -75px;
	width: 280px;
}

.tl-trust-card--shipping {
	background-color: #071e2b;
	background-image:
		linear-gradient(180deg, rgba(2, 23, 35, 0.12) 0%, rgba(2, 23, 35, 0.45) 43%, rgba(2, 23, 35, 0.97) 82%),
		url("../images/trust-shipping.webp");
	background-position: center;
	background-size: cover;
}

.tl-trust-card--research {
	background-color: #092c3b;
	background-image:
		linear-gradient(180deg, rgba(2, 23, 35, 0.1) 0%, rgba(2, 23, 35, 0.46) 43%, rgba(2, 23, 35, 0.97) 82%),
		url("../images/trust-research.webp");
	background-position: center;
	background-size: cover;
}

.tl-trust-card--testing {
	background-color: #071e2b;
	background-image:
		linear-gradient(180deg, rgba(2, 23, 35, 0.1) 0%, rgba(2, 23, 35, 0.46) 43%, rgba(2, 23, 35, 0.97) 82%),
		url("../images/trust-testing.webp");
	background-position: center;
	background-size: cover;
}

.tl-trust-card--testing::before {
	background:
		radial-gradient(circle at 78% 17%, rgba(242, 184, 79, 0.28), transparent 32%),
		linear-gradient(145deg, transparent 24%, rgba(255, 255, 255, 0.035) 24.5%, transparent 25%, transparent 47%, rgba(255, 255, 255, 0.035) 47.5%, transparent 48%);
}

.tl-trust-card:hover,
.tl-trust-card:focus-within {
	box-shadow: 0 34px 82px rgba(4, 31, 43, 0.23);
	transform: translateY(-7px);
}

.tl-trust-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	display: flex;
	height: 72px;
	justify-content: center;
	margin-bottom: auto;
	width: 72px;
}

.tl-trust-icon svg {
	fill: none;
	height: 38px;
	stroke: var(--tl-teal-bright);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
	width: 38px;
}

.tl-trust-card--testing .tl-trust-icon svg {
	stroke: var(--tl-gold-bright);
}

.tl-trust-card > span {
	color: var(--tl-teal-bright);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.18em;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.tl-trust-card h3 {
	font-size: clamp(31px, 3vw, 45px);
	letter-spacing: -0.05em;
	line-height: 1.02;
	margin: 0;
}

.tl-trust-card p {
	color: #c0d2d7;
	font-size: 14px;
	line-height: 1.75;
	margin: 20px 0 0;
}

.tl-trust-card a {
	color: var(--tl-white);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.12em;
	margin-top: 25px;
	text-transform: uppercase;
}

.tl-trust-card a:focus-visible {
	border-radius: 4px;
	outline: 3px solid var(--tl-gold-bright);
	outline-offset: 5px;
}

.tl-value-strip {
	background: var(--tl-white);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	max-width: var(--tl-width);
	padding: 72px clamp(24px, 5.5vw, 82px) 92px;
}

.tl-value-strip article {
	align-items: center;
	border-right: 1px solid var(--tl-line);
	display: flex;
	flex-direction: column;
	padding: 18px clamp(18px, 2.4vw, 38px);
	text-align: center;
}

.tl-value-strip article:last-child {
	border-right: 0;
}

.tl-value-icon {
	align-items: center;
	background: var(--tl-teal-pale);
	border-radius: 50%;
	display: flex;
	height: 96px;
	justify-content: center;
	margin-bottom: 26px;
	width: 96px;
}

.tl-value-icon svg {
	fill: none;
	height: 48px;
	stroke: var(--tl-teal);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
	width: 48px;
}

.tl-value-strip h3 {
	font-size: 21px;
	letter-spacing: -0.035em;
	margin: 0;
}

.tl-value-strip p {
	color: var(--tl-muted);
	font-size: 12px;
	line-height: 1.65;
	margin: 11px 0 0;
}

.tl-access-section {
	background:
		radial-gradient(circle at 82% 22%, rgba(36, 199, 183, 0.2), transparent 32%),
		linear-gradient(135deg, var(--tl-ink-deep), #0a3443);
	color: var(--tl-white);
}

.tl-access-section .tl-eyebrow {
	color: var(--tl-teal-bright);
}

.tl-access-section .tl-eyebrow::before {
	background: var(--tl-gold-bright);
}

.tl-access-section p {
	color: #c0d2d7;
}

.tl-access-section .tl-text-link {
	color: var(--tl-white);
}

@media (max-width: 1120px) {
	.tl-home-hero h1 {
		font-size: clamp(52px, 7vw, 78px);
	}

	.tl-trust-grid {
		gap: 14px;
	}

	.tl-trust-card {
		min-height: 470px;
		padding: 30px;
	}
}

@media (max-width: 1040px) {
	.tl-trust-grid {
		grid-template-columns: 1fr;
	}

	.tl-trust-card {
		min-height: 410px;
	}
}

@media (max-width: 900px) {
	.tl-hero-photo {
		background-position: 68% center;
		opacity: 0.7;
	}

	.tl-trust-heading {
		align-items: start;
		flex-direction: column;
		gap: 16px;
	}

	.tl-value-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tl-value-strip article:nth-child(2) {
		border-right: 0;
	}

	.tl-value-strip article:nth-child(-n + 2) {
		border-bottom: 1px solid var(--tl-line);
		padding-bottom: 42px;
	}

	.tl-value-strip article:nth-child(n + 3) {
		padding-top: 42px;
	}
}

@media (max-width: 620px) {
	.tl-home-hero {
		min-height: auto;
	}

	.tl-home-hero h1 {
		font-size: clamp(43px, 13vw, 62px);
	}

	.tl-home-hero .tl-hero-intro {
		font-size: 16px;
	}

	.tl-trust-section {
		padding-bottom: 82px;
		padding-top: 18px;
	}

	.tl-trust-heading h2 {
		font-size: 43px;
	}

	.tl-trust-card {
		border-radius: 22px;
		min-height: 390px;
		padding: 26px;
	}

	.tl-value-strip {
		grid-template-columns: 1fr;
		padding-bottom: 68px;
		padding-top: 52px;
	}

	.tl-value-strip article,
	.tl-value-strip article:nth-child(2),
	.tl-value-strip article:nth-child(-n + 2),
	.tl-value-strip article:nth-child(n + 3) {
		border-bottom: 1px solid var(--tl-line);
		border-right: 0;
		padding: 34px 12px;
	}

	.tl-value-strip article:last-child {
		border-bottom: 0;
	}
}

/* Bold 3.8.4 open product-detail composition.
 * Mirrors the reference page's information architecture while retaining
 * TrueLot typography, colors, exact-lot evidence, and WooCommerce controls. */
body.single-product .tl-commerce-shell {
	background:
		radial-gradient(circle at 3% 8%, rgba(21, 151, 142, 0.055), transparent 23%),
		linear-gradient(180deg, #f8faf9 0, #fff 340px, #fff 100%);
	max-width: none;
	padding: 48px clamp(32px, 5vw, 72px) 112px;
}

body.single-product .tl-commerce-shell > .tl-container {
	margin: 0 auto;
	max-width: 1320px;
	min-width: 0;
	width: 100%;
}

body.single-product .tl-commerce-shell .woocommerce-breadcrumb {
	margin: 0 0 32px;
	max-width: 100%;
	overflow-wrap: anywhere;
}

body.single-product .tl-commerce-shell div.product {
	align-items: start;
	display: grid !important;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr);
	margin: 0 auto;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product div.images,
body.single-product .tl-commerce-shell div.product div.summary {
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	width: 100% !important;
}

body.single-product .tl-commerce-shell div.product div.images {
	aspect-ratio: 1 / 1.04;
	background:
		radial-gradient(circle at 78% 14%, rgba(36, 199, 183, 0.19), transparent 34%),
		radial-gradient(circle at 16% 90%, rgba(216, 155, 50, 0.1), transparent 30%),
		linear-gradient(150deg, #010b12 0%, #041722 56%, #082936 100%);
	border: 1px solid rgba(99, 200, 189, 0.18);
	border-radius: 24px;
	box-shadow: 0 24px 58px rgba(3, 25, 35, 0.17);
	display: grid;
	isolation: isolate;
	justify-self: center;
	max-width: 500px;
	overflow: hidden;
	padding: 22px;
	place-items: center;
	position: relative;
}

body.single-product .tl-commerce-shell div.product div.images::after {
	background: radial-gradient(circle, rgba(52, 194, 181, 0.13), transparent 68%);
	border-radius: 50%;
	content: "";
	height: 280px;
	pointer-events: none;
	position: absolute;
	right: -110px;
	top: -118px;
	width: 280px;
	z-index: 0;
}

body.single-product .tl-commerce-shell div.product div.images > * {
	max-width: 100%;
	position: relative;
	z-index: 1;
}

body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__wrapper {
	background: #e8eeed;
	border: 0;
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.19);
	height: 100%;
	overflow: hidden;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__image,
body.single-product .tl-commerce-shell div.product div.images .tl-product-image-static {
	display: block;
	height: 100%;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product div.images img {
	background: #e8eeed;
	cursor: default;
	filter: brightness(0.96) contrast(1.035);
	height: 100% !important;
	object-fit: contain;
	transform: none !important;
	transition: none !important;
	width: 100% !important;
}

body.single-product .tl-commerce-shell div.product div.images .zoomImg,
body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__trigger {
	display: none !important;
}

body.single-product .tl-commerce-shell div.product div.summary {
	align-self: start;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	justify-self: center;
	max-width: 640px;
	padding: 2px 0 0;
}

body.single-product .tl-commerce-shell div.product .product_title {
	color: var(--tl-ink-deep);
	font-size: clamp(40px, 3.4vw, 52px);
	letter-spacing: -0.048em;
	line-height: 1.01;
	margin: 0 0 25px;
	max-width: 100%;
	overflow-wrap: normal;
	text-wrap: balance;
	word-break: normal;
}

body.single-product .tl-commerce-shell div.product .product_title.tl-product-title--long {
	font-size: clamp(42px, 3.2vw, 48px);
	letter-spacing: -0.04em;
	line-height: 1;
	text-wrap: wrap;
}

body.single-product .tl-commerce-shell div.product .tl-product-title--long > span {
	display: block;
}

body.single-product .tl-commerce-shell div.product .tl-product-title__material {
	font-size: 1em;
}

body.single-product .tl-commerce-shell div.product .tl-product-title__kind {
	font-size: 0.67em;
	font-weight: 680;
	letter-spacing: -0.022em;
	margin-top: 7px;
}

body.single-product .tl-commerce-shell div.product .tl-product-title__strength {
	color: var(--tl-teal);
	font-size: 0.5em;
	font-weight: 800;
	letter-spacing: 0.025em;
	margin-top: 9px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-product-details__short-description {
	color: #526b75;
	font-size: 15px;
	line-height: 1.62;
	margin: 0 0 24px;
	max-width: 62ch;
}

body.single-product .tl-commerce-shell div.product .tl-product-disclaimer {
	background: transparent;
	border: 0;
	border-left: 3px solid var(--tl-teal);
	border-radius: 0;
	color: var(--tl-ink-soft);
	margin: 0 0 28px;
	padding: 4px 0 4px 15px;
}

body.single-product .tl-commerce-shell div.product .tl-product-disclaimer p {
	font-size: 12px;
	line-height: 1.55;
	margin: 0;
}

body.single-product .tl-commerce-shell div.product .tl-selected-strength {
	margin: 0 0 22px;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product form.cart {
	border: 0;
	margin: 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product form.cart table.variations {
	background: transparent;
	border: 0;
	margin: 0 0 26px;
	max-width: 100%;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product form.cart table.variations th,
body.single-product .tl-commerce-shell div.product form.cart table.variations td {
	padding-left: 0;
	padding-right: 0;
}

body.single-product .tl-commerce-shell div.product form.cart table.variations label,
body.single-product .tl-commerce-shell div.product .tl-volume-label {
	color: #667b84;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

body.single-product .tl-commerce-shell div.product form.cart table.variations select {
	background: #fff;
	border: 1px solid #cbdcd8;
	border-radius: 999px;
	color: var(--tl-ink-deep);
	font-size: 14px;
	min-height: 48px;
	padding: 10px 18px;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .tl-strength-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 26px;
}

body.single-product .tl-commerce-shell div.product .tl-strength-option {
	background: #fff;
	border: 1px solid #cbdcd8;
	border-radius: 999px;
	box-shadow: none;
	min-height: 46px;
	padding: 10px 18px;
	transform: none;
}

body.single-product .tl-commerce-shell div.product .tl-strength-option.is-selected,
body.single-product .tl-commerce-shell div.product .tl-strength-option[aria-pressed="true"] {
	background: var(--tl-teal-pale);
	border-color: var(--tl-teal);
	color: var(--tl-ink-deep);
}

body.single-product .tl-commerce-shell div.product .tl-volume-pricing {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0 0 20px;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-volume-heading {
	align-items: end;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin: 0 0 13px;
}

body.single-product .tl-commerce-shell div.product .tl-volume-heading p,
body.single-product .tl-commerce-shell div.product .tl-volume-heading span {
	margin: 0;
}

body.single-product .tl-commerce-shell div.product .tl-volume-heading span {
	color: #87999f;
	font-size: 10px;
	line-height: 1.3;
	text-align: right;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button {
	background: #fff;
	border: 1px solid #cfdedb;
	border-radius: 20px;
	box-shadow: none;
	color: var(--tl-ink-deep);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 88px;
	min-width: 0;
	padding: 13px 10px 11px;
	position: relative;
	transform: none;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button:hover,
body.single-product .tl-commerce-shell div.product .tl-volume-options button.is-selected,
body.single-product .tl-commerce-shell div.product .tl-volume-options button[aria-pressed="true"] {
	background: #eff9f7;
	border-color: var(--tl-teal);
	box-shadow: 0 8px 22px rgba(15, 117, 111, 0.09);
	transform: none;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button strong {
	font-size: 15px;
	line-height: 1.15;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button span {
	color: #0f756f;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	margin-top: 5px;
}

body.single-product .tl-commerce-shell div.product .tl-volume-options button small {
	color: #6b8088;
	font-size: 10px;
	line-height: 1.25;
	margin-top: 6px;
}

body.single-product .tl-commerce-shell div.product .tl-volume-note {
	color: #7b8e95;
	font-size: 11px;
	line-height: 1.45;
	margin: 12px 0 0;
}

body.single-product .tl-commerce-shell div.product .tl-volume-total {
	border: 0;
	color: #597079;
	font-size: 12px;
	margin: 7px 0 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .summary > .price,
body.single-product .tl-commerce-shell div.product .tl-variable-purchase-price > .price {
	color: var(--tl-teal);
	font-size: clamp(32px, 3vw, 42px);
	font-weight: 850;
	line-height: 1;
	margin: 22px 0 25px;
}

body.single-product .tl-commerce-shell div.product .summary > .price.tl-bundle-primary-price,
body.single-product .tl-commerce-shell div.product .tl-variable-purchase-price > .price.tl-bundle-primary-price {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

body.single-product .tl-commerce-shell div.product .tl-variable-purchase-price {
	margin: 0;
}

body.single-product .tl-commerce-shell div.product .tl-primary-price-label {
	color: #677b84;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary {
	background: linear-gradient(145deg, #f7fbfa, #eef7f5);
	border: 1px solid #cbded9;
	border-radius: 16px;
	box-shadow: 0 9px 25px rgba(11, 38, 54, 0.045);
	margin: 0 0 24px;
	overflow: hidden;
	padding: 15px 16px;
}

/* Keep one lot record and one COA link; only their visual grid placement changes. */
body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot {
	align-items: start;
	display: grid;
	gap: 12px 10px;
	grid-template-columns: minmax(112px, 1.2fr) repeat(6, minmax(0, 0.5fr));
}

body.single-product .tl-commerce-shell div.product .tl-product-shipping-line {
	color: #607781;
	font-size: 12px;
	font-weight: 720;
	letter-spacing: 0.01em;
	line-height: 1.45;
	margin: -4px 0 20px;
	overflow-wrap: anywhere;
}

body.single-product .tl-commerce-shell div.product .tl-release-heading {
	align-items: center;
	background: transparent;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-heading span {
	color: var(--tl-ink-deep);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-heading > strong {
	display: none;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-heading {
	border-bottom: 1px solid #dce9e6;
	grid-column: 1 / -1;
	grid-row: 1;
	padding-bottom: 12px;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid[hidden],
body.single-product .tl-commerce-shell div.product .tl-release-empty[hidden],
body.single-product .tl-commerce-shell div.product .tl-release-fact[hidden],
body.single-product .tl-commerce-shell div.product .tl-release-coa-button[hidden],
body.single-product .tl-commerce-shell div.product .tl-release-coa-pending[hidden] {
	display: none !important;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-grid {
	border: 0;
	display: contents;
	margin: 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-fact--lot {
	grid-column: 1;
	grid-row: 2;
}

body.single-product .tl-commerce-shell div.product [data-truelot-purity-row] {
	grid-column: 2 / span 2;
	grid-row: 2;
}

body.single-product .tl-commerce-shell div.product [data-truelot-content-row] {
	grid-column: 4 / span 2;
	grid-row: 2;
}

body.single-product .tl-commerce-shell div.product [data-truelot-endotoxin-row] {
	grid-column: 6 / span 2;
	grid-row: 2;
}

body.single-product .tl-commerce-shell div.product .tl-release-fact--lab {
	grid-column: 2 / span 3;
	grid-row: 3;
}

/* The fifth fact is the existing report-date field, including after variation updates. */
body.single-product .tl-commerce-shell div.product .tl-release-grid > .tl-release-fact:nth-child(5) {
	grid-column: 5 / span 3;
	grid-row: 3;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid > div {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	text-align: center;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid > .tl-release-fact--lot {
	align-items: flex-start;
	text-align: left;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid span {
	color: #768991;
	font-size: 8.5px;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1.4;
	overflow-wrap: anywhere;
	text-transform: uppercase;
}

body.single-product .tl-commerce-shell div.product .tl-release-grid strong {
	color: var(--tl-ink-deep);
	font-size: 12px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

body.single-product .tl-commerce-shell div.product .tl-release-fact--lot strong {
	color: var(--tl-teal);
	font-size: 16px;
}

body.single-product .tl-commerce-shell div.product .tl-release-coa-action {
	border: 0;
	margin: 15px 0 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-coa-action {
	align-self: start;
	grid-column: 1;
	grid-row: 3;
	margin: 0;
	min-width: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-coa-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--tl-teal);
	border-radius: 999px;
	color: var(--tl-teal);
	display: inline-flex;
	gap: 6px;
	justify-content: center;
	max-width: 100%;
	min-height: 44px;
	padding: 7px 12px;
	text-align: center;
	text-decoration: none;
	width: auto;
}

body.single-product .tl-commerce-shell div.product .tl-release-coa-button > span {
	display: none;
}

body.single-product .tl-commerce-shell div.product .tl-release-coa-button:hover,
body.single-product .tl-commerce-shell div.product .tl-release-coa-button:focus-visible {
	background: var(--tl-teal);
	border-color: var(--tl-teal);
	color: #fff;
}

body.single-product .tl-commerce-shell div.product .tl-release-coa-pending {
	background: transparent;
	border: 0;
	color: #697e86;
	display: block;
	min-height: 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-release-coa-pending strong {
	display: none;
}

body.single-product .tl-commerce-shell div.product .tl-release-empty {
	color: #697e86;
	font-size: 11px;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 767px) {
	/* Pair the original lot ID and COA button; keep results and metadata below. */
	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot {
		column-gap: 8px;
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-fact--lot {
		align-items: flex-start;
		align-self: center;
		grid-column: 1 / span 3;
		text-align: left;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-coa-action {
		align-self: center;
		grid-column: 4 / span 3;
		grid-row: 2;
		justify-self: end;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot [data-truelot-purity-row] {
		grid-column: 1 / span 2;
		grid-row: 3;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot [data-truelot-content-row] {
		grid-column: 3 / span 2;
		grid-row: 3;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot [data-truelot-endotoxin-row] {
		grid-column: 5 / span 2;
		grid-row: 3;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-fact--lab {
		grid-column: 1 / span 3;
		grid-row: 4;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary.has-lot .tl-release-grid > .tl-release-fact:nth-child(5) {
		grid-column: 4 / span 3;
		grid-row: 4;
	}
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart,
body.single-product .tl-commerce-shell div.product.product-type-simple form.cart {
	align-items: stretch;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: grid;
	gap: 12px;
	grid-template-columns: 88px minmax(0, 1fr);
	margin: 22px 0 0;
	padding: 0;
}

/* Legacy WooCommerce clearfix cells must not occupy purchase-grid columns. */
body.single-product .tl-commerce-shell div.product.product-type-simple form.cart::before,
body.single-product .tl-commerce-shell div.product.product-type-simple form.cart::after,
body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart::before,
body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart::after {
	content: none !important;
	display: none !important;
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart .quantity,
body.single-product .tl-commerce-shell div.product.product-type-simple form.cart > .quantity {
	float: none;
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	min-width: 0;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart .qty,
body.single-product .tl-commerce-shell div.product.product-type-simple form.cart > .quantity .qty {
	background: #fff;
	border: 1px solid #cbdad8;
	border-radius: 12px;
	color: var(--tl-ink);
	font-size: 16px;
	font-weight: 650;
	height: 100%;
	min-height: 56px;
	min-width: 0;
	padding: 10px 8px;
	text-align: center;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .single_add_to_cart_button {
	align-items: center;
	background: var(--tl-ink);
	border: 1px solid var(--tl-ink);
	border-radius: 12px;
	color: #fff;
	display: flex;
	float: none;
	font-size: 16px;
	font-weight: 750;
	grid-column: 2;
	grid-row: 1;
	justify-content: center;
	letter-spacing: 0.01em;
	line-height: 1.25;
	margin: 0;
	min-height: 56px;
	min-width: 0;
	padding: 14px 20px;
	text-align: center;
	text-transform: none;
	white-space: normal;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .single_add_to_cart_button:hover,
body.single-product .tl-commerce-shell div.product .single_add_to_cart_button:focus-visible {
	background: var(--tl-teal);
	border-color: var(--tl-teal);
	color: #fff;
	transform: none;
}

body.single-product .tl-commerce-shell div.product .single_add_to_cart_button:disabled,
body.single-product .tl-commerce-shell div.product .single_add_to_cart_button.disabled {
	background: var(--tl-ink);
	border-color: var(--tl-ink);
	color: #fff;
	cursor: not-allowed;
	opacity: 0.5;
}

body.single-product .tl-commerce-shell div.product.product-type-simple form.cart:not(:has(> .quantity input:not([type="hidden"]))) > .single_add_to_cart_button,
body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart:not(:has(> .quantity input:not([type="hidden"]))) > .single_add_to_cart_button {
	grid-column: 1 / -1;
}

body.single-product.truelot-order-login-required .tl-commerce-shell div.product .woocommerce-variation-add-to-cart,
body.single-product.truelot-order-login-required .tl-commerce-shell div.product.product-type-simple form.cart {
	display: none !important;
}

body.single-product .tl-commerce-shell div.product .tl-order-access-card {
	background: var(--tl-ink-deep);
	border: 1px solid rgba(119, 195, 187, 0.16);
	border-radius: 16px;
	color: #fff;
	margin: 24px 0 0;
	padding: 20px;
}

body.single-product .tl-commerce-shell div.product .tl-order-access-card--compact {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 24px 0 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .tl-order-access-card--compact > a {
	align-items: center;
	background: var(--tl-gold);
	border-radius: 13px;
	box-shadow: 0 10px 24px rgba(173, 113, 17, 0.14);
	color: var(--tl-ink-deep);
	display: flex;
	font-size: 11px;
	font-weight: 850;
	justify-content: center;
	letter-spacing: 0.075em;
	min-height: 56px;
	padding: 12px 20px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs,
body.single-product .tl-commerce-shell div.product .related,
body.single-product .tl-commerce-shell div.product .upsells {
	grid-column: 1 / -1;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs {
	border: 0;
	border-top: 1px solid var(--tl-line);
	justify-self: center;
	margin: 38px 0 0;
	max-width: 1040px;
	min-width: 0;
	padding: 38px 0 12px;
	width: 100%;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 30px;
	margin: 0 0 32px;
	overflow: visible;
	padding: 0;
	white-space: normal;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	float: none;
	margin: 0;
	padding: 0;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: var(--tl-teal);
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li a {
	font-size: 10px;
	min-height: 48px;
	padding: 15px 0 12px;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs .panel {
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
}

body.single-product .tl-commerce-shell div.product .woocommerce-tabs .panel table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

@media (min-width: 1100px) {
	body.single-product .tl-commerce-shell div.product {
		column-gap: clamp(56px, 5vw, 80px);
		grid-template-columns: minmax(420px, 500px) minmax(500px, 640px);
		justify-content: center;
		row-gap: 78px;
	}

	body.single-product .tl-commerce-shell div.product div.images {
		align-self: start;
		justify-self: start;
		max-width: 500px;
		position: relative;
		top: auto;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		justify-self: end;
	}
}

@media (max-width: 1099px) {
	body.single-product .tl-commerce-shell {
		padding-left: clamp(28px, 6vw, 52px);
		padding-right: clamp(28px, 6vw, 52px);
	}

	body.single-product .tl-commerce-shell div.product {
		gap: 40px;
	}

	body.single-product .tl-commerce-shell div.product div.images {
		max-width: 460px;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		max-width: 700px;
	}
}

@media (max-width: 767px) {
	body.single-product .tl-commerce-shell {
		padding: 26px max(18px, env(safe-area-inset-left)) 88px max(18px, env(safe-area-inset-right));
	}

	body.single-product .tl-commerce-shell div.product {
		gap: 32px;
		max-width: calc(100vw - 36px);
	}

	body.single-product .tl-commerce-shell div.product div.images {
		aspect-ratio: 1 / 1;
		border-radius: 21px;
		max-width: min(100%, 348px);
		padding: 14px;
	}

	body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__wrapper {
		border-radius: 15px;
	}

	body.single-product .tl-commerce-shell div.product div.summary {
		max-width: calc(100vw - 36px);
		padding: 0;
	}

	body.single-product .tl-commerce-shell div.product .product_title {
		font-size: clamp(31px, 8.7vw, 38px);
		line-height: 1.03;
		margin-bottom: 21px;
	}

	body.single-product .tl-commerce-shell div.product .product_title.tl-product-title--long {
		font-size: clamp(30px, 8.5vw, 34px);
		line-height: 1.02;
	}

	body.single-product .tl-commerce-shell div.product .tl-product-title__kind {
		font-size: 0.75em;
		margin-top: 6px;
	}

	body.single-product .tl-commerce-shell div.product .tl-product-title__strength {
		font-size: 0.63em;
		margin-top: 8px;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-product-details__short-description {
		font-size: 14px;
		margin-bottom: 22px;
	}

	body.single-product .tl-commerce-shell div.product .tl-product-disclaimer {
		margin-bottom: 25px;
		padding-left: 13px;
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-heading span {
		text-align: left;
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-options {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.single-product .tl-commerce-shell div.product .tl-volume-options button {
		border-radius: 17px;
		min-height: 84px;
	}

	body.single-product .tl-commerce-shell div.product .summary > .price,
	body.single-product .tl-commerce-shell div.product .tl-variable-purchase-price > .price {
		font-size: 34px;
		margin: 20px 0 23px;
	}

	body.single-product .tl-commerce-shell div.product .tl-release-summary {
		padding: 14px;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-variation-add-to-cart,
	body.single-product .tl-commerce-shell div.product.product-type-simple form.cart {
		grid-template-columns: 74px minmax(0, 1fr);
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs {
		margin-top: 28px;
		padding-top: 30px;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs {
		display: grid;
		gap: 8px;
		grid-template-columns: minmax(0, 1fr);
		margin-bottom: 27px;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs::before,
	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li::before,
	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li::after {
		display: none;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li {
		border: 1px solid var(--tl-line);
		border-radius: 11px;
		min-width: 0;
		text-align: center;
		width: 100% !important;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li.active {
		background: var(--tl-ink-deep);
		border-color: var(--tl-ink-deep);
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li.active a {
		color: #fff;
	}

	body.single-product .tl-commerce-shell div.product .woocommerce-tabs ul.tabs li a {
		align-items: center;
		display: flex;
		justify-content: center;
		min-height: 46px;
		overflow-wrap: anywhere;
		padding: 8px 10px;
		white-space: normal;
		width: 100%;
	}
}

@media (max-width: 359px) {
	body.single-product .tl-commerce-shell {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.single-product .tl-commerce-shell div.product,
	body.single-product .tl-commerce-shell div.product div.summary {
		max-width: calc(100vw - 32px);
	}

	body.single-product .tl-commerce-shell div.product div.images {
		max-width: min(100%, 320px);
	}

	body.single-product .tl-commerce-shell div.product .product_title.tl-product-title--long {
		font-size: 28px;
	}
}

/* Bold 3.8.5: keep the mobile homepage composition inside the viewport. */
@media (max-width: 680px) {
	.tl-home-hero .tl-hero-stage {
		height: 370px;
		max-width: 390px;
		overflow: hidden;
	}

	.tl-home-hero .tl-vial-main {
		border-radius: 22px;
		height: 248px;
		width: 248px;
	}

	.tl-home-hero .tl-vial-klow,
	.tl-home-hero .tl-vial-nad {
		height: 118px;
		width: 118px;
	}

	.tl-home-hero .tl-vial-klow {
		bottom: 2%;
		left: 1%;
	}

	.tl-home-hero .tl-vial-nad {
		right: 1%;
		top: 2%;
	}

	.tl-home-hero .tl-stage-card {
		display: none;
	}

	.tl-home-hero .tl-orbit-large {
		height: 305px;
		width: min(350px, calc(100vw - 28px));
	}

	.tl-home-hero .tl-orbit-small {
		height: 225px;
		width: min(285px, calc(100vw - 76px));
	}

	.tl-showcase-card img,
	.tl-showcase-featured img {
		height: auto;
		margin: auto auto 18px;
		max-width: calc(100% - 32px);
		object-fit: contain;
		width: calc(100% - 32px);
	}
}

@media (max-width: 390px) {
	.tl-home-hero .tl-hero-stage {
		height: 342px;
	}

	.tl-home-hero .tl-vial-main {
		height: 225px;
		width: 225px;
	}

	.tl-home-hero .tl-vial-klow,
	.tl-home-hero .tl-vial-nad {
		height: 104px;
		width: 104px;
	}
}

/* Purchase CTAs share the checkout's navy treatment and a centered label. */
body .tl-cart-drawer-panel .tl-cart-checkout {
	align-items: center;
	background: var(--tl-ink);
	border: 1px solid var(--tl-ink);
	border-radius: 12px;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 750;
	justify-content: center;
	letter-spacing: 0.01em;
	line-height: 1.25;
	min-height: 56px;
	padding: 14px 20px;
	text-align: center;
	text-transform: capitalize;
	white-space: normal;
	width: 100%;
}

body .tl-cart-drawer-panel .tl-cart-checkout:hover,
body .tl-cart-drawer-panel .tl-cart-checkout:focus-visible {
	background: var(--tl-teal);
	border-color: var(--tl-teal);
	color: #fff;
	transform: none;
}

.woocommerce ul.products li.product a.button:focus-visible,
body.single-product .tl-commerce-shell div.product .single_add_to_cart_button:focus-visible,
body .tl-cart-drawer-panel .tl-cart-checkout:focus-visible {
	outline: 2px solid var(--tl-gold);
	outline-offset: 3px;
}

/* Fast by Default: drawer presentation; Core remains the calculation source. */
.tl-cart-shipping-progress {
	background: #eff8f6;
	border-bottom: 1px solid #d9e8e5;
	min-width: 0;
	padding: 17px 24px 19px;
}

.tl-cart-shipping-copy {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.tl-cart-shipping-copy strong,
.tl-cart-shipping-copy > span {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.tl-cart-shipping-copy strong {
	color: #082536;
	font-size: 11px;
	line-height: 1.45;
}

.tl-cart-shipping-copy strong .woocommerce-Price-amount {
	color: #128d84;
}

.tl-cart-shipping-copy > span {
	color: #6e838b;
	font-size: 9px;
	line-height: 1.45;
}

.tl-cart-progress-track {
	background: #d1e5e1;
	border-radius: 999px;
	height: 7px;
	margin-top: 13px;
	overflow: hidden;
}

.tl-cart-progress-track span {
	background: linear-gradient(90deg, #15978e, #28cdbc);
	border-radius: inherit;
	display: block;
	height: 100%;
	max-width: 100%;
	transition: width 280ms ease;
}

@media (max-width: 540px) {
	.tl-cart-shipping-progress {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tl-cart-progress-track span {
		transition: none;
	}
}

/* Confirmation and account order details use native WooCommerce order data. */
body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-order-details,
body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details {
	margin: 28px auto;
	max-width: 960px;
	min-width: 0;
	width: 100%;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-order-details {
	background: var(--tl-white);
	border: 1px solid var(--tl-line);
	border-radius: 20px;
	box-shadow: 0 12px 36px rgba(8, 37, 54, 0.045);
	padding: clamp(16px, 2.5vw, 28px);
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .woocommerce-order-details__title,
body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .woocommerce-column__title {
	color: var(--tl-ink);
	font-size: clamp(21px, 2.1vw, 27px);
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1.2;
	margin: 0 0 20px;
	overflow-wrap: anywhere;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details {
	border: 0;
	border-collapse: collapse;
	border-radius: 0;
	color: var(--tl-ink);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details th,
body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details td {
	border: 0;
	border-bottom: 1px solid var(--tl-line);
	min-width: 0;
	overflow-wrap: anywhere;
	padding: 14px 0;
	vertical-align: top;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details thead th {
	color: var(--tl-muted);
	font-size: 12px;
	font-weight: 650;
	padding-top: 0;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .product-name {
	padding-right: clamp(12px, 2vw, 28px);
	text-align: left;
	width: 62%;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .product-total,
body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details tfoot td {
	text-align: right;
	width: 38%;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .woocommerce-Price-amount {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details td.product-total {
	font-weight: 650;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .product-name > a {
	color: var(--tl-ink);
	font-size: 16px;
	font-weight: 750;
	text-decoration-color: var(--tl-line);
	text-underline-offset: 4px;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .product-quantity {
	color: var(--tl-muted);
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .wc-item-meta {
	color: var(--tl-muted);
	font-size: 13px;
	line-height: 1.6;
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .wc-item-meta li {
	display: flex;
	flex-wrap: wrap;
	gap: 0 5px;
	list-style: none;
	margin: 3px 0;
	padding: 0;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .wc-item-meta li strong {
	float: none;
	font-weight: 650;
	margin: 0;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .wc-item-meta li p {
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .tl-order-item-coa {
	margin: 12px 0 2px;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .tl-order-item-coa a {
	align-items: center;
	background: var(--tl-mist);
	border: 1px solid var(--tl-line);
	border-radius: 9px;
	color: #0d716b;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.4;
	max-width: 100%;
	min-height: 36px;
	padding: 8px 12px;
	text-align: center;
	text-decoration: none;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .tl-order-item-coa a:hover {
	background: var(--tl-teal-pale);
	border-color: var(--tl-teal);
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .woocommerce-order-details a:focus-visible {
	outline: 2px solid var(--tl-gold);
	outline-offset: 3px;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details tfoot th {
	color: var(--tl-muted);
	font-weight: 500;
	padding-right: 16px;
	text-align: left;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details tfoot td {
	font-weight: 650;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details tfoot small {
	color: var(--tl-muted);
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	margin-top: 3px;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details tfoot tr:last-child > * {
	border-bottom: 0;
	padding-bottom: 0;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details .woocommerce-columns {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details .woocommerce-columns::before,
body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details .woocommerce-columns::after {
	content: none;
	display: none;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details .woocommerce-column {
	background: var(--tl-mist);
	border: 1px solid var(--tl-line);
	border-radius: 16px;
	float: none;
	min-width: 0;
	padding: clamp(16px, 2.5vw, 24px);
	width: 100%;
}

body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce .woocommerce-customer-details address {
	border: 0;
	border-radius: 0;
	color: var(--tl-muted);
	font-size: 14px;
	font-style: normal;
	line-height: 1.75;
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
	padding: 0;
}

body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview {
	display: grid;
	gap: 20px 24px;
	grid-template-columns: minmax(0, .65fr) minmax(0, 1.05fr) minmax(220px, 1.55fr) minmax(0, .65fr) minmax(0, 1.1fr);
	list-style: none;
	margin: 24px auto 32px;
	max-width: 960px;
	padding: 0;
	width: 100%;
}

body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview::before,
body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview::after {
	content: none;
	display: none;
}

body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview li {
	border-right: 0;
	color: var(--tl-muted);
	float: none;
	font-size: 11px;
	line-height: 1.5;
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
	padding: 0;
	text-align: center;
}

body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview li strong {
	color: var(--tl-ink);
	display: block;
	font-size: 14px;
	font-weight: 650;
	margin-top: 5px;
}

/* Give email its own generous column; unusually long addresses remain readable
 * on one line without widening the page or hiding part of the address. */
body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview .woocommerce-order-overview__email strong {
	max-width: 100%;
	overflow-wrap: normal;
	overflow-x: auto;
	scrollbar-width: thin;
	white-space: nowrap;
	word-break: normal;
}

@media (max-width: 1000px) {
	body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 620px;
	}

	body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview .woocommerce-order-overview__email {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-order-details,
	body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details {
		margin-top: 22px;
		margin-bottom: 22px;
	}

	body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details {
		font-size: 14px;
	}

	body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce table.woocommerce-table--order-details .product-name > a {
		font-size: 15px;
	}

	body:is(.woocommerce-order-received, .woocommerce-view-order) .woocommerce-customer-details .woocommerce-columns {
		gap: 14px;
		grid-template-columns: minmax(0, 1fr);
	}
}

/* 4.24.0: compact related products on phones; catalog and desktop keep their layouts. */
@media (max-width: 767px) {
	body.single-product .tl-commerce-shell div.product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 12px;
		padding: 0;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products > li.product:nth-child(n) {
		clear: none !important;
		float: none !important;
		margin: 0 !important;
		width: auto !important;
		min-width: 0;
		display: flex;
		flex-direction: column;
		border-radius: 16px;
		padding-bottom: 14px;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .woocommerce-LoopProduct-link {
		display: block;
		flex: 1 0 auto;
		min-width: 0;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .tl-product-card-meta {
		margin: 12px 12px 8px;
		flex-wrap: wrap;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product a img {
		width: 100%;
		height: auto;
		margin-bottom: 14px;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .woocommerce-loop-product__title,
	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .price,
	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .button {
		margin-left: 12px;
		margin-right: 12px;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .woocommerce-loop-product__title {
		font-size: 16px;
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product .price {
		display: block;
		font-size: 18px;
		line-height: 1.4;
		margin-top: 10px;
		margin-bottom: 0;
	}

	body.single-product .tl-commerce-shell div.product .related.products ul.products li.product a.button {
		font-size: 12px;
		min-height: 44px;
		padding: 10px 8px;
		border-radius: 9px;
	}
}

/* 4.25.0: one compact confirmation surface; normal research signup keeps its hero. */
body.truelot-email-flow .tl-page-shell { padding:36px 24px 56px; }
body.truelot-email-flow .tl-page-content { max-width:660px; margin:0 auto; }
@media (max-width:600px) {
	body.truelot-email-flow .tl-page-shell { padding:22px 16px 36px; }
}

/* 4.30.0: readable public documentation with all strengths present in the HTML. */
body.single-product .tl-commerce-shell div.product .tl-product-lot-links {
	grid-column: 1 / -1;
	min-width: 0;
	padding: 18px 22px;
	border: 1px solid var(--tl-line);
	border-radius: 20px;
	background: var(--tl-mist);
}
.tl-product-lot-links > summary { cursor: pointer; color: var(--tl-ink); font-size: 16px; font-weight: 700; line-height: 1.5; }
.tl-product-lot-links > summary:focus-visible { outline: 2px solid var(--tl-teal); outline-offset: 4px; border-radius: 4px; }
.tl-product-lot-links[open] > summary { margin-bottom: 16px; }
.tl-product-lot-links > p { max-width: 78ch; line-height: 1.65; color: var(--tl-muted); }
.tl-product-lot-groups { display: grid; gap: 18px; margin: 24px 0; }
.tl-product-lot-group { min-width: 0; padding: 18px; border-radius: 12px; background: var(--tl-white); }
.tl-product-lot-group h3 { margin: 0 0 12px; font-size: 18px; overflow-wrap: anywhere; }
.tl-product-lot-group ul { display: grid; gap: 16px; list-style: none; padding: 0; margin: 0; }
.tl-product-lot-group li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 20px; }
.tl-product-lot-status { color: var(--tl-muted); font-size: 13px; }
.tl-product-lot-links a { color: var(--tl-ink); text-decoration: underline; text-underline-offset: 3px; line-height: 1.6; overflow-wrap: anywhere; }
.tl-product-lot-links a:hover { color: var(--tl-teal); }
.tl-product-lot-links a:focus-visible { outline: 2px solid var(--tl-teal); outline-offset: 4px; }
.tl-standard-reading { margin: 32px 0; padding: clamp(22px, 3vw, 36px); border: 1px solid var(--tl-line); border-radius: 20px; background: var(--tl-mist); scroll-margin-top: 110px; }
.tl-standard-reading h3 { margin: 0 0 18px; font-size: clamp(24px, 3vw, 30px); }
.tl-standard-reading ul { margin: 0; padding-left: 22px; }
.tl-standard-reading li { margin: 12px 0; line-height: 1.7; }

/* Keep Contact in the primary navigation whenever the desktop shortcut hides. */
.tl-menu .tl-menu-contact { display: none; }
@media (max-width: 1280px) { .tl-menu .tl-menu-contact { display: list-item; } }
.tl-contact-email { margin: 0 0 26px; padding: 22px; border: 1px solid var(--tl-line); border-radius: 14px; background: var(--tl-mist); }
.tl-page-content .tl-contact-email a.tl-button { min-height: 44px; color: var(--tl-ink); font-size: 12px; text-decoration: none; }
.tl-contact-email p { margin: 14px 0 0; }
.tl-contact-email-address { color: var(--tl-ink); font-size: clamp(16px, 2vw, 18px); overflow-wrap: anywhere; -webkit-user-select: text; user-select: text; }

/* Product-detail hover changes only the existing one-pixel frame color. */
body.single-product .tl-commerce-shell div.product div.images {
	transform: none !important;
	scale: none !important;
	translate: none !important;
	rotate: none !important;
	transition: border-color 160ms ease !important;
}
body.single-product .tl-commerce-shell div.product div.images:hover,
body.single-product .tl-commerce-shell div.product div.images:focus-within { border-color: var(--tl-teal); }
body.single-product .tl-commerce-shell div.product div.images img,
body.single-product .tl-commerce-shell div.product div.images .woocommerce-product-gallery__image,
body.single-product .tl-commerce-shell div.product div.images .tl-product-image-static,
body.single-product .tl-commerce-shell div.product div.images.tl-product-gallery--single .woocommerce-product-gallery__wrapper {
	transform: none !important;
	scale: none !important;
	translate: none !important;
	rotate: none !important;
	transition: none !important;
}
.tl-storage-guidance { margin: 0; font-size: 14px; font-style: normal; line-height: 1.5; text-align: left; }
.tl-storage-guidance > span { display: block; margin: 0 0 5px; }
.tl-storage-guidance > span:last-child { margin-bottom: 0; }
.tl-storage-guidance strong { font-weight: 700; }
@media (max-width: 600px) {
	.tl-contact-email { padding: 18px; }
	body.single-product table.shop_attributes .woocommerce-product-attributes-item--truelot_recommended_storage th { width: 100%; font-size: 13px; }
}
