/* ==========================================================================
   Tumbla theme v2 — main.css
   Scoped under .tb-root (body). No :root, no bare *. Base resets use :where()
   so they carry ZERO specificity and can never override component classes.
   Breakpoints: 480 / 640 / 768 / 900 / 1024 / 1280 / 1440
   ========================================================================== */

@font-face { font-family: "Manrope"; src: url("../fonts/Manrope.woff2") format("woff2-variations"), url("../fonts/Manrope.woff2") format("woff2"); font-weight: 200 800; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../fonts/Fraunces.woff2") format("woff2-variations"), url("../fonts/Fraunces.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

/* ---------- Tokens ---------- */
.tb-root {
	--aqua: #20B8AC;
	--aqua-deep: #087F78;
	--aqua-ink: #0A5C57;
	--aqua-soft: #EAF8F6;
	--aqua-mid: #CDEFEA;
	--ink: #10272B;
	--ink-2: #35484D;
	--muted: #5F7176;
	--line: #E4EAE9;
	--line-strong: #C6D2D0;
	--bg: #FAF9F5;
	--surface: #FFFFFF;
	--coral: #F26B4E;
	--coral-soft: #FDECE7;
	--success: #1B7F53;
	--success-soft: #E3F5EB;
	--danger: #C93B4A;
	--danger-soft: #FBE7EA;
	--info-soft: #E9F2FA;

	--font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-display: "Fraunces", ui-serif, Georgia, serif;

	/* Fluid type scale: mobile → desktop */
	--fs-display: clamp(2.5rem, 1.55rem + 3.7vw, 4.75rem);   /* 40 → 76 */
	--fs-h1: clamp(2.25rem, 1.5rem + 2.9vw, 4rem);           /* 36 → 64 */
	--fs-h2: clamp(2rem, 1.35rem + 2.4vw, 3.5rem);           /* 32 → 56 */
	--fs-h3: clamp(1.5rem, 1.3rem + 0.7vw, 1.875rem);        /* 24 → 30 */
	--fs-h4: clamp(1.1875rem, 1.1rem + 0.3vw, 1.375rem);     /* 19 → 22 */
	--fs-body: clamp(1.0625rem, 1.02rem + 0.2vw, 1.1875rem); /* 17 → 19 */
	--fs-lead: clamp(1.1875rem, 1.1rem + 0.45vw, 1.5rem);    /* 19 → 24 */
	--fs-small: 0.9375rem;                                    /* 15 */
	--fs-label: 0.875rem;                                     /* 14 */
	--fs-nav: 1rem;
	--fs-btn: 1.0625rem;
	--fs-price: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
	--fs-stat: clamp(5rem, 3.5rem + 6vw, 9rem);

	--lh-tight: 1.02;
	--lh-snug: 1.15;
	--lh-body: 1.6;
	--measure: 60ch;

	--r-sm: 12px;
	--r: 20px;
	--r-lg: 28px;
	--r-xl: 36px;
	--r-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(16, 39, 43, .06);
	--shadow: 0 16px 40px -16px rgba(16, 39, 43, .22);
	--shadow-lg: 0 32px 70px -28px rgba(16, 39, 43, .35);

	--container: 1300px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--section: clamp(4.5rem, 3rem + 5vw, 7.5rem);   /* 72 → 120 */
	--section-sm: clamp(3rem, 2rem + 3vw, 5rem);
	--header-h: 68px;
	--ease: cubic-bezier(.2, .7, .2, 1);

	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

/* ---------- Zero-specificity reset ---------- */
:where(.tb-root, .tb-root *, .tb-root *::before, .tb-root *::after) { box-sizing: border-box; }
:where(.tb-root) :where(img, svg, picture, video) { display: block; max-width: 100%; height: auto; }
:where(.tb-root) :where(h1, h2, h3, h4, h5, h6) { margin: 0; font-weight: inherit; font-size: inherit; line-height: inherit; }
:where(.tb-root) :where(p, ul, ol, dl, dd, figure, table, blockquote, fieldset) { margin: 0; }
:where(.tb-root) :where(ul, ol) { padding: 0; list-style: none; }
:where(.tb-root) :where(a) { color: var(--aqua-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .16em; }
:where(.tb-root) :where(a:hover) { color: var(--ink); }
:where(.tb-root) :where(button, input, select, textarea) { font: inherit; color: inherit; margin: 0; }
:where(.tb-root) :where(button) { cursor: pointer; background: none; border: 0; padding: 0; }
:where(.tb-root) :where(table) { border-collapse: collapse; }
.tb-root :focus { outline: none; }
.tb-root :focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }
.tb-root .screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.tb-root .tb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.tb-site { display: flex; flex-direction: column; min-height: 100vh; }
.tb-main { flex: 1 0 auto; }
.tb-skip { position: absolute; top: -100px; left: 1rem; z-index: 100; background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: var(--r-sm); }
.tb-skip:focus { top: 1rem; color: #fff; }

/* ---------- Layout ---------- */
.tb-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.tb-narrow { max-width: 900px; }
.tb-center { text-align: center; }
.tb-section { padding-block: var(--section); }
.tb-section--sm { padding-block: var(--section-sm); }
.tb-section--soft { background: var(--aqua-soft); }
.tb-section--white { background: var(--surface); }
.tb-section--ink { background: var(--ink); color: #fff; }
.tb-section--ink .tb-h2, .tb-section--ink .tb-h3, .tb-section--ink .tb-h4 { color: #fff; }
.tb-section--ink .tb-copy p, .tb-section--ink .tb-lead { color: rgba(255, 255, 255, .8); }
.tb-section--ink .tb-kicker { color: var(--aqua); }
.tb-section--ink a { color: #fff; }

/* ---------- Typography ---------- */
.tb-display, .tb-h1, .tb-h2, .tb-h3 { font-family: var(--font-display); font-weight: 600; font-variation-settings: "SOFT" 100, "WONK" 0, "opsz" 144; letter-spacing: -.02em; text-wrap: balance; color: var(--ink); }
.tb-display { font-size: var(--fs-display); line-height: var(--lh-tight); }
.tb-h1 { font-size: var(--fs-h1); line-height: 1.05; }
.tb-h2 { font-size: var(--fs-h2); line-height: 1.08; }
.tb-h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: -.01em; }
.tb-h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h4); line-height: 1.25; letter-spacing: -.01em; color: var(--ink); }
.tb-kicker { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: var(--fs-small); color: var(--aqua-deep); margin-bottom: 1.25rem; }
.tb-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 2px; background: var(--aqua); }
.tb-lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-2); max-width: 34ch; }
.tb-lead-sm { font-size: calc(var(--fs-body) * 1.06); color: var(--ink-2); max-width: 50ch; }
.tb-copy { max-width: var(--measure); }
.tb-copy p { color: var(--ink-2); }
.tb-copy p + p { margin-top: 1.1em; }
.tb-h2 + .tb-lead, .tb-h2 + .tb-lead-sm, .tb-h2 + .tb-copy, .tb-h2 + p { margin-top: 1.25rem; }
.tb-h1 + .tb-lead-sm, .tb-h1 + p { margin-top: 1rem; }
.tb-meta { color: var(--muted); font-size: var(--fs-small); }
.tb-link { font-weight: 700; color: var(--aqua-deep); }
.tb-link:hover { color: var(--ink); }
.tb-section-head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.tb-section-head--center { justify-items: center; text-align: center; }
.tb-section-head--center .tb-lead-sm { text-align: center; }
.tb-section-head--split { align-items: end; }
@media (min-width: 900px) { .tb-section-head--split { grid-template-columns: 1.2fr .8fr; gap: 3rem; } .tb-section-head--split .tb-lead-sm { max-width: none; } }

/* Prose (page content) */
.tb-prose { max-width: 760px; }
.tb-prose > * + * { margin-top: 1.15em; }
.tb-prose h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); line-height: 1.15; margin-top: 2.2em; letter-spacing: -.01em; }
.tb-prose h3 { font-weight: 700; font-size: var(--fs-h4); margin-top: 1.8em; }
.tb-prose h2:first-child, .tb-prose h3:first-child { margin-top: 0; }
.tb-prose ul, .tb-prose ol { padding-left: 1.3em; }
.tb-prose ul { list-style: disc; }
.tb-prose ol { list-style: decimal; }
.tb-prose li + li { margin-top: .45em; }
.tb-prose p, .tb-prose li { color: var(--ink-2); }
.tb-prose strong { color: var(--ink); }
.tb-prose em { color: var(--muted); }
.tb-prose--lg p { font-size: var(--fs-lead); line-height: 1.55; }
.tb-prose hr { border: 0; border-top: 1px solid var(--line); }
.tb-prose table { width: 100%; font-size: var(--fs-small); }
.tb-prose th, .tb-prose td { text-align: left; padding: .7rem .5rem; border-bottom: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.tb-btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 54px; padding: .85rem 1.9rem; border-radius: var(--r-pill); font-weight: 700; font-size: var(--fs-btn); line-height: 1.2; text-decoration: none; border: 2px solid transparent; white-space: nowrap; transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease); }
.tb-btn--primary { background: var(--aqua); color: var(--ink); border-color: var(--aqua); box-shadow: 0 10px 24px -12px rgba(8, 127, 120, .7); }
.tb-btn--primary:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 28px -12px rgba(8, 127, 120, .8); }
.tb-btn--primary:active { transform: translateY(0); }
.tb-btn--secondary { background: var(--ink); color: #fff; border-color: var(--ink); }
.tb-btn--secondary:hover { background: #1c3a40; border-color: #1c3a40; color: #fff; transform: translateY(-1px); }
.tb-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.tb-btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }
.tb-btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.tb-btn--light:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.tb-btn--lg { min-height: 62px; padding-inline: 2.4rem; font-size: 1.125rem; }
.tb-btn--sm { min-height: 44px; padding-inline: 1.25rem; font-size: var(--fs-small); }
.tb-btn.disabled, .tb-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.tb-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.tb-actions--center { justify-content: center; }
.tb-iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--r-pill); color: var(--ink); text-decoration: none; position: relative; transition: background-color .18s var(--ease), color .18s var(--ease); }
.tb-iconbtn:hover { background: var(--aqua-soft); color: var(--aqua-ink); }
.tb-icon { width: 24px; height: 24px; flex: 0 0 auto; }

/* ---------- Announcement ---------- */
.tb-announce { background: var(--ink); color: #fff; text-align: center; font-size: var(--fs-label); font-weight: 600; padding: .6rem var(--gutter); letter-spacing: .01em; }
.tb-announce a { color: #fff; }

/* ---------- Header ---------- */
.tb-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 249, 245, .88); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.tb-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(16, 39, 43, .35); }
.tb-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.tb-logo { display: inline-flex; align-items: center; text-decoration: none; }
.tb-logo img, .tb-logo .custom-logo { height: 34px; width: auto; }
.tb-header__actions { display: flex; align-items: center; gap: .15rem; }
.tb-header__cta, .tb-header__account { display: none; }
.tb-cartbtn__count { position: absolute; top: 3px; right: 1px; min-width: 20px; height: 20px; padding-inline: 6px; border-radius: var(--r-pill); background: var(--aqua); color: var(--ink); font-size: .75rem; font-weight: 800; line-height: 20px; text-align: center; opacity: 0; transform: scale(.6); transition: opacity .18s var(--ease), transform .18s var(--ease); }
.tb-cartbtn__count.is-active { opacity: 1; transform: scale(1); }
.tb-burger__close { display: none; }
.tb-burger[aria-expanded="true"] .tb-burger__open { display: none; }
.tb-burger[aria-expanded="true"] .tb-burger__close { display: block; }
.tb-header__secure { display: inline-flex; align-items: center; gap: .45rem; color: var(--muted); font-size: var(--fs-small); font-weight: 600; }
.tb-header__secure .tb-icon { width: 18px; height: 18px; }

/* Mobile drawer */
.tb-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); background: var(--surface); box-shadow: var(--shadow-lg); padding: calc(var(--header-h) + 1.25rem) 1.5rem 2rem; transform: translateX(100%); transition: transform .3s var(--ease); z-index: 40; overflow-y: auto; display: flex; flex-direction: column; }
.tb-nav.is-open { transform: none; }
.tb-nav-backdrop { position: fixed; inset: 0; background: rgba(16, 39, 43, .45); z-index: 30; }
.tb-nav__list { display: flex; flex-direction: column; }
.tb-nav__list a { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; font-size: 1.375rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.tb-nav__list a::after { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--line-strong); border-bottom: 2px solid var(--line-strong); transform: rotate(-45deg); }
.tb-nav__list .current-menu-item > a, .tb-nav__list .current_page_item > a { color: var(--aqua-deep); }
.tb-nav__mobile-cta { margin-top: 1.5rem; display: grid; gap: .75rem; }
.tb-nav__mobile-cta .tb-btn { width: 100%; }
.tb-nav__mobile-links { margin-top: auto; padding-top: 2rem; display: grid; gap: .6rem; font-size: var(--fs-small); color: var(--muted); }
.tb-nav__mobile-links a { color: var(--ink-2); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.tb-nav__mobile-links .tb-icon { width: 20px; height: 20px; }
.tb-root.tb-nav-open { overflow: hidden; }

@media (min-width: 900px) {
	.tb-root { --header-h: 80px; }
	.tb-logo img, .tb-logo .custom-logo { height: 40px; }
	.tb-nav { position: static; width: auto; background: none; box-shadow: none; padding: 0; transform: none; overflow: visible; flex-direction: row; }
	.tb-nav__list { flex-direction: row; gap: .25rem; }
	.tb-nav__list a { padding: .6rem 1rem; font-size: var(--fs-nav); font-family: var(--font-body); font-weight: 600; border: 0; border-radius: var(--r-pill); }
	.tb-nav__list a::after { display: none; }
	.tb-nav__list a:hover { background: var(--aqua-soft); color: var(--aqua-ink); }
	.tb-nav__mobile-cta, .tb-nav__mobile-links, .tb-burger, .tb-nav-backdrop { display: none; }
	.tb-header__cta { display: inline-flex; min-height: 46px; padding-inline: 1.4rem; margin-right: .6rem; font-size: 1rem; box-shadow: none; }
	.tb-header__account { display: inline-flex; }
}

/* ---------- Hero ---------- */
.tb-hero { position: relative; overflow: hidden; padding-block: clamp(2rem, 4vw, 3rem) clamp(3rem, 5vw, 4rem); }
.tb-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.tb-hero__copy { order: 2; }
.tb-hero__visual { order: 1; }
.tb-hero__price { display: flex; align-items: baseline; gap: .6rem; margin-top: 1.5rem; font-size: var(--fs-small); color: var(--muted); font-weight: 600; }
.tb-hero__price .tb-price { font-size: var(--fs-price); }
.tb-hero__price .tb-price .price { font-size: inherit; }
.tb-trustrow { display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: var(--fs-small); font-weight: 600; color: var(--ink-2); }
.tb-trustrow li { display: inline-flex; align-items: center; gap: .5rem; }
.tb-trustrow .tb-icon { width: 22px; height: 22px; color: var(--aqua-deep); }
.tb-hero__stage { position: relative; aspect-ratio: 1 / 1.06; width: 100%; max-width: 560px; margin-inline: auto; display: grid; place-items: center; }
.tb-hero__blob { position: absolute; inset: 6% 4% 4%; border-radius: 46% 54% 44% 56% / 52% 44% 56% 48%; background: linear-gradient(160deg, var(--aqua-mid) 0%, var(--aqua) 100%); }
.tb-hero__blob::after { content: ""; position: absolute; inset: 14% 12% 10%; border-radius: 50% 50% 46% 54% / 54% 46% 54% 46%; background: rgba(255, 255, 255, .18); }
.tb-hero__img { position: absolute; top: 3%; bottom: 3%; left: 50%; transform: translateX(-50%); height: 94%; width: auto; max-width: none; filter: drop-shadow(0 40px 40px rgba(8, 127, 120, .35)); }
.tb-hero__badge { position: absolute; right: 2%; bottom: 14%; display: grid; place-items: center; width: 104px; height: 104px; border-radius: 50%; background: var(--surface); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1; box-shadow: var(--shadow); transform: rotate(-6deg); }
.tb-hero__badge small { font-family: var(--font-body); font-size: .8125rem; font-weight: 700; color: var(--muted); margin-top: .2rem; }
.tb-hero__pill { position: absolute; left: 0; top: 12%; display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); border-radius: var(--r-pill); padding: .55rem .9rem .55rem .6rem; font-size: var(--fs-label); font-weight: 700; box-shadow: var(--shadow); }
.tb-hero__pill .tb-icon { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--aqua-soft); color: var(--aqua-deep); }
@media (min-width: 900px) {
	.tb-hero { padding-block: clamp(2rem, 3vw, 3.5rem) clamp(3rem, 5vw, 5rem); }
	.tb-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 5rem); min-height: min(760px, calc(100vh - var(--header-h) - 2rem)); }
	.tb-hero__copy { order: 1; }
	.tb-hero__visual { order: 2; }
	.tb-hero__stage { max-width: none; }
	.tb-hero__badge { width: 128px; height: 128px; font-size: 1.875rem; right: 4%; }
	.tb-hero__pill { top: 16%; left: -2%; }
}

