:root {
  color-scheme: light;
  --white: #ffffff;
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);

  --ink: #231f1a;
  --muted: rgba(35, 31, 26, 0.62);

  /* Foil-gold palette (warm, premium, scientific) */
  --gold-0: #fff4d6;
  --gold-1: #f7e6ae;
  --gold-2: #d7b15d;
  --gold-3: #b88424;
  --gold-4: #8b5f12;

  --gold: var(--gold-2);
  --gold-soft: var(--gold-1);
  --gold-deep: var(--gold-3);
  --gold-foil: linear-gradient(
    135deg,
    var(--gold-0) 0%,
    var(--gold-2) 18%,
    var(--gold-1) 40%,
    var(--gold-3) 66%,
    var(--gold-0) 100%
  );

  --line: rgba(215, 177, 93, 0.22);
  --shadow: none;
  --shadow-soft: none;
  --ring: 0 0 0 4px rgba(215, 177, 93, 0.22);
  --radius: 18px;
  --radius-lg: 26px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  background:
    radial-gradient(
      1100px 620px at 82% 10%,
      rgba(215, 177, 93, 0.1),
      rgba(215, 177, 93, 0) 60%
    ),
    radial-gradient(
      820px 520px at 10% 30%,
      rgba(215, 177, 93, 0.06),
      rgba(215, 177, 93, 0) 55%
    ),
    var(--bg);
  color: var(--ink);
  letter-spacing: 0.2px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

/* Make custom elements participate as blocks in layout */
auryx-what,
auryx-domains,
auryx-symptoms,
auryx-philosophy,
auryx-gallery,
auryx-products,
auryx-safety,
auryx-faq,
auryx-calculator,
auryx-research {
  display: block;
}

/* Better anchor jumps with top header */
:where([id]) {
  scroll-margin-top: 16px;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: static;
  z-index: 10;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 177, 93, 0.18);
  box-shadow: none;
}

.scroll-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(215, 177, 93, 0.35);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: none;
  display: grid;
  place-items: center;
  color: rgba(35, 31, 26, 0.8);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 200ms var(--ease-out),
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
  z-index: 20;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: none;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(215, 177, 93, 0.55);
  position: relative;
  background: radial-gradient(
    16px 16px at 30% 30%,
    #fffae0,
    #f0d17a 50%,
    #d4a94e
  );
  box-shadow: none;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  opacity: 0.9;
}

.logo-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 9px 14px;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 14px;
  background: linear-gradient(90deg, #d4a94e, #fffae0, #d4a94e);
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.nav a:hover {
  color: rgba(35, 31, 26, 0.88);
}

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.3);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(35, 31, 26, 0.72);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 10px;
  cursor: pointer;
  transition:
    border-color 200ms var(--ease-out),
    color 200ms var(--ease-out),
    background 200ms var(--ease-out);
}

.lang-btn:hover {
  border-color: rgba(215, 177, 93, 0.6);
  color: rgba(35, 31, 26, 0.92);
}

.lang-btn.is-active {
  border-color: rgba(215, 177, 93, 0.85);
  background: rgba(215, 177, 93, 0.18);
  color: rgba(35, 31, 26, 0.95);
}

.nav a:hover::after {
  opacity: 0.9;
  transform: translateY(0);
}

.nav a:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn {
  text-wrap: nowrap;
  font-family: inherit;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 10px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    background 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    color 240ms var(--ease-out),
    opacity 240ms var(--ease-out);
  background: transparent;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn-primary {
  background: linear-gradient(
    120deg,
    #d4a94e 0%,
    #f0d17a 25%,
    #fffae0 50%,
    #f0d17a 75%,
    #d4a94e 100%
  );
  background-size: 200% 100%;
  color: rgba(40, 30, 12, 0.95);
  border-color: rgba(215, 177, 93, 0.7);
  box-shadow: none;
  animation: btn-shimmer 3s linear infinite;
  font-weight: 500;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-120%);
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
  animation: btn-shimmer 2s linear infinite;
}

.btn-primary:hover::before {
  opacity: 1;
  animation: shine 900ms var(--ease-out) 1;
}

.btn-outline {
  border-color: rgba(215, 177, 93, 0.6);
  color: rgba(35, 31, 26, 0.86);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 177, 93, 0.9);
  box-shadow: none;
}

.site-header .btn-outline {
  padding: 10px 18px;
}

.btn-ghost {
  border-color: rgba(215, 177, 93, 0.22);
  color: rgba(35, 31, 26, 0.65);
  background: rgba(255, 255, 255, 0);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 177, 93, 0.75);
  background: rgba(215, 177, 93, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -40% 10% auto;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(215, 177, 93, 0.16),
    rgba(215, 177, 93, 0) 70%
  );
  filter: blur(2px);
  opacity: 1;
  animation: float-blob 14s var(--ease-out) infinite;
}

.hero::after {
  inset: auto 65% -55%;
  width: 760px;
  height: 760px;
  opacity: 0.75;
  animation-duration: 18s;
  animation-direction: reverse;
}

.hero-inner {
  display: grid;
  /* grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr); */
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  padding: 110px 0 50px;
  animation: fade-up 900ms var(--ease-out) both;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.62);
  margin-bottom: 16px;
}

.hero-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(35, 31, 26, 0.66);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dna-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  --dna-rot: -45deg;
  --dna-scale: 1.5;
  --dna-x: 10%;
  --dna-y: 15%;
  transform: translate(var(--dna-x), var(--dna-y)) scale(var(--dna-scale))
    rotate(var(--dna-rot));
  transform-origin: center;
  animation: slow-rotate 90s ease-in-out infinite;
}

.dna-asset {
  width: min(820px, 70vw);
  height: 110%;
  max-width: none;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(215, 177, 93, 0.22)) sepia(1)
    saturate(2.3) hue-rotate(6deg) brightness(0.98);
  opacity: 0.75;
  mix-blend-mode: multiply;
  animation: breath-opacity 8s ease-in-out infinite;
}

