:root {
  --bg: #120906;
  --bg-soft: #2a140c;
  --surface: rgba(255, 246, 239, 0.96);
  --surface-soft: rgba(255, 241, 232, 0.9);
  --surface-dark: rgba(44, 19, 10, 0.92);
  --surface-darker: rgba(26, 10, 5, 0.94);
  --text: #492417;
  --text-soft: #785243;
  --white: #fff8f3;
  --accent: #ff6a00;
  --accent-bright: #ff9445;
  --accent-deep: #d44a00;
  --accent-text: #ff8c3a;   /* WCAG AA on dark bg (~5.8:1) — use for text/links */
  --gold: #c8882a;
  --gold-text: #e0a84a;     /* lightened gold for text contexts */
  --cream-muted: #e8d9cf;   /* secondary body text */
  --line: rgba(255, 163, 90, 0.14);
  --shadow-soft: 0 24px 60px rgba(12, 5, 2, 0.18);
  --shadow-strong: 0 42px 110px rgba(8, 3, 1, 0.3);
  --shadow-glow: 0 0 40px rgba(255, 106, 0, 0.12);
  --shadow-glow-strong: 0 0 60px rgba(255, 106, 0, 0.22);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --container: 1240px;
  --gold-soft: rgba(200, 136, 42, 0.15);
  --surface-glass: rgba(255, 246, 239, 0.07);
  --surface-glass-hover: rgba(255, 246, 239, 0.11);
  --glass-border: rgba(255, 200, 140, 0.18);
  --glass-border-hover: rgba(255, 200, 140, 0.32);
  --text-heading: #fff8f3;
  --header-height: 72px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-heading);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 122, 36, 0.28), transparent 20%),
    radial-gradient(circle at 82% 16%, rgba(255, 177, 108, 0.18), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(255, 122, 36, 0.12), transparent 28%),
    radial-gradient(circle at 26% 70%, rgba(255, 148, 69, 0.1), transparent 24%),
    radial-gradient(circle at 74% 84%, rgba(255, 126, 34, 0.08), transparent 22%),
    linear-gradient(180deg, #180906 0%, #241109 20%, #34170d 54%, #1b0b07 100%);
}

img {
  display: block;
  max-width: 100%;
}

a,
button,
input {
  font: inherit;
}

button,
input {
  border: 0;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

/* ── Accessibility Utilities ─────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--accent-text);
  color: #120906;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.button:focus-visible,
.nav-pill:focus-visible,
.product-card:focus-visible,
.faq-toggle:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 4px;
  border-radius: inherit;
}

.page-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(88px);
  opacity: 0.44;
}

.page-glow-left {
  width: 420px;
  height: 420px;
  top: 140px;
  left: -120px;
  background: rgba(255, 106, 0, 0.26);
}

.page-glow-right {
  width: 460px;
  height: 460px;
  top: 460px;
  right: -120px;
  background: rgba(255, 179, 110, 0.18);
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

/* ── Site Header ──────────────────────────────────────────────────────── */
/* Admin bar offset — WP admin bar is fixed top 32px */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: rgba(18, 9, 6, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(8, 3, 1, 0.97);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom-color: var(--glass-border-hover);
  box-shadow: 0 4px 32px rgba(4, 1, 0, 0.6);
}
.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 120px;
}
.brand-img {
  height: 52px;
  width: auto;
  min-height: 44px;
  max-height: 56px;
  display: block;
  object-fit: contain;
}
.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 2vw, 8px);
}
.nav-link {
  display: inline-block;
  padding: 8px clamp(10px, 1.5vw, 16px);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,248,243,0.72);
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,248,243,0.07);
  border-color: var(--glass-border);
}
.nav-link.is-active {
  color: var(--accent-text);
  background: rgba(255,106,0,0.1);
  border-color: rgba(255,106,0,0.2);
}
.nav-link:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-shop-btn {
  display: inline-block;
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--accent);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-shop-btn:hover {
  background: var(--accent-bright, #ff8533);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,106,0,0.3);
}
.nav-shop-btn:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  color: rgba(255,248,243,0.75);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background: rgba(255,248,243,0.04);
}
.nav-cart-btn:hover {
  border-color: var(--accent);
  color: var(--accent-text);
  background: rgba(255,106,0,0.08);
}
.nav-cart-btn:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-count-badge:not(:empty) {
  opacity: 1;
  transform: scale(1);
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}
/* Mobile nav drawer */
.mobile-nav {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(10,4,2,0.98);
  border-top: 1px solid var(--glass-border);
}
.mobile-nav.is-open { max-height: 480px; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px clamp(20px,5vw,40px) 32px;
  gap: 4px;
}
.mobile-nav-links a {
  padding: 14px 16px;
  font-size: 1rem;
  color: rgba(255,248,243,0.75);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  border: 1px solid transparent;
}
.mobile-nav-links a:hover {
  background: rgba(255,248,243,0.06);
  color: var(--white);
}
.mobile-nav-links a:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: -2px;
}
.mobile-nav-cta {
  margin-top: 12px;
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
  text-align: center;
  border-color: transparent !important;
}
/* Mobile nav page backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 1, 0, 0.72);
  z-index: 190;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 860px) {
  .nav-primary { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-shop-btn { display: none; }
  .mobile-nav-backdrop { display: block; }
}

/* ── Buttons (shared base) ────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
}

.button-secondary {
  background: var(--surface-glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(8px);
}

.button-secondary.product-view,
.product-card .button-secondary {
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.12) 0%, rgba(255, 249, 244, 0.06) 100%);
  color: #fff8f3;
  border-color: rgba(255, 190, 145, 0.16);
}

.button:hover,
.hero-dot:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.45);
  background: linear-gradient(135deg, #ff8533 0%, var(--accent) 100%);
}

.button-primary:active {
  transform: translateY(0) scale(0.98);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--glass-border-hover);
  background: var(--surface-glass-hover);
}


.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffd5ba;
  background: rgba(255, 155, 84, 0.12);
  border: 1px solid rgba(255, 182, 139, 0.14);
}

.eyebrow-dark {
  color: var(--accent);
  background: rgba(255, 106, 0, 0.1);
}

.hero-slideshow {
  position: relative;
  width: 100vw;
  height: clamp(490px, 44vw, 660px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 166, 94, 0.2), transparent 34%),
    radial-gradient(circle at 18% 50%, rgba(255, 129, 46, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(47, 20, 11, 0.98) 0%, rgba(27, 11, 7, 0.98) 100%);
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 4, 2, 0.12) 0%, rgba(10, 4, 2, 0.02) 18%, rgba(10, 4, 2, 0.24) 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide-melanotan img {
  object-position: 49% 50%;
}

.hero-slide-ghk img {
  object-position: 50% 46%;
}

.hero-slide-floating img {
  object-position: 50% 48%;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 235, 221, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 247, 241, 0.12);
  transition: transform 0.24s ease, width 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #ff9445 0%, #ff6a00 100%);
}

.intro-section {
  padding-top: 28px;
}

.range-section,
.testing-section {
  padding-top: 76px;
}

.intro-shell {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 171, 100, 0.12);
}

.intro-shell::after {
  content: "";
  display: block;
  width: min(100%, 860px);
  height: 1px;
  margin: 38px auto 0;
  background: linear-gradient(90deg, rgba(255, 164, 92, 0) 0%, rgba(255, 164, 92, 0.18) 22%, rgba(255, 164, 92, 0.18) 78%, rgba(255, 164, 92, 0) 100%);
}

.intro-shell h1,
.section-heading h2,
.testing-copy h2 {
  margin: 18px 0 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.intro-shell p,
.section-heading p,
.collection-body p,
.testing-copy p {
  margin: 0;
  color: rgba(255, 231, 214, 0.74);
  font-size: 15px;
  line-height: 1.68;
}

.intro-shell p {
  max-width: 600px;
  margin-inline: auto;
}

.intro-badges,
.product-badges,
.testing-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-badges {
  justify-content: center;
  margin-top: 22px;
}

.intro-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}


.collection-card,
.testing-shell {
  box-shadow: var(--shadow-soft);
}


.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(255, 120, 32, 0.9) 0%, rgba(255, 120, 32, 0) 100%);
}

.range-section {
  position: relative;
  padding-bottom: 18px;
}

.range-section .section-heading,
.testing-section .testing-shell {
  position: relative;
  z-index: 1;
}

.range-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 176, 110, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 120, 32, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(78, 35, 19, 0.18) 0%, rgba(48, 20, 11, 0.08) 100%);
  border: 1px solid rgba(255, 176, 110, 0.1);
  pointer-events: none;
}

.catalog-groups {
  display: grid;
  gap: 62px;
}

.catalog-group {
  position: relative;
  padding: 38px 38px 40px;
  border-radius: 36px;
  border: 1px solid rgba(255, 186, 123, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 181, 111, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 118, 28, 0.1), transparent 28%),
    linear-gradient(155deg, rgba(73, 32, 18, 0.94) 0%, rgba(40, 17, 10, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 234, 220, 0.04),
    0 30px 66px rgba(9, 4, 2, 0.16);
}

.catalog-group + .catalog-group {
  margin-top: 10px;
}

.catalog-group + .catalog-group::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 38px;
  right: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 170, 98, 0) 0%, rgba(255, 170, 98, 0.28) 18%, rgba(255, 170, 98, 0.12) 82%, rgba(255, 170, 98, 0) 100%);
}

.catalog-group__header {
  max-width: 650px;
  margin-bottom: 26px;
  display: grid;
  gap: 6px;
}

.catalog-group__header h3 {
  margin: 14px 0 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff9f5;
}

.catalog-group__header p {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 15px;
  line-height: 1.72;
  max-width: 58ch;
}

.catalog-group__divider {
  width: 100%;
  height: 2px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 170, 98, 0.44) 0%, rgba(255, 170, 98, 0.16) 42%, rgba(255, 170, 98, 0) 100%);
}

.catalog-group__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalog-group--count-3 .product-card:first-child {
  grid-column: span 1;
}

.catalog-group--count-3 .product-card:first-child .product-media {
  aspect-ratio: 1 / 1.1;
}

.catalog-group--count-2 .catalog-group__grid {
  grid-template-columns: repeat(2, 1fr);
}

.catalog-group--count-2 .product-card:first-child {
  grid-column: span 1;
}

.collection-body h3,
.product-body h3,
.testing-badge strong,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.range-section .section-heading {
  max-width: 640px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 34px;
  align-items: stretch;
  padding: 10px 8px 8px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s ease, border-color 0.36s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-strong), 0 32px 64px rgba(8, 3, 1, 0.4);
  border-color: var(--glass-border-hover);
}

.product-media {
  padding: 24px 24px 18px;
}

.product-media a {
  display: block;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 26px 48px rgba(35, 14, 7, 0.14);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.media-focus-left {
  object-position: 34% center;
}

.product-body {
  padding: 12px 24px 26px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-badges {
  margin-bottom: 16px;
}

.product-badges .quality-pill + .quality-pill {
  margin-left: -2px;
}

.product-body h3 {
  color: #fff8f3;
  font-size: 23px;
  min-height: 58px;
  margin-bottom: 4px;
}

.product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.product-body h3 a:hover {
  color: #fff;
}

.price {
  display: block;
  margin-top: auto;
  margin-bottom: 20px;
  color: #ffd8bb;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.product-actions .button {
  flex: 1 1 0;
}

.product-card .button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #fff8f3;
  border-color: rgba(255, 211, 180, 0.16);
}

.quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--gold-soft);
  border: 1px solid rgba(200, 136, 42, 0.25);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8a84a;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.quality-pill:hover {
  background: rgba(200, 136, 42, 0.22);
  border-color: rgba(200, 136, 42, 0.4);
}

.quality-pill-small {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.testing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 110, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 106, 0, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(79, 35, 19, 0.98) 0%, rgba(42, 18, 10, 0.96) 100%);
  border: 1px solid rgba(255, 186, 123, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 233, 216, 0.04),
    var(--shadow-soft);
}

.testing-shell-compact {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 22px;
  padding: 30px 32px;
}

.testing-shell-compact .testing-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.testing-shell-compact .testing-pill-row,
.testing-shell-compact .testing-link-grid,
.testing-shell-compact .testing-actions {
  margin-top: 18px;
}

.testing-shell-compact .testing-badges {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
}

.testing-badges-2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
}

.testing-badges-compact .testing-badge {
  min-height: 0;
  padding: 20px;
}

.testing-badges-compact .testing-badge strong {
  font-size: 18px;
}

.testing-copy p {
  max-width: 580px;
}

.testing-pill-row {
  margin-top: 24px;
}

.testing-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.testing-meta__item {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.1) 0%, rgba(255, 249, 244, 0.05) 100%);
  border: 1px solid rgba(255, 201, 161, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 236, 220, 0.04);
}

.testing-meta__item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff7f1;
  font-size: 15px;
}

.testing-meta__item span {
  color: rgba(255, 232, 216, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.testing-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.testing-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.testing-point {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.testing-point strong {
  display: block;
  margin-bottom: 6px;
  color: #fff7f1;
  font-size: 15px;
}

.testing-point span {
  color: rgba(255, 233, 216, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.testing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.testing-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testing-badge {
  min-height: 140px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 243, 233, 0.11) 0%, rgba(255, 243, 233, 0.05) 100%);
  border: 1px solid rgba(255, 202, 165, 0.16);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testing-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 216, 182, 0.2);
  box-shadow: 0 20px 42px rgba(10, 4, 2, 0.12);
}

.testing-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd6ba;
  font-size: 13px;
  font-weight: 800;
}

.testing-badge strong {
  color: #fff9f5;
  font-size: 22px;
}

.testing-badge p {
  margin: 0;
  color: rgba(255, 233, 216, 0.72);
  font-size: 14px;
  line-height: 1.6;
}



.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chat-input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 248, 243, 0.94);
  border: 1px solid rgba(255, 168, 96, 0.12);
}

/* ── Site Footer ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--glass-border);
  margin-top: clamp(80px, 10vw, 140px);
}

.content-shell {
  display: grid;
  gap: 30px;
}

.content-card,
.policy-index,
.testing-feature-grid article,
.help-feature-grid article {
  padding: 36px;
  border-radius: 32px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 110, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(61, 27, 15, 0.98) 0%, rgba(35, 15, 8, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.page-panel,
.content-card,
.policy-index,
.testing-feature-grid article,
.help-feature-grid article,
.detail-panel,
.cart-shell,
.checkout-shell,
.related-panel {
  position: relative;
}

.page-panel::after,
.content-card::after,
.policy-index::after,
.testing-feature-grid article::after,
.help-feature-grid article::after,
.detail-panel::after,
.cart-shell::after,
.checkout-shell::after,
.related-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 231, 214, 0.04);
}

.content-card h2,
.policy-index h2,
.testing-feature-grid h2,
.help-feature-grid h2 {
  margin: 0 0 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.content-card h3,
.policy-section h3 {
  margin: 0 0 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.content-card p,
.content-card li,
.policy-section p,
.policy-section li,
.policy-index p,
.policy-index a,
.testing-feature-grid p,
.help-feature-grid p {
  color: rgba(255, 231, 214, 0.74);
  font-size: 15px;
  line-height: 1.78;
}

.content-card > p,
.content-card > .policy-note,
.policy-section > p,
.policy-section > ul {
  max-width: 72ch;
}

.page-panel > p {
  max-width: 60ch;
}

.policy-index {
  display: grid;
  gap: 20px;
}

.policy-index nav {
  display: grid;
  gap: 12px;
}

.policy-index a {
  text-decoration: none;
  color: rgba(255, 242, 232, 0.88);
  transition: color 0.24s ease, transform 0.24s ease;
}

.policy-index a:hover {
  color: #fff;
  transform: translateX(2px);
}

.policy-section {
  display: grid;
  gap: 16px;
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-grid,
.testing-feature-grid,
.help-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testing-feature-grid article,
.help-feature-grid article {
  min-height: 100%;
}

.policy-note {
  padding: 18px 20px;
  border-radius: 22px;
  color: rgba(255, 241, 232, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.inline-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff7f1;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.12) 0%, rgba(255, 248, 243, 0.06) 100%);
  border: 1px solid rgba(255, 193, 151, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.link-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 151, 0.24);
  background: linear-gradient(180deg, rgba(255, 149, 72, 0.16) 0%, rgba(255, 149, 72, 0.08) 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px) 60px;
  align-items: start;
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo-link {
  display: block;           /* block removes inline-block baseline gap */
  line-height: 0;           /* kills whitespace from inline rendering */
  width: fit-content;
}
.footer-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
/* Suppress any WordPress-injected custom-logo duplicate in footer
   (wp_get_attachment_image auto-renders when custom-logo support is active) */
