/** Shopify CDN: Minification failed

Line 40:0 All "@import" rules must come first

**/
/* PURIOXA v3 — Luxury Jewelry Cleaner Theme */

/* ============================================================
   GLOBAL ANIMATIONS
   ============================================================ */
@keyframes darkFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
@keyframes goldGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1.5px rgba(184,151,90,0.5),
      0 0 20px rgba(184,151,90,0.40),
      0 0 50px rgba(184,151,90,0.20),
      0 8px 40px rgba(0,0,0,0.08);
  }
  50% {
    box-shadow:
      0 0 0 1.5px rgba(184,151,90,0.85),
      0 0 40px rgba(184,151,90,0.70),
      0 0 90px rgba(184,151,90,0.38),
      0 8px 40px rgba(0,0,0,0.08);
  }
}

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --cream:       #f5f3ee;
  --cream-dark:  #ede9e1;
  --black:       #080808;
  --charcoal:    #1a1a1a;
  --muted:       #7a7a7a;
  --border:      #e4e2dd;
  --gold:        #b8975a;
  --gold-light:  #d4b97a;
  --gold-dark:   #9a7b44;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --nav-h:  72px;
  --max-w:  1240px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden; /* intercepts body overflow propagation to viewport, so body becomes a real overflow ctx */
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

input,
textarea {
  font-family: var(--font-body);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 100px 0;
}

.section--sm {
  padding: 64px 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--off {
  background-color: var(--off-white);
}

.section--black {
  background-color: var(--black);
  color: var(--white);
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-r] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-r].in {
  opacity: 1;
  transform: translateY(0);
}