.fine-lines {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.fine-lines span {
  position: absolute;
  width: 280px;
  height: 1px;
  background: rgba(215, 177, 93, 0.22);
  transform: rotate(18deg);
}

.fine-lines span:nth-child(2) {
  width: 220px;
  transform: rotate(-22deg);
  opacity: 0.6;
}

.fine-lines span:nth-child(3) {
  width: 180px;
  transform: rotate(42deg);
  opacity: 0.4;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(215, 177, 93, 0.18);
  padding: 40px 0;
  background: linear-gradient(
    180deg,
    rgba(215, 177, 93, 0),
    rgba(215, 177, 93, 0.06)
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer-note {
  color: rgba(35, 31, 26, 0.62);
  margin: 10px 0 0;
  max-width: 260px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-title {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.62);
}

.footer-links a {
  color: rgba(35, 31, 26, 0.62);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: rgba(35, 31, 26, 0.92);
}

.footer-muted {
  font-size: 13px;
  color: rgba(35, 31, 26, 0.55);
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.breath {
  animation: breath 8s ease-in-out infinite;
}

@keyframes shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes btn-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes center-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, 18px, 0) scale(1.03);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breath {
  0%,
  100% {
    opacity: 0.96;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes slow-rotate {
  0% {
    transform: translate(var(--dna-x), var(--dna-y))
      scale(calc(var(--dna-scale) * 0.98)) rotate(calc(var(--dna-rot) - 2deg));
  }
  50% {
    transform: translate(var(--dna-x), var(--dna-y)) scale(var(--dna-scale))
      rotate(calc(var(--dna-rot) + 3deg));
  }
  100% {
    transform: translate(var(--dna-x), var(--dna-y))
      scale(calc(var(--dna-scale) * 0.98)) rotate(calc(var(--dna-rot) - 2deg));
  }
}

@keyframes breath-opacity {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes camera-dolly {
  0%,
  100% {
    transform: scale(0.96) translateY(10px);
  }
  50% {
    transform: scale(1.035) translateY(-8px);
  }
}

/* ---------- Sections / Components ---------- */

/* ─── Trust / Intro ─────────────────────────────────────────────────── */
auryx-trust {
  display: block;
}

.trust-section {
  padding: 10px 0 40px;
  position: relative;
}

/* Stats bar */
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 40px;
  border-radius: 20px;
  border: 1px solid rgba(215, 177, 93, 0.2);
  background:
    radial-gradient(
      ellipse 80% 100% at 50% 0%,
      rgba(215, 177, 93, 0.08),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.trust-stat {
  flex: 1 1 120px;
  text-align: center;
  padding: 0 24px;
}

.trust-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  letter-spacing: 2px;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.trust-stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.trust-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(215, 177, 93, 0.2);
  flex-shrink: 0;
}

/* Pillars grid */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-pillar {
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(215, 177, 93, 0.14);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.trust-pillar:hover {
  border-color: rgba(215, 177, 93, 0.34);
  transform: translateY(-3px);
}

.trust-pillar-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(215, 177, 93, 0.22);
  background: rgba(215, 177, 93, 0.07);
  margin-bottom: 14px;
  color: var(--gold-deep);
}

.trust-pillar-icon svg {
  width: 18px;
  height: 18px;
}

.trust-pillar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.trust-pillar-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .trust-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-stats {
    padding: 20px 16px;
  }
  .trust-stat {
    padding: 0 12px;
  }
  .trust-stat-divider {
    display: none;
  }
  .trust-pillars {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 36px 0;
  position: relative;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.62);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.section-subtitle {
  margin: 0;
  color: rgba(35, 31, 26, 0.66);
  font-size: 16px;
  max-width: 64ch;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 700ms var(--ease-out),
    transform 900ms var(--ease-out);
}

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

.bullets {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
  color: rgba(35, 31, 26, 0.7);
}

.legal-body {
  max-width: 880px;
}

.legal-block {
  margin-bottom: 26px;
}

.legal-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 22px;
  margin: 0 0 8px;
}

.legal-text {
  margin: 0;
  color: rgba(35, 31, 26, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.bullets li {
  margin: 10px 0;
}

.what-grid,
.philo-grid,
.calc-grid,
.domains-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* Domains: wheel should be full-width (panel removed) */
.domains-layout {
  grid-template-columns: 1fr;
}

.what-card,
.philo-card,
.symptoms-card,
.safety-card,
.calc-form,
.calc-result,
.domains-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.what-card,
.philo-card {
  padding: 22px 22px;
}

.what-card--accent,
.philo-card--accent {
  background:
    radial-gradient(
      900px 320px at 10% 0%,
      rgba(215, 177, 93, 0.14),
      rgba(215, 177, 93, 0) 58%
    ),
    rgba(255, 255, 255, 0.82);
}

.what-title,
.philo-title,
.calc-block-title {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.what-text,
.philo-text {
  margin: 12px 0 0;
  color: rgba(35, 31, 26, 0.68);
}

.what-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(35, 31, 26, 0.55);
}

.philo-quote {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0.2px;
}

.philo-sign {
  margin-top: 18px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.philo-note {
  margin-top: 8px;
  color: rgba(35, 31, 26, 0.6);
}

/* Domains wheel */
.domains-wheel {
  position: relative;
  min-height: clamp(520px, 36vw, 720px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.18);
  background:
    radial-gradient(
      520px 520px at 50% 50%,
      rgba(215, 177, 93, 0.12),
      rgba(215, 177, 93, 0) 66%
    ),
    rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  box-shadow: none;
  overflow: hidden;
  width: 100%;
  /* radius of the ring - responsive so chips never overlap or go off-screen */
  --wheel-r: clamp(96px, 18vw, 220px);
  /* rotate the ring so chips don't form "flat top" pairs that easily collide */
  --wheel-rot: 30deg;
}

.domains-wheel::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(215, 177, 93, 0.18);
  opacity: 0.9;
  pointer-events: none;
}

.domains-wheel::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(215, 177, 93, 0.12);
  opacity: 0.8;
  pointer-events: none;
}

.orbit-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(
    6px 6px at 30% 30%,
    #fffae0,
    #f0d17a 50%,
    #d4a94e
  );
  box-shadow: none;
  opacity: 0.7;
  transform-origin: 0 0;
  animation: orbit-a 18s linear infinite;
  z-index: 1;
}

.orbit-dot--a {
  animation: orbit-a 20s linear infinite;
}

.orbit-dot--b {
  width: 7px;
  height: 7px;
  opacity: 0.6;
  animation: orbit-b 16s linear infinite;
}

.orbit-dot--c {
  width: 5px;
  height: 5px;
  opacity: 0.55;
  animation: orbit-c 12s linear infinite;
}

.orbit-dot--d {
  width: 6px;
  height: 6px;
  opacity: 0.5;
  animation: orbit-d 22s linear infinite;
}

.orbit-dot--e {
  width: 9px;
  height: 9px;
  opacity: 0.65;
  animation: orbit-e 26s linear infinite;
}

.orbit-dot--f {
  width: 11px;
  height: 11px;
  opacity: 0.6;
  animation: orbit-f 28s linear infinite;
}
.domain-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--chip-w, clamp(96px, 14vw, 200px));
  min-height: 70px;
  padding: clamp(10px, 1.1vw, 12px);
  border-radius: 18px;
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: none;
  transform: rotate(calc(var(--wheel-rot, 0deg) + (var(--i) * 60deg)))
    translate(var(--wheel-r))
    rotate(calc(-1 * (var(--wheel-rot, 0deg) + (var(--i) * 60deg))))
    translate(-50%, -50%);
  transform-origin: 0 0;
  cursor: pointer;
  text-align: left;
  transition:
    transform 360ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    border-color 260ms var(--ease-out);
  z-index: 2;
  touch-action: manipulation;
}

.domain-chip:hover {
  border-color: rgba(215, 177, 93, 0.55);
  box-shadow: none;
}

.domain-chip.is-active {
  border-color: rgba(215, 177, 93, 0.75);
  box-shadow: none;
}

.domain-chip:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.domain-label {
  display: block;
  font-size: clamp(8px, 0.9vw, 10px);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.35vw, 3px);
  color: rgba(35, 31, 26, 0.6);
  line-height: 1.1;
  white-space: normal;
}

.domain-name {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: 0.8px;
  line-height: 1.15;
  white-space: normal;
}

.domains-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.center-mark {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(
    22px 22px at 30% 30%,
    #fffae0,
    #f0d17a 40%,
    #d4a94e 100%
  );
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: center-spin 20s linear infinite;
}

.domains-flyout {
  position: absolute;
  left: 0;
  top: 0;
  width: min(340px, calc(100% - 24px));
  transform: translate3d(var(--flyout-x, 12px), var(--flyout-y, 12px), 0);
  border-radius: 18px;
  border: 1px solid rgba(215, 177, 93, 0.2);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: none;
  padding: 14px 14px;
  pointer-events: none;
  z-index: 4;
  will-change: transform;
}

.flyout-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flyout-name {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.flyout-pill {
  font-size: 12px;
  border-radius: 14px;
  padding: 7px 10px;
  background: rgba(215, 177, 93, 0.1);
  border: 1px solid rgba(215, 177, 93, 0.18);
  color: rgba(35, 31, 26, 0.72);
  white-space: nowrap;
}

.flyout-desc {
  margin-top: 8px;
  color: rgba(35, 31, 26, 0.62);
}

.flyout-hint {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(35, 31, 26, 0.55);
}

.domains-panel {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-kicker {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.55);
}

.panel-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.08;
}

.panel-product {
  color: rgba(35, 31, 26, 0.72);
  letter-spacing: 0.8px;
}

.panel-product span {
  font-weight: 600;
  color: rgba(35, 31, 26, 0.92);
}

.panel-text {
  margin: 0;
  color: rgba(35, 31, 26, 0.68);
}

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

/* Symptoms */
.symptoms-card,
.safety-card {
  padding: 26px 26px;
}

.chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(35, 31, 26, 0.7);
}

.chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, #fffae0, #f0d17a 50%, #d4a94e);
  box-shadow: none;
}