.site-footer .custom-logo-link,
.site-footer .wp-block-site-logo,
.site-footer img.custom-logo:not(.footer-logo) {
  display: none !important;
}
.footer-desc {
  font-size: 0.84rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 260px;
}
.footer-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-trust-pills span {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  border: 1px solid rgba(255,106,0,0.2);
  background: rgba(255,106,0,0.06);
  padding: 5px 12px;
  border-radius: 4px;
  width: fit-content;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  color: var(--accent-text);
  border-color: rgba(255,106,0,0.3);
  background: rgba(255,106,0,0.08);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.footer-col h3 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--cream-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--accent-text); }
.footer-disclaimer-strip {
  border-top: 1px solid var(--line);
  padding: 24px clamp(24px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
}
.footer-disclaimer-strip p {
  font-size: 0.76rem;
  color: rgba(255,248,243,0.35);
  line-height: 1.75;
}
.footer-disclaimer-strip strong {
  color: rgba(255,248,243,0.5);
}
.footer-disclaimer-strip a {
  color: rgba(255,106,0,0.55);
  text-decoration: none;
}
.footer-disclaimer-strip a:hover { color: var(--accent-text); }
.footer-bottom-bar {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(24px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.76rem;
  color: rgba(255,248,243,0.3);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: rgba(255,248,243,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--cream-muted); }
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-trust-pills { flex-direction: row; flex-wrap: wrap; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

.cart-toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 92;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 248, 243, 0.98);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.cart-toast strong,
.cart-toast span {
  display: block;
}

.cart-toast strong {
  font-size: 14px;
}

.cart-toast span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 13px;
}

.utility-page main {
  min-height: calc(100vh - 280px);
}

.page-shell {
  padding-top: 0;
  padding-bottom: 24px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 38px;
  align-items: center;
}

.page-panel,
.cart-shell,
.checkout-shell,
.detail-media,
.detail-panel,
.related-panel {
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  box-shadow: var(--shadow-soft);
}

.page-panel,
.cart-shell,
.checkout-shell,
.detail-panel {
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 167, 95, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(56, 25, 14, 0.98) 0%, rgba(28, 12, 7, 0.98) 100%);
}

.page-shop .page-hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  align-items: stretch;
}

.page-shop .testing-shell {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 197, 147, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 128, 42, 0.12), transparent 30%),
    linear-gradient(155deg, rgba(102, 48, 27, 0.97) 0%, rgba(59, 27, 15, 0.97) 100%);
}

.page-shop .testing-copy h2 {
  max-width: 15ch;
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 10px;
}

.page-shop .testing-copy p {
  max-width: 38ch;
}