[data-r][data-d="1"] { transition-delay: 0.1s; }
[data-r][data-d="2"] { transition-delay: 0.2s; }
[data-r][data-d="3"] { transition-delay: 0.3s; }
[data-r][data-d="4"] { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--lg {
  padding: 18px 46px;
  font-size: 11.5px;
}

.btn--full {
  width: 100%;
}

/* Gold button */
.btn--gold {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* Black button */
.btn--black {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--black:hover {
  background-color: #222222;
  border-color: #222222;
  color: var(--white);
}

/* Outline button (dark) */
.btn--outline {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Outline button (white/light) */
.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: 901;
}

.ann-bar span {
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  height: var(--nav-h);
  background-color: transparent;
  transition: background-color 0.35s ease, top 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-nav.ann {
  top: 40px;
}

.site-nav.scrolled {
  background-color: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  top: 0 !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-nav.always-white .nav-links a {
  color: var(--white);
}

.site-nav.always-white .nav-cart-btn {
  color: var(--white);
}

.site-nav.always-white .nav-hamburger span {
  background-color: var(--white);
}

/* Nav over light backgrounds (product page, etc.) — dark icons before scroll */
.site-nav.nav--on-light:not(.scrolled) .nav-links a {
  color: var(--charcoal);
}

.site-nav.nav--on-light:not(.scrolled) .nav-links a.active {
  color: var(--gold);
}

.site-nav.nav--on-light:not(.scrolled) .nav-links a:hover {
  color: var(--gold);
}

.site-nav.nav--on-light:not(.scrolled) .nav-cart-btn {
  color: var(--charcoal);
}

.site-nav.nav--on-light:not(.scrolled) .nav-hamburger span {
  background-color: var(--charcoal);
}

.site-nav.nav--on-light:not(.scrolled) .nav-logo img {
  filter: none;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--nav-h);
  padding: 0 40px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  opacity: 1;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart-btn {
  background: none;
  border: none;
  position: relative;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.nav-cart-btn:hover {
  opacity: 0.75;
}

.cart-bubble {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  z-index: 950;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile__close {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--white);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: opacity 0.2s ease;
}

.nav-mobile__close:hover {
  opacity: 0.6;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0806; /* prevents white flash before video loads */
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 160px 32px 80px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.06;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0.5;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: default;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar__track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 40px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}

.trust-bar__icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background-color: var(--white);
  padding: 100px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  color: var(--charcoal);
}

.features-title em {
  font-style: italic;
  color: var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

.feature-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background-color: var(--off-white);
  padding: 100px 0;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  color: var(--charcoal);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background-color: var(--border);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background-color: var(--white);
  flex-shrink: 0;
}

.how-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.how-step-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.how-step-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   MULTI-USE SECTION
   ============================================================ */
.multiuse {
  background-color: var(--white);
  padding: 100px 0;
}

.multiuse-header {
  text-align: center;
  margin-bottom: 64px;
}

.multiuse-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  color: var(--charcoal);
}

.multiuse-title em {
  font-style: italic;
  color: var(--gold);
}

.multiuse-sub {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.6;
}

.multiuse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.multiuse-card {
  overflow: hidden;
  cursor: default;
}

.multiuse-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}

.multiuse-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.multiuse-card:hover .multiuse-img {
  transform: scale(1.04);
}

.multiuse-card-body {
  padding: 24px 0 0;
}

.multiuse-card-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.multiuse-card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: linear-gradient(-45deg, #080808, #130f09, #0a0806, #0e0b07, #141008, #080808);
  background-size: 400% 400%;
  animation: darkFlow 16s ease infinite;
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(184,151,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(184,151,90,0.05) 0%, transparent 60%);
  animation: goldPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-cell {
  text-align: center;
  padding: 48px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-num .plus,
.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 300;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background-color: var(--white);
  padding: 100px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  color: var(--charcoal);
}

.reviews-title em {
  font-style: italic;
  color: var(--gold);
}

.reviews-avg {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.5;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  border-color: rgba(184, 151, 90, 0.4);
  transform: translateY(-2px);
}

.review-card-quote {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  font-weight: 300;
  color: var(--border);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.review-text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

.review-verified {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
  letter-spacing: 0.08em;
  display: block;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(-45deg, #0d0a06, #1a140e, #080806, #12100c, #1c1610, #0a0806);
  background-size: 400% 400%;
  animation: darkFlow 18s ease infinite;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(184,151,90,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(184,151,90,0.05) 0%, transparent 50%);
  animation: goldPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  background-color: var(--gold);
  transform: translateX(-50%);
}

.cta-band-eye {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 20px;
}

.cta-band-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
}

.cta-band-title em {
  font-style: italic;
}

.cta-band-sub {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.65;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #0d0b09;
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Newsletter column */
.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.65;
  display: block;
  margin-bottom: 28px;
}

.footer-newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter__title em {
  font-style: italic;
  color: var(--gold);
}

.footer-newsletter__sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}

/* Email form */
.footer-email-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s;
}
.footer-email-form:focus-within {
  border-color: rgba(200,169,110,0.5);
}

.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  min-width: 0;
}
.footer-email-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.footer-email-btn {
  background-color: var(--gold);
  color: var(--white);
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.footer-email-btn:hover {
  background-color: var(--gold-dark);
}

/* Column titles */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  display: block;
}

/* Links */
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold);
}

/* Company info column */
.footer-info li {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 14px;
}
.footer-info__label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.footer-info span,
.footer-info a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover {
  color: var(--gold);
}

/* Payment badges */
.footer-payments {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0 20px;
  text-align: center;
}
.footer-payments__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 16px;
}
.footer-payments__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-payments__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-payments__badges li {
  display: flex;
}
.footer-payments__badges .pay-icon {
  height: 38px;
  width: auto;
  border-radius: 5px;
  background: #fff;
  padding: 4px 8px;
  box-sizing: border-box;
  display: block;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
  border-top: none;
}
.footer-copy {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  background-color: var(--white);
  z-index: 990;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-header-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--charcoal);
}

.cart-close {
  color: var(--muted);
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close:hover {
  color: var(--charcoal);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--charcoal);
}

.cart-shipping-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
  display: block;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  background-color: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.cart-checkout-btn:hover {
  background-color: var(--gold-dark);
  color: var(--white);
}

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  width: 100%;
  padding: 8px;
  transition: color 0.2s ease;
}