.symptoms-actions,
.safety-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: none;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    padding 240ms var(--ease-out);
}

.product-card.is-expanded {
  grid-column: 1 / -1;
  padding: 26px 26px;
  transform: scale(1.01);
  border-color: rgba(215, 177, 93, 0.7);
  box-shadow: none;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 177, 93, 0.55);
  box-shadow: none;
}

.product-card.is-expanded:hover {
  transform: scale(1.01);
}

.product-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.75);
  background: linear-gradient(
    120deg,
    #d4a94e 0%,
    #f0d17a 35%,
    #fffae0 50%,
    #f0d17a 65%,
    #d4a94e 100%
  );
  background-size: 200% 100%;
  color: rgba(40, 30, 12, 0.95);
  box-shadow: none;
  font-size: 12px;
  letter-spacing: 0.6px;
  padding: 6px 10px;
  cursor: pointer;
  animation: product-shimmer 2.6s linear infinite;
  transition:
    border-color 200ms var(--ease-out),
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
  font-weight: 500;
}

.product-expand:hover {
  border-color: rgba(215, 177, 93, 1);
  transform: translateY(-1px);
  box-shadow: none;
}

@keyframes product-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.product-expanded {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 2600ms var(--ease-out),
    opacity 1800ms var(--ease-out),
    transform 1800ms var(--ease-out);
  margin-top: 0;
  will-change: max-height, opacity, transform;
}

.product-card.is-expanded .product-expanded {
  opacity: 1;
  transform: translateY(0);
  margin-top: 18px;
}