/* ── Shop Page Hero ───────────────────────────────────────────────────── */
.shop-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.shop-hero-inner {
  max-width: 680px;
}
.shop-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text-heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
}
.shop-hero p {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.shop-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-intro-band__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.page-testing .page-panel {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 211, 170, 0.16), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(255, 123, 28, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(109, 53, 31, 0.96) 0%, rgba(57, 27, 16, 0.96) 100%);
}

.page-testing .policy-index {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 170, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(247, 225, 205, 0.98) 0%, rgba(239, 173, 120, 0.32) 100%);
  border-color: rgba(255, 198, 152, 0.22);
}

.page-testing .policy-index h2,
.page-testing .policy-index a {
  color: #542b1a;
}

.page-testing .policy-index a:hover {
  color: #2f160d;
}

.page-contact .page-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 226, 196, 0.42), transparent 28%),
    linear-gradient(150deg, rgba(250, 236, 222, 0.98) 0%, rgba(224, 144, 83, 0.4) 100%);
  border-color: rgba(255, 193, 151, 0.24);
}

.page-contact .page-panel h1,
.page-contact .page-panel p,
.page-contact .page-panel .inline-link-row a {
  color: #472315;
}

.page-contact .page-panel .quality-pill {
  color: #542c1a;
  background: linear-gradient(180deg, rgba(255, 186, 123, 0.18) 0%, rgba(255, 186, 123, 0.1) 100%);
  border-color: rgba(183, 92, 42, 0.16);
}

.page-contact .page-panel .eyebrow {
  color: #6a341f;
  background: rgba(255, 140, 59, 0.14);
  border-color: rgba(201, 102, 49, 0.12);
}

.page-contact .policy-index {
  background:
    radial-gradient(circle at top right, rgba(255, 191, 151, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(94, 43, 24, 0.98) 0%, rgba(57, 25, 15, 0.98) 100%);
}

.page-legal .page-panel {
  background:
    linear-gradient(135deg, rgba(36, 18, 11, 0.98) 0%, rgba(77, 36, 20, 0.98) 100%);
  border-color: rgba(255, 188, 146, 0.18);
}

.page-legal .policy-index {
  background:
    radial-gradient(circle at top right, rgba(255, 175, 110, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(72, 31, 17, 0.98) 0%, rgba(30, 12, 7, 0.98) 100%);
}

.page-concierge .page-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 194, 149, 0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 146, 72, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(116, 54, 31, 0.96) 0%, rgba(63, 28, 16, 0.98) 100%);
}

.page-concierge .policy-index {
  background:
    radial-gradient(circle at top right, rgba(255, 220, 190, 0.2), transparent 24%),
    linear-gradient(155deg, rgba(248, 229, 211, 0.96) 0%, rgba(214, 135, 79, 0.28) 100%);
  border-color: rgba(255, 201, 161, 0.24);
}

.page-concierge .policy-index h2,
.page-concierge .policy-index a {
  color: #4f2818;
}

.page-concierge .policy-index a:hover {
  color: #2c150d;
}

.testing-shell--hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  margin-bottom: 30px;
}

.testing-shell--hero .testing-copy h1 {
  margin-top: 10px;
}

.testing-feature-grid--balanced article {
  min-height: 220px;
}


.concierge-index {
  align-content: start;
}

.concierge-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.concierge-route-grid .policy-section {
  min-height: 0;
  padding: 0;
}

.concierge-route-band {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.concierge-route-band h2 {
  margin-bottom: 0;
}

.page-contact .content-card:first-child {
  background:
    radial-gradient(circle at top left, rgba(255, 193, 151, 0.14), transparent 28%),
    linear-gradient(152deg, rgba(73, 31, 18, 0.98) 0%, rgba(39, 17, 10, 0.98) 100%);
}

.quality-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: stretch;
}

.quality-dashboard__hero,
.quality-dashboard__rail {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.15);
  box-shadow: var(--shadow-soft);
}

.quality-dashboard__hero {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 170, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 120, 32, 0.14), transparent 30%),
    linear-gradient(150deg, rgba(92, 41, 22, 0.98) 0%, rgba(43, 18, 10, 0.98) 100%);
}

.quality-dashboard__hero h1 {
  margin: 14px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.quality-dashboard__hero p {
  max-width: 60ch;
  color: rgba(255, 231, 214, 0.76);
  font-size: 15px;
  line-height: 1.76;
}

.quality-dashboard__rail {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 168, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(57, 24, 14, 0.98) 0%, rgba(28, 12, 7, 0.98) 100%);
}

.quality-dashboard__meter {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.03) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.quality-dashboard__meter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #ffe0c6;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.quality-dashboard__meter strong {
  display: block;
  margin-bottom: 8px;
  color: #fff9f5;
  font-size: 20px;
}

.quality-dashboard__meter p {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.quality-protocol-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.quality-protocol-strip article,
.quality-board__feature,
.quality-board__stack,
.quality-board__stack div {
  border-radius: 28px;
  border: 1px solid rgba(255, 186, 123, 0.14);
}

.quality-protocol-strip article {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.03) 100%);
}

.quality-protocol-strip strong,
.quality-board__stack strong {
  display: block;
  margin-bottom: 8px;
  color: #fff9f5;
  font-size: 18px;
}

.quality-protocol-strip p,
.quality-board__feature p,
.quality-board__stack p {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.68;
}

.quality-board {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
}

.quality-board__feature,
.quality-board__stack {
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.quality-board__feature--warm {
  background:
    radial-gradient(circle at top left, rgba(255, 205, 168, 0.2), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 122, 36, 0.14), transparent 30%),
    linear-gradient(150deg, rgba(103, 49, 28, 0.98) 0%, rgba(55, 25, 14, 0.98) 100%);
}

.quality-board__feature h2 {
  margin: 14px 0 14px;
}

.quality-board__stack {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 190, 148, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(58, 24, 14, 0.98) 0%, rgba(32, 13, 8, 0.98) 100%);
}

.quality-board__stack div {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.06) 0%, rgba(255, 248, 243, 0.03) 100%);
}

.concierge-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.concierge-hero-card__copy,
.concierge-hero-card__routes {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.15);
  box-shadow: var(--shadow-soft);
}

.concierge-hero-card__copy {
  display: grid;
  align-content: center;
  gap: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 194, 149, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 126, 34, 0.14), transparent 30%),
    linear-gradient(148deg, rgba(108, 50, 28, 0.98) 0%, rgba(58, 26, 15, 0.98) 100%);
}

.concierge-hero-card__copy h1 {
  margin: 14px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.concierge-hero-card__copy p {
  max-width: 58ch;
  color: rgba(255, 231, 214, 0.78);
  font-size: 15px;
  line-height: 1.74;
}

.concierge-hero-card__routes {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 222, 199, 0.24), transparent 26%),
    linear-gradient(160deg, rgba(248, 228, 208, 0.98) 0%, rgba(221, 146, 87, 0.34) 100%);
}

.route-card {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(84, 39, 22, 0.1) 0%, rgba(84, 39, 22, 0.04) 100%);
  border: 1px solid rgba(126, 60, 31, 0.1);
}

.route-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #6f351f;
  font-size: 13px;
  font-weight: 800;
  background: rgba(111, 53, 31, 0.1);
}

.route-card strong,
.concierge-journey-strip__grid strong,
.concierge-support-dock__links a {
  color: #4f2818;
}

.route-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.route-card p {
  margin: 0 0 14px;
  color: rgba(79, 40, 24, 0.78);
  font-size: 14px;
  line-height: 1.62;
}

.route-card a {
  color: #6f351f;
  font-weight: 700;
  text-decoration: none;
}

.concierge-journey-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  padding-top: 28px;
}