.cart-continue:hover {
  color: var(--charcoal);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page-wrap {
  padding-top: calc(var(--nav-h) + 40px + 40px);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.product-layout > * { min-width: 0; }
.product-info {
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.product-info .product-title,
.product-info .product-tagline,
.product-info .product-benefits li,
.product-info .product-emotion,
.product-info .accordion-inner p,
.product-info .accordion-inner li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Product Gallery */
.product-gallery__main-wrap {
  position: relative;
  /* overflow:hidden removed — allows gold glow box-shadow to render outside */
  border-radius: 6px;
  background-color: var(--cream);
  /* Gold warm light — breathing glow */
  box-shadow:
    0 0 0 1.5px rgba(184,151,90,0.55),
    0 0 28px rgba(184,151,90,0.50),
    0 0 70px rgba(184,151,90,0.28),
    0 10px 48px rgba(0,0,0,0.09);
  animation: goldGlow 3.5s ease-in-out infinite;
}

.product-gallery__main-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

/* Dimensions image uses contain so full diagram is visible */
.product-gallery__main-wrap img.img--contain {
  object-fit: contain;
  background-color: #f7f4ef;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* ── B/A Standalone Section (kept for reference) ── */
.product-ba-standalone {
  max-width: 720px;
  margin: 64px auto 0;
}
.product-ba-standalone__header {
  text-align: center;
  margin-bottom: 28px;
}
.product-ba-standalone__eye {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.product-ba-standalone__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 12px;
}
.product-ba-standalone__title em { font-style: italic; color: var(--gold); }
.product-ba-standalone__sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }

.product-gallery__thumb {
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-height: 68px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease;
  border: 1.5px solid transparent;
  display: block;
  flex: 0 0 68px;
  box-sizing: border-box;
  overflow: hidden;
}

.product-gallery__thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.product-gallery__thumb:hover {
  opacity: 0.85;
}

.product-gallery__thumb--ba {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease;
  border: 1.5px solid transparent;
}

.product-gallery__thumb--ba.active {
  opacity: 1;
  border-color: var(--gold);
}

.product-gallery__thumb--ba:hover {
  opacity: 0.85;
}

/* Product Info */
.product-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.product-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.product-rating-text {
  font-size: 13px;
  color: var(--muted);
}

.product-price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 38px;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.product-price-note {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

.product-emotion {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #5a5550;
  line-height: 1.6;
  margin: 4px 0 18px;
  padding-left: 12px;
  border-left: 1.5px solid rgba(200,169,110,0.55);
}
.product-emotion em {
  font-style: italic;
  color: #2a2520;
}

/* ── The Promise ── */
.product-promise {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, rgba(200,169,110,0.02) 100%);
  border: 1px solid rgba(200,169,110,0.22);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 18px 0 22px;
}
.product-promise__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(200,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-promise__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: #2a2520;
  margin-bottom: 4px;
  line-height: 1.2;
}
.product-promise__text {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  color: #5a5550;
  line-height: 1.6;
  margin: 0;
}

/* ── Made for / Avoid with ── */
.product-compat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 0 0 28px;
  border-radius: 3px;
  overflow: hidden;
}
.product-compat__col {
  background: #fff;
  padding: 16px 18px;
}
.product-compat__col--no {
  background: #faf8f4;
}
.product-compat__head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2a2520;
  margin-bottom: 10px;
}
.product-compat__col--no .product-compat__head {
  color: #7a6f60;
}
.product-compat__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-compat__col li {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.55;
  padding: 3px 0;
}
.product-compat__col--no li {
  color: #7a6f60;
}

/* ── Comparison table ── */
.product-compare {
  margin: 24px 0 28px;
  padding: 22px 22px 18px;
  background: #fdfbf6;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.product-compare__head {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #2a2520;
  margin-bottom: 14px;
}
.product-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.product-compare__table th {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7470;
  text-align: center;
  padding: 8px 6px 12px;
  border-bottom: 1px solid var(--border);
}
.product-compare__table th:first-child { text-align: left; }
.product-compare__table th.product-compare__col-self {
  color: var(--gold-dark);
}
.product-compare__table td {
  font-size: 12px;
  font-weight: 300;
  color: #4a4540;
  text-align: center;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(228,226,221,0.6);
}
.product-compare__table td:first-child {
  text-align: left;
  color: #2a2520;
  font-weight: 400;
}
.product-compare__table td.product-compare__col-self {
  color: var(--gold-dark);
  font-weight: 500;
  background: rgba(200,169,110,0.05);
}
.product-compare__table tr:last-child td { border-bottom: none; }
.product-compare__foot {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-style: italic;
  color: #5a5550;
  margin: 12px 0 0;
  text-align: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(200,169,110,0.3);
}

/* ── Sticky mobile CTA ── */
.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: none;
}
.sticky-atc.is-visible {
  transform: translateY(0);
}
.sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-atc__info {
  flex: 1;
  min-width: 0;
}
.sticky-atc__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1.2;
}
.sticky-atc__price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 2px;
}
.sticky-atc__price span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.sticky-atc__btn {
  flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  padding: 14px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.sticky-atc__btn:hover {
  background: var(--gold-dark);
}
@media (max-width: 900px) {
  .sticky-atc { display: block; }
  body.is-product-page { padding-bottom: 76px; }

  /* Price + note: stack vertically on mobile, smaller */
  .product-price {
    display: block;
    font-size: 30px;
    margin-bottom: 12px;
  }
  .product-price-note {
    display: block;
    font-size: 11px;
    margin-top: 4px;
  }

  /* Benefits: tighter spacing */
  .product-benefits li {
    font-size: 13px;
    padding: 4px 0 4px 16px;
  }

  /* Emotional resonance line */
  .product-emotion {
    font-size: 14px;
    line-height: 1.5;
    margin: 6px 0 14px;
    padding-left: 10px;
  }

  /* ATC button — slightly tighter */
  .product-atc {
    padding: 16px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  /* Trust line: stay one line, smaller */
  .product-trust-line {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 18px;
    justify-content: center;
  }

  /* Promise: tighter, stays elegant */
  .product-promise {
    padding: 14px 14px;
    gap: 11px;
    margin: 14px 0 18px;
  }
  .product-promise__icon {
    width: 32px;
    height: 32px;
  }
  .product-promise__title {
    font-size: 14.5px;
  }
  .product-promise__text {
    font-size: 12px;
    line-height: 1.55;
  }

  /* Compatibility grid — keep 2 cols but compact */
  .product-compat {
    grid-template-columns: 1fr 1fr;
    margin: 0 0 20px;
  }
  .product-compat__col {
    padding: 12px 12px;
  }
  .product-compat__head {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  .product-compat__col li {
    font-size: 11px;
    padding: 2px 0;
    line-height: 1.45;
  }

  /* Comparison table — compact, horizontal scroll fallback */
  .product-compare {
    padding: 16px 14px 12px;
    margin: 18px 0 22px;
  }
  .product-compare__head {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .product-compare__table {
    font-size: 11px;
  }
  .product-compare__table th {
    font-size: 9px;
    padding: 6px 4px 9px;
    letter-spacing: 0.08em;
  }
  .product-compare__table td {
    font-size: 11px;
    padding: 8px 4px;
  }
  .product-compare__foot {
    font-size: 12px;
    margin-top: 10px;
  }

  /* Sticky CTA — luxe minimal */
  .sticky-atc__inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .sticky-atc__title {
    font-size: 11px;
  }
  .sticky-atc__price {
    font-size: 15px;
  }
  .sticky-atc__price span {
    font-size: 9.5px;
  }
  .sticky-atc__btn {
    padding: 12px 16px;
    font-size: 10.5px;
    letter-spacing: 0.13em;
  }

  /* Tighter product page wrap + gallery on mobile */
  .product-page-wrap {
    padding-top: calc(var(--nav-h) + 40px + 12px);
  }
  .product-layout {
    gap: 28px;
  }
  .product-info {
    padding: 0;
  }

  /* Soften the breathing gold glow on mobile (visually quieter) */
  .product-gallery__main-wrap {
    box-shadow:
      0 0 0 1px rgba(184,151,90,0.45),
      0 0 18px rgba(184,151,90,0.32),
      0 6px 24px rgba(0,0,0,0.07);
    animation: none;
  }
  .product-gallery__ba-wrap {
    box-shadow:
      0 0 0 1px rgba(184,151,90,0.45),
      0 0 18px rgba(184,151,90,0.32),
      0 6px 24px rgba(0,0,0,0.07);
    animation: none;
  }

  /* Product title — tighter */
  .product-title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.12;
    margin-bottom: 8px;
  }
  .product-tagline {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .product-cat {
    font-size: 9.5px;
    margin-bottom: 8px;
  }
  .product-rating {
    margin-bottom: 14px;
    gap: 8px;
  }
  .product-rating-text {
    font-size: 12px;
  }

  /* Accordion — tighter on mobile */
  .accordion-trigger {
    padding: 16px 4px;
    font-size: 13px;
  }
  .accordion-inner p,
  .accordion-inner li {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Extra compact tweaks for very small phones */
@media (max-width: 380px) {
  .product-price { font-size: 26px; }
  .product-compat__col li { font-size: 10.5px; }
  .product-compare__table th,
  .product-compare__table td { font-size: 10px; padding: 6px 3px; }
  .sticky-atc__btn { padding: 11px 12px; font-size: 10px; }
}

@media (min-width: 901px) {
  .sticky-atc { display: none !important; }
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.product-benefits li {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
  padding: 6px 0 6px 18px;
  position: relative;
}
.product-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.product-atc {
  width: 100%;
  background-color: var(--gold);
  color: var(--white);
  padding: 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  margin-bottom: 16px;
  transition: background-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}

.product-atc:hover {
  background-color: var(--gold-dark);
}

.product-trust-line {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.product-trust-line span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.guarantee-icon {
  font-size: 20px;
  margin-bottom: 2px;
  line-height: 1;
}

.guarantee-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

.guarantee-val {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  margin-top: 0;
}


.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
}

.accordion-trigger:hover {
  color: var(--gold);
}

.accordion-trigger svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.accordion-item.open .accordion-body {
  height: auto;
}

.accordion-inner {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

.accordion-inner p + p {
  margin-top: 12px;
}

.accordion-inner ul {
  padding-left: 16px;
  list-style: disc;
}

.accordion-inner li {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 300;
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  display: block;
}

.ba-before,
.ba-after {
  display: block;
  width: 100%;
}

.ba-before img,
.ba-after img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ba-before img {
  object-position: center center;
}

.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  overflow: hidden;
}

.ba-after img {
  object-position: center center;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.ba-handle svg {
  color: var(--charcoal);
  width: 20px;
  height: 20px;
}

.ba-label {
  position: absolute;
  top: 14px;
  background-color: transparent;
  color: #c8a96e;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  padding: 0 16px;
  border-radius: 0;
  pointer-events: none;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.9);
  text-shadow:
    0 0 18px rgba(200,169,110,1),
    0 0 36px rgba(200,169,110,0.75),
    0 0 70px rgba(200,169,110,0.45);
}

.ba-label--l {
  left: 12px;
}

.ba-label--r {
  right: 12px;
}

.ba-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-family: var(--font-body);
}

/* ============================================================
   PRODUCT REVIEWS SECTION
   ============================================================ */
/* ============================================================
   PRODUCT Q&A SECTION
   ============================================================ */
.pqa-section {
  background: var(--white);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.pqa-header {
  text-align: center;
  margin-bottom: 64px;
}

.pqa-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--charcoal);
  margin: 12px 0 14px;
}

.pqa-title em {
  font-style: italic;
  color: var(--gold);
}

.pqa-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.pqa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.pqa-item {
  background: var(--white);
  padding: 32px 36px;
  transition: background 0.2s ease;
}

.pqa-item:hover {
  background: var(--off-white);
}

.pqa-q {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.pqa-q::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.pqa-a {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 16px;
}

@media (max-width: 768px) {
  .pqa-grid { grid-template-columns: 1fr; }
  .pqa-item { padding: 24px 20px; }
}

.product-reviews-section {
  background-color: var(--off-white);
  padding: 80px 0;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-marquee:hover .reviews-marquee__track,
.reviews-marquee:hover [style*="reviewsScroll"] {
  animation-play-state: paused;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================================
   MEDIA QUERY — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-newsletter { grid-column: 1 / -1; }
}

/* ============================================================
   MEDIA QUERY — 768px
   ============================================================ */
@media (max-width: 768px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .hero__content {
    padding: 140px 20px 60px;
  }

  .hero__headline {
    font-size: clamp(38px, 8vw, 64px);
  }

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

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-steps::before {
    display: none;
  }

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

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

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

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

  .product-page-wrap {
    padding-top: calc(var(--nav-h) + 40px + 20px);
    overflow-x: hidden;
  }
  .product-info {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-gallery__main-wrap img {
    aspect-ratio: 4 / 3;
  }

  .cta-band {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-newsletter { grid-column: 1; }
  .footer-newsletter__title { font-size: 1.6rem; }

  .cart-drawer {
    width: 100%;
  }
}

/* ============================================================
   MEDIA QUERY — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--lg {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

/* ============================================================
   INNER PAGES — shared page hero + inner layouts
   ============================================================ */

/* Page hero (dark header used on about/contact/track) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-h) + 40px + 60px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.page-hero-eye {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.7); }
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── About page ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-layout--text-only {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}
.about-img {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.about-value-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.about-value-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Contact page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon {
  font-size: 18px;
  width: 32px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.contact-detail-value a { color: var(--gold); text-decoration: underline; }

/* Contact form card */
.contact-form-card {
  background: var(--off-white);
  padding: 48px;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.contact-form-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  border-radius: 1px;
  outline: none;
  transition: border-color 0.25s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  border-radius: 1px;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.form-success {
  display: none;
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: 28px;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 28px;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-success-sub { font-size: 14px; color: var(--muted); }

/* ── Track page ── */
.track-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.track-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px;
  margin-bottom: 40px;
}
.track-card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.track-card-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.track-result {
  display: none;
  margin-top: 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 1px;
}
.track-result-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.track-result-sub { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.track-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.track-step {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.track-step:last-child { border-right: none; }
.track-step-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.track-step-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.track-step-val {
  font-size: 12px;
  color: var(--muted);
}
.track-faq { margin-top: 48px; }
.track-faq-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.track-faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.track-faq-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.track-faq-a {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.track-faq-a a { color: var(--gold); text-decoration: underline; }

/* ── FAQ Page ── */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.faq-trigger:hover { color: var(--gold); }
.faq-trigger svg {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}
.faq-body {
  display: none;
  overflow: hidden;
}
.faq-item.open .faq-body {
  display: block;
}
.faq-body-inner {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 24px;
}
.faq-body-inner strong { color: var(--charcoal); font-weight: 500; }
.faq-body-inner a { color: var(--gold); text-decoration: underline; }

/* ── Inner page responsive ── */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-img { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .track-steps { grid-template-columns: 1fr; }
  .track-step { border-right: none; border-bottom: 1px solid var(--border); }
  .track-step:last-child { border-bottom: none; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .track-card { padding: 32px 24px; }
}

/* ============================================================
   CART DRAWER — ITEMS
   ============================================================ */

/* Header badge */
.cart-header {
  background: var(--charcoal);
}
.cart-header-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.cart-header-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-left: 6px;
}
.cart-close {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
}
.cart-close:hover { color: #fff; }

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  gap: 20px;
}
.cart-empty__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #f5f1ec;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
}
.cart-empty__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.cart-empty__sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* Item card */
.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:first-child { padding-top: 4px; }
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 2px;
  background: #f5f1ec;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd8d0;
  border-radius: 2px;
  overflow: hidden;
}
.cart-item-qty button {
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  font-weight: 300;
}
.cart-item-qty button:hover { background: #f5f1ec; }
.cart-item-qty span {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  border-left: 1px solid #ddd8d0;
  border-right: 1px solid #ddd8d0;
  line-height: 32px;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  font-size: 14px;
  padding: 4px;
  margin-left: 4px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}
.cart-item-remove:hover { color: #c0392b; }

/* Cart footer trust badge */
.cart-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 12px 14px;
  background: #f8f5f0;
  border-radius: 2px;
}
.cart-trust svg { color: var(--gold); flex-shrink: 0; }
.cart-trust span {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* Shipping note */
.cart-shipping-note {
  display: none;
}

/* Checkout button */
.cart-checkout-btn {
  background: var(--charcoal);
  letter-spacing: 0.18em;
  font-size: 10.5px;
  padding: 17px;
}
.cart-checkout-btn:hover { background: var(--gold); }

/* Continue shopping */
.cart-continue {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--muted);
}
.cart-continue:hover { color: var(--charcoal); }

/* ── Review Photo Thumbnails ── */
.rv-card__photo {
  margin: 16px 0 4px;
  border-radius: 5px;
  overflow: hidden;
  line-height: 0;
  background: #f0ede8;
}
.rv-card__photo img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 5px;
  display: block;
  transition: transform 0.35s ease;
}
.rv-card:hover .rv-card__photo img {
  transform: scale(1.02);
}
@media (max-width: 600px) {
  .rv-card__photo img { max-height: 220px; }
}

/* ──────────────────────────────────────────────────────────────
   2026-05-13 flaw-audit pass — video, founder, bonus, desktop sticky
   ────────────────────────────────────────────────────────────── */

/* Demo video block on PDP gallery */
.product-gallery__video-wrap {
  position: relative;
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f0e0c;
  box-shadow: 0 8px 28px -18px rgba(0,0,0,.35);
}
.product-gallery__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.product-gallery__video-cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
  pointer-events: none;
}

/* Bonus block — free polishing cloth */
.product-bonus {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 14px 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 10px;
  background: rgba(200, 169, 110, 0.05);
}
.product-bonus__icon {
  flex: 0 0 auto;
  margin-top: 2px;
}
.product-bonus__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-bonus__eye {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8975a;
  font-weight: 600;
}
.product-bonus__line {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--charcoal, #2a2826);
  line-height: 1.55;
}

/* Founder identity card */
.product-founder {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 28px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  background: #fbf8f1;
}
.product-founder__mark {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a1816;
  color: #c8a96e;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.product-founder__title {
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: 16px;
  color: #1a1816;
  margin-bottom: 4px;
}
.product-founder__text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #4a4641;
  line-height: 1.6;
  margin: 0;
}
.product-founder__sig {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #6a6560;
  letter-spacing: 0.02em;
}
.product-founder__sig a {
  color: #b8975a;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,.4);
}

/* Track-order note inside Promise block */
.product-promise__track {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: #6a6560;
  letter-spacing: 0.01em;
}
.product-promise__track a {
  color: #b8975a;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,.4);
}

/* Desktop sticky CTA — pill, top-right, product page only */
.sticky-atc-desk {
  display: none;
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 60;
  padding: 8px 8px 8px 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 12px 32px -18px rgba(0, 0, 0, 0.25);
  align-items: center;
  gap: 14px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.32s ease;
}
.sticky-atc-desk.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-atc-desk__price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #1a1816;
  letter-spacing: 0.02em;
}
.sticky-atc-desk__btn {
  appearance: none;
  border: none;
  background: #1a1816;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease;
}
.sticky-atc-desk__btn:hover {
  background: #2a2622;
}
.sticky-atc-desk__btn:active {
  transform: translateY(1px);
}
.sticky-atc-desk__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (min-width: 901px) {
  .sticky-atc-desk { display: flex; }
}