.product-expanded-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.product-fullname {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.product-series {
  color: rgba(35, 31, 26, 0.6);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-peptide {
  font-size: 14px;
  color: rgba(35, 31, 26, 0.7);
}

.product-intro {
  margin: 6px 0 0;
  color: rgba(35, 31, 26, 0.68);
}

.product-expanded-block + .product-expanded-block {
  margin-top: 14px;
}

.product-expanded-title {
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.product-detail-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(35, 31, 26, 0.68);
}

.product-detail-list li {
  margin: 8px 0;
}

.product-card.is-highlight {
  border-color: rgba(215, 177, 93, 0.95);
  box-shadow: none;
  animation: card-pulse 900ms var(--ease-out) 1;
}

@keyframes card-pulse {
  0% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes orbit-a {
  from {
    transform: rotate(0deg) translate(calc(var(--wheel-r) * 0.55)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(calc(var(--wheel-r) * 0.55))
      rotate(-360deg);
  }
}

@keyframes orbit-b {
  from {
    transform: rotate(0deg) translate(calc(var(--wheel-r) * 0.78)) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translate(calc(var(--wheel-r) * 0.78))
      rotate(360deg);
  }
}

@keyframes orbit-c {
  from {
    transform: rotate(0deg) translate(calc(var(--wheel-r) * 0.95)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(calc(var(--wheel-r) * 0.95))
      rotate(-360deg);
  }
}

@keyframes orbit-d {
  from {
    transform: rotate(0deg) translate(calc(var(--wheel-r) * 0.68)) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translate(calc(var(--wheel-r) * 0.68))
      rotate(360deg);
  }
}

@keyframes orbit-e {
  from {
    transform: rotate(0deg) translate(calc(var(--wheel-r) * 1.02)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(calc(var(--wheel-r) * 1.02))
      rotate(-360deg);
  }
}

@keyframes orbit-f {
  from {
    transform: rotate(0deg) translate(calc(var(--wheel-r) * 1.02)) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translate(calc(var(--wheel-r) * 1.02))
      rotate(360deg);
  }
}

.product-brand {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.58);
}

.product-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
  margin-top: 6px;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(215, 177, 93, 0.1);
  color: rgba(35, 31, 26, 0.72);
  font-size: 12px;
}

.pill--soft {
  background: rgba(255, 255, 255, 0.7);
}

.product-desc {
  margin: 14px 0 0;
  color: rgba(35, 31, 26, 0.68);
}

.product-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  /* max-width: 920px; */
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: none;
  padding: 14px 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 6px 0;
  position: relative;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(35, 31, 26, 0.55);
  border-bottom: 2px solid rgba(35, 31, 26, 0.55);
  transform: translateY(-55%) rotate(45deg);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
  border-color: rgba(215, 177, 93, 0.85);
}

.faq-body {
  margin-top: 10px;
  color: rgba(35, 31, 26, 0.68);
}

/* Calculator */
.calc-grid {
  gap: 18px;
}

.calc-form,
.calc-result {
  padding: 22px 22px;
}

.calc-options {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.calc-accordion {
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.16);
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
}

.calc-accordion summary {
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.62);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calc-accordion summary::-webkit-details-marker {
  display: none;
}

.calc-accordion summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(35, 31, 26, 0.55);
  border-bottom: 2px solid rgba(35, 31, 26, 0.55);
  transform: rotate(45deg);
  transition:
    transform 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.calc-accordion[open] summary::after {
  transform: rotate(225deg);
  border-color: rgba(215, 177, 93, 0.85);
}

.calc-accordion .calc-group-grid {
  margin-top: 10px;
  gap: 8px;
}

.calc-accordion .check {
  padding: 8px 10px;
}

.check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.16);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-ui {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(215, 177, 93, 0.35);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  position: relative;
}

.check input:checked + .check-ui {
  background: linear-gradient(135deg, #d4a94e 0%, #f0d17a 50%, #fffae0 100%);
  border-color: rgba(215, 177, 93, 0.85);
}

.check input:checked + .check-ui::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(29, 20, 6, 0.95);
  border-bottom: 2px solid rgba(29, 20, 6, 0.95);
  transform: rotate(45deg);
}

.check-label {
  color: rgba(35, 31, 26, 0.72);
}

.calc-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-disclaimer {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(35, 31, 26, 0.55);
}

.calc-cards {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.calc-note {
  border-radius: 16px;
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(215, 177, 93, 0.08);
  padding: 12px 12px;
  color: rgba(35, 31, 26, 0.68);
}

.calc-group {
  display: grid;
  gap: 10px;
}

.calc-group-title {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.55);
}

.calc-group-grid {
  display: grid;
  gap: 10px;
}

.mini-card {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.mini-card:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 177, 93, 0.6);
  box-shadow: none;
}

.mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-name {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.mini-pill {
  font-size: 12px;
  border-radius: 14px;
  padding: 7px 10px;
  background: rgba(215, 177, 93, 0.1);
  border: 1px solid rgba(215, 177, 93, 0.18);
  color: rgba(35, 31, 26, 0.72);
  white-space: nowrap;
}

.mini-desc {
  margin-top: 8px;
  color: rgba(35, 31, 26, 0.62);
}

.mini-why {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(35, 31, 26, 0.55);
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Intentional mobile/tablet header layout:
     row 1: logo + lang + CTA
     row 2: nav */
  .logo {
    order: 1;
  }

  .lang-switch {
    order: 2;
  }

  .site-header .btn.btn-outline {
    order: 3;
    padding: 11px 18px;
    letter-spacing: 3px;
  }

  .nav {
    order: 4;
    flex-basis: 100%;
    margin-top: 8px;
    gap: 10px;
  }

  .nav a {
    padding: 8px 12px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
  }

  .hero-content {
    max-width: 560px;
    padding-right: 0;
    padding: 88px 0 110px;
  }

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

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .footer-cta {
    justify-content: center;
  }

  .section {
    padding: 30px 0;
  }

  .what-grid,
  .philo-grid,
  .calc-grid,
  .domains-layout {
    grid-template-columns: 1fr;
  }

  .domains-wheel {
    min-height: 520px;
  }

  .domain-chip {
    min-height: 72px;
  }

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

@media (max-width: 560px) {
  .hero {
    padding: 0;
  }
  .hero-title {
    padding-right: 20%;
  }

  .hero-subtitle {
    padding-right: 25%;
  }
  .hero-visual {
    inset: 0;
  }

  .dna-wrap {
    justify-content: flex-end;
    --dna-scale: 1.2;
    --dna-x: 20%;
    --dna-rot: 0deg;
    --dna-y: -10%;
  }

  .hero-content {
    padding: 0;
    margin: 0 auto;
    text-align: left;
  }

  .hero-inner {
    justify-items: center;
  }

  .logo-text {
    letter-spacing: 4px;
  }

  .btn {
    width: 100%;
  }

  .product-grid {
    /* grid-template-columns: 1fr; */
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .domains-wheel {
    min-height: 0;
    height: min(560px, 92vw);
  }

  .domain-chip {
    min-height: 66px;
    border-radius: 16px;
  }

  .domain-label {
    letter-spacing: 2px;
  }

  /* Compact product cards on mobile */
  .product-card {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .product-card.is-expanded {
    padding: 18px 18px;
  }

  .product-expand {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 5px 8px;
  }

  .product-name {
    font-size: 22px;
  }

  .product-meta {
    margin-top: 8px;
  }

  .pill {
    padding: 6px 8px;
    font-size: 11px;
  }

  .product-desc {
    margin-top: 10px;
    font-size: 14px;
  }

  .product-actions {
    margin-top: 12px;
    gap: 8px;
  }

  /* Mobile usability cleanup */
  .section {
    padding: 30px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .nav a {
    letter-spacing: 1px;
    font-size: 11px;
    padding: 7px 10px;
  }

  .section-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .section-subtitle {
    font-size: 14px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .calc-form,
  .calc-result {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .calc-options {
    gap: 8px;
  }

  .calc-actions {
    flex-direction: column;
  }

  .calc-actions .btn {
    width: 100%;
  }

  .calc-group-title {
    letter-spacing: 3px;
  }

  .mini-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-pill {
    white-space: normal;
  }
}

/* --------- Products Section (redesign with images) --------- */
.pd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.pd-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(215, 177, 93, 0.14);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    transform 360ms var(--ease-out),
    border-color 360ms var(--ease-out);
}

.pd-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 177, 93, 0.45);
}

.pd-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Image zone */
.pd-img-zone {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      ellipse 100% 80% at 50% 30%,
      rgba(215, 177, 93, 0.1),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(247, 230, 174, 0.18) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.pd-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(215, 177, 93, 0.13),
    transparent 65%
  );
  pointer-events: none;
}

.pd-img {
  height: 190px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(160, 120, 40, 0.18));
  transition:
    transform 400ms var(--ease-out),
    filter 400ms var(--ease-out);
  user-select: none;
  -webkit-user-drag: none;
}

.pd-card:hover .pd-img {
  transform: translateY(6px) scale(1.03);
  filter: drop-shadow(0 20px 40px rgba(160, 120, 40, 0.26));
}

.pd-index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  color: rgba(215, 177, 93, 0.22);
  user-select: none;
  z-index: 2;
}

/* Content zone */
.pd-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 22px 22px;
}

/* Gold accent bar */
.pd-accent-bar {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 177, 93, 0.5),
    transparent
  );
  margin-bottom: 18px;
  transition: opacity 360ms var(--ease-out);
}