.concierge-journey-strip article,
.concierge-support-dock {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 184, 118, 0.14), transparent 24%),
    linear-gradient(150deg, rgba(69, 30, 17, 0.98) 0%, rgba(36, 15, 9, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.concierge-journey-strip h2 {
  margin: 14px 0 0;
}

.concierge-journey-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.concierge-journey-strip__grid div {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.03) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.concierge-journey-strip__grid p {
  margin: 6px 0 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.concierge-support-dock {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.concierge-support-dock__intro h2 {
  margin: 14px 0 0;
}

.concierge-support-dock__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.concierge-support-dock__links a {
  display: block;
  padding: 18px 20px;
  border-radius: 22px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.concierge-support-dock__links a:hover {
  color: #fff2e5;
  background: linear-gradient(180deg, rgba(255, 149, 72, 0.16) 0%, rgba(255, 149, 72, 0.08) 100%);
  border-color: rgba(255, 193, 151, 0.24);
}

.contact-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.contact-hero-card__primary,
.contact-hero-card__rail,
.contact-channel-card {
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  box-shadow: var(--shadow-soft);
}

.contact-hero-card__primary {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 232, 212, 0.44), transparent 28%),
    linear-gradient(152deg, rgba(250, 236, 222, 0.98) 0%, rgba(224, 144, 83, 0.4) 100%);
  border-color: rgba(255, 193, 151, 0.24);
  color: #472315;
}

.contact-hero-card__primary h1 {
  margin: 14px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #472315;
}

.contact-hero-card__primary p,
.contact-hero-card__primary .link-pill {
  color: #4a2416;
}

.contact-hero-card__primary .quality-pill {
  color: #542c1a;
  background: linear-gradient(180deg, rgba(255, 186, 123, 0.18) 0%, rgba(255, 186, 123, 0.1) 100%);
  border-color: rgba(183, 92, 42, 0.16);
}

.contact-hero-card__primary .eyebrow {
  color: #6a341f;
  background: rgba(255, 140, 59, 0.14);
  border-color: rgba(201, 102, 49, 0.12);
}

.contact-hero-card__rail {
  display: grid;
  gap: 16px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 191, 151, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(94, 43, 24, 0.98) 0%, rgba(57, 25, 15, 0.98) 100%);
}

.contact-hero-card__rail article {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.contact-hero-card__rail strong {
  display: block;
  margin-bottom: 8px;
  color: #fff9f5;
  font-size: 18px;
}

.contact-hero-card__rail p {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-channel-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 182, 116, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(71, 31, 18, 0.98) 0%, rgba(35, 15, 8, 0.98) 100%);
}

.contact-channel-card h3 {
  margin: 0 0 12px;
}

.contact-message-board {
  background:
    radial-gradient(circle at top left, rgba(255, 179, 110, 0.12), transparent 24%),
    linear-gradient(150deg, rgba(65, 28, 16, 0.98) 0%, rgba(31, 13, 8, 0.98) 100%);
}

.contact-message-board__intro h2 {
  margin: 14px 0 18px;
}

.legal-frame {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.legal-frame__rail,
.legal-frame__document {
  display: grid;
  gap: 20px;
}

.legal-frame__rail {
  position: sticky;
  top: 24px;
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  background:
    linear-gradient(145deg, rgba(35, 17, 10, 0.98) 0%, rgba(77, 36, 20, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.legal-frame__rail h1 {
  margin: 14px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.legal-frame__rail p {
  color: rgba(255, 231, 214, 0.76);
  font-size: 15px;
  line-height: 1.74;
}

.legal-frame__nav {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.legal-frame__nav a {
  padding: 14px 16px;
  border-radius: 18px;
  color: rgba(255, 240, 229, 0.86);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.03) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.legal-frame__nav a:hover {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 149, 72, 0.16) 0%, rgba(255, 149, 72, 0.08) 100%);
}

.legal-document-card {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 110, 0.14), transparent 26%),
    linear-gradient(150deg, rgba(59, 26, 15, 0.98) 0%, rgba(30, 13, 8, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.legal-document-card h2 {
  margin: 0 0 16px;
}

.legal-document-card p {
  max-width: 74ch;
}

.legal-document-card--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-shell {
  display: grid;
  gap: 24px;
  padding: 22px 0 8px;
}

.faq-shell__intro {
  max-width: 760px;
}

.faq-shell__intro h1 {
  margin: 14px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.faq-shell__intro p {
  color: rgba(255, 231, 214, 0.74);
  font-size: 15px;
  line-height: 1.74;
}

.faq-shell__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-shell__topics a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff7f1;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.12) 0%, rgba(255, 248, 243, 0.06) 100%);
  border: 1px solid rgba(255, 193, 151, 0.16);
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 28px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 181, 111, 0.14), transparent 24%),
    linear-gradient(150deg, rgba(62, 27, 15, 0.98) 0%, rgba(33, 14, 8, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  padding: 24px 26px;
  color: #fff9f5;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  cursor: pointer;
}

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

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: rgba(255, 231, 214, 0.74);
  font-size: 15px;
  line-height: 1.74;
}

.policy-document-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.policy-document-shell__hero,
.policy-document-shell__links {
  padding: 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 186, 123, 0.14);
  box-shadow: var(--shadow-soft);
}

.policy-document-shell__hero h1 {
  margin: 14px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.policy-document-shell__hero p {
  color: rgba(255, 231, 214, 0.76);
  font-size: 15px;
  line-height: 1.74;
}

.policy-document-shell__links {
  display: grid;
  gap: 18px;
  align-content: start;
}

.policy-document-shell__links nav {
  display: grid;
  gap: 12px;
}

.policy-document-shell__links a {
  color: rgba(255, 241, 232, 0.86);
  text-decoration: none;
}

.policy-document-shell__links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.policy-document-body {
  padding-top: 4px;
}

.policy-document-shell--privacy .policy-document-shell__hero {
  background:
    radial-gradient(circle at top left, rgba(255, 206, 168, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(88, 40, 23, 0.98) 0%, rgba(42, 18, 10, 0.98) 100%);
}

.policy-document-shell--privacy .policy-document-shell__links {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 173, 0.2), transparent 26%),
    linear-gradient(160deg, rgba(247, 229, 211, 0.96) 0%, rgba(211, 132, 77, 0.28) 100%);
}

.policy-document-shell--privacy .policy-document-shell__links,
.policy-document-shell--privacy .policy-document-shell__links a,
.policy-document-shell--privacy .policy-document-shell__links h2 {
  color: #4f2818;
}

.policy-document-shell--terms .policy-document-shell__hero {
  background:
    radial-gradient(circle at top right, rgba(255, 186, 123, 0.18), transparent 24%),
    linear-gradient(150deg, rgba(69, 31, 18, 0.98) 0%, rgba(32, 14, 8, 0.98) 100%);
}

.policy-document-shell--terms .policy-document-shell__links {
  background:
    radial-gradient(circle at top right, rgba(255, 169, 100, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(80, 35, 20, 0.98) 0%, rgba(35, 15, 8, 0.98) 100%);
}

.policy-document-shell--shipping .policy-document-shell__hero {
  background:
    radial-gradient(circle at top left, rgba(255, 199, 159, 0.22), transparent 28%),
    linear-gradient(152deg, rgba(250, 234, 218, 0.96) 0%, rgba(214, 132, 73, 0.34) 100%);
  color: #472315;
}

.policy-document-shell--shipping .policy-document-shell__hero h1,
.policy-document-shell--shipping .policy-document-shell__hero p,
.policy-document-shell--shipping .policy-document-shell__hero .quality-pill {
  color: #4a2416;
}

.policy-document-shell--shipping .policy-document-shell__links {
  background:
    radial-gradient(circle at top right, rgba(255, 184, 118, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(75, 33, 19, 0.98) 0%, rgba(34, 15, 8, 0.98) 100%);
}

.policy-document-shell--refund .policy-document-shell__hero {
  background:
    radial-gradient(circle at top right, rgba(255, 192, 144, 0.18), transparent 24%),
    linear-gradient(150deg, rgba(92, 43, 24, 0.98) 0%, rgba(41, 18, 10, 0.98) 100%);
}

.policy-document-shell--refund .policy-document-shell__links {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 170, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(61, 27, 15, 0.98) 0%, rgba(29, 12, 7, 0.98) 100%);
}

.page-legal .content-card > p,
.page-legal .policy-section > p,
.page-privacy-policy .content-card > p,
.page-privacy-policy .policy-section > p,
.page-terms-of-service .content-card > p,
.page-terms-of-service .policy-section > p,
.page-shipping-policy .content-card > p,
.page-shipping-policy .policy-section > p,
.page-refund-policy .content-card > p,
.page-refund-policy .policy-section > p,
.page-refund-and-returns-policy .content-card > p,
.page-refund-and-returns-policy .policy-section > p {
  max-width: 70ch;
}

.page-legal .policy-grid,
.page-privacy-policy .policy-grid,
.page-terms-of-service .policy-grid,
.page-shipping-policy .policy-grid,
.page-refund-policy .policy-grid,
.page-refund-and-returns-policy .policy-grid {
  align-items: start;
}

.page-panel h1,
.detail-copy h1,
.cart-shell h1,
.checkout-shell h1 {
  margin: 16px 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-panel p,
.detail-copy p,
.cart-empty p,
.checkout-shell p,
.detail-summary {
  color: rgba(255, 231, 214, 0.76);
  line-height: 1.76;
}

.page-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ── Product Detail Page ──────────────────────────────────────────────── */
.product-breadcrumb {
  padding: clamp(20px, 3vw, 32px) clamp(24px, 5vw, 60px);
  font-size: 0.78rem;
  color: var(--cream-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-breadcrumb a {
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.product-breadcrumb a:hover { color: var(--accent-text); }
.product-breadcrumb span[aria-hidden] { opacity: 0.4; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: 0 clamp(24px, 5vw, 60px) clamp(60px, 8vw, 100px);
}
.product-detail-img-wrap {
  background: var(--bg-soft);
  border-radius: var(--radius-lg, 32px);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-detail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-detail-img-wrap:hover .product-detail-img {
  transform: scale(1.04);
}
.product-detail-trust {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--cream-muted);
  background: rgba(255,246,239,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 6px 10px;
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.product-detail-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.product-detail-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent-text);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.product-detail-price .woocommerce-Price-amount { color: inherit; }
.product-detail-desc { margin-bottom: 28px; }
.product-detail-desc p {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.8;
}
.product-detail-actions { margin-bottom: 16px; }
.product-detail-actions .single_add_to_cart_button {
  width: 100%;
  background: var(--accent) !important;
  color: var(--bg) !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 16px 28px !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  letter-spacing: 0.01em !important;
  min-height: 54px !important;
}
.product-detail-actions .single_add_to_cart_button:hover {
  background: var(--accent-bright, #ff8533) !important;
  transform: translateY(-2px) !important;
}
.product-detail-secondary {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.product-sec-link {
  font-size: 0.82rem;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.product-sec-link:hover { color: var(--accent-text); }
.product-research-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,246,239,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 18px;
}
.product-research-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cream-muted);
  opacity: 0.6;
}
.product-research-note p {
  font-size: 0.76rem;
  color: rgba(255,248,243,0.35);
  line-height: 1.7;
  margin: 0;
}
.product-research-note a {
  color: rgba(255,106,0,0.5);
  text-decoration: none;
}
.product-research-note a:hover { color: var(--accent-text); }
@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* Related section */
.related-section {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}
.related-inner {
  padding: 0 clamp(24px, 5vw, 60px);
}
.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}
.related-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-heading);
  margin: 10px 0 0;
  line-height: 1.1;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 32px;
}

.cart-items,
.checkout-summary {
  display: grid;
  gap: 16px;
}

.cart-item,
.checkout-line {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.08) 0%, rgba(255, 249, 244, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.11);
}

.cart-item img {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-item-copy h2,
.checkout-shell h2 {
  margin: 0 0 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.04;
}

.cart-item-copy h2 a {
  color: #fff8f3;
  text-decoration: none;
}

.cart-item-copy h2 a:hover {
  color: #fff;
}

.cart-item-copy p,
.cart-summary p,
.checkout-line span {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.qty-button,
.remove-button {
  min-height: 36px;
  min-width: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff8f3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.remove-button {
  min-width: auto;
}

.cart-summary,
.checkout-shell form {
  display: grid;
  gap: 18px;
}

.cart-summary .button,
.checkout-shell .button {
  min-height: 52px;
}

.summary-stack {
  display: grid;
  gap: 16px;
}

.summary-caption {
  color: rgba(255, 231, 214, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.summary-note,
.checkout-note,
.cart-recommendations,
.checkout-aside-section {
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.summary-note strong,
.checkout-note strong,
.checkout-aside-section strong {
  display: block;
  margin-bottom: 6px;
  color: #fff8f3;
  font-size: 15px;
}

.summary-note p,
.checkout-note p,
.checkout-aside-section p {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.64;
}

.cart-recommendations h2,
.checkout-aside-section h2 {
  margin: 0 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.04;
}

.cart-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.cart-recommendations-grid .product-card {
  border-radius: 26px;
}

.cart-recommendations-grid .product-media {
  padding: 18px 18px 14px;
}

.cart-recommendations-grid .product-body {
  padding: 8px 18px 18px;
}

.cart-recommendations-grid .product-body h3 {
  min-height: 0;
  font-size: 20px;
}

.checkout-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
}

.checkout-progress span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.1) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 193, 151, 0.14);
  color: rgba(255, 240, 229, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff8f3;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 190, 145, 0.08);
}

.summary-line strong {
  font-size: 20px;
}

.summary-line span {
  color: rgba(255, 235, 222, 0.74);
}

.summary-stack .summary-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.checkout-fields label,
.checkout-full label {
  display: grid;
  gap: 8px;
  color: rgba(255, 231, 214, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.checkout-fields input,
.checkout-fields select,
.checkout-full input,
.checkout-full textarea {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 248, 243, 0.94);
  border: 1px solid rgba(255, 168, 96, 0.12);
}

.checkout-full textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.checkout-manual-details {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.1) 0%, rgba(255, 248, 243, 0.05) 100%);
  border: 1px solid rgba(255, 196, 154, 0.14);
}

.checkout-manual-details strong {
  display: block;
  color: #fff8f3;
  font-size: 17px;
}

.checkout-manual-details > p {
  margin: 0;
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.checkout-summary-images {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.checkout-summary-card {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 190, 145, 0.08);
}

.checkout-summary-card:last-child {
  border-bottom: 0;
}

.checkout-summary-card img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 28px rgba(12, 5, 2, 0.16);
}

.checkout-summary-card strong {
  color: #fff8f3;
  font-size: 15px;
}

.checkout-summary-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 231, 214, 0.68);
  font-size: 13px;
}

.checkout-summary-card-price {
  color: #ffd8bb;
  font-size: 15px;
  font-weight: 800;
}

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

.checkout-choice {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.checkout-choice strong {
  color: #fff8f3;
  font-size: 15px;
}

.checkout-choice span {
  color: rgba(255, 231, 214, 0.72);
  font-size: 14px;
  line-height: 1.58;
}

.checkout-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkout-consent p {
  margin: 0;
  color: rgba(255, 231, 214, 0.74);
  font-size: 14px;
  line-height: 1.62;
}

.page-faq .page-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 197, 147, 0.2), transparent 26%),
    linear-gradient(150deg, rgba(82, 39, 22, 0.98) 0%, rgba(44, 21, 12, 0.98) 100%);
}

.page-thank-you .page-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 211, 170, 0.22), transparent 26%),
    linear-gradient(150deg, rgba(99, 49, 28, 0.98) 0%, rgba(54, 24, 14, 0.98) 100%);
}