/* ---------- Benefits ---------- */
.tb-benefits__grid { display: grid; gap: 1rem; }
.tb-benefit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem 1.5rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.tb-benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--aqua-mid); }
.tb-benefit__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--aqua-soft); color: var(--aqua-deep); margin-bottom: 1.1rem; }
.tb-benefit__icon .tb-icon { width: 28px; height: 28px; }
.tb-benefit p { color: var(--ink-2); font-size: var(--fs-small); margin-top: .6rem; line-height: 1.55; }
@media (min-width: 640px) { .tb-benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .tb-benefits__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } .tb-benefit { padding: 2.25rem 2rem; } }

/* ---------- Showcase (editorial full-width) ---------- */
.tb-showcase__grid { position: relative; display: grid; gap: 1rem; }
.tb-showcase__frame { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--aqua-soft); }
.tb-showcase__frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.tb-showcase__frame--second { display: none; }
.tb-showcase__card { background: var(--surface); border-radius: var(--r-lg); padding: 1.75rem; margin: -3rem var(--gutter) 0; position: relative; box-shadow: var(--shadow); }
.tb-showcase__card p { color: var(--ink-2); margin-top: .75rem; }
.tb-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.tb-chips li { padding: .5rem 1rem; border-radius: var(--r-pill); background: var(--aqua-soft); color: var(--aqua-ink); font-size: var(--fs-small); font-weight: 700; }
@media (min-width: 900px) {
	.tb-showcase__grid { grid-template-columns: 7fr 5fr; gap: 1.5rem; align-items: start; }
	.tb-showcase__frame--second { display: block; margin-top: clamp(3rem, 8vw, 7rem); }
	.tb-showcase__card { position: absolute; left: 3%; bottom: -2rem; max-width: 460px; margin: 0; padding: 2.25rem; }
	.tb-showcase { padding-bottom: calc(var(--section) + 2rem); }
}

/* ---------- Feature rows (asymmetric split) ---------- */
.tb-feature { display: grid; gap: 2rem; align-items: center; }
.tb-feature__media { position: relative; }
.tb-media { width: 100%; height: auto; border-radius: var(--r-xl); object-fit: cover; }
.tb-feature__media img { border-radius: var(--r-xl); aspect-ratio: 4 / 3; object-fit: cover; }
.tb-feature__media--portrait img { aspect-ratio: 4 / 5; }
.tb-feature__media--square img { aspect-ratio: 1; }
.tb-callout { position: absolute; display: grid; gap: .1rem; background: var(--surface); border-radius: var(--r); padding: 1rem 1.25rem; box-shadow: var(--shadow); font-size: var(--fs-small); font-weight: 600; color: var(--ink-2); }
.tb-callout strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.tb-callout--br { right: 1rem; bottom: 1rem; }
.tb-callout--tl { left: 1rem; top: 1rem; }
@media (min-width: 900px) {
	.tb-feature { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); }
	.tb-feature__media { grid-column: span 7; }
	.tb-feature__copy { grid-column: span 5; }
	.tb-feature--flip .tb-feature__media { order: 2; }
	.tb-feature--flip .tb-feature__copy { order: 1; }
	.tb-feature--even .tb-feature__media, .tb-feature--even .tb-feature__copy { grid-column: span 6; }
	.tb-callout--br { right: -1.5rem; bottom: 2rem; }
	.tb-callout--tl { left: -1.5rem; top: 2rem; }
}

.tb-versions { display: grid; gap: .85rem; margin-top: 2rem; }
.tb-versions > div { display: grid; grid-template-columns: 5rem 1fr; align-items: center; gap: 1.25rem; padding: 1.1rem 1.25rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.tb-versions dt { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; color: var(--aqua-deep); }
.tb-versions dd { color: var(--ink-2); font-size: var(--fs-small); font-weight: 600; }
.tb-versions--ink > div { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); }
.tb-versions--ink dt { color: var(--aqua); }
.tb-versions--ink dd { color: rgba(255, 255, 255, .8); }

.tb-stat { font-family: var(--font-display); font-weight: 700; color: var(--aqua-deep); line-height: .9; margin-bottom: 1rem; display: flex; align-items: baseline; gap: .25rem; }
.tb-stat span { font-size: var(--fs-stat); letter-spacing: -.04em; }
.tb-stat small { font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); font-weight: 600; }

.tb-checks { display: grid; gap: .85rem; margin-top: 2rem; }
.tb-checks li { display: flex; align-items: center; gap: .85rem; font-weight: 600; font-size: var(--fs-body); }
.tb-checks .tb-icon { width: 32px; height: 32px; padding: 7px; border-radius: 50%; background: var(--aqua-soft); color: var(--aqua-deep); }
.tb-section--ink .tb-checks li { color: #fff; }
.tb-section--ink .tb-checks .tb-icon { background: rgba(32, 184, 172, .2); color: var(--aqua); }

/* Portability band */
.tb-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--ink); color: #fff; }
.tb-band__media { position: relative; }
.tb-band__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.tb-band__panel { padding: 2rem 1.5rem 2.25rem; background: var(--ink); }
.tb-band__panel .tb-h2 { color: #fff; }
.tb-band__panel p { color: rgba(255, 255, 255, .8); margin-top: 1rem; max-width: 48ch; }
.tb-band__panel .tb-kicker { color: var(--aqua); }
.tb-band__panel .tb-chips li { background: rgba(255, 255, 255, .1); color: #fff; }
@media (min-width: 900px) {
	.tb-band { display: grid; grid-template-columns: 1.15fr .85fr; }
	.tb-band__media { min-height: 560px; }
	.tb-band__media img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
	.tb-band__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 5vw, 4.5rem); }
}

/* Steps (a real sequence) */
.tb-steps { display: grid; gap: 1rem; }
.tb-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem 1.5rem; }
.tb-step__n { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; margin-bottom: 1.1rem; }
.tb-step p { color: var(--ink-2); font-size: var(--fs-small); margin-top: .55rem; line-height: 1.55; }
@media (min-width: 640px) { .tb-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .tb-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } .tb-step { padding: 2.25rem 2rem; } }

/* Use cases */
.tb-uses { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tb-use { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.25rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.tb-use:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tb-use__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--ink); color: var(--aqua); margin-bottom: 1rem; }
.tb-use p { color: var(--ink-2); font-size: var(--fs-small); margin-top: .5rem; line-height: 1.55; }
@media (min-width: 768px) { .tb-uses { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .tb-uses { grid-template-columns: repeat(5, minmax(0, 1fr)); } .tb-use { padding: 2rem 1.5rem; } }

/* Values (About) */
.tb-values { display: grid; gap: 1rem; }
.tb-values li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem 1.75rem; }
.tb-values p { color: var(--ink-2); font-size: var(--fs-small); margin-top: .6rem; }
@media (min-width: 640px) { .tb-values { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .tb-values { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* About hero */
.tb-about-hero { padding-block: clamp(2.5rem, 5vw, 5rem); }
.tb-about-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.tb-about-hero__media img { aspect-ratio: 1; object-fit: cover; border-radius: var(--r-xl); }
@media (min-width: 900px) { .tb-about-hero__grid { grid-template-columns: 1.1fr 1fr; gap: clamp(3rem, 6vw, 6rem); min-height: 560px; } }

/* ---------- Purchase module ---------- */
.tb-buycard { display: grid; gap: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 1.5rem; box-shadow: var(--shadow); }
.tb-buycard__media { position: relative; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--aqua-soft), #fff 80%); display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3rem); aspect-ratio: 1; }
.tb-buycard__media img { position: absolute; top: 7%; bottom: 7%; left: 50%; transform: translateX(-50%); width: auto; height: 86%; filter: drop-shadow(0 24px 30px rgba(16, 39, 43, .18)); }
.tb-buycard__body .tb-price { margin-top: 1.25rem; }
.tb-buycard__form { margin-top: 1.5rem; }
.tb-buycard .tb-link { display: inline-block; margin-top: 1.25rem; }
@media (min-width: 900px) { .tb-buycard { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding: clamp(2rem, 3vw, 3rem); } .tb-buycard__media { position: sticky; top: calc(var(--header-h) + 1.5rem); } }

/* ---------- Comparison ---------- */
.tb-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.tb-compare { width: 100%; min-width: 560px; }
.tb-compare th, .tb-compare td { padding: 1.1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; font-size: var(--fs-body); }
.tb-compare thead th { font-weight: 800; font-size: var(--fs-small); background: var(--bg); }
.tb-compare thead th:nth-child(2) { color: var(--aqua-deep); }
.tb-compare tbody th { font-weight: 700; color: var(--ink); width: 28%; }
.tb-compare td { color: var(--ink-2); }
.tb-compare tbody td:first-of-type { font-weight: 700; color: var(--ink); background: var(--aqua-soft); }
.tb-compare tr:last-child th, .tb-compare tr:last-child td { border-bottom: 0; }

/* Specs */
.tb-specs { display: grid; margin-top: 1.5rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; }
.tb-specs > div { display: grid; grid-template-columns: minmax(8rem, 36%) 1fr; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); font-size: var(--fs-small); }
.tb-specs > div:last-child { border-bottom: 0; }
.tb-specs dt { font-weight: 700; }
.tb-specs dd { color: var(--ink-2); }
.tb-specs--attrs { margin-top: .75rem; }
.tb-compare-specs { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .tb-compare-specs { grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; } .tb-compare { min-width: 0; } }

/* ---------- FAQ ---------- */
.tb-faq__grid { display: grid; gap: 2rem; }
.tb-faq__list { display: grid; gap: .85rem; }
.tb-faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s var(--ease); }
.tb-faq__item:hover { border-color: var(--line-strong); }
.tb-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; font-weight: 700; font-size: var(--fs-body); cursor: pointer; list-style: none; }
.tb-faq__item summary::-webkit-details-marker { display: none; }
.tb-faq__item summary .tb-icon { color: var(--muted); transition: transform .25s var(--ease); flex: 0 0 auto; }
.tb-faq__item[open] { border-color: var(--aqua-mid); }
.tb-faq__item[open] summary .tb-icon { transform: rotate(180deg); color: var(--aqua-deep); }
.tb-faq__item[open] summary { color: var(--aqua-ink); }
.tb-faq__a { padding: 0 1.5rem 1.5rem; color: var(--ink-2); max-width: 70ch; }
@media (min-width: 1024px) { .tb-faq__grid { grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; } .tb-faq__head { position: sticky; top: calc(var(--header-h) + 2rem); } }

/* ---------- Final CTA ---------- */
.tb-final { background: var(--aqua); color: var(--ink); padding-block: var(--section); overflow: hidden; position: relative; }
.tb-final__grid { display: grid; gap: 2.5rem; align-items: center; }
.tb-final__copy .tb-kicker { color: var(--aqua-ink); }
.tb-final__copy .tb-kicker::before { background: var(--ink); }
.tb-final__copy .tb-lead { color: rgba(16, 39, 43, .8); }
.tb-final__media { position: relative; display: grid; place-items: center; }
.tb-final__media::before { content: ""; position: absolute; width: min(70%, 380px); aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.tb-final__media img { position: relative; height: clamp(320px, 40vw, 520px); width: auto; filter: drop-shadow(0 30px 34px rgba(8, 127, 120, .5)); }
@media (min-width: 900px) { .tb-final__grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

/* ---------- Page heads, breadcrumb ---------- */
.tb-page { padding-bottom: var(--section); }
.tb-page__head { padding-block: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem); }
.tb-page__head .tb-lead-sm { margin-top: 1rem; }
.tb-crumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--fs-label); color: var(--muted); margin-bottom: 1.25rem; }
.tb-crumb a { color: var(--muted); text-decoration: none; }
.tb-crumb a:hover { color: var(--ink); }
.tb-crumb__sep { opacity: .6; }