.pd-card:hover .pd-accent-bar {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 177, 93, 0.85),
    transparent
  );
}

/* Meta row */
.pd-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pd-brand {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.4);
}

.pd-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: 1px;
}

.pd-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 10px;
  opacity: 0.85;
}

/* Tags */
.pd-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pd-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 12px;
  border: 1px solid rgba(215, 177, 93, 0.2);
  background: rgba(215, 177, 93, 0.07);
  color: rgba(35, 31, 26, 0.7);
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.pd-tag--mol {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(215, 177, 93, 0.3);
  font-weight: 600;
  letter-spacing: 1.2px;
  font-size: 10px;
}

/* Description */
.pd-desc {
  margin: 0 0 18px;
  color: rgba(35, 31, 26, 0.6);
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
}

/* Footer */
.pd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 177, 93, 0.12);
}

.pd-details-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.65);
  transition:
    color 200ms var(--ease-out),
    gap 200ms var(--ease-out);
}

.pd-details-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}

.pd-card:hover .pd-details-link {
  color: var(--ink);
}

.pd-card:hover .pd-details-link svg {
  transform: translateX(3px);
}

.pd-buy-btn {
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(215, 177, 93, 0.45);
  background: linear-gradient(120deg, #d4a94e 0%, #f0d17a 40%, #d4a94e 100%);
  background-size: 200% 100%;
  color: rgba(40, 30, 12, 0.95);
  cursor: pointer;
  animation: pd-btn-shimmer 3s linear infinite;
  transition:
    transform 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.pd-buy-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 177, 93, 0.8);
}

@keyframes pd-btn-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Highlight from calculator */
.pd-card.is-highlight {
  border-color: rgba(215, 177, 93, 0.9);
  animation: pd-pulse 800ms var(--ease-out) 1;
}

@keyframes pd-pulse {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Products - responsive */
@media (max-width: 960px) {
  .pd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pd-img-zone {
    height: 180px;
  }
}

/* Research Section */
.research-section {
  padding: 60px 0;
}

.research-filters-wrap {
  margin-bottom: 32px;
}

.research-filter-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
  margin: 0 0 24px;
  text-align: center;
  color: rgba(35, 31, 26, 0.88);
}

.research-filters {
  padding: 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: none;
  margin-bottom: 24px;
}

.research-filter-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.research-filter-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.62);
  font-weight: 500;
}

.research-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.research-filter-btn {
  padding: 9px 16px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.28);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(35, 31, 26, 0.72);
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 220ms var(--ease-out);
  font-family: inherit;
}

.research-filter-btn:hover {
  border-color: rgba(215, 177, 93, 0.6);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(35, 31, 26, 0.92);
  transform: translateY(-1px);
  box-shadow: none;
}

.research-filter-btn.is-active {
  border-color: rgba(215, 177, 93, 0.85);
  background: linear-gradient(
    120deg,
    #d4a94e 0%,
    #f0d17a 35%,
    #fffae0 50%,
    #f0d17a 65%,
    #d4a94e 100%
  );
  background-size: 200% 100%;
  color: rgba(40, 30, 12, 0.95);
  font-weight: 500;
  box-shadow: none;
  animation: btn-shimmer 3s linear infinite;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.research-card {
  padding: 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: none;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.research-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 177, 93, 0.45);
  box-shadow: none;
}

.research-card-meta {
  margin-bottom: 12px;
}