.page-error .page-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 177, 108, 0.16), transparent 24%),
    linear-gradient(150deg, rgba(60, 28, 17, 0.98) 0%, rgba(30, 13, 8, 0.98) 100%);
}

.page-hero .inline-link-row,
.page-panel .intro-badges,
.page-panel .page-panel-actions {
  position: relative;
  z-index: 1;
}

.cart-empty {
  text-align: center;
  padding: 28px 0 8px;
}

@media (max-width: 1220px) {
  .product-grid,
  .testing-shell,
  .quality-dashboard,
  .concierge-hero-card,
  .concierge-journey-strip,
  .concierge-support-dock,
  .contact-hero-card,
  .legal-frame,
  .policy-document-shell,
  .catalog-intro-band,
  .detail-layout,
  .cart-layout,
  .checkout-layout,
  .page-hero,
  .policy-grid,
  .testing-feature-grid,
  .help-feature-grid,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .testing-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .quality-protocol-strip,
  .concierge-journey-strip__grid,
  .contact-channel-grid,
  .legal-document-card--grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 16px 22px 14px;
  }

  .nav-actions {
    justify-content: center;
  }

  .product-grid,
  .catalog-group__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-signal-board__grid,
  .concierge-support-dock__links {
    grid-template-columns: 1fr;
  }

  .testing-meta {
    grid-template-columns: 1fr;
  }

  .brand-logo-frame,
  .footer-logo-frame {
    width: 320px;
    height: 96px;
  }

  .testing-shell-compact {
    grid-template-columns: 1fr;
  }

  .testing-shell-compact .testing-points,
  .testing-shell-compact .testing-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .footer-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-slideshow {
    height: 390px;
  }

  .intro-section,
  .range-section,
  .testing-section {
    padding-top: 58px;
  }

  .intro-shell h1,
  .section-heading h2,
  .testing-copy h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .intro-actions,
  .product-actions {
    flex-direction: column;
  }

  .button,
  .nav-pill {
    width: 100%;
  }

  .product-grid,
  .catalog-group__grid,
  .testing-badges,
  .footer-links,
  .cart-recommendations-grid,
  .checkout-choice-grid {
    grid-template-columns: 1fr;
  }

  .shop-signal-board__grid,
  .quality-protocol-strip,
  .quality-board,
  .concierge-journey-strip__grid,
  .contact-channel-grid,
  .concierge-support-dock__links,
  .legal-document-card--grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 22px;
  }

  .testing-shell {
    padding: 24px;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .catalog-intro-band__links {
    justify-content: flex-start;
  }

  .shop-signal-board,
  .quality-dashboard__hero,
  .quality-dashboard__rail,
  .concierge-hero-card__copy,
  .concierge-hero-card__routes,
  .contact-hero-card__primary,
  .contact-hero-card__rail,
  .legal-frame__rail,
  .legal-document-card,
  .policy-document-shell__hero,
  .policy-document-shell__links,
  .faq-item summary,
  .faq-item p {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand-logo-frame,
  .footer-logo-frame {
    width: 270px;
    height: 82px;
  }

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

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .cart-item,
  .checkout-line {
    grid-template-columns: 1fr;
  }
}

/* ── Site layout wrapper (non-semantic div — page templates own the <main>) ── */
body.everwell-site .site-main {
  position: relative;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
}

/* ── Sticky header enforcement — never let WooCommerce or page CSS override ── */
/* These rules are intentionally high-specificity to win against WooC defaults */
.site-header,
.woocommerce-page .site-header,
.woocommerce .site-header,
body.woocommerce .site-header,
body.woocommerce-page .site-header,
body.woocommerce-cart .site-header,
body.woocommerce-checkout .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
}

/* Kill any WooCommerce-injected top margin on page wrappers */
body.woocommerce .site-main,
body.woocommerce-page .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ── Clean WooCommerce page header (cart, checkout) ────────────────────────── */
.wc-page-header {
  padding: clamp(32px, 4vw, 52px) 0 clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.wc-page-header .eyebrow {
  display: block;
  font: 500 0.72rem/1 'Inter', sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 10px;
}
.wc-page-header h1 {
  font: 400 clamp(2rem, 4vw, 3.2rem)/1.08 'Fraunces', Georgia, serif;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.02em;
}

/* FIX 2 — Suppress WooCommerce's auto-injected page title on cart
   (page-cart.php renders its own eyebrow + h1 inside .wc-page-header) */
.woocommerce-cart .entry-title,
.woocommerce-cart h1.page-title,
.woocommerce-cart .woocommerce-page-title { display: none !important; }

/* Give cart page-shell breathing room below the header */
.woocommerce-cart .page-shell { padding-top: clamp(40px, 5vw, 60px); }

/* WooCommerce sometimes adds a notices wrapper above content — keep it in flow */
body.everwell-site .woocommerce-notices-wrapper {
  padding-top: 0;
  margin-top: 0;
}

body.everwell-site .entry-content > *:first-child {
  margin-top: 0;
}

body.everwell-site .entry-content > *:last-child {
  margin-bottom: 0;
}

body.everwell-site .entry-content p,
body.everwell-site .entry-content li {
  color: rgba(255, 231, 214, 0.74);
  font-size: 15px;
  line-height: 1.78;
}

body.everwell-site .entry-content h2,
body.everwell-site .entry-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.03em;
  color: #fff8f3;
}

body.everwell-site .entry-content a {
  color: #ffd6ba;
}

body.everwell-site .entry-content a:hover {
  color: #fff8f3;
}

body.everwell-site .woocommerce-message,
body.everwell-site .woocommerce-info,
body.everwell-site .woocommerce-error {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff8f3;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.1) 0%, rgba(255, 248, 243, 0.05) 100%);
  border: 1px solid rgba(255, 196, 154, 0.14);
}