/* ---------- Cards, notices, forms ---------- */
.tb-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem; }
.tb-card + .tb-card { margin-top: 1.25rem; }
.tb-card .tb-h4 { margin-bottom: .6rem; }
.tb-card p { color: var(--ink-2); font-size: var(--fs-small); }
.tb-card > .tb-icon { color: var(--aqua-deep); width: 32px; height: 32px; margin-bottom: 1rem; }
.tb-card .tb-link { display: inline-block; margin-top: 1rem; font-size: var(--fs-small); }
.tb-policy-cards { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .tb-policy-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.tb-notice { padding: 1rem 1.25rem; border-radius: var(--r-sm); font-weight: 600; margin-bottom: 1.5rem; border: 1px solid transparent; }
.tb-notice--success { background: var(--success-soft); color: #145f3f; border-color: #bfe6d0; }
.tb-notice--error { background: var(--danger-soft); color: #8f2433; border-color: #f2c4cb; }

.tb-form { display: grid; gap: 1.25rem; }
.tb-form__row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .tb-form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tb-field label { display: block; font-weight: 700; font-size: var(--fs-small); margin-bottom: .5rem; }
.tb-field__opt { font-weight: 500; color: var(--muted); }
.tb-root .tb-field input, .tb-root .tb-field select, .tb-root .tb-field textarea, .tb-root .tb-search input { width: 100%; min-height: 54px; padding: .8rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: 14px; background: var(--surface); color: var(--ink); font-size: var(--fs-body); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.tb-root .tb-field textarea { min-height: 170px; resize: vertical; }
.tb-root .tb-field input:focus, .tb-root .tb-field select:focus, .tb-root .tb-field textarea:focus { border-color: var(--aqua-deep); box-shadow: 0 0 0 4px var(--aqua-soft); outline: none; }
.tb-form .tb-btn { justify-self: start; }
.tb-form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); }

.tb-contact { display: grid; gap: 2rem; }
.tb-contact__form .tb-prose { margin-bottom: 1.5rem; }
.tb-contact__list { display: grid; gap: .9rem; margin-top: 1.25rem; }
.tb-contact__list li { display: flex; align-items: flex-start; gap: .7rem; font-size: var(--fs-small); }
.tb-contact__list .tb-icon { width: 22px; height: 22px; color: var(--aqua-deep); margin-top: .1rem; }
.tb-contact__links { display: grid; gap: .6rem; }
.tb-contact__links a { font-weight: 600; font-size: var(--fs-small); }
@media (min-width: 900px) { .tb-contact { grid-template-columns: 1.35fr .85fr; gap: 4rem; align-items: start; } }

.tb-empty { text-align: center; padding: 3.5rem 1rem; }
.tb-empty__icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; color: var(--aqua-deep); }
.tb-empty p { color: var(--ink-2); margin: .75rem 0 1.75rem; }
.tb-404 { padding-block: clamp(5rem, 12vw, 10rem); }

/* ---------- Footer ---------- */
.tb-footer { background: var(--ink); color: rgba(255, 255, 255, .75); margin-top: auto; padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem; font-size: var(--fs-small); }
.tb-footer a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.tb-footer a:hover { color: var(--aqua); }
.tb-footer__grid { display: grid; gap: 2.5rem; }
.tb-footer__logo { height: 44px; width: auto; margin-bottom: 1.25rem; }
.tb-footer__brand p { max-width: 36ch; font-size: var(--fs-body); line-height: 1.6; }
.tb-footer__h { font-family: var(--font-body); font-weight: 800; font-size: var(--fs-small); color: #fff; margin-bottom: 1.1rem; letter-spacing: .01em; }
.tb-footer__list { display: grid; gap: .7rem; font-size: var(--fs-body); }
.tb-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.tb-social a { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .08); transition: background-color .18s var(--ease), color .18s var(--ease); }
.tb-social a:hover { background: var(--aqua); color: var(--ink); }
.tb-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 3rem; padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }
.tb-footer__legal { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.tb-footer__copy, .tb-footer__pay, .tb-footer__note, .tb-footer__legal a { font-size: var(--fs-small); }
.tb-footer__note { color: rgba(255, 255, 255, .5); margin-left: auto; }
.tb-footer__pay--admin { color: var(--coral); }
.tb-footer--minimal { padding-block: 1.75rem; }
.tb-footer--minimal .tb-footer__bottom { border: 0; margin: 0; padding: 0; }
@media (min-width: 640px) { .tb-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tb-footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 3.5rem; } }

/* ==========================================================================
   WooCommerce
   ========================================================================== */