.research-card-molecule {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 14px;
  background: rgba(215, 177, 93, 0.12);
  border: 1px solid rgba(215, 177, 93, 0.22);
  color: rgba(35, 31, 26, 0.75);
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
}

.research-card-title {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.research-card-title a {
  color: rgba(35, 31, 26, 0.88);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}

.research-card-title a:hover {
  color: rgba(35, 31, 26, 1);
  text-decoration: underline;
  text-decoration-color: rgba(215, 177, 93, 0.6);
  text-underline-offset: 3px;
}

.research-disclaimer {
  text-align: center;
  padding: 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 177, 93, 0.15);
  background: rgba(215, 177, 93, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.research-disclaimer p {
  margin: 0;
  font-size: 13px;
  color: rgba(35, 31, 26, 0.6);
  line-height: 1.6;
}

.research-disclaimer p:first-child {
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(35, 31, 26, 0.72);
}

@media (max-width: 860px) {
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .research-filter-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .research-section {
    padding: 20px 0;
  }

  .research-filter-heading {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 20px;
  }

  .research-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .research-card {
    padding: 18px 18px;
    min-height: auto;
  }

  .research-filters {
    padding: 18px 18px;
  }

  .research-filter-buttons {
    gap: 8px;
  }

  .research-filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .research-disclaimer {
    padding: 18px 18px;
  }
}

/* --------- Cookie Consent Banner --------- */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 clamp(12px, 3vw, 24px) clamp(12px, 3vw, 24px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.cc-banner--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cc-main,
.cc-settings {
  max-width: 620px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 20px;
  border: 1px solid rgba(215, 177, 93, 0.22);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: none;
}

.cc-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(35, 31, 26, 0.72);
}

.cc-text a {
  color: var(--gold-3);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(215, 177, 93, 0.45);
}

.cc-text a:hover {
  color: var(--gold-4);
}

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

.cc-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 10px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.cc-btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.cc-btn--accept {
  background: linear-gradient(
    120deg,
    #d4a94e 0%,
    #f0d17a 35%,
    #fffae0 50%,
    #f0d17a 65%,
    #d4a94e 100%
  );
  background-size: 200% 100%;
  color: rgba(40, 30, 12, 0.95);
  border-color: rgba(215, 177, 93, 0.7);
  box-shadow: none;
  animation: btn-shimmer 3s linear infinite;
}

.cc-btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.cc-btn--decline {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(215, 177, 93, 0.35);
  color: rgba(35, 31, 26, 0.7);
}

.cc-btn--decline:hover {
  border-color: rgba(215, 177, 93, 0.65);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.cc-btn--settings,
.cc-btn--back {
  background: none;
  border: none;
  color: rgba(35, 31, 26, 0.55);
  padding: 10px 12px;
  font-weight: 500;
}

.cc-btn--settings:hover,
.cc-btn--back:hover {
  color: rgba(35, 31, 26, 0.88);
}

/* Settings panel */
.cc-settings-head {
  margin-bottom: 14px;
}

.cc-option {
  padding: 14px 0;
  border-top: 1px solid rgba(215, 177, 93, 0.12);
}

.cc-option:last-of-type {
  margin-bottom: 16px;
}

.cc-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.cc-option-row > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-option-row strong {
  font-size: 14px;
  color: rgba(35, 31, 26, 0.88);
}

.cc-option-desc {
  font-size: 12px;
  color: rgba(35, 31, 26, 0.55);
  line-height: 1.4;
}

/* Toggle switch */
.cc-option-row input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: rgba(35, 31, 26, 0.14);
  transition: background 200ms var(--ease-out);
}

.cc-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  transition: transform 200ms var(--ease-out);
}

.cc-option-row input:checked + .cc-toggle {
  background: linear-gradient(135deg, #d4a94e, #f0d17a);
}

.cc-option-row input:checked + .cc-toggle::after {
  transform: translateX(20px);
}

.cc-toggle--locked {
  background: linear-gradient(135deg, #d4a94e, #f0d17a);
  opacity: 0.6;
}

.cc-toggle--locked::after {
  transform: translateX(20px);
}

@media (max-width: 600px) {
  .cc-main,
  .cc-settings {
    padding: 18px 18px;
    border-radius: 16px;
  }

  .cc-actions {
    flex-direction: column;
  }

  .cc-btn--accept {
    order: -1;
  }

  .cc-btn {
    width: 100%;
    text-align: center;
  }

  .cc-btn--settings,
  .cc-btn--back {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* ─────────────────────────────────────────
   Product Gallery — horizontal scroll strip
───────────────────────────────────────── */
.glr-section {
  padding: 40px 0 60px;
  overflow: hidden;
}

.glr-strip {
  margin-top: 48px;
  position: relative;
}

/* Fade edges */
.glr-strip::before,
.glr-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.glr-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.glr-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* Scrollable row */
.glr-row {
  display: flex;
  gap: 20px;
  padding: 12px 80px 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.glr-row::-webkit-scrollbar {
  display: none;
}
.glr-row.is-grabbing {
  cursor: grabbing;
}

/* ── Card ── */
.glr-card {
  flex: 0 0 220px;
  scroll-snap-align: center;
  border-radius: 22px;
  border: 1px solid rgba(215, 177, 93, 0.16);
  background:
    radial-gradient(
      ellipse 90% 55% at 50% 0%,
      rgba(215, 177, 93, 0.1),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    border-color 300ms var(--ease-out),
    transform 300ms var(--ease-out);
}

.glr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-foil);
  opacity: 0.5;
  transition: opacity 300ms var(--ease-out);
}

.glr-card:hover {
  border-color: rgba(215, 177, 93, 0.48);
  transform: translateY(-6px);
}
.glr-card:hover::before {
  opacity: 1;
}

/* Image area */
.glr-img-wrap {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.glr-img {
  height: 86%;
  width: auto;
  max-width: 88%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 10px 24px rgba(160, 120, 40, 0.16));
  transition:
    transform 360ms var(--ease-out),
    filter 360ms var(--ease-out);
}

.glr-card:hover .glr-img {
  transform: translateY(-5px) scale(1.04);
  filter: drop-shadow(0 18px 36px rgba(160, 120, 40, 0.26));
}

.glr-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: radial-gradient(
    ellipse,
    rgba(215, 177, 93, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Text area */
.glr-card-body {
  padding: 14px 18px 20px;
  border-top: 1px solid rgba(215, 177, 93, 0.1);
}

.glr-card-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0.8;
  margin-bottom: 5px;
}

.glr-card-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 3px;
}

.glr-card-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* Dots */
.glr-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.glr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(215, 177, 93, 0.42);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition:
    background 240ms var(--ease-out),
    width 240ms var(--ease-out),
    border-color 240ms var(--ease-out);
}

.glr-dot.is-active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  border-color: var(--gold-2);
  width: 22px;
  border-radius: 3px;
}

.glr-dot:hover:not(.is-active) {
  background: rgba(215, 177, 93, 0.35);
  border-color: rgba(215, 177, 93, 0.65);
}

@media (max-width: 600px) {
  .glr-card {
    flex: 0 0 180px;
  }
  .glr-img-wrap {
    height: 240px;
  }
  .glr-row {
    padding: 8px 24px 28px;
    gap: 14px;
  }
  .glr-strip::before,
  .glr-strip::after {
    width: 32px;
  }
}

/* ─────────────────────────────────────────
   Product cards — link variant
───────────────────────────────────────── */
.pd-card--link .pd-footer .pd-toggle {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.28);
  background: rgba(215, 177, 93, 0.07);
  color: rgba(35, 31, 26, 0.8);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 200ms var(--ease-out),
    background 200ms var(--ease-out);
}

.pd-card--link .pd-footer .pd-toggle:hover {
  border-color: rgba(215, 177, 93, 0.65);
  background: rgba(215, 177, 93, 0.14);
  color: var(--ink);
}

/* ─────────────────────────────────────────
   Contact section
───────────────────────────────────────── */
.section-contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px;
  border-radius: 22px;
  border: 1px solid rgba(215, 177, 93, 0.16);
  background:
    radial-gradient(
      ellipse 80% 55% at 80% 0%,
      rgba(215, 177, 93, 0.07),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.78);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition:
    border-color 280ms var(--ease-out),
    transform 280ms var(--ease-out);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-foil);
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
}