body.everwell-site .woocommerce-message a,
body.everwell-site .woocommerce-info a,
body.everwell-site .woocommerce-error a {
  color: #ffd6ba;
}

body.everwell-site .woocommerce form .form-row input.input-text,
body.everwell-site .woocommerce form .form-row textarea,
body.everwell-site .woocommerce form .form-row select,
body.everwell-site .woocommerce-page form .form-row input.input-text,
body.everwell-site .woocommerce-page form .form-row textarea,
body.everwell-site .woocommerce-page form .form-row select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 248, 243, 0.94);
  border: 1px solid rgba(255, 168, 96, 0.12);
}

body.everwell-site .woocommerce form .form-row textarea,
body.everwell-site .woocommerce-page form .form-row textarea {
  min-height: 140px;
  padding-top: 14px;
}

body.everwell-site .woocommerce table.shop_table,
body.everwell-site .woocommerce-page table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 196, 154, 0.12);
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
}

body.everwell-site .woocommerce table.shop_table th,
body.everwell-site .woocommerce table.shop_table td,
body.everwell-site .woocommerce-page table.shop_table th,
body.everwell-site .woocommerce-page table.shop_table td {
  padding: 18px 16px;
  border-color: rgba(255, 190, 145, 0.08);
  color: rgba(255, 231, 214, 0.82);
}

body.everwell-site .woocommerce a.remove {
  color: #fff8f3 !important;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

body.everwell-site .woocommerce a.remove:hover {
  background: #ff6a00;
}

body.everwell-site .woocommerce .quantity .qty {
  min-height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 168, 96, 0.12);
  background: rgba(255, 248, 243, 0.94);
  color: var(--text);
}

body.everwell-site .woocommerce a.button,
body.everwell-site .woocommerce button.button,
body.everwell-site .woocommerce input.button,
body.everwell-site .woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 151, 0.16);
  background: linear-gradient(180deg, #ff9f55 0%, #ff7420 52%, #d44a00 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 221, 195, 0.18), inset 0 -1px 0 rgba(116, 35, 0, 0.2), 0 20px 38px rgba(255, 96, 0, 0.2);
}

body.everwell-site .woocommerce a.button.alt,
body.everwell-site .woocommerce button.button.alt,
body.everwell-site .woocommerce input.button.alt {
  background: linear-gradient(180deg, #ff9f55 0%, #ff7420 52%, #d44a00 100%);
}

body.everwell-site .woocommerce div.product form.cart {
  margin: 24px 0 0;
}

body.everwell-site .woocommerce div.product form.cart .variations,
body.everwell-site .woocommerce div.product form.cart .quantity {
  margin-bottom: 16px;
}

body.everwell-site .woocommerce-checkout .col2-set,
body.everwell-site .woocommerce-account .addresses,
body.everwell-site .woocommerce .cart-collaterals {
  display: grid;
  gap: 24px;
}

body.everwell-site .woocommerce .cart_totals,
body.everwell-site .woocommerce-checkout-review-order,
body.everwell-site .woocommerce-billing-fields,
body.everwell-site .woocommerce-shipping-fields {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(56, 25, 14, 0.98) 0%, rgba(28, 12, 7, 0.98) 100%);
  border: 1px solid rgba(255, 186, 123, 0.14);
  box-shadow: var(--shadow-soft);
}

body.everwell-site .woocommerce-checkout-review-order-table tfoot th,
body.everwell-site .woocommerce-checkout-review-order-table tfoot td {
  color: #fff8f3;
}

body.everwell-site .woocommerce ul.order_details {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.08) 0%, rgba(255, 248, 243, 0.04) 100%);
  border: 1px solid rgba(255, 196, 154, 0.12);
}

/* ── Hero Cinematic ─────────────────────────────────────────────────────── */

.hero-cinematic {
  position: relative;
  width: 100%;
  height: 86vh;         /* fallback */
  height: 86svh;        /* metrics strip visible on first load */
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-cinematic__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-cinematic__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: block !important; /* override [hidden] so transition works */
}

.hero-cinematic__img.is-active {
  opacity: 1;
}

/* ── JS-driven crossfade slideshow ── */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide--active {
  opacity: 1;
}

.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 5, 2, 0.95) 0%, rgba(12, 5, 2, 0.5) 40%, rgba(12, 5, 2, 0.15) 70%, transparent 100%);
}

.hero-cinematic__content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.hero-cinematic__inner {
  max-width: 720px;
}

.hero-eyebrow {
  color: var(--accent-text);
  margin-bottom: 20px;
  display: block;
}

.hero-cinematic__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 24px;
}

.hero-cinematic__headline em {
  font-style: italic;
  color: var(--accent-text);
}

.hero-cinematic__sub {
  font-size: 1.05rem;
  color: rgba(255, 248, 243, 0.7);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-cinematic__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero-cinematic {
    height: 86svh;
    height: 86vh;
    min-height: 480px;
    align-items: flex-end;
  }

  .hero-cinematic__content {
    padding-bottom: 52px;
  }
}

/* ── Scroll Animations ──────────────────────────────────────────────────── */

.anim-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1), transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger headings slightly ahead of their card children */
.section-heading.anim-ready,
.catalog-group__header.anim-ready {
  transition-delay: 0s;
}

.section-heading + * .anim-ready,
.catalog-group__header + * .anim-ready {
  transition-delay: 0.06s;
}

/* ── Carousel Pause Button ───────────────────────────────────────────────── */

.carousel-pause-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  padding: 0.375rem 1rem;
  min-height: 44px;
  background: rgba(18, 9, 6, 0.72);
  border: 1px solid rgba(255, 200, 140, 0.18);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.carousel-pause-btn:hover {
  background: rgba(18, 9, 6, 0.9);
  border-color: rgba(255, 140, 58, 0.4);
}


/* ── Legal Disclaimers ───────────────────────────────────────────────────── */

/* Product page disclaimer — below Add to Cart */
.product-disclaimer {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 140, 58, 0.05);
  border: 1px solid rgba(255, 140, 58, 0.15);
}
.product-disclaimer__primary {
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-text);
  margin: 0 0 6px;
}
.product-disclaimer__body {
  font-family: sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 248, 243, 0.55);
  line-height: 1.55;
  margin: 0;
}
.product-disclaimer__body a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Homepage disclaimer — between stats and testing section */
.homepage-disclaimer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  text-align: center;
}
.homepage-disclaimer p {
  font-family: sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 248, 243, 0.38);
  margin: 0;
  line-height: 1.5;
}
.homepage-disclaimer a {
  color: rgba(255, 140, 58, 0.6);
  text-decoration: none;
}
.homepage-disclaimer a:hover {
  color: var(--accent-text);
}

/* Shop and inner-page disclaimer */
.shop-disclaimer,
.page-disclaimer {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 200, 140, 0.08);
}
.shop-disclaimer p,
.page-disclaimer p {
  font-family: sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 248, 243, 0.4);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.shop-disclaimer a,
.page-disclaimer a {
  color: rgba(255, 140, 58, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.shop-disclaimer a:hover,
.page-disclaimer a:hover {
  color: var(--accent-text);
}

/* Footer disclaimer upgrade */
.footer-disclaimer {
  font-size: 0.72rem;
  line-height: 1.65;
}
.footer-disclaimer a {
  color: rgba(255, 140, 58, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-disclaimer a:hover {
  color: var(--accent-text);
}

/* ── Stats Strip ─────────────────────────────────────────────────────────── */

.stats-strip {
  background: transparent;
  border-top: 1px solid rgba(255, 163, 90, 0.12);
  border-bottom: 1px solid rgba(255, 163, 90, 0.12);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 2.25rem 1rem;
  border-right: 1px solid rgba(255, 200, 140, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item__value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-item__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 246, 239, 0.45);
}

/* ── Testimonials Section v2 — premium dark glass cards ─────────────────── */
/*    Design sources: hextaui/testimonial-card + beratberkayg/glassmorphism   */
/*    via 21st.dev · translated to vanilla CSS · Everwell brand applied       */

.tmt-section {
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

/* Warm radial ambient glow — cinematic dark style from UI/UX Pro Max */
.tmt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 106, 0, 0.045) 0%, transparent 72%);
  pointer-events: none;
}

.tmt-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.tmt-heading {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.025em;
}

/* ── 3-column fixed grid (no carousel) ────────────────────────────────── */
.tmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: stretch;
}

/* ── Card — glass surface with inner highlight edge ────────────────── */
/* border-primary/10 + bg-white/10 + backdrop-blur-xl → adapted to Everwell */
.tmt-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.5vw, 44px) clamp(26px, 3.5vw, 40px) clamp(32px, 4vw, 48px);
  background: rgba(255, 246, 239, 0.055);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  /* Top hairline inner glow = frosted glass edge from beratberkayg pattern */
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 239, 0.10),
    0 4px 32px rgba(12, 5, 2, 0.22);
  display: flex;
  flex-direction: column;
  /* Merged transition handles both scroll-reveal (anim-ready/anim-in) AND hover lift */
  transition:
    opacity  0.50s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.40s cubic-bezier(0.16, 1, 0.30, 1),
    border-color 0.28s ease,
    box-shadow  0.40s cubic-bezier(0.16, 1, 0.30, 1),
    background  0.28s ease;
}

/* CSS-variable stagger — each card carries --tmt-delay via inline style */
.tmt-card.anim-ready {
  transition-delay: var(--tmt-delay, 0ms);
}

/* ── Hover: translateY(-4px) + glass border brightens + warm depth glow ── */
.tmt-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  background: rgba(255, 246, 239, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 239, 0.15),
    0 24px 64px -10px rgba(255, 106, 0, 0.13),
    0 4px 28px rgba(12, 5, 2, 0.16);
}