.tb-root .woocommerce-notices-wrapper:empty { display: none; }
.tb-root .woocommerce-message, .tb-root .woocommerce-error, .tb-root .woocommerce-info { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; padding: 1rem 1.25rem; border-radius: var(--r-sm); border: 1px solid transparent; font-weight: 600; margin: 0 0 1.5rem; list-style: none; font-size: var(--fs-small); }
.tb-root .woocommerce-message { background: var(--success-soft); color: #145f3f; border-color: #bfe6d0; }
.tb-root .woocommerce-error { background: var(--danger-soft); color: #8f2433; border-color: #f2c4cb; flex-direction: column; align-items: flex-start; gap: .3rem; }
.tb-root .woocommerce-info { background: var(--info-soft); color: #234b6f; border-color: #c9def1; }
.tb-root .woocommerce-message .button, .tb-root .woocommerce-info .button { order: 2; margin-left: auto; min-height: 40px; padding: .4rem 1rem; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-weight: 700; text-decoration: none; font-size: var(--fs-label); }
.tb-root .woocommerce-error li::before { content: "•"; margin-right: .4rem; }

/* Woo buttons → system buttons */
.tb-root .button, .tb-root button.button, .tb-root input.button, .tb-root a.button, .tb-root .woocommerce-button, .tb-root .wc-forward { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 54px; padding: .85rem 1.9rem; border-radius: var(--r-pill); font-weight: 700; font-size: var(--fs-btn); line-height: 1.2; text-decoration: none; border: 2px solid var(--ink); background: var(--ink); color: #fff; cursor: pointer; transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease); }
.tb-root .button:hover, .tb-root .woocommerce-button:hover { background: #1c3a40; border-color: #1c3a40; color: #fff; }
.tb-root .button.alt, .tb-root button.alt, .tb-root .checkout-button, .tb-root #place_order, .tb-root .single_add_to_cart_button { background: var(--aqua); border-color: var(--aqua); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(8, 127, 120, .7); }
.tb-root .button.alt:hover, .tb-root .checkout-button:hover, .tb-root #place_order:hover, .tb-root .single_add_to_cart_button:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); color: #fff; }
.tb-root .button:disabled, .tb-root .button.disabled, .tb-root .single_add_to_cart_button.disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* Price / stock / badge */
.tb-root .tb-price, .tb-root .price { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-price); color: var(--ink); line-height: 1.15; }
.tb-root .price del, .tb-root .tb-price del { color: var(--muted); font-weight: 500; font-size: .7em; margin-right: .35em; }
.tb-root .price ins, .tb-root .tb-price ins { text-decoration: none; color: var(--coral); }
.tb-root .tb-sticky__price { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.tb-root .tb-sticky__price del { display: none; }
.tb-root .tb-sticky__price ins { text-decoration: none; }
.tb-root .stock { font-weight: 700; font-size: var(--fs-small); margin: 1rem 0 0; display: inline-flex; align-items: center; gap: .45rem; }
.tb-root .stock::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.tb-root .stock.in-stock { color: var(--success); }
.tb-root .stock.out-of-stock { color: var(--danger); }
.tb-root .stock.available-on-backorder { color: #a35d00; }
.tb-badge { position: absolute; top: 1.1rem; left: 1.1rem; padding: .4rem .85rem; border-radius: var(--r-pill); background: var(--coral); color: #fff; font-size: var(--fs-label); font-weight: 800; z-index: 1; }

/* ---------- Product page ---------- */
.tb-product .tb-crumb { margin-top: 1.5rem; }
.tb-product__top { display: grid; gap: 2rem; padding-bottom: var(--section); }
.tb-gallery__main { position: relative; background: linear-gradient(180deg, var(--aqua-soft), #fff 85%); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; }
.tb-gallery__main .woocommerce-product-gallery__image { aspect-ratio: 1; display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3rem); }
.tb-gallery__img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s var(--ease); }
.tb-gallery__thumbs { display: flex; gap: .7rem; margin-top: 1rem; overflow-x: auto; padding: .25rem; scrollbar-width: thin; }
.tb-gallery__thumb { flex: 0 0 auto; width: 76px; height: 76px; border-radius: 14px; border: 2px solid var(--line); background: var(--surface); overflow: hidden; padding: 4px; transition: border-color .15s var(--ease), transform .15s var(--ease); }
.tb-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
.tb-gallery__thumb:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.tb-gallery__thumb.is-active { border-color: var(--aqua); }
@media (min-width: 900px) {
	.tb-product__top { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
	.tb-summary { position: sticky; top: calc(var(--header-h) + 1.5rem); }
	.tb-gallery__thumb { width: 88px; height: 88px; }
}
.tb-summary .product_title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -.02em; text-wrap: balance; }
.tb-product__benefit { color: var(--ink-2); font-size: var(--fs-lead); line-height: 1.45; margin-top: 1rem; max-width: 40ch; }
.tb-summary .price { margin-top: 1.25rem; }
.tb-summary .woocommerce-product-details__short-description { margin-top: 1.25rem; color: var(--ink-2); max-width: 52ch; }
.tb-summary .woocommerce-product-details__short-description p + p { margin-top: .7rem; }
.tb-rating { display: flex; align-items: center; gap: .5rem; margin-top: .75rem; font-size: var(--fs-small); color: var(--muted); }
.tb-root .star-rating { color: var(--coral); font-size: var(--fs-small); letter-spacing: .1em; }

/* Add-to-cart form */
.tb-root form.cart { margin-top: 1.75rem; }
.tb-root .variations tr { display: block; margin-bottom: 1.35rem; }
.tb-root .variations th, .tb-root .variations td { display: block; padding: 0; text-align: left; }
.tb-root .variations th label { font-weight: 700; font-size: var(--fs-small); display: block; margin-bottom: .6rem; }
.tb-root .variations .tb-reset { display: inline-block; margin-top: .5rem; font-size: var(--fs-label); font-weight: 600; color: var(--muted); }
.tb-root .tb-var-select { width: 100%; min-height: 52px; padding: .6rem 1rem; border: 1.5px solid var(--line-strong); border-radius: 14px; background: var(--surface); }
.tb-root .tb-var-select--hidden { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.tb-swatches { display: flex; flex-wrap: wrap; gap: .6rem; }
.tb-swatch { min-height: 50px; padding: .6rem 1.25rem; border-radius: var(--r-pill); border: 2px solid var(--line-strong); background: var(--surface); font-weight: 700; font-size: var(--fs-small); color: var(--ink); transition: border-color .15s var(--ease), background-color .15s var(--ease), color .15s var(--ease), transform .15s var(--ease); }
.tb-swatch:hover { border-color: var(--ink); transform: translateY(-1px); }
.tb-swatch.is-selected { border-color: var(--aqua-deep); background: var(--ink); color: #fff; }
.tb-swatch.is-unavailable { opacity: .4; text-decoration: line-through; }
.tb-swatch:focus-visible { outline-offset: 2px; }
.tb-root .woocommerce-variation-description p { color: var(--ink-2); font-size: var(--fs-small); }
.tb-root .woocommerce-variation-price { margin: .75rem 0 .5rem; }
.tb-root .woocommerce-variation-availability .stock { margin: 0 0 1rem; }
.tb-root .woocommerce-variation-add-to-cart { display: flex; flex-wrap: wrap; gap: .85rem; align-items: stretch; margin-top: .5rem; }
.tb-root .quantity { display: inline-flex; align-items: stretch; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); overflow: hidden; background: var(--surface); height: 56px; }
.tb-root .quantity .qty { width: 3.5rem; text-align: center; border: 0; background: transparent; font-weight: 700; font-size: var(--fs-body); -moz-appearance: textfield; appearance: textfield; padding: 0; }
.tb-root .quantity .qty::-webkit-outer-spin-button, .tb-root .quantity .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tb-root .tb-qty__btn { width: 48px; display: grid; place-items: center; font-size: 1.375rem; font-weight: 600; color: var(--ink-2); transition: background-color .15s var(--ease); }
.tb-root .tb-qty__btn:hover { background: var(--aqua-soft); color: var(--ink); }
.tb-root .single_add_to_cart_button { flex: 1 1 13rem; min-height: 56px; }
.tb-root .tb-buy-now { flex: 1 1 100%; min-height: 56px; }
.tb-root .tb-trust { display: grid; gap: .75rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--ink-2); }
.tb-root .tb-trust li { display: flex; align-items: flex-start; gap: .7rem; }
.tb-root .tb-trust .tb-icon { width: 22px; height: 22px; color: var(--aqua-deep); margin-top: .1rem; }
@media (min-width: 480px) { .tb-root .tb-buy-now { flex: 1 1 12rem; } }

/* Sticky mobile purchase bar */
.tb-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem var(--gutter); padding-bottom: max(.8rem, env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97); backdrop-filter: blur(8px); border-top: 1px solid var(--line); box-shadow: 0 -12px 30px -14px rgba(16, 39, 43, .25); }
.tb-sticky[hidden] { display: none; }
.tb-sticky__info { display: grid; min-width: 0; }
.tb-sticky__info strong { font-size: var(--fs-small); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tb-sticky .tb-btn { min-height: 48px; padding-inline: 1.25rem; flex: 0 0 auto; box-shadow: none; }
.tb-root.tb-has-sticky { padding-bottom: 84px; }
@media (min-width: 900px) { .tb-sticky { display: none; } .tb-root.tb-has-sticky { padding-bottom: 0; } }

/* ---------- Shop / loop ---------- */
.tb-products { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.tb-card-product { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.tb-card-product:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tb-card-product__media { position: relative; display: block; background: linear-gradient(180deg, var(--aqua-soft), #fff 85%); }
.tb-card-product__media img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 2rem; transition: transform .35s var(--ease); }
.tb-card-product:hover .tb-card-product__media img { transform: scale(1.03); }
.tb-card-product__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.tb-card-product__body h2 a { color: var(--ink); text-decoration: none; }
.tb-card-product__body .tb-actions { margin-top: auto; padding-top: 1rem; }
.tb-card-product__desc { color: var(--ink-2); }
.tb-card-product--featured { grid-column: 1 / -1; }
@media (min-width: 900px) {
	.tb-card-product--featured { display: grid; grid-template-columns: 1fr 1fr; }
	.tb-card-product--featured .tb-card-product__body { padding: clamp(2.5rem, 4vw, 4rem); justify-content: center; gap: .9rem; }
	.tb-card-product--featured .tb-card-product__body h2 { font-size: var(--fs-h2); }
	.tb-card-product--featured .tb-card-product__media img { padding: 3rem; }
}
.tb-shop__why { margin-top: var(--section); }
.tb-root .woocommerce-pagination { margin-top: 2.5rem; }
.tb-root .woocommerce-pagination ul { display: flex; gap: .4rem; justify-content: center; }
.tb-root .woocommerce-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 46px; height: 46px; border-radius: var(--r-pill); border: 1px solid var(--line); text-decoration: none; }
.tb-root .woocommerce-pagination .current { background: var(--ink); color: #fff; }

/* ---------- Cart ---------- */
.tb-root .shop_table { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.tb-root .shop_table th, .tb-root .shop_table td { padding: 1.1rem 1.25rem; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); font-size: var(--fs-small); }
.tb-root .shop_table thead th { font-weight: 800; background: var(--bg); }
.tb-root .shop_table tbody tr:last-child td { border-bottom: 0; }
.tb-root .shop_table .product-thumbnail img { width: 84px; height: 84px; object-fit: contain; border-radius: 12px; background: var(--aqua-soft); padding: .35rem; }
.tb-root .shop_table .product-name a { color: var(--ink); font-weight: 700; text-decoration: none; font-size: var(--fs-body); }
.tb-root .shop_table .variation { display: grid; grid-template-columns: auto 1fr; gap: .1rem .4rem; margin-top: .35rem; font-size: var(--fs-label); color: var(--muted); }
.tb-root .shop_table .product-remove a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); text-decoration: none; font-size: 1.3rem; line-height: 1; transition: border-color .15s, color .15s; }
.tb-root .shop_table .product-remove a:hover { border-color: var(--danger); color: var(--danger); }
.tb-root .shop_table .product-price, .tb-root .shop_table .product-subtotal { font-weight: 700; white-space: nowrap; font-size: var(--fs-body); }
.tb-root .cart_item .quantity { height: 48px; }
.tb-root .cart_item .quantity .qty { width: 2.75rem; }
.tb-root .cart_item .tb-qty__btn { width: 40px; }
.tb-root td.actions { background: var(--bg); }
.tb-root td.actions .coupon { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.tb-root td.actions .coupon label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.tb-root td.actions .coupon .input-text { min-height: 48px; padding: .5rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); background: var(--surface); flex: 1 1 12rem; font-size: var(--fs-small); }
.tb-root td.actions .coupon .button { min-height: 48px; background: transparent; color: var(--ink); border-color: var(--line-strong); }
.tb-root td.actions .coupon .button:hover { border-color: var(--ink); }
.tb-root td.actions > .button { display: none; }
.tb-root .cart_totals { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; }
.tb-root .cart_totals h2 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; margin-bottom: 1rem; }
.tb-root .cart_totals .shop_table { border: 0; border-radius: 0; }
.tb-root .cart_totals .shop_table th, .tb-root .cart_totals .shop_table td { padding: .85rem 0; }
.tb-root .cart_totals .shop_table th { width: 40%; font-weight: 600; color: var(--ink-2); }
.tb-root .cart_totals .order-total th, .tb-root .cart_totals .order-total td { font-weight: 800; font-size: var(--fs-body); border-bottom: 0; }
.tb-root .cart_totals .order-total .amount { font-family: var(--font-display); font-size: 1.625rem; }
.tb-root .wc-proceed-to-checkout { margin-top: 1.25rem; }
.tb-root .wc-proceed-to-checkout .checkout-button { width: 100%; min-height: 60px; font-size: 1.125rem; }
.tb-root .woocommerce-shipping-destination { color: var(--muted); font-size: var(--fs-label); }
.tb-root .woocommerce-shipping-methods { display: grid; gap: .45rem; }
.tb-root .woocommerce-shipping-methods li { display: flex; align-items: center; gap: .5rem; }
.tb-cart-assurance { display: grid; gap: .7rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: var(--fs-label); color: var(--ink-2); }
.tb-cart-assurance p { display: flex; gap: .6rem; align-items: flex-start; }
.tb-cart-assurance .tb-icon { width: 18px; height: 18px; color: var(--aqua-deep); flex: 0 0 auto; margin-top: .15rem; }
.tb-root .return-to-shop { margin-top: 1rem; text-align: center; }
@media (max-width: 767px) {
	.tb-root .woocommerce-cart-form .shop_table thead { display: none; }
	.tb-root .woocommerce-cart-form .shop_table, .tb-root .woocommerce-cart-form .shop_table tbody, .tb-root .woocommerce-cart-form .shop_table tr, .tb-root .woocommerce-cart-form .shop_table td { display: block; width: 100%; }
	.tb-root .woocommerce-cart-form .cart_item { position: relative; display: grid; grid-template-columns: 92px 1fr; grid-template-areas: "thumb name" "thumb price" "thumb qty" "thumb subtotal"; gap: .3rem 1rem; padding: 1.1rem; border-bottom: 1px solid var(--line); }
	.tb-root .woocommerce-cart-form .cart_item td { padding: 0; border: 0; }
	.tb-root .woocommerce-cart-form .cart_item .product-thumbnail { grid-area: thumb; }
	.tb-root .woocommerce-cart-form .cart_item .product-thumbnail img { width: 92px; height: 92px; }
	.tb-root .woocommerce-cart-form .cart_item .product-name { grid-area: name; padding-right: 2.75rem; }
	.tb-root .woocommerce-cart-form .cart_item .product-price { grid-area: price; color: var(--muted); font-weight: 600; font-size: var(--fs-small); }
	.tb-root .woocommerce-cart-form .cart_item .product-quantity { grid-area: qty; margin-top: .5rem; }
	.tb-root .woocommerce-cart-form .cart_item .product-subtotal { grid-area: subtotal; margin-top: .5rem; }
	.tb-root .woocommerce-cart-form .cart_item .product-subtotal::before { content: attr(data-title) ": "; font-weight: 500; color: var(--muted); }
	.tb-root .woocommerce-cart-form .cart_item .product-remove { position: absolute; top: .9rem; right: .9rem; width: auto; }
	.tb-root .woocommerce-cart-form td.actions { padding: 1.1rem; }
}
@media (min-width: 900px) {
	.tb-wc .woocommerce { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 2.5rem; align-items: start; }
	.tb-wc .woocommerce > .woocommerce-notices-wrapper, .tb-wc .woocommerce > .cart-empty, .tb-wc .woocommerce > .return-to-shop, .tb-wc .woocommerce > .tb-empty, .tb-wc .woocommerce > form.checkout, .tb-wc .woocommerce > .woocommerce-form-coupon-toggle, .tb-wc .woocommerce > .checkout_coupon, .tb-wc .woocommerce > .woocommerce-form-login, .tb-wc .woocommerce > .woocommerce-order, .tb-wc .woocommerce > .u-columns { grid-column: 1 / -1; }
	.tb-root .cart_totals { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

/* ---------- Checkout ---------- */
.tb-root .woocommerce-form-coupon-toggle .woocommerce-info { background: var(--surface); border-color: var(--line); color: var(--ink-2); }
.tb-root .checkout_coupon { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem; }
.tb-root .checkout_coupon p { flex: 1 1 100%; color: var(--ink-2); font-size: var(--fs-small); }
.tb-root .checkout_coupon .form-row { flex: 1 1 12rem; margin: 0; }
.tb-root .checkout_coupon .form-row .input-text { width: 100%; }
.tb-root form.checkout { display: grid; gap: 2rem; }
.tb-root #customer_details { display: grid; gap: 1.5rem; }
.tb-root .woocommerce-billing-fields h3, .tb-root .woocommerce-shipping-fields h3, .tb-root .woocommerce-additional-fields h3, .tb-root #order_review_heading { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); margin-bottom: 1.25rem; letter-spacing: -.01em; }
.tb-root .woocommerce-shipping-fields h3 label { font-family: var(--font-body); font-size: var(--fs-body); font-weight: 700; display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; }
.tb-root .form-row { display: block; margin: 0 0 1.1rem; }
.tb-root .form-row label { display: block; font-weight: 700; font-size: var(--fs-small); margin-bottom: .45rem; }
.tb-root .form-row .required { color: var(--danger); text-decoration: none; }
.tb-root .form-row .optional { color: var(--muted); font-weight: 500; }
.tb-root .form-row .input-text, .tb-root .form-row select, .tb-root .form-row textarea, .tb-root .select2-container .select2-selection--single { width: 100%; min-height: 54px; padding: .8rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: 14px; background: var(--surface); color: var(--ink); font-size: var(--fs-body); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.tb-root .form-row textarea { min-height: 120px; resize: vertical; }
.tb-root .form-row .input-text:focus, .tb-root .form-row select:focus, .tb-root .form-row textarea:focus { border-color: var(--aqua-deep); box-shadow: 0 0 0 4px var(--aqua-soft); outline: none; }
.tb-root .form-row.woocommerce-invalid .input-text, .tb-root .form-row.woocommerce-invalid select { border-color: var(--danger); }
.tb-root .form-row.woocommerce-validated .input-text { border-color: var(--success); }
.tb-root .form-row .checkbox { display: inline-flex; align-items: center; gap: .6rem; font-weight: 500; cursor: pointer; }
.tb-root .form-row input[type="checkbox"], .tb-root .form-row input[type="radio"], .tb-root .wc_payment_method input[type="radio"] { width: 20px; height: 20px; accent-color: var(--aqua-deep); }
.tb-root .select2-container .select2-selection--single { display: flex; align-items: center; }
.tb-root .select2-container .select2-selection--single .select2-selection__rendered { padding: 0; line-height: 1.4; color: var(--ink); }
.tb-root .select2-container .select2-selection--single .select2-selection__arrow { height: 100%; right: 10px; }
.tb-root .select2-container--open .select2-dropdown { border-color: var(--line-strong); border-radius: 14px; overflow: hidden; }
.tb-root .select2-results__option--highlighted { background: var(--aqua-soft) !important; color: var(--ink) !important; }
.tb-root #order_review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.tb-root #order_review .shop_table { border: 0; border-radius: 0; }
.tb-root #order_review .shop_table th, .tb-root #order_review .shop_table td { padding: .8rem 0; }
.tb-root #order_review .shop_table thead th { background: none; font-weight: 700; color: var(--muted); font-size: var(--fs-label); }
.tb-root #order_review .shop_table .product-name { font-weight: 600; }
.tb-root #order_review .shop_table .product-quantity { color: var(--muted); font-weight: 500; }
.tb-root #order_review .shop_table tfoot th { font-weight: 600; color: var(--ink-2); }
.tb-root #order_review .shop_table tfoot tr:last-child th, .tb-root #order_review .shop_table tfoot tr:last-child td { border-bottom: 0; }
.tb-root #order_review .order-total th, .tb-root #order_review .order-total td { font-weight: 800; }
.tb-root #order_review .order-total .amount { font-family: var(--font-display); font-size: 1.625rem; }
.tb-root #payment { margin-top: 1.25rem; }
.tb-root .wc_payment_methods { display: grid; gap: .6rem; }
.tb-root .wc_payment_method { border: 1.5px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; transition: border-color .15s var(--ease); }
.tb-root .wc_payment_method:has(input:checked) { border-color: var(--aqua-deep); background: var(--aqua-soft); }
.tb-root .wc_payment_method > label { display: flex; align-items: center; gap: .7rem; font-weight: 700; cursor: pointer; }
.tb-root .wc_payment_method .payment_box { margin-top: .8rem; padding: 1rem; background: var(--surface); border-radius: 10px; font-size: var(--fs-small); color: var(--ink-2); }
.tb-root .woocommerce-privacy-policy-text { font-size: var(--fs-label); color: var(--muted); margin: 1.1rem 0; }
.tb-root .woocommerce-terms-and-conditions-wrapper { font-size: var(--fs-small); }
.tb-root #place_order { width: 100%; min-height: 60px; font-size: 1.125rem; margin-top: .6rem; }
.tb-checkout-secure { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.1rem; font-size: var(--fs-label); color: var(--muted); }
.tb-checkout-secure .tb-icon { width: 16px; height: 16px; }
.tb-root .blockUI.blockOverlay { border-radius: var(--r-lg); }
@media (min-width: 640px) {
	.tb-root .form-row-first, .tb-root .form-row-last { width: calc(50% - .55rem); display: inline-block; vertical-align: top; }
	.tb-root .form-row-first { margin-right: 1.1rem; }
}
@media (min-width: 1024px) {
	.tb-root form.checkout { grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr); align-items: start; column-gap: clamp(2rem, 4vw, 4rem); }
	.tb-root form.checkout > .woocommerce-NoticeGroup { grid-column: 1 / -1; }
	.tb-root form.checkout > .col2-set { grid-column: 1; grid-row: 1 / span 2; }
	.tb-root #order_review_heading { grid-column: 2; grid-row: 1; margin-bottom: 0; align-self: end; }
	.tb-root #order_review { grid-column: 2; grid-row: 2; position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

/* ---------- Thank you ---------- */
.tb-root .woocommerce-order { display: grid; gap: 1.5rem; }
.tb-root .woocommerce-thankyou-order-received { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); color: var(--aqua-ink); background: var(--success-soft); border: 1px solid #bfe6d0; padding: 1.5rem 1.75rem; border-radius: var(--r); line-height: 1.3; }
.tb-root .woocommerce-thankyou-order-details { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; }
.tb-root .woocommerce-thankyou-order-details li { font-size: var(--fs-label); color: var(--muted); font-weight: 600; }
.tb-root .woocommerce-thankyou-order-details strong { display: block; color: var(--ink); font-size: var(--fs-body); font-weight: 700; margin-top: .25rem; }
.tb-root .woocommerce-order-details__title, .tb-root .woocommerce-column__title, .tb-root .woocommerce-customer-details h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); margin-bottom: 1rem; }
.tb-root .woocommerce-order-details, .tb-root .woocommerce-customer-details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem; }
.tb-root .woocommerce-customer-details address { font-style: normal; color: var(--ink-2); line-height: 1.7; }
.tb-root .woocommerce-customer-details .woocommerce-columns { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .tb-root .woocommerce-customer-details .woocommerce-columns { grid-template-columns: 1fr 1fr; } }
.tb-root .order_details, .tb-root .woocommerce-table--order-details { border: 0; border-radius: 0; }
.tb-root .order_details th, .tb-root .order_details td { padding: .8rem 0; }
.tb-root .order_details tfoot th { font-weight: 600; color: var(--ink-2); }
.tb-root .order_details tfoot tr:last-child th, .tb-root .order_details tfoot tr:last-child td { border-bottom: 0; font-weight: 800; }

/* ---------- My account ---------- */
.tb-root .woocommerce-MyAccount-navigation ul { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .35rem; }
.tb-root .woocommerce-MyAccount-navigation a { display: inline-block; white-space: nowrap; padding: .65rem 1.2rem; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--surface); text-decoration: none; color: var(--ink); font-weight: 600; font-size: var(--fs-small); transition: background-color .15s, color .15s; }
.tb-root .woocommerce-MyAccount-navigation a:hover { background: var(--aqua-soft); color: var(--aqua-ink); }
.tb-root .woocommerce-MyAccount-navigation .is-active a { background: var(--ink); color: #fff; border-color: var(--ink); }
.tb-root .woocommerce-MyAccount-content { margin-top: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); }
.tb-root .woocommerce-MyAccount-content p { color: var(--ink-2); }
.tb-root .woocommerce-MyAccount-content p + p { margin-top: .8rem; }
.tb-root .woocommerce-MyAccount-content h2, .tb-root .woocommerce-MyAccount-content h3, .tb-root .woocommerce-MyAccount-content legend { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); margin: 1.5rem 0 .85rem; }
.tb-root .woocommerce-MyAccount-content h2:first-child { margin-top: 0; }
.tb-root .woocommerce-MyAccount-content fieldset { border: 0; padding: 0; }
.tb-root .woocommerce-orders-table .button, .tb-root .woocommerce-MyAccount-content .button { min-height: 42px; padding: .45rem 1.1rem; font-size: var(--fs-small); }
.tb-root .woocommerce-Addresses { display: grid; gap: 1.25rem; }
.tb-root .woocommerce-Address { border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; }
.tb-root .woocommerce-Address address { font-style: normal; color: var(--ink-2); line-height: 1.7; }
.tb-root .woocommerce-Address-title { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.tb-root .woocommerce-Address-title h2 { margin: 0; font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 700; }
.tb-root .woocommerce-Address-title .edit { font-size: var(--fs-small); font-weight: 700; }
@media (min-width: 640px) { .tb-root .woocommerce-Addresses { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
	.tb-wc .woocommerce:has(.woocommerce-MyAccount-navigation) { grid-template-columns: 260px minmax(0, 1fr); }
	.tb-wc .woocommerce:has(.woocommerce-MyAccount-navigation) > * { grid-column: auto; }
	.tb-wc .woocommerce:has(.woocommerce-MyAccount-navigation) > .woocommerce-notices-wrapper { grid-column: 1 / -1; }
	.tb-root .woocommerce-MyAccount-navigation ul { flex-direction: column; overflow: visible; }
	.tb-root .woocommerce-MyAccount-navigation a { display: block; }
	.tb-root .woocommerce-MyAccount-content { margin-top: 0; }
}
.tb-root .woocommerce-form-login, .tb-root .woocommerce-form-register, .tb-root .woocommerce-ResetPassword { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); max-width: 560px; }
.tb-root .u-columns { display: grid; gap: 1.5rem; }
.tb-root .u-columns h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); margin-bottom: 1.25rem; }
@media (min-width: 900px) { .tb-root .u-columns { grid-template-columns: 1fr 1fr; } .tb-root .u-columns .woocommerce-form { max-width: none; } }
.tb-root .woocommerce-form-login__rememberme { margin-right: 1rem; }
.tb-root .woocommerce-form-login .button, .tb-root .woocommerce-form-register .button { width: 100%; margin-top: .6rem; }
.tb-root .woocommerce-LostPassword { margin-top: 1.1rem; font-size: var(--fs-small); }
.tb-root .show-password-input { display: none; }
.tb-root .woocommerce-password-strength { font-size: var(--fs-label); font-weight: 700; padding: .45rem 0; }
.tb-root .woocommerce-password-hint { font-size: var(--fs-label); color: var(--muted); }
.tb-root .password-input { position: relative; display: block; }
.tb-root .woocommerce-orders-table { display: block; overflow-x: auto; }
.tb-root .woocommerce-orders-table__cell-order-actions .button + .button { margin-left: .4rem; }
.tb-root .woocommerce-orders-table__cell-order-number a { font-weight: 700; }
.tb-root .woocommerce-Pagination { display: flex; gap: .5rem; margin-top: 1.25rem; }
.tb-root .woocommerce-Pagination .button { background: transparent; color: var(--ink); border-color: var(--line-strong); }

/* ---------- Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
	.tb-root *, .tb-root *::before, .tb-root *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.tb-benefit:hover, .tb-use:hover, .tb-card-product:hover, .tb-btn--primary:hover, .tb-btn--secondary:hover, .tb-swatch:hover { transform: none; }
}
@media (hover: none) { .tb-btn:hover, .tb-benefit:hover, .tb-use:hover, .tb-card-product:hover { transform: none; } }
@media print { .tb-header, .tb-footer, .tb-announce, .tb-sticky, .tb-final { display: none !important; } .tb-root { background: #fff; } }

/* ---------- v2 addenda ---------- */
.tb-h2.tb-center { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.tb-benefits__grid--flat .tb-benefit { background: var(--surface); }

/* ==========================================================================
   v2.1 — conversion + imagery refinements
   ========================================================================== */
/* Buttons */
.tb-btn--xl { min-height: 66px; padding-inline: 2.6rem; font-size: 1.1875rem; }
.tb-btn--text { min-height: 0; padding: .5rem .25rem; background: none; border-color: transparent; color: var(--ink); font-weight: 700; box-shadow: none; }
.tb-btn--text .tb-icon { width: 20px; height: 20px; transition: transform .18s var(--ease); }
.tb-btn--text:hover { color: var(--aqua-deep); }
.tb-btn--text:hover .tb-icon { transform: translateX(3px); }
.tb-btn .tb-icon { width: 20px; height: 20px; }
.tb-ctarow { margin-top: clamp(2rem, 3vw, 2.75rem); display: flex; justify-content: center; }
.tb-actions--hero { align-items: center; gap: .5rem 1.5rem; }
.tb-hero__assure { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: var(--fs-label); font-weight: 600; color: var(--muted); }
.tb-hero__assure .tb-icon { width: 18px; height: 18px; color: var(--aqua-deep); }
.tb-hero__price { margin-top: 1.75rem; }
.tb-hero__price .tb-price { font-size: clamp(2rem, 1.6rem + 1.4vw, 3rem); }
.tb-trustrow { margin-top: 1.5rem; }

/* Showcase: one dominant image, copy with room, one small support */
.tb-showcase__grid { display: grid; gap: 2rem; }
.tb-showcase__main img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-xl); }
.tb-showcase__side { display: grid; gap: 1.5rem; }
.tb-showcase__copy .tb-lead-sm { margin-top: 1.25rem; }
.tb-showcase__support { position: relative; border-radius: var(--r-lg); overflow: hidden; max-width: 420px; }
.tb-showcase__support img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: 60% 40%; }
.tb-showcase__tag { position: absolute; left: 1rem; bottom: 1rem; background: var(--surface); color: var(--ink); border-radius: var(--r-pill); padding: .5rem .9rem; font-size: var(--fs-label); font-weight: 700; box-shadow: var(--shadow); }
@media (min-width: 640px) { .tb-showcase__side { grid-template-columns: 1fr 1fr; align-items: end; } }
@media (min-width: 900px) {
	.tb-showcase__grid { grid-template-columns: 7fr 5fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
	.tb-showcase__side { grid-template-columns: 1fr; align-content: space-between; }
	.tb-showcase__support { max-width: 340px; }
}
.tb-showcase { padding-bottom: var(--section); }

/* Version chooser */
.tb-choose { display: grid; gap: 1rem; margin-top: 2rem; }
.tb-choose__card { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "v name" "v for" "v cta"; column-gap: 1.25rem; row-gap: .15rem; align-items: start; padding: 1.25rem 1.4rem; border: 2px solid var(--line); border-radius: var(--r); background: var(--surface); text-decoration: none; color: var(--ink); transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease); }
.tb-choose__card:hover { border-color: var(--aqua-deep); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.tb-choose__card strong { grid-area: v; font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--aqua-deep); padding-top: .1rem; }
.tb-choose__name { grid-area: name; font-weight: 800; font-size: var(--fs-h4); }
.tb-choose__for { grid-area: for; color: var(--ink-2); font-size: var(--fs-small); }
.tb-choose__cta { grid-area: cta; display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem; font-weight: 700; font-size: var(--fs-small); color: var(--aqua-deep); }
.tb-choose__cta .tb-icon { width: 18px; height: 18px; }
.tb-choose__card--hi { border-color: var(--aqua-mid); background: var(--aqua-soft); }
.tb-callout--corner { top: 0; right: 0; border-radius: 0 var(--r-xl) 0 var(--r); padding: 1.25rem 1.5rem 1.1rem 1.4rem; }

/* Band + ink sections: readable, CTA */
.tb-band__panel .tb-actions .tb-btn--primary { box-shadow: none; }
.tb-section--ink .tb-actions .tb-btn--primary { box-shadow: none; }

/* Compact steps / uses */
.tb-steps--compact .tb-step { padding: 1.25rem 1.25rem; display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: start; }
.tb-steps--compact .tb-step__n { width: 40px; height: 40px; font-size: 1.125rem; margin: 0; grid-row: 1 / span 2; }
.tb-steps--compact .tb-step p { margin-top: .25rem; }
@media (min-width: 1024px) { .tb-steps--compact .tb-step { padding: 1.5rem; } }
.tb-uses--compact .tb-use { padding: 1.25rem; }
.tb-uses--compact .tb-use__icon { width: 44px; height: 44px; margin-bottom: .75rem; }
.tb-uses--compact .tb-use p { font-size: var(--fs-label); }

/* Purchase module — the climax */
.tb-buy { background: linear-gradient(180deg, var(--aqua-soft) 0%, var(--bg) 100%); }
.tb-buycard { padding: clamp(1.25rem, 3vw, 2.5rem); box-shadow: var(--shadow-lg); gap: 2rem; }
.tb-buycard__media { align-self: start; width: 100%; aspect-ratio: auto; padding: 0; background: none; display: grid; gap: 1rem; }
.tb-buycard__stage { position: relative; width: 100%; aspect-ratio: 1; border-radius: var(--r-lg); background: radial-gradient(90% 80% at 50% 62%, var(--aqua-mid) 0%, var(--aqua-soft) 55%, #fff 100%); overflow: hidden; }
.tb-buycard__stage img { position: absolute; top: 5%; bottom: 5%; left: 50%; transform: translateX(-50%); height: 90%; width: auto; max-width: none; filter: drop-shadow(0 30px 34px rgba(8, 127, 120, .3)); }
.tb-buycard__facts { display: flex; flex-wrap: wrap; gap: .5rem; }
.tb-buycard__facts li { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .9rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-size: var(--fs-label); font-weight: 700; }
.tb-buycard__facts .tb-icon { width: 18px; height: 18px; color: var(--aqua-deep); }
.tb-buycard__name { font-size: var(--fs-h2); }
.tb-buycard__body .tb-price { margin-top: 1rem; font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem); }
.tb-buycard .variations tr { margin-bottom: 1.5rem; }
.tb-buycard .tb-swatch { min-height: 54px; padding-inline: 1.5rem; font-size: var(--fs-body); }
.tb-buycard .woocommerce-variation-add-to-cart { flex-direction: column; align-items: stretch; gap: 1rem; }
.tb-buycard .quantity { align-self: flex-start; }
.tb-buycard .single_add_to_cart_button { flex: 1 1 auto; width: 100%; min-height: 66px; font-size: 1.1875rem; box-shadow: 0 16px 30px -12px rgba(8, 127, 120, .8); }
.tb-buycard .tb-buy-now { flex: 1 1 auto; width: 100%; min-height: 60px; }
.tb-buycard .tb-trust { font-size: var(--fs-small); }
@media (min-width: 900px) {
	.tb-buycard { grid-template-columns: 58fr 42fr; gap: clamp(2rem, 4vw, 3.5rem); }
	.tb-buycard__media { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

/* Final CTA */
.tb-final__price { margin-top: 1.25rem; color: rgba(16, 39, 43, .7); }
.tb-final__price .tb-price { color: var(--ink); }
.tb-final__copy .tb-btn--text { color: var(--ink); }
.tb-trustrow--final { border-top-color: rgba(16, 39, 43, .18); color: rgba(16, 39, 43, .85); }
.tb-trustrow--final .tb-icon { color: var(--ink); }

/* Product page purchase controls */
.tb-summary .single_add_to_cart_button { min-height: 62px; font-size: 1.125rem; }
.tb-summary .tb-swatch { min-height: 52px; }
.tb-root .wc-proceed-to-checkout .checkout-button { box-shadow: 0 16px 30px -12px rgba(8, 127, 120, .8); }

/* ==========================================================================
   v2.2 — purchase journey (product, cart, checkout, account, shop)
   ========================================================================== */
/* Product page */
.tb-product__top { padding-top: .5rem; }
.tb-gallery__facts { margin-top: 1rem; }
.tb-summary .tb-product__benefit { font-size: var(--fs-lead); }
.tb-summary .price { font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem); }
.tb-summary .variations tr { margin-bottom: 1.5rem; }
.tb-summary .woocommerce-variation-add-to-cart { flex-direction: column; align-items: stretch; gap: 1rem; }
.tb-summary .quantity { align-self: flex-start; }
.tb-summary .single_add_to_cart_button { width: 100%; min-height: 66px; font-size: 1.1875rem; box-shadow: 0 16px 30px -12px rgba(8, 127, 120, .8); }
.tb-summary .tb-buy-now { width: 100%; min-height: 60px; }
.tb-summary .tb-trust { font-size: var(--fs-small); }
.tb-choose__card { width: 100%; text-align: left; cursor: pointer; font: inherit; }
.tb-specs--lg > div { font-size: var(--fs-body); padding: 1.1rem 1.4rem; }
@media (min-width: 900px) { .tb-product__top { grid-template-columns: minmax(0, 56fr) minmax(0, 44fr); } }

/* Journey progress (cart → checkout → confirmation) */
.tb-journey { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.75rem; font-size: var(--fs-small); font-weight: 700; color: var(--muted); flex-wrap: wrap; }
.tb-journey li { display: inline-flex; align-items: center; gap: .5rem; }
.tb-journey li + li::before { content: ""; width: 28px; height: 2px; background: var(--line-strong); margin-right: .5rem; border-radius: 2px; }
.tb-journey__n { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line-strong); font-size: .8125rem; }
.tb-journey__n .tb-icon { width: 16px; height: 16px; }
.tb-journey .is-current { color: var(--ink); }
.tb-journey .is-current .tb-journey__n { background: var(--ink); border-color: var(--ink); color: #fff; }
.tb-journey .is-done { color: var(--aqua-deep); }
.tb-journey .is-done .tb-journey__n { background: var(--aqua-soft); border-color: var(--aqua); color: var(--aqua-deep); }
.tb-journey .is-done + li::before { background: var(--aqua); }
.tb-wc .woocommerce > .tb-journey { grid-column: 1 / -1; }

/* Cart */
.tb-cart-name { font-weight: 700; }
.tb-root .shop_table .variation { font-size: var(--fs-small); color: var(--ink-2); }
.tb-root .shop_table .variation dt { font-weight: 600; color: var(--muted); }
.tb-root .shop_table .variation dd { color: var(--ink); }
.tb-cart-continue { margin-top: 1.5rem; }
.tb-wc .woocommerce > .tb-cart-continue { grid-column: 1; }
.tb-root .woocommerce-cart-form { background: none; }
.tb-root .woocommerce-cart-form .shop_table { border-radius: var(--r-lg); }
.tb-root .cart_totals { box-shadow: var(--shadow); }
.tb-root .cart_totals h2 { font-size: var(--fs-h3); }
.tb-root .wc-proceed-to-checkout .checkout-button { min-height: 66px; font-size: 1.1875rem; }
.tb-root td.actions .coupon .button { min-height: 44px; font-size: var(--fs-small); }
.tb-empty { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(3rem, 6vw, 5rem) 1.5rem; }
.tb-empty .tb-h3 { font-size: var(--fs-h2); }
.tb-root .cart-empty.woocommerce-info { display: none; }
@media (max-width: 767px) {
	.tb-root .woocommerce-cart-form .cart_item { padding: 1.25rem; }
	.tb-root .woocommerce-cart-form .cart_item .product-name a { font-size: var(--fs-body); }
	.tb-root .woocommerce-cart-form .cart_item .product-subtotal { font-size: var(--fs-body); }
	.tb-root .woocommerce-cart-form .cart_item .product-remove a { width: 40px; height: 40px; }
}

/* Checkout */
.tb-checkout-intro { display: flex; align-items: flex-start; gap: .6rem; margin: 0 0 1.5rem; padding: 1rem 1.1rem; background: var(--aqua-soft); border-radius: var(--r-sm); font-size: var(--fs-small); color: var(--ink-2); font-weight: 600; }
.tb-checkout-intro .tb-icon { width: 20px; height: 20px; color: var(--aqua-deep); flex: 0 0 auto; margin-top: .1rem; }
.tb-root .woocommerce-billing-fields, .tb-root .woocommerce-shipping-fields, .tb-root .woocommerce-additional-fields { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.tb-root .woocommerce-additional-fields { margin-top: 1.5rem; }
.tb-root .col2-set .col-1, .tb-root .col2-set .col-2 { width: auto; float: none; }
.tb-root .col2-set .col-2 { margin-top: 1.5rem; }
.tb-root .woocommerce-shipping-fields .shipping_address { margin-top: 1rem; }
.tb-root .form-row.woocommerce-invalid label { color: var(--danger); }
.tb-root .form-row .input-text:invalid:not(:placeholder-shown) { border-color: var(--line-strong); }
.tb-root #order_review .shop_table .product-name .variation { display: grid; grid-template-columns: auto 1fr; gap: .1rem .4rem; font-size: var(--fs-label); color: var(--muted); margin-top: .3rem; }
.tb-root #order_review .shop_table .product-name .variation dd { color: var(--ink-2); }
.tb-root #order_review .woocommerce-shipping-totals th { vertical-align: top; }
.tb-root #order_review .woocommerce-shipping-methods { font-size: var(--fs-small); }
.tb-root #order_review .woocommerce-shipping-methods input { accent-color: var(--aqua-deep); width: 18px; height: 18px; }
.tb-root .woocommerce-checkout-payment .woocommerce-notice { font-size: var(--fs-small); }
.tb-root #payment .woocommerce-NoticeGroup, .tb-root #payment .woocommerce-notice--info { margin-bottom: 1rem; }
.tb-root .woocommerce-form-login-toggle .woocommerce-info, .tb-root .woocommerce-form-coupon-toggle .woocommerce-info { background: var(--surface); border-color: var(--line); color: var(--ink-2); }
.tb-checkout-mode .tb-page__head { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 1024px) { .tb-root form.checkout > .tb-checkout-intro { grid-column: 1; } }

/* Thank you */
.tb-thanks-next { display: grid; gap: 1.25rem; }
.tb-thanks-next .tb-card + .tb-card { margin-top: 0; }
@media (min-width: 768px) { .tb-thanks-next { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tb-root .woocommerce-order > .tb-journey { margin-bottom: 0; }

/* Account */
.tb-root .woocommerce-MyAccount-navigation a { display: inline-flex; align-items: center; gap: .6rem; }
.tb-root .woocommerce-MyAccount-navigation .tb-icon { width: 20px; height: 20px; opacity: .8; }
.tb-root .woocommerce-MyAccount-navigation .is-active .tb-icon { opacity: 1; }
.tb-login-intro { margin-bottom: 1.5rem; }
.tb-wc .woocommerce > .tb-login-intro { grid-column: 1 / -1; }
.tb-root .woocommerce-form-login .form-row label, .tb-root .woocommerce-form-register .form-row label { margin-bottom: .45rem; }
.tb-root .woocommerce-form-login .button.woocommerce-form-login__submit, .tb-root .woocommerce-form-register .button { background: var(--aqua); border-color: var(--aqua); color: var(--ink); min-height: 58px; }
.tb-root .woocommerce-form-login .button:hover, .tb-root .woocommerce-form-register .button:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); color: #fff; }
.tb-root .woocommerce-orders-table__cell-order-status { font-weight: 700; }
.tb-root .woocommerce-order-details .order_details td .wc-item-meta { font-size: var(--fs-label); color: var(--muted); }
.tb-root .woocommerce-MyAccount-content .woocommerce-message .button { margin-left: 0; }
.tb-root .woocommerce-MyAccount-content mark { background: var(--aqua-soft); color: var(--aqua-ink); padding: 0 .3em; border-radius: 4px; }
.tb-root .woocommerce-EditAccountForm .form-row { margin-bottom: 1.1rem; }

/* Shop: single-product storefront */
.tb-card-product--featured { border-radius: var(--r-xl); box-shadow: var(--shadow); }
.tb-card-product--featured .tb-card-product__media { background: var(--surface); }
.tb-card-product--featured .tb-card-product__media img { padding: clamp(1.5rem, 4vw, 3rem); }
.tb-card-product--featured .tb-card-product__body h2 a { font-family: var(--font-display); }
.tb-card-product--featured .tb-actions .tb-btn { min-height: 62px; padding-inline: 2.25rem; }
.tb-card-product--featured .tb-price { font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem); }
.tb-shop .tb-page__head { padding-bottom: clamp(1rem, 2vw, 2rem); }

/* Mobile QA adjustments */
@media (max-width: 479px) {
	.tb-actions .tb-btn:not(.tb-btn--text) { width: 100%; }
	.tb-actions--hero .tb-btn--text { width: auto; }
	.tb-gallery__thumb { width: 64px; height: 64px; }
	.tb-journey { gap: .35rem; font-size: var(--fs-label); }
	.tb-journey li + li::before { width: 16px; margin-right: .35rem; }
	.tb-choose__card { padding: 1.1rem 1.1rem; column-gap: 1rem; }
	.tb-choose__card strong { font-size: 1.625rem; }
	.tb-callout { padding: .75rem .9rem; font-size: var(--fs-label); }
	.tb-callout strong { font-size: 1.25rem; }
	.tb-root td.actions .coupon .input-text { flex-basis: 100%; }
	.tb-root td.actions .coupon .button { width: 100%; }
	.tb-root .woocommerce-MyAccount-navigation a { min-height: 44px; }
	.tb-footer__bottom { flex-direction: column; align-items: flex-start; }
	.tb-footer__note { margin-left: 0; }
}
.tb-cart-attrs { display: flex; flex-wrap: wrap; gap: .35rem .6rem; margin-top: .4rem; font-size: var(--fs-label); color: var(--ink-2); }
.tb-cart-attrs span { background: var(--aqua-soft); color: var(--aqua-ink); border-radius: var(--r-pill); padding: .2rem .6rem; }
.tb-cart-attrs b { font-weight: 600; color: var(--muted); margin-right: .2rem; }

/* ==========================================================================
   v2.3 — launch fixes
   ========================================================================== */
/* Showcase: single image, copy centred beside it */
.tb-showcase__side { grid-template-columns: 1fr; align-content: center; }
@media (min-width: 900px) { .tb-showcase__grid { grid-template-columns: 7fr 5fr; align-items: center; } }

/* Final CTA: original photograph in a white frame (no cutout) */
.tb-final__media::before { display: none; }
.tb-final__frame { width: min(100%, 460px); aspect-ratio: 1; background: var(--surface); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); padding: clamp(1rem, 3vw, 2rem); }
.tb-final__frame img { width: 100%; height: 100%; object-fit: contain; filter: none; position: static; transform: none; }

/* Purchase controls: no flex-basis leaking into column direction; robust widths */
.tb-root .woocommerce-variation-add-to-cart { display: grid; grid-template-columns: minmax(0, 1fr); gap: .85rem; margin-top: .5rem; }
.tb-root .woocommerce-variation-add-to-cart > * { min-width: 0; }
.tb-root .woocommerce-variation-add-to-cart .quantity { justify-self: start; }
.tb-root .single_add_to_cart_button, .tb-root .tb-buy-now { flex: none; width: 100%; max-width: 100%; white-space: normal; text-align: center; }
.tb-root .single_add_to_cart_button { min-height: 60px; font-size: 1.125rem; }
.tb-root .tb-buy-now { min-height: 56px; }
.tb-summary .single_add_to_cart_button, .tb-buycard .single_add_to_cart_button { min-height: 64px; }
.tb-summary .woocommerce-variation-add-to-cart, .tb-buycard .woocommerce-variation-add-to-cart { display: grid; }
.tb-root form.cart.variations_form { max-width: 100%; }
.tb-root .variations { width: 100%; table-layout: fixed; }
.tb-root .variations td { width: 100%; }
.tb-swatches { width: 100%; }
.tb-swatch { max-width: 100%; white-space: normal; text-align: center; }
/* Live price lives in the main price element; hide the duplicate inside the form */
.tb-root .woocommerce-variation-price { display: none; }
.tb-root .woocommerce-variation-availability .stock { margin-top: 0; }

/* Checkout: explicit rows so the spanning details column cannot inflate row 1 */
@media (min-width: 1024px) {
	.tb-root form.checkout { grid-template-rows: auto 1fr; }
	.tb-root form.checkout > .col2-set { align-self: start; }
	.tb-root #order_review_heading { align-self: start; padding-top: .35rem; }
}
/* Empty shipping-fields wrapper (shown by WooCommerce when no shipping address is needed) must not render as a card */
.tb-root .woocommerce-shipping-fields:not(:has(*)) { display: none; }
.tb-root .woocommerce-shipping-fields:has(> h3:only-child) { padding: 1rem 1.5rem; }
/* Single allowed country: WooCommerce renders it as text + hidden input */
.tb-root .form-row .country_to_state + strong, .tb-root #billing_country_field strong, .tb-root #shipping_country_field strong { display: block; min-height: 54px; padding: .8rem 1.1rem; border: 1.5px solid var(--line); border-radius: 14px; background: var(--bg); font-weight: 600; color: var(--ink-2); }
.tb-root .form-row.woocommerce-invalid strong { border-color: var(--line); }

/* ==========================================================================
   v2.5 — bug fixes
   ========================================================================== */
/* Hero / purchase module: original photograph in a white frame (no cutout) */
.tb-hero__frame { position: relative; width: 62%; aspect-ratio: 4 / 5; background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: clamp(.75rem, 2vw, 1.25rem); display: grid; place-items: center; overflow: hidden; }
.tb-hero__img { position: static; transform: none; width: 100%; height: 100%; max-width: 100%; object-fit: contain; filter: none; }
.tb-buycard__stage { background: var(--surface); border: 1px solid var(--line); }
.tb-buycard__stage img { position: static; transform: none; width: 100%; height: 100%; max-width: 100%; object-fit: contain; padding: clamp(1rem, 3vw, 2rem); filter: none; }
.tb-buycard__stage { display: grid; place-items: center; }
@media (min-width: 900px) { .tb-hero__frame { width: 58%; } }

/* Header: backdrop-filter creates a containing block for fixed descendants, so keep it desktop-only */
.tb-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
@media (min-width: 900px) { .tb-header { background: rgba(250, 249, 245, .88); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); } }
/* Mobile drawer */
.tb-nav { position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(88vw, 380px); max-width: 100vw; height: 100dvh; padding: 0 1.25rem 1.5rem; z-index: 200; background: var(--surface); box-sizing: border-box; }
.tb-nav-backdrop { z-index: 190; }
.tb-nav__top { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); margin-bottom: .5rem; }
.tb-nav__logo { height: 30px; width: auto; }
.tb-nav__close { border: 1px solid var(--line); }
.tb-nav__list a { font-size: 1.25rem; white-space: normal; }
.tb-nav__mobile-links a, .tb-nav__mobile-links span { min-height: 44px; display: inline-flex; align-items: center; font-size: var(--fs-body); }
@media (min-width: 900px) { .tb-nav { position: static; height: auto; width: auto; max-width: none; padding: 0; background: none; z-index: auto; } .tb-nav__top { display: none; } }
@media (max-width: 899px) { .tb-header__inner { position: relative; } .tb-header { z-index: 50; } }

/* Progress steps: single line at every width */
.tb-journey { flex-wrap: nowrap; gap: .5rem; overflow: hidden; }
.tb-journey li { white-space: nowrap; flex: 0 0 auto; }
@media (max-width: 479px) {
	.tb-journey { gap: .3rem; font-size: .8125rem; }
	.tb-journey li { gap: .3rem; }
	.tb-journey li + li::before { width: 10px; margin-right: .3rem; }
	.tb-journey__n { width: 22px; height: 22px; font-size: .6875rem; border-width: 1.5px; }
	.tb-journey__n .tb-icon { width: 12px; height: 12px; }
}
@media (max-width: 359px) { .tb-journey { font-size: .75rem; gap: .2rem; } .tb-journey li + li::before { width: 6px; margin-right: .2rem; } }

/* Account: icons via CSS masks (labels stay plain text for WooCommerce escaping) */
.tb-root .woocommerce-MyAccount-navigation ul { min-width: 0; }
.tb-root .woocommerce-MyAccount-navigation a::before { content: ""; width: 20px; height: 20px; flex: 0 0 auto; background: currentColor; opacity: .8; -webkit-mask: var(--tb-acct-icon) center / contain no-repeat; mask: var(--tb-acct-icon) center / contain no-repeat; }
.tb-root .woocommerce-MyAccount-navigation .is-active a::before { opacity: 1; }
.tb-root .tb-acct-dashboard a { --tb-acct-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11 12 4l9 7'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M10 20v-6h4v6'/%3E%3C/svg%3E"); }
.tb-root .tb-acct-orders a { --tb-acct-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l1 13H5z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E"); }
.tb-root .tb-acct-downloads a { --tb-acct-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v11M7 10l5 5 5-5M4 19h16'/%3E%3C/svg%3E"); }
.tb-root .tb-acct-edit-address a { --tb-acct-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); }
.tb-root .tb-acct-edit-account a { --tb-acct-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E"); }
.tb-root .tb-acct-customer-logout a { --tb-acct-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 4H5v16h5M14 8l4 4-4 4M8 12h10'/%3E%3C/svg%3E"); }
.tb-root .woocommerce-MyAccount-navigation a:not([class*="tb-acct"])::before, .tb-root .woocommerce-MyAccount-navigation li:not([class*="tb-acct-"]) a::before { display: none; }
@media (min-width: 900px) { .tb-wc .woocommerce:has(.woocommerce-MyAccount-navigation) > * { min-width: 0; } }

/* Checkout reassurance under Place order */
.tb-checkout-assure { display: grid; gap: .5rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: var(--fs-label); color: var(--ink-2); }
.tb-checkout-assure li { display: flex; align-items: flex-start; gap: .5rem; }
.tb-checkout-assure .tb-icon { width: 18px; height: 18px; color: var(--aqua-deep); flex: 0 0 auto; margin-top: .05rem; }

/* Announcement bar: readable on mobile, no marquee */
.tb-announce { white-space: normal; line-height: 1.35; }

/* ==========================================================================
   v2.6 — conversion reassurance + reviews
   ========================================================================== */
.tb-trust__timing { margin-top: .75rem; font-size: var(--fs-label); color: var(--muted); }
.tb-checkout-assure { display: grid; gap: .55rem; }
.tb-checkout-assure p { display: flex; align-items: flex-start; gap: .5rem; }
.tb-checkout-assure__lead { font-weight: 700; color: var(--ink); font-size: var(--fs-small); }
.tb-checkout-assure .tb-icon { width: 18px; height: 18px; color: var(--aqua-deep); flex: 0 0 auto; margin-top: .1rem; }
.tb-announce { font-weight: 700; }

/* Compact version comparison in the summary */
.tb-vcompare { margin-top: 1.25rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.tb-vcompare summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.1rem; font-weight: 700; font-size: var(--fs-small); cursor: pointer; list-style: none; }
.tb-vcompare summary::-webkit-details-marker { display: none; }
.tb-vcompare summary .tb-icon { width: 20px; height: 20px; color: var(--muted); transition: transform .2s var(--ease); }
.tb-vcompare[open] summary .tb-icon { transform: rotate(180deg); }
.tb-vcompare__grid { padding: 0 1.1rem 1.1rem; }
.tb-vcompare__table { width: 100%; font-size: var(--fs-label); }
.tb-vcompare__table th, .tb-vcompare__table td { padding: .55rem .4rem; text-align: left; vertical-align: top; border-top: 1px solid var(--line); }
.tb-vcompare__table thead th { border-top: 0; font-weight: 800; color: var(--aqua-deep); line-height: 1.15; }
.tb-vcompare__table thead th small { display: block; font-weight: 600; color: var(--muted); font-size: .75rem; }
.tb-vcompare__table tbody th { font-weight: 700; color: var(--ink); width: 30%; }
.tb-vcompare__table td { color: var(--ink-2); }
.tb-vcompare__actions { display: flex; gap: .5rem; margin-top: .75rem; }
.tb-vcompare__actions .tb-btn { flex: 1 1 0; min-height: 44px; padding-inline: .75rem; }

/* ==========================================================================
   v2.7 — conversion hierarchy, trust strip, version picker, shipping row
   ========================================================================== */
.tb-assure { margin-top: 1.5rem; padding: 1.1rem 1.25rem; background: var(--aqua-soft); border-radius: var(--r); }
.tb-assure .tb-trust { margin-top: 0; padding-top: 0; border-top: 0; gap: .55rem; }
.tb-assure .tb-trust .tb-icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--surface); color: var(--aqua-deep); }
.tb-assure .tb-trust li { align-items: center; font-weight: 600; color: var(--ink); }
.tb-assure__lead { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid rgba(8, 127, 120, .18); font-weight: 800; color: var(--aqua-ink); font-size: var(--fs-body); }
.tb-summary .woocommerce-product-details__short-description { margin-top: 1.25rem; }
.tb-benefits__grid--3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 640px) { .tb-benefits__grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tb-benefits__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Trust strip */
.tb-truststrip { display: grid; gap: .75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 1.25rem; }
.tb-truststrip li { display: flex; align-items: center; gap: .75rem; padding: .5rem .25rem; min-width: 0; }
.tb-truststrip .tb-icon { width: 40px; height: 40px; padding: 9px; border-radius: 50%; background: rgba(32, 184, 172, .18); color: var(--aqua); flex: 0 0 auto; }
.tb-truststrip span { display: grid; gap: .1rem; font-size: var(--fs-label); color: rgba(255, 255, 255, .75); line-height: 1.3; }
.tb-truststrip strong { font-size: var(--fs-small); color: #fff; }
.tb-truststrip-wrap { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 900px) { .tb-truststrip { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 1.25rem 1.75rem; } .tb-truststrip li + li { border-left: 1px solid rgba(255, 255, 255, .1); padding-left: 1.25rem; } }
.tb-wc .woocommerce > .tb-truststrip { grid-column: 1; margin-top: 1.5rem; }

/* Version picker */
.tb-vpick { display: grid; gap: 1.25rem; }
.tb-vpick__card { background: var(--surface); border: 2px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; gap: .6rem; }
.tb-vpick__card--hi { border-color: var(--aqua); background: linear-gradient(180deg, var(--aqua-soft), #fff 70%); position: relative; }
.tb-vpick__v { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 2.4rem + 2.5vw, 4.5rem); line-height: 1; letter-spacing: -.03em; color: var(--aqua-deep); }
.tb-vpick__for { color: var(--ink-2); }
.tb-vpick__list { display: grid; gap: .55rem; margin: .75rem 0 1.25rem; }
.tb-vpick__list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: var(--fs-small); }
.tb-vpick__list .tb-icon { width: 26px; height: 26px; padding: 5px; border-radius: 50%; flex: 0 0 auto; }
.tb-vpick__list .is-yes .tb-icon { background: var(--aqua-soft); color: var(--aqua-deep); }
.tb-vpick__list .is-no { color: var(--muted); }
.tb-vpick__list .is-no .tb-icon { background: var(--line); color: var(--muted); }
.tb-vpick__card .tb-btn { margin-top: auto; width: 100%; }
.tb-vpick__note { text-align: center; color: var(--muted); font-size: var(--fs-small); margin-top: 1.5rem; }
@media (min-width: 768px) { .tb-vpick { grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 960px; margin-inline: auto; } }

/* Product final CTA */
.tb-pfinal__grid { display: grid; gap: 2.5rem; align-items: center; }
.tb-pfinal__price { margin-top: 1.25rem; }
.tb-pfinal__price .tb-price, .tb-pfinal__price .price { color: var(--ink); font-size: clamp(2rem, 1.6rem + 1.4vw, 3rem); }
.tb-pfinal__line { margin-top: 1.25rem; font-weight: 700; color: rgba(16, 39, 43, .8); }
@media (min-width: 900px) { .tb-pfinal__grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

/* Homepage micro-CTAs */
.tb-ctarow--facts { flex-direction: column; align-items: center; gap: 1rem; }
.tb-microfacts { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; font-weight: 700; font-size: var(--fs-small); color: var(--ink-2); }
.tb-microfacts span { display: inline-flex; align-items: center; gap: .45rem; }
.tb-microfacts .tb-icon { width: 20px; height: 20px; color: var(--aqua-deep); }

/* Shipping row: real rate shown with its zero amount */
.tb-root .woocommerce-shipping-methods li label { display: inline-flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.tb-root .woocommerce-shipping-methods li { font-weight: 600; }
.tb-ship-zero { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.tb-root .cart_totals .woocommerce-shipping-totals th, .tb-root #order_review .woocommerce-shipping-totals th { white-space: nowrap; }

/* ==========================================================================
   v2.10 — purchase-form spacing, review gallery
   ========================================================================== */
/* WooCommerce hides "Clear selection" with visibility:hidden (space kept). Remove it from flow until it is shown. */
.tb-root .variations .reset_variations { display: none; margin: 0; }
.tb-root .variations .reset_variations[style*="visible"] { display: inline-block; margin-top: .35rem; }
.tb-root form.cart, .tb-summary form.cart, .tb-buycard form.cart { margin-top: 1.1rem; }
.tb-root .variations tr, .tb-summary .variations tr, .tb-buycard .variations tr { margin-bottom: .9rem; }
.tb-root .variations th label { margin-bottom: .4rem; }
.tb-root .single_variation_wrap { margin-top: .25rem; }
.tb-root .woocommerce-variation.single_variation:empty { display: none; }
.tb-root .woocommerce-variation-description { margin-bottom: .5rem; }
.tb-root .woocommerce-variation-availability .stock { margin: 0 0 .6rem; }
.tb-root .woocommerce-variation-add-to-cart, .tb-summary .woocommerce-variation-add-to-cart, .tb-buycard .woocommerce-variation-add-to-cart { gap: .65rem; margin-top: .25rem; }
.tb-assure { margin-top: 1rem; padding: .9rem 1.1rem; }
.tb-assure .tb-trust { gap: .45rem; }
.tb-assure__lead { margin-top: .6rem; padding-top: .6rem; }
.tb-summary .price { margin-top: .9rem; }
.tb-summary .tb-product__benefit { margin-top: .75rem; }
.tb-vcompare { margin-top: 1rem; }
@media (max-width: 479px) { .tb-root .variations tr { margin-bottom: .75rem; } .tb-swatch { min-height: 46px; padding-inline: 1rem; } }

/* ==========================================================================
   v2.11 — Thank You / order details: mobile structure
   ========================================================================== */
.tb-root .woocommerce-order, .tb-root .woocommerce-order > * { min-width: 0; }
.tb-root .woocommerce-order-details, .tb-root .woocommerce-customer-details, .tb-root .woocommerce-thankyou-order-details, .tb-root .woocommerce-thankyou-order-received { overflow-wrap: anywhere; }
.tb-root .woocommerce-thankyou-order-details li { min-width: 0; }
.tb-root .woocommerce-thankyou-order-details strong { overflow-wrap: anywhere; }
.tb-root .order_details tfoot th, .tb-root .order_details tfoot td { vertical-align: top; }
.tb-root .order_details tfoot td, .tb-root .order_details .product-total { text-align: right; white-space: nowrap; }
.tb-root .order_details .product-name .product-quantity { color: var(--muted); font-weight: 600; }
.tb-ship-note { display: block; font-size: var(--fs-label); color: var(--aqua-deep); font-weight: 700; white-space: nowrap; }
.tb-root .woocommerce-customer-details address { overflow-wrap: anywhere; line-height: 1.6; }
.tb-root .woocommerce-customer-details .woocommerce-customer-details--phone, .tb-root .woocommerce-customer-details .woocommerce-customer-details--email { display: block; margin-top: .35rem; }
@media (max-width: 600px) {
	.tb-root .woocommerce-thankyou-order-details { grid-template-columns: 1fr; gap: .75rem; padding: 1.1rem; }
	.tb-root .woocommerce-thankyou-order-received { padding: 1.1rem 1.25rem; font-size: var(--fs-h4); }
	.tb-root .woocommerce-order-details, .tb-root .woocommerce-customer-details { padding: 1.1rem; border-radius: var(--r); }
	/* Table → stacked cards */
	.tb-root .order_details, .tb-root .order_details tbody, .tb-root .order_details tfoot, .tb-root .order_details tr, .tb-root .order_details th, .tb-root .order_details td { display: block; width: 100%; min-width: 0; }
	.tb-root .order_details thead { display: none; }
	.tb-root .order_details tbody tr.order_item { padding: .9rem 0; border-bottom: 1px solid var(--line); }
	.tb-root .order_details tbody td { padding: 0; border: 0; }
	.tb-root .order_details tbody .product-name { font-weight: 700; font-size: var(--fs-body); }
	.tb-root .order_details tbody .product-name .product-quantity { display: block; margin-top: .15rem; font-size: var(--fs-small); }
	.tb-root .order_details tbody .product-name .wc-item-meta { margin-top: .35rem; font-size: var(--fs-small); }
	.tb-root .order_details tbody .product-total { text-align: left; white-space: normal; margin-top: .35rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
	.tb-root .order_details tfoot tr { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--line); }
	.tb-root .order_details tfoot tr:last-child { border-bottom: 0; }
	.tb-root .order_details tfoot th { width: auto; flex: 1 1 auto; padding: 0; border: 0; font-weight: 600; color: var(--ink-2); }
	.tb-root .order_details tfoot td { width: auto; flex: 0 1 auto; padding: 0; border: 0; text-align: right; white-space: normal; overflow-wrap: anywhere; font-weight: 700; }
	.tb-root .order_details tfoot tr:last-child th, .tb-root .order_details tfoot tr:last-child td { font-weight: 800; }
	.tb-ship-note { display: inline; margin-left: .35rem; white-space: normal; }
	.tb-root .woocommerce-customer-details .woocommerce-columns { grid-template-columns: 1fr; }
	.tb-thanks-next .tb-card { padding: 1.25rem; }
}
.tb-item-name { display: block; font-weight: 700; }
.tb-item-name a { color: var(--ink); text-decoration: none; }
.tb-item-attrs { display: block; font-size: var(--fs-small); color: var(--muted); font-weight: 600; margin-top: .1rem; }
.tb-root .order_details .product-name .product-quantity { display: inline-block; margin-top: .15rem; }
@media (max-width: 600px) { .tb-root .order_details tbody .product-name .product-quantity { font-weight: 600; } }

/* ==========================================================================
   v2.12 — colour swatches with indicators; gallery stability on switch
   ========================================================================== */
.tb-swatch--colour { display: inline-flex; align-items: center; gap: .55rem; padding-left: .9rem; }
.tb-swatch__dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(16, 39, 43, .18); box-shadow: inset 0 0 0 2px #fff; flex: 0 0 auto; }
.tb-swatch__dot--white { background: #F2EDED; }
.tb-swatch__dot--green { background: #929081; }
.tb-swatch__dot--purple { background: #848094; }
.tb-swatch.is-selected .tb-swatch__dot { box-shadow: inset 0 0 0 2px var(--ink), 0 0 0 2px #fff; }
.tb-swatch.is-selected .tb-swatch__dot--white { border-color: rgba(16, 39, 43, .35); }
.tb-swatch.is-selected::after { content: "\2713"; margin-left: .35rem; font-size: .8em; }
.tb-gallery__main .woocommerce-product-gallery__image { aspect-ratio: 1; }
.tb-gallery__img { width: 100%; height: 100%; object-fit: contain; }
.tb-buycard__stage { aspect-ratio: 1; }
.tb-buycard__stage img { width: 100%; height: 100%; object-fit: contain; }

/* ==========================================================================
   v2.13 — product purchase column: typography scale + tighter rhythm
   ========================================================================== */
.tb-summary .product_title { font-size: clamp(2.25rem, 1.6rem + 2vw, 3.625rem); line-height: 1.04; }
.tb-summary .tb-product__benefit { font-size: clamp(1.0625rem, 1rem + .3vw, 1.25rem); line-height: 1.5; margin-top: .6rem; max-width: 46ch; }
.tb-summary .tb-ratelink { margin-top: .6rem; }
.tb-summary .price { font-size: clamp(2.125rem, 1.75rem + 1.25vw, 3rem); margin-top: .6rem; line-height: 1.1; }
.tb-summary form.cart { margin-top: .85rem; }
.tb-summary .variations tr { margin-bottom: .8rem; }
.tb-summary .woocommerce-variation-description p { font-size: var(--fs-label); }
.tb-summary .woocommerce-variation-description { margin-bottom: .4rem; }
@media (max-width: 479px) {
	.tb-summary .product_title { font-size: clamp(2rem, 8vw, 2.25rem); }
	.tb-summary .price { font-size: 2rem; }
}

/* ==========================================================================
   v2.14 — hero headline scale + rhythm
   ========================================================================== */
.tb-hero .tb-display { font-size: clamp(2.25rem, 1.45rem + 3.1vw, 4rem); line-height: 1.08; }
.tb-hero .tb-display + .tb-lead { margin-top: 1.25rem; }
.tb-hero .tb-lead { font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); line-height: 1.5; }
.tb-hero__price { margin-top: 1.25rem; }
.tb-hero__price .tb-price { font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem); }
.tb-hero .tb-actions { margin-top: 1.5rem; }

/* ==========================================================================
   v2.15 — product price: smaller, range stays on one line
   ========================================================================== */
.tb-summary .price { font-size: clamp(1.5rem, 1.25rem + .8vw, 2rem); line-height: 1.2; margin-top: .5rem; }
.tb-summary .price .woocommerce-Price-amount { white-space: nowrap; }
.tb-summary .price del { font-size: .75em; }
.tb-buycard__body .tb-price { font-size: clamp(1.5rem, 1.25rem + .8vw, 2rem); }
.tb-buycard__body .tb-price .woocommerce-Price-amount { white-space: nowrap; }
@media (max-width: 479px) { .tb-summary .price { font-size: 1.5rem; } }

/* ==========================================================================
   v2.16 — reviews delegated to the CusRev plugin; neutral container + star fallback only
   ========================================================================== */
.tb-reviews { background: var(--aqua-soft); }
.tb-root .tb-reviews .woocommerce-Reviews-title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); letter-spacing: -.02em; margin-bottom: 1.25rem; }
.tb-root .star-rating { position: relative; display: inline-block; width: 5.5em; height: 1em; line-height: 1; font-size: 1em; overflow: hidden; }
.tb-root .star-rating::before { content: "\2605\2605\2605\2605\2605"; position: absolute; left: 0; top: 0; color: var(--line-strong); letter-spacing: .1em; }
.tb-root .star-rating span { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden; padding-top: 1.5em; }
.tb-root .star-rating span::before { content: "\2605\2605\2605\2605\2605"; position: absolute; left: 0; top: 0; color: var(--coral); letter-spacing: .1em; }
.tb-root .star-rating .rating, .tb-root .star-rating strong { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.tb-summary .woocommerce-product-rating { display: flex; align-items: center; gap: .5rem; margin-top: .6rem; font-size: var(--fs-small); }
.tb-summary .woocommerce-product-rating .woocommerce-review-link { color: var(--aqua-deep); font-weight: 700; }

/* ==========================================================================
   v2.17 — mobile overflow fixes (grid children could not shrink below content width)
   ========================================================================== */
.tb-hero__grid, .tb-feature, .tb-showcase__grid, .tb-showcase__side, .tb-buycard, .tb-buycard__media, .tb-product__top, .tb-final__grid, .tb-pfinal__grid, .tb-contact, .tb-faq__grid, .tb-compare-specs, .tb-band, .tb-about-hero__grid, .tb-section-head, .tb-vpick, .tb-choose, .tb-thanks-next, .tb-rev__summary, .tb-footer__grid { grid-template-columns: minmax(0, 1fr); }
.tb-hero__grid > *, .tb-feature > *, .tb-showcase__grid > *, .tb-showcase__side > *, .tb-buycard > *, .tb-product__top > *, .tb-final__grid > *, .tb-pfinal__grid > *, .tb-contact > *, .tb-faq__grid > *, .tb-compare-specs > *, .tb-band > *, .tb-about-hero__grid > *, .tb-section-head > *, .tb-vpick > *, .tb-choose > *, .tb-thanks-next > *, .tb-footer__grid > *, .tb-container > *, .tb-summary > *, .tb-summary, .tb-gallery, .tb-feature__copy, .tb-feature__media, .tb-buycard__body { min-width: 0; }
.tb-root .woocommerce-variation-add-to-cart, .tb-root form.cart, .tb-root .variations, .tb-root .single_variation_wrap, .tb-root .woocommerce-variation { max-width: 100%; min-width: 0; }
.tb-vcompare { max-width: 100%; }
.tb-vcompare__table { table-layout: fixed; width: 100%; }
.tb-vcompare__table th, .tb-vcompare__table td { overflow-wrap: anywhere; }
.tb-vcompare__actions { flex-wrap: wrap; }
.tb-vcompare__actions .tb-btn { flex: 1 1 8rem; white-space: normal; }
.tb-root .woocommerce-variation-description p { overflow-wrap: anywhere; }
.tb-root .tb-truststrip, .tb-checks, .tb-trust, .tb-chips, .tb-benefits__grid, .tb-uses, .tb-steps, .tb-values, .tb-specs, .tb-specs > div, .tb-table-wrap, .tb-policy-cards, .tb-microfacts { max-width: 100%; min-width: 0; }
.tb-specs > div { grid-template-columns: minmax(6rem, 36%) minmax(0, 1fr); }
.tb-specs dt, .tb-specs dd, .tb-benefit p, .tb-use p, .tb-step p, .tb-copy p, .tb-lead, .tb-lead-sm, .tb-h1, .tb-h2, .tb-h3, .tb-display { overflow-wrap: anywhere; }
.tb-hero__pill { left: 0; }
.tb-hero { overflow: hidden; }
.tb-callout { max-width: calc(100% - 2rem); }
.tb-root .shop_table, .tb-root .cart_totals, .tb-root #order_review, .tb-root .woocommerce-MyAccount-content, .tb-root .woocommerce-order { max-width: 100%; min-width: 0; }
.tb-root .woocommerce-MyAccount-navigation ul { max-width: 100%; }
.tb-root img { max-width: 100%; }
@media (min-width: 640px) { .tb-showcase__side { grid-template-columns: 1fr; } }
@media (min-width: 900px) {
	.tb-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
	.tb-feature { grid-template-columns: repeat(12, minmax(0, 1fr)); }
	.tb-showcase__grid { grid-template-columns: 7fr 5fr; }
	.tb-buycard { grid-template-columns: 58fr 42fr; }
	.tb-product__top { grid-template-columns: minmax(0, 56fr) minmax(0, 44fr); }
	.tb-final__grid, .tb-pfinal__grid { grid-template-columns: 1.2fr 1fr; }
	.tb-contact { grid-template-columns: 1.35fr .85fr; }
	.tb-band { grid-template-columns: 1.15fr .85fr; }
	.tb-about-hero__grid { grid-template-columns: 1.1fr 1fr; }
	.tb-section-head--split { grid-template-columns: 1.2fr .8fr; }
}
@media (min-width: 640px) { .tb-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .tb-vpick { grid-template-columns: 1fr 1fr; } .tb-thanks-next { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tb-faq__grid { grid-template-columns: .8fr 1.2fr; } .tb-compare-specs { grid-template-columns: 1.2fr .8fr; } .tb-footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; } }

/* ==========================================================================
   v2.17 — reviews area: WooCommerce defaults + CusRev (Customer Reviews for WooCommerce)
   ========================================================================== */
.tb-reviews .woocommerce-Reviews { max-width: 100%; }
.tb-root #reviews .woocommerce-noreviews, .tb-root #reviews .cr-no-reviews { color: var(--ink-2); font-size: var(--fs-body); margin-bottom: 1rem; }
.tb-root #reviews #comments { margin-bottom: 1.5rem; }
.tb-root #review_form_wrapper, .tb-root .cr-review-form-wrap, .tb-root .cr-reviews-ajax-reviews .cr-comments-form, .tb-root .cr-all-reviews-shortcode .cr-review-form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.tb-root #review_form .comment-reply-title, .tb-root .cr-review-form-wrap .comment-reply-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); margin-bottom: 1rem; letter-spacing: -.01em; }
.tb-root #review_form p, .tb-root .cr-review-form-wrap p { margin: 0 0 1rem; }
.tb-root #review_form label, .tb-root .cr-review-form-wrap label { display: block; font-weight: 700; font-size: var(--fs-small); margin-bottom: .45rem; }
.tb-root #review_form textarea, .tb-root #review_form input[type="text"], .tb-root #review_form input[type="email"], .tb-root .cr-review-form-wrap textarea, .tb-root .cr-review-form-wrap input[type="text"], .tb-root .cr-review-form-wrap input[type="email"], .tb-root .cr-all-reviews-shortcode input[type="text"], .tb-root .cr-all-reviews-shortcode textarea { width: 100%; max-width: 100%; min-height: 54px; padding: .8rem 1.1rem; border: 1.5px solid var(--line-strong); border-radius: 14px; background: var(--surface); font: inherit; font-size: var(--fs-body); box-sizing: border-box; }
.tb-root #review_form textarea, .tb-root .cr-review-form-wrap textarea { min-height: 150px; resize: vertical; }
.tb-root #review_form textarea:focus, .tb-root #review_form input:focus, .tb-root .cr-review-form-wrap textarea:focus, .tb-root .cr-review-form-wrap input:focus { border-color: var(--aqua-deep); box-shadow: 0 0 0 4px var(--aqua-soft); outline: none; }
.tb-root #review_form .form-submit .submit, .tb-root .cr-review-form-wrap .submit, .tb-root .cr-review-form-wrap input[type="submit"], .tb-root .cr-all-reviews-shortcode .submit, .tb-root .cr-submit-review-button, .tb-root .cr-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: .85rem 1.9rem; border-radius: var(--r-pill); font-weight: 700; font-size: var(--fs-btn); background: var(--aqua); color: var(--ink); border: 2px solid var(--aqua); cursor: pointer; font-family: inherit; }
.tb-root #review_form .form-submit .submit:hover, .tb-root .cr-review-form-wrap .submit:hover, .tb-root .cr-button:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); color: #fff; }
.tb-root #review_form .comment-form-rating p.stars { display: inline-flex; gap: .15rem; font-size: 1.75rem; line-height: 1; }
.tb-root #review_form .comment-form-rating p.stars a { position: relative; display: inline-block; width: 1em; height: 1em; text-indent: -9999px; overflow: hidden; text-decoration: none; }
.tb-root #review_form .comment-form-rating p.stars a::before { content: "\2605"; position: absolute; left: 0; top: 0; text-indent: 0; color: var(--line-strong); }
.tb-root #review_form .comment-form-rating p.stars:hover a::before, .tb-root #review_form .comment-form-rating p.stars.selected a::before { color: var(--coral); }
.tb-root #review_form .comment-form-rating p.stars a:hover ~ a::before, .tb-root #review_form .comment-form-rating p.stars.selected a.active ~ a::before { color: var(--line-strong); }
.tb-root #review_form select#rating { display: none; }
.tb-root #reviews .commentlist { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.tb-root #reviews .commentlist .comment_container, .tb-root .cr-reviews-ajax-reviews .comment_container, .tb-root .cr-all-reviews-shortcode .comment_container, .tb-root .cr-review-card { display: flex; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 1.75rem); min-width: 0; }
.tb-root #reviews .commentlist .avatar, .tb-root .cr-reviews-ajax-reviews .avatar, .tb-root .cr-all-reviews-shortcode .avatar { width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto; }
.tb-root #reviews .commentlist .comment-text, .tb-root .cr-reviews-ajax-reviews .comment-text { flex: 1 1 auto; min-width: 0; }
.tb-root #reviews .commentlist .meta, .tb-root .cr-reviews-ajax-reviews .meta { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .6rem; font-size: var(--fs-small); color: var(--muted); margin: .35rem 0 .6rem; }
.tb-root #reviews .commentlist .meta .woocommerce-review__author, .tb-root .cr-reviews-ajax-reviews .meta .woocommerce-review__author { font-weight: 800; color: var(--ink); font-size: var(--fs-body); }
.tb-root #reviews .commentlist .meta .woocommerce-review__verified, .tb-root .cr-reviews-ajax-reviews .woocommerce-review__verified, .tb-root .cr-verified-badge { display: inline-flex; align-items: center; background: var(--aqua-soft); color: var(--aqua-ink); border-radius: var(--r-pill); padding: .15rem .6rem; font-size: .75rem; font-weight: 800; }
.tb-root #reviews .commentlist .meta .woocommerce-review__dash { display: none; }
.tb-root #reviews .commentlist .description p, .tb-root .cr-reviews-ajax-reviews .description p { color: var(--ink-2); line-height: 1.6; }
.tb-root .cr-reviews-ajax-reviews img.cr-review-image, .tb-root .cr-all-reviews-shortcode img.cr-review-image, .tb-root .cr-reviews-ajax-reviews .cr-image-container img, .tb-root .cr-ajax-reviews-review-images img { border-radius: 12px; object-fit: cover; }
.tb-root .cr-summaryBox-wrap, .tb-root .cr-summary-box, .tb-root .cr-overall-rating-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.tb-root .cr-average-rating, .tb-root .cr-summary-average, .tb-root .cr-overall-rating-wrap .cr-average-rating { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.tb-root .cr-histogram, .tb-root .cr-summary-histogram { min-width: 0; }
.tb-root .cr-all-reviews-shortcode *, .tb-root .cr-reviews-ajax-reviews * { max-width: 100%; box-sizing: border-box; }
.tb-root .cr-reviews-ajax-reviews .cr-ajax-reviews-sort, .tb-root .cr-reviews-ajax-reviews select { border: 1.5px solid var(--line-strong); border-radius: 12px; padding: .5rem .8rem; background: var(--surface); font: inherit; }
.tb-root .cr-reviews-ajax-reviews .cr-ajax-reviews-load-more, .tb-root .cr-ajax-reviews-load-more { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .7rem 1.5rem; border-radius: var(--r-pill); border: 2px solid var(--line-strong); background: transparent; font-weight: 700; color: var(--ink); cursor: pointer; }
.tb-root #reviews .woocommerce-pagination ul { display: flex; gap: .4rem; justify-content: center; }
@media (max-width: 479px) { .tb-root #reviews .commentlist .comment_container, .tb-root .cr-reviews-ajax-reviews .comment_container { flex-direction: column; } }

/* ==========================================================================
   v2.18 — smaller product/shop headings + price; rating link
   ========================================================================== */
.tb-summary .product_title { font-size: clamp(2rem, 1.4rem + 1.6vw, 2.75rem); line-height: 1.06; }
.tb-summary .tb-product__benefit { font-size: clamp(1rem, .95rem + .25vw, 1.125rem); line-height: 1.5; margin-top: .5rem; }
.tb-summary .price { font-size: clamp(1.375rem, 1.2rem + .6vw, 1.75rem); margin-top: .4rem; }
.tb-ratelink { display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem; text-decoration: none; color: var(--ink); font-weight: 700; font-size: var(--fs-small); }
.tb-ratelink .star-rating { font-size: 1rem; }
.tb-ratelink__count { color: var(--muted); font-weight: 600; }
.tb-ratelink:hover span { color: var(--aqua-deep); }
.tb-ratelink--empty { color: var(--aqua-deep); }
.tb-ratelink__star { font-size: 1.1rem; line-height: 1; }
.tb-summary .tb-ratelink { display: inline-flex; }
.tb-summary .tb-ratelink + .price { margin-top: .5rem; }
/* Shop featured card */
.tb-card-product--featured .tb-card-product__body h2 { font-size: clamp(1.75rem, 1.3rem + 1.4vw, 2.5rem); line-height: 1.08; }
.tb-card-product--featured .tb-product__benefit { font-size: clamp(1rem, .95rem + .25vw, 1.125rem); margin-top: .25rem; }
.tb-card-product--featured .tb-card-product__desc { font-size: var(--fs-small); }
.tb-card-product--featured .tb-price { font-size: clamp(1.375rem, 1.2rem + .6vw, 1.75rem); }
.tb-card-product--featured .tb-price .woocommerce-Price-amount { white-space: nowrap; }
.tb-card-product .tb-ratelink { margin-top: 0; }
@media (max-width: 479px) { .tb-summary .product_title { font-size: 1.875rem; } .tb-summary .price { font-size: 1.375rem; } }

/* ==========================================================================
   v2.22 — rating link: tighter spacing, larger stars
   ========================================================================== */
.tb-summary .tb-product__benefit { margin-bottom: 0; }
.tb-summary .tb-ratelink { margin-top: .35rem; margin-bottom: 0; gap: .5rem; }
.tb-summary .tb-ratelink + .price { margin-top: .35rem; }
.tb-ratelink .star-rating { font-size: 1.375rem; width: 5.4em; letter-spacing: 0; }
.tb-ratelink .star-rating::before, .tb-ratelink .star-rating span::before { letter-spacing: .08em; }
.tb-ratelink__avg { font-size: var(--fs-body); }
.tb-ratelink__count { font-size: var(--fs-small); }
.tb-card-product .tb-ratelink .star-rating { font-size: 1.25rem; }