.contact-card:hover {
  border-color: rgba(215, 177, 93, 0.45);
  transform: translateY(-4px);
}

.contact-card:hover::before {
  opacity: 0.7;
}

.contact-card--primary {
  border-color: rgba(215, 177, 93, 0.28);
  background:
    radial-gradient(
      ellipse 90% 60% at 80% 0%,
      rgba(215, 177, 93, 0.12),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.92);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.28);
  background: rgba(215, 177, 93, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 3px;
}

.contact-card-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-card-link {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold-deep);
}

.contact-card-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(215, 177, 93, 0.55);
  transition:
    transform 240ms var(--ease-out),
    color 240ms var(--ease-out);
}

.contact-card:hover .contact-card-arrow {
  transform: translate(3px, -3px);
  color: var(--gold-deep);
}

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   Product Page (product.html)
───────────────────────────────────────── */
auryx-product-page {
  display: block;
}

.pp-wrap {
  padding-top: 24px;
  padding-bottom: 80px;
}

.pp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  margin-bottom: 32px;
  transition: color 180ms var(--ease-out);
}

.pp-back:hover {
  color: var(--ink);
}

/* Hero */
.pp-hero {
  padding: 0 0 48px;
}

.pp-hero-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.pp-img-col {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 100px;
}

.pp-img-card {
  position: relative;
  width: 260px;
  height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(215, 177, 93, 0.22);
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 0%,
      rgba(215, 177, 93, 0.12),
      transparent 65%
    ),
    rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pp-img-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-foil);
  opacity: 0.8;
}

.pp-img {
  width: 130%;
  height: 88%;
  object-fit: contain;
  object-position: center;
  transform: rotate(90deg);
  filter: drop-shadow(0 20px 48px rgba(180, 140, 60, 0.22));
}

.pp-img-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: radial-gradient(
    ellipse,
    rgba(215, 177, 93, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Info column */
.pp-brand {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(35, 31, 26, 0.4);
  margin-bottom: 6px;
}

.pp-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--ink);
}

.pp-intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(35, 31, 26, 0.78);
  margin: 14px 0 0;
}

.pp-essence {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(35, 31, 26, 0.6);
  margin: 12px 0 0;
  font-style: italic;
  padding: 14px 16px;
  border-radius: 12px;
  border-left: 2px solid rgba(215, 177, 93, 0.4);
  background: rgba(215, 177, 93, 0.04);
}

/* Two lists inline */
.pp-two-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 24px;
}

.pp-list-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(35, 31, 26, 0.75);
  line-height: 1.5;
}

.pp-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
}

.pp-list--when li::before {
  background: rgba(215, 177, 93, 0.55);
}

.pp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pp-disclaimer {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(215, 177, 93, 0.14);
  background: rgba(215, 177, 93, 0.04);
}

/* Research */
.pp-section-research {
  padding: 52px 0;
  border-top: 1px solid rgba(215, 177, 93, 0.12);
}

.pp-research-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.pp-research-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 6px 0 0;
  max-width: 480px;
}

.pp-research-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.3);
  background: rgba(215, 177, 93, 0.08);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.pp-research-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
}

.pp-research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pp-research-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(215, 177, 93, 0.14);
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: var(--ink);
  transition:
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.pp-research-card:hover {
  border-color: rgba(215, 177, 93, 0.45);
  transform: translateY(-3px);
}

.pp-research-mol {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.pp-research-title {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(35, 31, 26, 0.78);
  flex: 1;
}

.pp-research-arrow {
  width: 13px;
  height: 13px;
  color: rgba(215, 177, 93, 0.5);
  align-self: flex-end;
  flex-shrink: 0;
  transition:
    transform 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.pp-research-card:hover .pp-research-arrow {
  transform: translate(2px, -2px);
  color: var(--gold-deep);
}

/* Calculator section */
.pp-section-calc {
  /* padding: 52px 0; */
  border-top: 1px solid rgba(215, 177, 93, 0.12);
}

/* Bottom CTA */
.pp-section-bottom-cta {
  padding: 40px 0 0;
}

.pp-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 44px;
  border-radius: 24px;
  border: 1px solid rgba(215, 177, 93, 0.28);
  background:
    radial-gradient(
      ellipse 70% 80% at 80% 50%,
      rgba(215, 177, 93, 0.1),
      transparent 65%
    ),
    rgba(255, 255, 255, 0.88);
  flex-wrap: wrap;
}

.pp-bottom-cta-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3.5vw, 38px);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--ink);
}