/* ── Decorative Fraunces " — absolute top-left, behind all content ──── */
/* Adapted from hextaui right-6/top-6 placement; moved to top-left per spec */
.tmt-quote {
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 7.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.20;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Prevent the glyph descender from adding phantom height */
  display: block;
  height: 0;
  overflow: visible;
}

/* ── SVG star rating — filled in var(--accent-bright) ──────────────── */
.tmt-stars {
  display: flex;
  gap: 4px;
  /* Push stars below the decorative quote mark */
  padding-top: 54px;
  padding-left: 2px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tmt-star {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: var(--accent-bright);
}

/* ── Quote body ─────────────────────────────────────────────────────── */
.tmt-blockquote {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tmt-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.05vw, 0.9375rem);
  line-height: 1.80;
  color: rgba(255, 248, 243, 0.80);
  font-style: italic;
  margin: 0;
  padding-bottom: 1.5rem;
  flex: 1;
}

/* ── Author block — sits flush to card bottom ───────────────────────── */
.tmt-author {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 163, 90, 0.13);
  font-style: normal;
  margin-top: auto;
}

.tmt-author cite {
  font-style: normal;
}

/* Reviewer name — Fraunces serif italic (editorial, authoritative) */
.tmt-name {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* Role — small uppercase Inter in accent-text (#ff8c3a, WCAG AA on dark) */
.tmt-role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-text);
}

/* ── Responsive breakpoints ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .tmt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Third card: centre at half-width rather than stretching */
  .tmt-card:last-child {
    grid-column: 1 / -1;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .tmt-grid {
    grid-template-columns: 1fr;
  }
  .tmt-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .tmt-quote {
    font-size: 6rem;
  }
  .tmt-stars {
    padding-top: 46px;
  }
}

/* ── Purity Badge on Product Cards ──────────────────────────────────────── */

.product-media {
  position: relative;
}
.product-purity-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 2;
  padding: 0.25rem 0.625rem;
  background: rgba(18, 9, 6, 0.88);
  border: 1px solid rgba(200, 136, 42, 0.45);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ── Mobile Touch Targets ────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links a,
  .nav-pill,
  .carousel-pause-btn,
  .faq-toggle,
  .footer-links a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-links a {
    padding: 0.625rem 0.25rem;
    justify-content: flex-start;
  }
}

/* ── Footer Trust Strip ──────────────────────────────────────────────────── */

.footer-trust-strip {
  border-top: 1px solid var(--glass-border);
  padding: 1.25rem 0;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--cream-muted);
  margin: 0;
  line-height: 1.6;
}
.footer-disclaimer strong {
  color: var(--white);
}

/* ── Toast Notification ──────────────────────────────────────────────────── */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  padding: 0.875rem 1.5rem;
  background: rgba(18, 9, 6, 0.94);
  border: 1px solid rgba(200, 136, 42, 0.45);
  border-radius: 14px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  max-width: 320px;
  pointer-events: none;
}
.toast--visible {
  transform: translateY(0);
  opacity: 1;
}

/* ── Front-page FAQ Accessible Accordion ─────────────────────────────────── */

.home-faq-section {
  padding: 5rem 1.5rem;
}
.home-faq-section .section-heading {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
}
.home-faq-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.home-faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.home-faq-item:first-child {
  border-top: 1px solid var(--glass-border);
}
.faq-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 3rem 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-toggle::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-text);
  transition: transform 0.22s ease;
  line-height: 1;
}
.faq-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--cream-muted);
}

/* ── Prefers-Reduced-Motion ──────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto !important;
  }
  .hero-slide {
    transition: none !important;
    opacity: 0 !important;
  }
  .hero-slide--active {
    opacity: 1 !important;
  }
  .anim-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-glow {
    animation: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* MOBILE RESPONSIVE PASS — v1.0                                              */
/* Target: iPhone 375px–430px                                                 */
/* Rule: ALL rules inside @media (max-width: 768px) — desktop untouched      */
/* Appended to end of file — DO NOT modify rules above this line              */
/* ════════════════════════════════════════════════════════════════════════════ */