.pp-bottom-cta-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0;
}

/* Not found */
.pp-not-found {
  padding: 100px 0;
  text-align: center;
}

.pp-not-found-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Responsive */
@media (max-width: 860px) {
  .pp-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pp-img-col {
    position: static;
  }
  .pp-img-card {
    width: 200px;
    height: 320px;
  }
  .pp-research-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pp-bottom-cta {
    flex-direction: column;
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  .pp-two-lists {
    grid-template-columns: 1fr;
  }
  .pp-research-grid {
    grid-template-columns: 1fr;
  }
  .pp-research-header {
    flex-direction: column;
  }
}

.pp-research-title {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(35, 31, 26, 0.8);
  flex: 1;
}

.pp-research-arrow {
  width: 14px;
  height: 14px;
  color: rgba(215, 177, 93, 0.55);
  align-self: flex-end;
  flex-shrink: 0;
  transition:
    transform 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.pp-research-card:hover .pp-research-arrow {
  transform: translate(2px, -2px);
  color: var(--gold-deep);
}

/* Calculator section on product page */
.pp-section-calc {
  /* padding: 60px 0; */
}

/* Bottom CTA */
.pp-section-bottom-cta {
  padding: 60px 0 0;
}

.pp-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 52px;
  border-radius: 28px;
  border: 1px solid rgba(215, 177, 93, 0.28);
  background:
    radial-gradient(
      ellipse 70% 80% at 80% 50%,
      rgba(215, 177, 93, 0.1),
      transparent 65%
    ),
    rgba(255, 255, 255, 0.88);
  flex-wrap: wrap;
}

.pp-bottom-cta-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--ink);
}

.pp-bottom-cta-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0;
}

/* Not found */
.pp-not-found {
  padding: 120px 0;
  text-align: center;
}

.pp-not-found-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Responsive product page */
@media (max-width: 900px) {
  .pp-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pp-img-col {
    order: -1;
  }

  .pp-img-card {
    width: 220px;
    height: 360px;
  }

  .pp-desc-grid,
  .pp-lists-grid {
    grid-template-columns: 1fr;
  }

  .pp-research-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-bottom-cta {
    flex-direction: column;
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .pp-research-grid {
    grid-template-columns: 1fr;
  }

  .pp-desc-card,
  .pp-list-card {
    padding: 22px 20px;
  }
}

/* ─── Before / After ──────────────────────────────────────────────────── */
auryx-before-after {
  display: block;
}

.ba-section {
  overflow: hidden;
}

.ba-header {
  margin-bottom: 28px;
}

.ba-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: 3px;
  color: var(--ink);
  margin: 6px 0 0;
  line-height: 1;
}

.ba-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 0;
}

/* Gallery layout: thumbs left, main right */
.ba-gallery {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: start;
}

/* Thumbnail column */
.ba-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1408 / 768;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(215, 177, 93, 0.12);
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  transition:
    opacity 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
  background: transparent;
}

.ba-thumb.is-active {
  opacity: 1;
  border-color: rgba(215, 177, 93, 0.55);
  transform: translateX(4px);
}

.ba-thumb:hover:not(.is-active) {
  opacity: 0.7;
}

.ba-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-thumb-num {
  position: absolute;
  bottom: 5px;
  right: 7px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  pointer-events: none;
}

/* Main image */
.ba-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.ba-main-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1408 / 768;
}

.ba-main-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 380ms var(--ease-out);
  pointer-events: none;
}

.ba-main-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ba-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.ba-main-counter {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  pointer-events: none;
}

.ba-main-cur {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* Nav buttons */
.ba-nav {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.ba-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(215, 177, 93, 0.35);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 200ms,
    border-color 200ms,
    transform 150ms;
  padding: 0;
}

.ba-nav-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ba-nav-btn:hover {
  background: rgba(215, 177, 93, 0.25);
  border-color: rgba(215, 177, 93, 0.7);
  transform: scale(1.08);
}

.ba-nav-btn:active {
  transform: scale(0.95);
}

/* Progress bar on thumbs */
.ba-thumb-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-foil), var(--gold-deep));
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}

@keyframes ba-progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ba-gallery {
    grid-template-columns: 1fr;
  }
  .ba-thumbs {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .ba-thumbs::-webkit-scrollbar {
    display: none;
  }
  .ba-thumb {
    flex: 0 0 100px;
  }
  .ba-thumb.is-active {
    transform: translateY(-3px);
  }
}

/* ─── Reviews ─────────────────────────────────────────────────────────── */
auryx-reviews {
  display: block;
}

.rv-section {
  overflow: hidden;
}

/* Marquee container */
.rv-marquee-wrap {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.rv-marquee-wrap::before,
.rv-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.rv-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.rv-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.rv-marquee {
  overflow: hidden;
}

.rv-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: rv-scroll 40s linear infinite;
  padding: 8px 0 16px;
}

.rv-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes rv-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.rv-card {
  flex: 0 0 320px;
  padding: 28px 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(215, 177, 93, 0.18);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(215, 177, 93, 0.07),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
  user-select: none;
}

.rv-card:hover {
  border-color: rgba(215, 177, 93, 0.38);
  transform: translateY(-4px);
}

.rv-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  line-height: 0.6;
  color: rgba(215, 177, 93, 0.35);
  user-select: none;
}

.rv-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(35, 31, 26, 0.78);
  margin: 0;
  flex: 1;
}

.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 177, 93, 0.14);
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-foil);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.rv-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.rv-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

.rv-mol {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(215, 177, 93, 0.28);
  background: rgba(215, 177, 93, 0.06);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .rv-card {
    flex: 0 0 280px;
  }
}