/* ── CSS variable override ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 1 — HEADER                                                         */
/* Single row: logo left | cart + hamburger right. No wrapping.               */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
  }

  .nav-shell {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    height: 60px !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
  }

  .brand,
  .brand-logo-frame {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .brand-img,
  .brand img,
  .brand-logo-frame img {
    height: 32px !important;
    width: auto !important;
    display: block !important;
    max-height: 32px !important;
    min-height: unset !important;
  }

  /* Hide desktop nav links & shop CTA button */
  .nav-primary,
  .nav-links,
  .nav-shop-btn,
  .nav-pill {
    display: none !important;
  }

  /* Right-side actions: cart + hamburger in a row */
  .nav-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .nav-cart-btn,
  .nav-pill-strong,
  .cart-button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  /* Hamburger — always visible, forced flex row */
  .nav-hamburger {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Mobile drawer — full viewport width */
  .mobile-nav,
  .nav-mobile-drawer {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }

  .mobile-nav-links a,
  .nav-mobile-drawer a {
    font-size: 1.05rem !important;
    padding: 16px 24px !important;
    border-bottom: 1px solid var(--line) !important;
    display: block !important;
  }

  /* WooCommerce pages: keep header sticky */
  .woocommerce-page .site-header,
  .woocommerce .site-header,
  body.woocommerce-cart .site-header,
  body.woocommerce-checkout .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 2 — HOMEPAGE HERO                                                  */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .hero-cinematic {
    height: 90svh !important;
    min-height: 500px !important;
    max-height: none !important;
    align-items: flex-end !important;
  }

  .hero-cinematic__content {
    padding: 0 20px 60px !important;
    width: 100% !important;
  }

  .hero-cinematic__inner {
    max-width: 100% !important;
  }

  .hero-cinematic__headline {
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
  }

  .hero-cinematic__sub {
    font-size: 0.88rem !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }

  .hero-cinematic__actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-cinematic__actions .button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .carousel-pause-btn {
    bottom: 16px !important;
    right: 16px !important;
    font-size: 0.7rem !important;
    padding: 6px 12px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 3 — STATS STRIP (2×2 grid on mobile)                               */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .stats-strip__grid,
  .stat-strip,
  dl.stats-strip__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .stat-item {
    padding: 20px 16px !important;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .stat-item:nth-child(2n) {
    border-right: none !important;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none !important;
  }

  .stat-item__value,
  .stat-item dd {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }

  .stat-item__label,
  .stat-item dt {
    font-size: 0.62rem !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 4 — INTRO SECTION                                                  */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .intro-section {
    padding: 52px 20px !important;
  }

  .intro-shell {
    padding: 0 !important;
    text-align: center !important;
  }

  .intro-shell h1,
  .intro-shell h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }

  .intro-badges {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .intro-actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .intro-actions .button {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 5 — PRODUCT GRID (2 columns on mobile)                             */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

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

  .product-card {
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .product-media img,
  .product-card img {
    width: 100% !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
  }

  .product-body {
    padding: 12px !important;
  }

  .product-body h3,
  .product-card h3 {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

  .price,
  .product-card .price {
    font-size: 1rem !important;
    display: block !important;
    margin-bottom: 10px !important;
  }

  .product-actions,
  .product-card .product-actions {
    flex-direction: column !important;
    gap: 6px !important;
  }

  .product-actions .button,
  .product-card .button {
    width: 100% !important;
    padding: 10px 8px !important;
    font-size: 0.75rem !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .product-badges,
  .card-badges,
  .prod-badges,
  .prod-badges-row {
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-bottom: 6px !important;
  }

  .quality-pill,
  .quality-pill-small,
  .prod-badge,
  .card-badge {
    font-size: 0.55rem !important;
    padding: 2px 6px !important;
  }

  /* Single-card groups: still show 2-col so lone card doesn't stretch full width */
  .catalog-group--count-1 .catalog-group__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 6 — CATALOG GROUP HEADERS                                          */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .range-section,
  .range-section.container {
    padding: 40px 20px !important;
  }

  .catalog-group {
    margin-bottom: 48px !important;
  }

  .catalog-group__header {
    padding: 0 0 20px !important;
    margin-bottom: 20px !important;
  }

  .catalog-group__header h3 {
    font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
  }

  .catalog-group__divider {
    margin-bottom: 20px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 7 — TESTING / QUALITY PAGE                                         */
/* COA table converts to vertical card layout on mobile                       */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Testing hero */
  .testing-hero-grid,
  .quality-hero-grid,
  [class*="testing-hero"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 60px 20px 40px !important;
  }

  /* Stat cards stack vertically */
  .stat-cards-col,
  .testing-stat-cards,
  .tq-stat-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* Individual stat cards — row layout on mobile */
  .tq-stat-card {
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px 18px !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  /* COA table → responsive card layout (data-label ::before) */
  .coa-table-wrap {
    overflow-x: hidden !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .coa-table {
    display: block !important;
    width: 100% !important;
  }

  .coa-table thead {
    display: none !important; /* column headers hidden; shown via ::before */
  }

  .coa-table tbody {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .coa-table tr {
    display: block !important;
    background: rgba(255, 246, 239, 0.04) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    padding: 16px !important;
  }

  .coa-table td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 6px 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 163, 90, 0.08) !important;
    font-size: 0.82rem !important;
  }

  .coa-table td:last-child {
    border-bottom: none !important;
    padding-top: 10px !important;
  }

  /* data-label attribute supplies column headers as pseudo-element */
  .coa-table td::before {
    content: attr(data-label) !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--cream-muted) !important;
    font-weight: 500 !important;
    opacity: 0.7 !important;
    flex-shrink: 0 !important;
    margin-right: 12px !important;
  }

  .coa-product {
    font-size: 0.9rem !important;
  }

  .coa-faq-section {
    padding: 52px 20px !important;
  }

  /* Testing & Quality page: hero */
  .tq-hero {
    padding: 60px 20px 48px !important;
    min-height: auto !important;
  }

  .tq-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Quality pillars grid → single column */
  .tq-pillars,
  .quality-pillars-grid,
  [class*="pillars"],
  [class*="pillar-grid"] {
    padding: clamp(52px, 8vw, 80px) 20px !important;
  }

  .tq-pillars__grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border: 1px solid var(--line) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .tq-pillar,
  [class*="pillar-card"],
  [class*="quality-card"] {
    border-radius: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 28px 20px !important;
  }

  .tq-pillar:last-child,
  [class*="pillar-card"]:last-child {
    border-bottom: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 8 — LEGAL PAGE                                                     */
/* Scrollspy nav horizontal scroll; sections single column                    */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Legal hero */
  [class*="legal-hero"],
  .legal-hero {
    padding: 52px 20px 32px !important;
    grid-template-columns: 1fr !important;
  }

  .legal-hero h1,
  [class*="legal"] h1 {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }

  /* Scrollspy nav — horizontal scroll strip */
  [class*="scrollspy"],
  [class*="legal-nav"],
  .legal-scrollnav,
  .lgl-scrollnav {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 20px !important;
  }

  [class*="scrollspy"]::-webkit-scrollbar,
  [class*="legal-nav"]::-webkit-scrollbar,
  .lgl-scrollnav::-webkit-scrollbar {
    display: none !important;
  }

  [class*="scrollspy"] a,
  [class*="legal-nav"] a,
  .lgl-scrollnav a {
    display: inline-block !important;
    white-space: nowrap !important;
    padding: 12px 16px !important;
    font-size: 0.78rem !important;
  }

  /* Legal document sections */
  [class*="legal-document"],
  [class*="doc-section"],
  [class*="legal-section"],
  .lgl-section {
    padding: 36px 20px !important;
  }

  [class*="legal-document"] h2,
  [class*="doc-section"] h2,
  .lgl-section h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  /* Policy/disclosure card grids → single column */
  [class*="policy-card-grid"],
  [class*="disclosure-grid"],
  .legal-card-grid,
  .lgl-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .legal-pills,
  .lgl-pills {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 9 — CONTACT PAGE                                                   */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Contact hero: split layout → single column */
  .ct-hero__inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 32px !important;
  }

  .ct-hero__copy {
    text-align: center !important;
    align-items: center !important;
    padding-top: 0 !important;
  }

  .ct-hero__lead {
    max-width: 100% !important;
    text-align: center !important;
  }

  .ct-pills {
    justify-content: center !important;
  }

  .ct-hero__meta {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  /* Contact form card */
  .ct-form-card {
    padding: 24px 20px !important;
    box-shadow: none !important;
    border-radius: 20px !important;
  }

  .ct-field-row {
    grid-template-columns: 1fr !important;
  }

  /* Channel cards grid → 1 column on smallest, 2 on medium-mobile */
  .ct-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .ct-card {
    border-radius: 16px !important;
    padding: 24px 20px !important;
  }

  /* Chat widget: remove header block padding, single column */
  .ew-chat-shell {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 0 !important;
  }

  .ew-chat-widget {
    height: 420px !important;
  }

  .ew-chat-suggestions {
    gap: 6px !important;
  }

  .ew-suggestion {
    font-size: 0.68rem !important;
    padding: 5px 10px !important;
  }

  /* Response strip */
  .ct-response-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  /* Channels heading */
  .ct-channels__head {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .ct-channels__sub {
    text-align: left !important;
    max-width: 100% !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 10 — SHOP PAGE                                                     */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hide any residual signal-board / intro band sections */
  .shop-signal-board,
  .shop-hero-grid,
  .catalog-intro-band {
    display: none !important;
  }

  /* Shop hero */
  .shop-hero {
    padding: 52px 20px 32px !important;
  }

  .shop-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }

  .shop-hero-badges {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 11 — FOOTER                                                        */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .footer-main {
    grid-template-columns: 1fr !important;
    padding: 48px 20px 32px !important;
    gap: 36px !important;
    align-items: start !important;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
  }

  .footer-brand-col {
    padding-bottom: 0 !important;
  }

  .footer-logo {
    height: 34px !important;
    width: auto !important;
  }

  .footer-trust-pills {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .footer-disclaimer-strip,
  .footer-trust-strip {
    padding: 20px !important;
  }

  .footer-disclaimer-strip p,
  .footer-trust-strip p,
  .footer-disclaimer {
    font-size: 0.72rem !important;
    line-height: 1.65 !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 20px !important;
    font-size: 0.7rem !important;
  }

  .footer-legal-links {
    gap: 14px !important;
    flex-wrap: wrap !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 12 — TESTIMONIALS                                                  */
/* Single column on mobile                                                    */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Override the tmt-grid responsive rules for narrower breakpoint */
  .tmt-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 20px !important;
  }

  .tmt-card:last-child {
    grid-column: auto !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .tmt-card {
    padding: 24px 20px 28px !important;
  }

  .tmt-section {
    padding: 52px 0 !important;
  }

  .tmt-header {
    padding: 0 20px !important;
  }

  /* Legacy testimonials fallback */
  .testimonials-grid,
  [class*="testimonial-grid"],
  [class*="testimonials-grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 20px !important;
  }

  [class*="testimonial-card"] {
    padding: 24px 20px !important;
  }

  [class*="testimonials-section"],
  .testimonials-section {
    padding: 52px 0 !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 13 — FAQ                                                           */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  .home-faq-section,
  [class*="faq-section"] {
    padding: 52px 0 !important;
  }

  .home-faq-section__heading,
  [class*="faq-heading"] {
    padding: 0 20px !important;
    margin-bottom: 24px !important;
  }

  .home-faq-list,
  [class*="faq-list"],
  .coa-accordion {
    padding: 0 20px !important;
  }

  .faq-toggle,
  .coa-acc-btn {
    font-size: 0.95rem !important;
    padding: 20px 0 !important;
    min-height: 44px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 14 — SINGLE PRODUCT PAGE                                           */
/* Hides ≥98% PURE badge; stacks product detail layout                        */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Remove ≥98% PURE purity badge everywhere on mobile */
  [class*="purity-badge"],
  .product-purity-badge,
  [class*="pure-badge"] {
    display: none !important;
  }

  /* Product detail layout → single column */
  .product-detail-grid,
  .detail-layout {
    grid-template-columns: 1fr !important;
    padding: 0 20px 52px !important;
    gap: 24px !important;
  }

  .product-detail-img-wrap,
  .detail-media,
  .product-detail-media {
    border-radius: 16px !important;
    padding: 20px !important;
    max-height: 320px !important;
  }

  .product-detail-title,
  .detail-copy h1,
  .product-detail-info h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }

  .product-detail-price,
  .detail-price {
    font-size: 1.6rem !important;
  }

  .product-detail-trust {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .product-trust-item {
    font-size: 0.7rem !important;
    padding: 5px 8px !important;
  }

  .product-detail-secondary {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .product-breadcrumb,
  .single-product-breadcrumb {
    padding: 16px 20px !important;
    font-size: 0.74rem !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* SECTION 15 — GLOBAL MOBILE SPACING & OVERFLOWS                             */
/* ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Prevent horizontal overflow globally */
  body {
    overflow-x: hidden !important;
  }

  section {
    overflow-x: hidden !important;
  }

  /* Container padding normalisation */
  .container,
  [class*="-shell"],
  [class*="__inner"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Trust bar — items wrap */
  .trust-bar {
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    justify-content: center !important;
  }

  /* Eyebrow text — slightly smaller */
  .eyebrow {
    font-size: 0.6rem !important;
  }

  /* Primary/secondary buttons get proper mobile height */
  .btn--primary,
  .btn--ghost,
  .button.button-primary,
  .button.button-secondary {
    min-height: 48px !important;
    padding: 13px 20px !important;
    font-size: 0.82rem !important;
  }

  /* Process / horizontal-scroll tracks: clip on mobile */
  [class*="process-track"],
  [class*="horizontal-scroll"],
  [class*="scroll-track"] {
    overflow: hidden !important;
  }

  /* Homepage research disclaimer */
  .homepage-disclaimer {
    padding: 16px 20px !important;
    font-size: 0.78rem !important;
    text-align: center !important;
  }

  /* Generic page hero sections */
  .page-hero,
  [class*="page-hero"] {
    padding: 52px 20px !important;
  }

  /* Quality assurance / testing section on homepage */
  .testing-section {
    padding: 52px 20px !important;
  }

  .testing-shell {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    gap: 24px !important;
  }

  .testing-badges-2x2 {
    grid-template-columns: 1fr !important;
  }

  .testing-badge {
    padding: 20px !important;
  }

  /* Overflow fixes: change scroll to auto + momentum scrolling */
  .coa-table-wrap,
  [class*="table-wrap"],
  [class*="scroll-wrap"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* WooCommerce cart/checkout pages */
  .woocommerce-cart .page-shell,
  .woocommerce-checkout .page-shell {
    padding-top: clamp(32px, 5vw, 52px) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* WooCommerce tables (cart table) */
  .woocommerce table.shop_table {
    font-size: 0.82rem !important;
  }

  .woocommerce .cart_totals,
  .woocommerce-cart-form {
    width: 100% !important;
  }

  /* Trust bar badges */
  .trust-badge {
    padding: 10px 14px !important;
    font-size: 0.72rem !important;
    gap: 8px !important;
  }

  /* Stats strip on homepage */
  .stats-strip {
    padding: 0 !important;
  }

  /* Floating badges / pills in hero */
  .float-badge {
    display: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════ */
/* END MOBILE RESPONSIVE PASS                                                 */
/* ════════════════════════════════════════════════════════════════════════════ */
