/** Shopify CDN: Minification failed

Line 2324:0 Expected "*/" to terminate multi-line comment

**/
:root {
  --cream: #05070A;
  --cream-2: #080C0A;
  --oat: #0D1210;
  --ink: #F3EFE7;
  --ink-soft: rgba(243, 239, 231, 0.7);
  --gold: #C9A24B;
  --gold-light: #E7CE93;
  --teal-deep: #2e4e49;
  --navy: #1c3436;
  --navy-deep: #05070A;
  --line: rgba(243, 239, 231, 0.12);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

html {
  scroll-behavior: smooth;
}

/* ---------- TOPBAR (CLEAN CRYSTAL GLASS APP BAR WITH NAVIGATION) ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(62px, 4.2vh, 68px);
  padding: 0 clamp(1.4rem, 4vw, 3.8rem);

  /* Authentic iOS Device Transparent Glass */
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(190%) contrast(105%);
  -webkit-backdrop-filter: blur(24px) saturate(190%) contrast(105%);

  /* Subtle glass hairline bottom border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

  border-radius: 0;
  min-width: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.topbar:hover {
  background: rgba(255, 255, 255, 0.22);
  border-bottom-color: rgba(255, 255, 255, 0.50);
}

.topbar .logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topbar .logo-wrap:hover {
  opacity: 0.90;
  transform: translateY(-0.5px);
}

.topbar-logo-img {
  height: clamp(52px, 5.5vw, 62px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Center Navigation Links */
.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 2.2rem);
  margin: 0 auto;
}

.topbar-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(0.84rem, 0.95vw, 0.93rem);
  font-weight: 500;
  color: #172A24;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.topbar-nav-link:hover {
  color: #0c1814;
  background: rgba(255, 255, 255, 0.38);
}

.topbar-nav-link.is-active {
  font-weight: 600;
  color: #172A24;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.topbar-nav-link .nav-active-bar {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 2.5px;
  background: #172A24;
  border-radius: 999px;
}

/* Actions on Right: Buy Now CTA + Mobile Burger */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar .topbar-cta {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(0.68rem, 0.82vw, 0.74rem);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: #FAF7F1;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1C332A 0%, #2A4C40 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 14px rgba(28, 51, 42, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.30);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar .topbar-cta .topbar-cta-arrow {
  transition: transform 0.22s ease;
  stroke: #FAF7F1;
}

.topbar .topbar-cta:hover {
  background: linear-gradient(135deg, #244136 0%, #345D4F 100%);
  color: #FFFFFF;
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 6px 20px rgba(28, 51, 42, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.40);
}

.topbar .topbar-cta:hover .topbar-cta-arrow {
  transform: translateX(3px);
}

.topbar .topbar-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(28, 51, 42, 0.20);
}

/* Mobile Hamburger Toggle */
.topbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.topbar-burger:hover {
  background: rgba(255, 255, 255, 0.42);
}

.topbar-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: #172A24;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar-burger.is-open .topbar-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar-burger.is-open .topbar-burger-line:nth-child(2) {
  opacity: 0;
}

.topbar-burger.is-open .topbar-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Slide-down Menu */
.topbar-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(23, 42, 36, 0.12);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.topbar-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar-mobile-link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #172A24;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar-mobile-link:hover,
.topbar-mobile-link.is-active {
  background: rgba(23, 42, 36, 0.08);
  color: #172A24;
  font-weight: 600;
}

.topbar-mobile-cta {
  margin-top: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FAF7F1 !important;
  background: linear-gradient(135deg, #1C332A 0%, #2A4C40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(28, 51, 42, 0.25);
}

.topbar-mobile-cta svg {
  stroke: #FAF7F1;
}

@media (max-width: 860px) {
  .topbar-nav {
    display: none !important;
  }
  .topbar-burger {
    display: flex !important;
  }
  .topbar .topbar-cta .topbar-cta-arrow {
    display: none !important;
  }
}

/* ---------- USP HERO SECTION ---------- */
.usp {
  margin-top: 0;
  padding-top: 0;
  background: transparent;
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* ================================================================
   AURIQUE — "COMPLETE CARE. ALL DAY & ALL NIGHT." HERO SECTION
   Editorial Duo Showcase: Day Cream (Hydra Glow) & Night Cream (Rejuvenate+)
   Ultra-luxury aesthetic with natural stone plinth, botanical shadows,
   crisp typography, vector benefit cards, and seamless transitions.
   ================================================================ */

.complete-hero {
  position: relative;
  height: 120vh;
  background: #FAF7F1;
  margin-top: 0 !important;
  padding: 0 !important;
  isolation: isolate;
  z-index: 1;
}

.complete-hero-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background: #FAF7F1;
}

/* --- Backdrop: Ultra-Luxury Travertine & Marble Stage --- */
.ch-bg-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ch-bg-picture {
  display: contents;
}

.ch-bg-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.ch-bg-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 18%, transparent 38%),
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.40) 0%, transparent 60%);
  pointer-events: none;
}

/* --- Hero Header: Eyebrow + Title + Tagline --- */
.ch-hero-header {
  position: absolute;
  top: clamp(82px, 11.5vh, 92px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 4;
  pointer-events: none;
  padding: 0 1.5rem;
  gap: 0;
  overflow: visible;
}

/* Eyebrow pill: "24-Hour Skincare System" */
.ch-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* Teal brand color — matches Aurique logo */
  background: rgba(25, 85, 74, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 16px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(0.63rem, 0.92vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 8px;
  max-width: 90%;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(25, 85, 74, 0.38), 0 1px 3px rgba(0, 0, 0, 0.10);
}

.ch-pill-clock {
  flex-shrink: 0;
  color: rgba(200, 240, 228, 0.90);
}

/* Main editorial heading: "COMPLETE CARE. ALL DAY & ALL NIGHT." */
.ch-editorial-title {
  font-family: 'Playfair Display', Georgia, serif;
  /* Fluid scale: never overflows on any screen from 900px to 4K */
  font-size: clamp(1.9rem, 2.9vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.15;
  color: #0B1710;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.04em;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 1),
    0 1px 4px rgba(255, 255, 255, 1),
    0 2px 14px rgba(255, 255, 255, 0.95),
    0 4px 28px rgba(255, 255, 255, 0.75),
    0 8px 42px rgba(255, 255, 255, 0.45);
}

@media (min-width: 900px) {
  .ch-editorial-title {
    flex-direction: row;
    justify-content: center;
    gap: 0.45em;
  }
}

.ch-editorial-title span {
  display: block;
  max-width: 100%;
  /* Allow line wrap so title never clips on narrower or unusual aspect ratios */
  white-space: normal;
  word-break: break-word;
}

/* Split tagline row: "TWO POWERFUL FORMULAS — ONE EFFORTLESS ROUTINE" */
.ch-split-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 18px);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1F382E;
  margin-top: 4px;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 1),
    0 1px 3px rgba(255, 255, 255, 0.98),
    0 2px 8px rgba(255, 255, 255, 0.85);
}

.ch-split-line {
  display: block;
  width: clamp(20px, 3vw, 36px);
  height: 1px;
  background: rgba(46, 69, 59, 0.40);
  flex-shrink: 0;
}

.ch-tagline-text {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* --- Duo Products on Podium: Hidden because background image aurique-duo-hero-bg.jpg already contains the products --- */
.ch-duo-stage {
  display: none !important;
}

.ch-product-unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* JS handles transform; CSS transition smooths small viewport resize snaps */
  transition: transform 0.05s linear;
  will-change: transform;
}

/* JS controls transform via initCompleteHero — no CSS overrides here */

.ch-bottle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-bottle-image {
  width: clamp(180px, 20vw, 280px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(22, 38, 30, 0.25)) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.10));
  transform: translateZ(0);
}

.ch-bottle-pedestal-shadow {
  position: absolute;
  bottom: -4px;
  left: 12%;
  width: 76%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(28, 40, 34, 0.42) 0%, rgba(28, 40, 34, 0) 70%);
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

/* --- Reference 2 Circular Feature Nodes Constellation --- */
.ch-features-constellation {
  position: absolute;
  /* Lifted slightly on laptop so it balances with bottles and text */
  top: 26%;
  bottom: 12%;
  left: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.8rem, 6.5vw, 7.5rem);
  pointer-events: none;
  z-index: 4;
  /* Start hidden — JS fades in as bottles split on scroll */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ch-constellation-col {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.8vh, 26px);
  position: relative;
  z-index: 4;
}

/* Circular Icon Node */
.ch-circle-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* The circular ring outline with blurred backing */
.ch-circle-ring {
  width: clamp(52px, 5.2vw, 68px);
  height: clamp(52px, 5.2vw, 68px);
  border-radius: 50%;
  border: 1.5px solid rgba(23, 38, 30, 0.48);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #172620;
  box-shadow: 0 4px 16px rgba(22, 38, 30, 0.05);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ch-circle-ring svg {
  width: clamp(22px, 2.2vw, 28px);
  height: clamp(22px, 2.2vw, 28px);
  stroke-width: 1.6;
}

/* Two-line centered label below the circle */
.ch-circle-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(0.76rem, 0.92vw, 0.88rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 7px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.70),
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.40),
    0 0 2px rgba(0, 0, 0, 0.80);
}

/* Staggered organic arc layout matching Reference 2 */
/* DAY (Left Side) */
.ch-constellation--day .ch-circle-node--1 {
  transform: translateX(clamp(16px, 2.4vw, 32px));
}

.ch-constellation--day .ch-circle-node--2 {
  transform: translateX(clamp(-18px, -2vw, -30px));
}

.ch-constellation--day .ch-circle-node--3 {
  transform: translateX(clamp(12px, 1.8vw, 24px));
}

/* NIGHT (Right Side) */
.ch-constellation--night .ch-circle-node--1 {
  transform: translateX(clamp(-16px, -2.4vw, -32px));
}

.ch-constellation--night .ch-circle-node--2 {
  transform: translateX(clamp(18px, 2vw, 30px));
}

.ch-constellation--night .ch-circle-node--3 {
  transform: translateX(clamp(-12px, -1.8vw, -24px));
}

/* --- Bottom Capsule Badges (Luxury Floating Frosted Glass) --- */
.ch-bottom-capsules {
  position: absolute;
  /* Lifted a small bit up from bottom on laptop/desktop view */
  bottom: clamp(34px, 4.8vh, 46px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.4rem, 5vw, 4.5rem);
  pointer-events: none;
  z-index: 5;
}

.ch-badge-capsule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 4px 16px 4px 5px;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(18, 36, 28, 0.10), 0 2px 5px rgba(0, 0, 0, 0.04);
}

.ch-capsule-tag {
  background: #1F5C52;
  color: #FFFFFF;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  padding: 4px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(31, 92, 82, 0.28);
}

.ch-badge-capsule--night .ch-capsule-tag {
  background: #173E47;
  box-shadow: 0 2px 6px rgba(23, 62, 71, 0.28);
}

.ch-capsule-text {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(0.70rem, 0.85vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.10em;
  color: #172620;
  text-transform: uppercase;
}

/* --- Scroll Cue --- */
.ch-scroll-cue {
  position: absolute;
  bottom: clamp(16px, 2.5vh, 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.ch-scroll-cue-pill {
  width: 18px;
  height: 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(62, 102, 89, 0.4);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  position: relative;
  display: flex;
  justify-content: center;
}

.ch-scroll-dot {
  position: absolute;
  top: 5px;
  width: 3.5px;
  height: 6px;
  border-radius: 3px;
  background: #3E6659;
  animation: chScrollPulse 2s ease-in-out infinite;
}

.ch-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #40574D;
  text-transform: uppercase;
}

@keyframes chScrollPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* --- Seamless Ambient Transition into Day Section (No harsh borders) --- */
.ch-bottom-blend {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(100px, 16vh, 200px);
  background: linear-gradient(to bottom,
      rgba(244, 242, 237, 0) 0%,
      rgba(244, 242, 237, 0.25) 30%,
      rgba(244, 242, 237, 0.70) 65%,
      rgba(244, 242, 237, 0.95) 90%,
      #F4F2ED 100%);
  pointer-events: none;
  z-index: 3;
}

/* ================================================================
   RESPONSIVE DESIGN (Desktop, Tablet, Mobile)
   ================================================================ */

/* ---- Short-viewport compactor: prevents header overlapping bottles on laptops ---- */
@media (max-height: 680px) {
  .ch-hero-header {
    top: clamp(62px, 8.5vh, 74px) !important;
    gap: 0;
  }

  .ch-eyebrow-pill {
    font-size: 0.72rem;
    padding: 3px 12px;
    margin-bottom: 5px;
  }

  .ch-editorial-title {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem) !important;
    margin-bottom: 6px;
    line-height: 1.12;
  }

  .ch-split-tagline {
    font-size: clamp(0.65rem, 0.85vw, 0.78rem);
    gap: 10px;
    margin-top: 3px;
  }

  .ch-split-line {
    width: 22px;
  }

  /* On short viewports, push constellation down less — 25% from top is enough */
  .ch-features-constellation {
    top: 25% !important;
  }
}

@media (max-height: 520px) {

  /* Very small height — hide tagline, keep just pill + title */
  .ch-split-tagline {
    display: none;
  }

  .ch-editorial-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem) !important;
    margin-bottom: 3px;
  }
}

@media (max-width: 1024px) {
  .ch-features-constellation {
    padding: 0 1.5rem;
  }

  .ch-circle-ring {
    width: 48px;
    height: 48px;
  }

  .ch-circle-ring svg {
    width: 20px;
    height: 20px;
  }

  .ch-circle-label {
    font-size: 0.70rem;
  }

  .ch-bottle-image {
    width: clamp(150px, 18vw, 210px);
  }

  .ch-editorial-title {
    font-size: clamp(1.7rem, 3.0vw, 2.3rem);
  }

  .ch-constellation--day .ch-circle-node--1 {
    transform: translateX(14px);
  }

  .ch-constellation--day .ch-circle-node--2 {
    transform: translateX(-10px);
  }

  .ch-constellation--day .ch-circle-node--3 {
    transform: translateX(18px);
  }

  .ch-constellation--night .ch-circle-node--1 {
    transform: translateX(-14px);
  }

  .ch-constellation--night .ch-circle-node--2 {
    transform: translateX(10px);
  }

  .ch-constellation--night .ch-circle-node--3 {
    transform: translateX(-18px);
  }
}

@media (max-width: 768px) {
  .topbar {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    padding: 0 1rem;
    border-radius: 0;
    /* Keep iOS transparent glass on mobile too */
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px) saturate(190%) contrast(105%);
    -webkit-backdrop-filter: blur(20px) saturate(190%) contrast(105%);
  }

  .topbar-logo-img {
    height: 38px;
  }

  .topbar .topbar-cta {
    padding: 6px 16px;
    font-size: 0.65rem;
  }

  .complete-hero {
    height: 115vh;
  }

  .ch-bg-picture {
    display: contents !important;
  }

  .ch-bg-stage {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .ch-bg-stage-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    max-width: none !important;
    transform: none !important;
    filter: none !important;
    z-index: 1 !important;
  }

  .ch-bg-stage-overlay {
    z-index: 2 !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.12) 18%, transparent 35%) !important;
  }

  /* Text header — locked below mobile topbar with clean breathing room */
  .ch-hero-header {
    top: 80px !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    z-index: 4 !important;
  }

  .ch-eyebrow-pill {
    font-size: 0.68rem !important;
    padding: 3px 10px !important;
    margin-bottom: 4px !important;
    max-width: 90vw !important;
  }

  .ch-editorial-title {
    font-size: clamp(1.2rem, 5.2vw, 1.65rem) !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    line-height: 1.18 !important;
    max-width: 100% !important;
  }

  .ch-editorial-title span {
    white-space: normal !important;
  }

  .ch-split-tagline {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(8px, 2.2vw, 14px) !important;
    font-size: clamp(0.52rem, 2.1vw, 0.65rem) !important;
    letter-spacing: 0.08em !important;
    padding: 0 0.5rem !important;
    max-width: 96vw !important;
    white-space: nowrap !important;
  }

  .ch-split-line {
    display: block !important;
    width: clamp(14px, 3.2vw, 24px) !important;
    height: 1px !important;
    background: rgba(46, 69, 59, 0.40) !important;
    flex-shrink: 0 !important;
  }

  .ch-tagline-text {
    white-space: nowrap !important;
    text-align: center !important;
  }

  /* Bottles — locked onto stone plinth surface
     The stone top-edge is ~23vh from bottom in cover+70% mode on tall mobile */
  .ch-duo-stage {
    bottom: 22vh !important;
    gap: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
  }

  .ch-bottle-image {
    width: clamp(130px, 36vw, 165px) !important;
    height: auto !important;
    max-width: none !important;
  }

  .ch-features-constellation {
    padding: 0 20px;
    /* breathing room from screen edges */
  }

  .ch-features-constellation {
    padding: 0 clamp(8px, 2.5vw, 16px) !important;
    top: 28% !important;
    bottom: 5% !important;
  }

  .ch-constellation-col {
    gap: clamp(10px, 2.2vh, 18px) !important;
  }

  .ch-circle-ring {
    width: 38px;
    height: 38px;
    border-width: 1.2px;
  }

  .ch-circle-ring svg {
    width: 17px;
    height: 17px;
  }

  .ch-circle-label {
    font-size: 0.60rem;
    line-height: 1.15;
    margin-top: 3px;
    max-width: 68px;
    white-space: normal;
  }

  /* Safe positioning outside jars on mobile — no inward overlap */
  .ch-constellation--day .ch-circle-node--1 {
    transform: translateX(0) !important;
  }

  .ch-constellation--day .ch-circle-node--2 {
    transform: translateX(-4px) !important;
  }

  .ch-constellation--day .ch-circle-node--3 {
    transform: translateX(0) !important;
  }

  .ch-constellation--night .ch-circle-node--1 {
    transform: translateX(0) !important;
  }

  .ch-constellation--night .ch-circle-node--2 {
    transform: translateX(4px) !important;
  }

  .ch-constellation--night .ch-circle-node--3 {
    transform: translateX(0) !important;
  }

  .ch-scroll-cue {
    display: none !important;
  }

  /* Professional mobile capsules: generous gap & lifted position */
  .ch-bottom-capsules {
    bottom: clamp(42px, 6.2vh, 58px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 0 20px !important;
    gap: clamp(18px, 4.5vw, 26px) !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .ch-badge-capsule {
    flex: 0 0 auto !important;
    padding: 4px 12px 4px 4px !important;
    gap: 7px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 20px rgba(15, 35, 26, 0.12), 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  }

  .ch-capsule-tag {
    background: #1F5C52 !important;
    color: #FFFFFF !important;
    font-size: 0.58rem !important;
    padding: 3px 8px !important;
    letter-spacing: 0.09em !important;
    line-height: 1 !important;
    box-shadow: 0 2px 6px rgba(31, 92, 82, 0.28) !important;
  }

  .ch-badge-capsule--night .ch-capsule-tag {
    background: #173E47 !important;
    box-shadow: 0 2px 6px rgba(23, 62, 71, 0.28) !important;
  }

  .ch-capsule-text {
    font-size: 0.58rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
}

@media (max-width: 480px) {
  .topbar {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    padding: 0 0.85rem;
    border-radius: 0;
    /* iOS transparent glass on small phones too */
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px) saturate(190%) contrast(105%);
    -webkit-backdrop-filter: blur(20px) saturate(190%) contrast(105%);
  }

  .topbar-logo-img {
    height: 34px;
  }

  .topbar .topbar-cta {
    padding: 5px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.10em;
  }

  /* Small phones hero header */
  .ch-hero-header {
    top: 78px !important;
    padding: 0 0.8rem !important;
    box-sizing: border-box !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .ch-eyebrow-pill {
    font-size: 0.66rem !important;
    padding: 3px 9px !important;
    margin-bottom: 3px !important;
    max-width: 90vw !important;
  }

  .ch-editorial-title {
    font-size: clamp(1.1rem, 5.0vw, 1.45rem) !important;
    letter-spacing: 0.02em !important;
    line-height: 1.18 !important;
    margin: 0 0 4px 0 !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .ch-split-tagline {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(6px, 1.8vw, 10px) !important;
    font-size: clamp(0.48rem, 2.0vw, 0.58rem) !important;
    letter-spacing: 0.06em !important;
    max-width: 96vw !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .ch-split-line {
    display: block !important;
    width: clamp(12px, 2.8vw, 18px) !important;
    height: 1px !important;
    background: rgba(46, 69, 59, 0.40) !important;
    flex-shrink: 0 !important;
  }

  .ch-tagline-text {
    white-space: nowrap !important;
  }

  /* Bottles sit precisely on stone plinth — no floating */
  .ch-duo-stage {
    bottom: 20vh !important;
    gap: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .ch-bottle-image {
    width: clamp(120px, 38vw, 155px) !important;
    height: auto !important;
    max-width: none !important;
  }

  .ch-scroll-cue {
    display: none !important;
  }

  .ch-circle-ring {
    width: 32px !important;
    height: 32px !important;
  }

  .ch-circle-ring svg {
    width: 14px !important;
    height: 14px !important;
  }

  .ch-circle-label {
    font-size: 0.52rem !important;
    line-height: 1.12 !important;
    margin-top: 2px !important;
    max-width: 62px !important;
    white-space: normal !important;
  }

  /* Safe positioning outside jars on small phones — strictly clear of jars */
  .ch-constellation--day .ch-circle-node--1 {
    transform: translateX(19px) !important;
  }

  .ch-constellation--day .ch-circle-node--2 {
    transform: translateX(-6px) !important;
  }

  .ch-constellation--day .ch-circle-node--3 {
    transform: translateX(19px) !important;
  }

  .ch-constellation--night .ch-circle-node--1 {
    transform: translateX(-19px) !important;
  }

  .ch-constellation--night .ch-circle-node--2 {
    transform: translateX(3px) !important;
  }

  .ch-constellation--night .ch-circle-node--3 {
    transform: translateX(-19px) !important;
  }

  .ch-features-constellation {
    padding: 0 8px !important;
    top: 29% !important;
    bottom: 30% !important;
  }

  .ch-bottom-capsules {
    bottom: clamp(59px, 5.8vh, 52px) !important;
    padding: 0 14px !important;
    gap: clamp(49px, 4.0vw, 25px) !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ch-badge-capsule {
    flex: 0 0 auto !important;
    padding: 3.5px 10px 3.5px 3.5px !important;
    gap: 5px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 999px !important;
    box-shadow: 0 5px 18px rgba(15, 35, 26, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  }

  .ch-capsule-tag {
    background: #1F5C52 !important;
    color: #FFFFFF !important;
    font-size: 0.56rem !important;
    padding: 3.2px 7px !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    box-shadow: 0 1.5px 5px rgba(31, 92, 82, 0.28) !important;
  }

  .ch-badge-capsule--night .ch-capsule-tag {
    background: #173E47 !important;
    box-shadow: 0 1.5px 5px rgba(23, 62, 71, 0.28) !important;
  }

  .ch-capsule-text {
    font-size: 0.55rem !important;
    letter-spacing: 0.07em !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
}

@media (max-width: 360px) {
  .ch-bottom-capsules {
    gap: 12px !important;
    padding: 0 8px !important;
    bottom: 34px !important;
  }

  .ch-badge-capsule {
    padding: 3px 8px 3px 3px !important;
    gap: 4px !important;
  }

  .ch-capsule-tag {
    font-size: 0.52rem !important;
    padding: 2px 6px !important;
  }

  .ch-capsule-text {
    font-size: 0.52rem !important;
    letter-spacing: 0.05em !important;
  }
}

/* ---------- PRODUCT PANELS (Product 01 & Product 02) ---------- */
.aurique-product {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: #16241d;
  position: relative;
}

.aurique-product.p1 {
  background: #FAF7F1;
  border-top: 1px solid rgba(216, 177, 92, 0.18);
}

.aurique-product.p2 {
  background: #F1ECE0;
  border-top: 1px solid rgba(29, 36, 32, 0.08);
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3.2rem);
  position: relative;
  z-index: 2;
}

.aurique-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.aurique-product-media {
  position: sticky;
  top: 6rem;
}

.aurique-product-media .aurique-product-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 12px;
  filter: drop-shadow(0 25px 40px rgba(20, 30, 25, 0.18));
}

.aurique-product-media .aurique-product-caption {
  text-align: center;
  margin-top: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #16241d;
}

.aurique-product-media .aurique-product-caption small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #4d5951;
  margin-top: 0.4rem;
}

.aurique-product-copy .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b08d57;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.aurique-product-copy .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #b08d57;
  display: inline-block;
}

.aurique-product-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin-bottom: 0.4rem;
  color: #16241d;
}

.aurique-product-copy .subtag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #2e4e49;
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}

.aurique-product.p2 .subtag {
  color: #1c3436;
}

.aurique-product-copy .block-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 1rem;
  color: #16241d;
}

.aurique-product-copy .lede {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: #4d5951;
  max-width: 56ch;
}

.divider {
  border: none;
  border-top: 1px solid rgba(22, 36, 29, 0.12);
  margin: 2.2rem 0;
}

.ingredients h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  color: #16241d;
}

.ingredients ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.ingredients li {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(22, 36, 29, 0.12);
  max-width: 56ch;
  font-family: 'Jost', sans-serif;
}

.ingredients b {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #16241d;
}

.ingredients span {
  color: #4d5951;
}

.buy-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  min-width: 0;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #16241d;
}

.price small {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #4d5951;
  margin-left: 0.5rem;
  text-transform: uppercase;
}

.qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(22, 36, 29, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #16241d;
}

.qty span {
  width: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #16241d;
  font-family: 'Jost', sans-serif;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #16241d;
  background: #16241d;
  color: #fff;
  transition: transform .3s ease, background .3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
}

.buy-note {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4d5951;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 2rem;
  display: inline-block;
  font-family: 'Jost', sans-serif;
}

.usage {
  background: rgba(22, 36, 29, 0.04);
  border-left: 2px solid #b08d57;
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  color: #4d5951;
  max-width: 56ch;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 880px) {
  .aurique-product-grid {
    grid-template-columns: 1fr;
  }

  .aurique-product-media {
    position: relative;
    top: auto;
    margin-bottom: 2.2rem;
  }

  .aurique-product-media .aurique-product-img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .aurique-product {
    padding: 3rem 0;
  }

  .aurique-product-media .aurique-product-img {
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }

  .aurique-product-copy h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .buy-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .usage {
    max-width: 100%;
  }
}

/* ---------- COMPARE SECTION (DARK LUXURY CARDS) ---------- */
.compare {
  background: linear-gradient(180deg, #05070A 0%, #071015 80px, #0B171D 160px, #0E1D24 260px, #0E1D24 100%) !important;
  margin-top: -1px;
  border-top: none !important;
  position: relative;
  z-index: 2;
  color: var(--cream-2);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.compare-head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  padding: 0 1rem;
}

.compare-head h2 {
  color: #fff;
  font-size: clamp(1.2rem, 3.6vw, 3.2rem);
  margin: 1rem auto 1.2rem;
  font-family: 'Playfair Display', serif;
  white-space: normal;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.compare-head h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.compare-head p {
  color: rgba(250, 247, 241, 0.65);
  line-height: 1.75;
  font-family: 'Jost', sans-serif;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.compare-card {
  background: #16252C !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.4rem, 3vw, 2.2rem);
  text-align: center;
}

.compare-card img {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 auto 1.8rem;
  border-radius: 8px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.compare-card h3 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-family: 'Playfair Display', serif;
}

.compare-card .tag {
  color: #E2CE9C !important;
  -webkit-text-fill-color: #E2CE9C !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  margin-top: 0.5rem !important;
  margin-bottom: 1.8rem !important;
  font-family: 'Jost', sans-serif !important;
  text-align: center !important;
}

.compare-rows {
  text-align: left;
  margin-bottom: 1.8rem;
}

.compare-rows div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  min-width: 0;
  font-family: 'Jost', sans-serif;
}

.compare-rows span:first-child {
  color: rgba(250, 247, 241, 0.55);
  flex-shrink: 0;
}

.compare-rows b {
  font-weight: 500;
  color: #fff;
  text-align: right;
  min-width: 0;
}

.compare-price {
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem;
}

.price-current {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.price-was {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.0vw, 1.3rem);
  color: rgba(255, 255, 255, 0.44);
  text-decoration: line-through;
  text-decoration-color: rgba(201, 168, 76, 0.70);
  text-decoration-thickness: 1.5px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.price-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.16);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: #E2CE9C;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.btn.gold,
.aurique-buy-form .btn.gold,
.compare-card .btn.gold,
button.btn.gold {
  background: #C9A24B !important;
  background-color: #C9A24B !important;
  border: 1px solid #C9A24B !important;
  color: #05070A !important;
  -webkit-text-fill-color: #05070A !important;
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 15px rgba(201, 162, 75, 0.35) !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.btn.gold:hover,
.aurique-buy-form .btn.gold:hover,
.compare-card .btn.gold:hover,
button.btn.gold:hover {
  background: #E7CE93 !important;
  background-color: #E7CE93 !important;
  border-color: #E7CE93 !important;
  color: #05070A !important;
  -webkit-text-fill-color: #05070A !important;
  box-shadow: 0 6px 20px rgba(231, 206, 147, 0.45) !important;
}

.btn.ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 100%;
  margin-top: 0.9rem;
  text-align: center;
  display: block;
}

.btn.ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 780px) {
  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .compare-card img {
    max-width: 180px;
  }
}

/* =====================================================
   MOBILE RESPONSIVE OVERRIDES (Placed at end for CSS cascade)
   ===================================================== */
@media (max-width: 768px) {
  .topbar {
    height: 62px !important;
  }

  .usp {
    margin-top: 0 !important;
  }

  .usp-hero {
    min-height: auto;
    padding: calc(62px + 4rem) 1.2rem 2.5rem;
    flex-direction: column;
    text-align: center;
  }

  .usp-head {
    max-width: 100%;
    width: 100%;
  }

  /* Switch jars from absolute overlay to in-flow side-by-side flex row */
  .usp-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin: 1.6rem 0 1.2rem !important;
    pointer-events: none !important;
    overflow: visible !important;
  }

  /* Each jar container becomes a flex column */
  .usp-jar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: clamp(165px, 46vw, 240px) !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    will-change: transform, opacity;
  }

  .usp-jar-left {
    order: 1 !important;
  }

  .usp-jar-right {
    order: 2 !important;
  }

  /* Badges sit centered underneath each jar image as sleek stacked mini cards */
  .usp-jar-badge {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(8, 12, 16, 0.85) !important;
    border: 1px solid rgba(201, 162, 75, 0.3) !important;
    border-radius: 12px !important;
    padding: 5px 10px !important;
    margin-top: 6px !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    width: 100% !important;
    max-width: 135px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .usp-jar-badge span {
    display: block !important;
    font-size: 0.58rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
  }

  .usp-jar-badge small {
    display: block !important;
    font-size: 0.48rem !important;
    opacity: 0.8 !important;
    letter-spacing: 0.04em !important;
    margin-top: 2px !important;
    line-height: 1.2 !important;
    font-weight: normal !important;
  }

  .usp-jar-badge small::before {
    display: none !important;
  }

  .usp-jar-badge--day {
    color: #E7CE93 !important;
    border-color: rgba(231, 206, 147, 0.45) !important;
  }

  .usp-jar-badge--night {
    color: #6FA6AC !important;
    border-color: rgba(111, 166, 172, 0.45) !important;
  }

  .usp-jar-img {
    order: 1 !important;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5)) !important;
  }

  .usp-head-sub {
    margin-top: 1rem !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
  }

  .usp-stats {
    gap: 0.4rem !important;
    padding: 0.45rem 0.7rem !important;
    margin-top: 1.2rem !important;
    margin-bottom: 0.6rem !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    backdrop-filter: blur(5px) saturate(120%) brightness(1.02) !important;
    -webkit-backdrop-filter: blur(5px) saturate(120%) brightness(1.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
      inset 0 1px 1px rgba(255, 255, 255, 0.35),
      inset 0 -1px 0 rgba(255, 255, 255, 0.04) !important;
  }

  .usp-stat-num {
    font-size: 1.1rem !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5) !important;
  }

  .usp-stat-lbl {
    font-size: 0.46rem !important;
    letter-spacing: 0.04em !important;
    color: rgba(243, 239, 231, 0.9) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
    white-space: nowrap !important;
  }

  .usp-stat-divider {
    height: 26px !important;
  }

  /* Fix scroll button centering */
  .usp-scroll-btn {
    display: flex !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 14px 24px !important;
    font-size: 0.68rem !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0 1rem !important;
    height: 62px !important;
  }

  .usp {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .topbar-logo-img {
    height: 44px !important;
    max-width: 120px !important;
  }

  .topbar .tag {
    font-size: 0.55rem !important;
    letter-spacing: 0.1em !important;
  }

  .usp-visual {
    gap: 0.6rem !important;
  }

  .usp-jar {
    top: 76% !important;
    width: clamp(155px, 44vw, 210px) !important;
  }

  .usp-jar-badge {
    font-size: 0.46rem !important;
    padding: 3px 7px !important;
    letter-spacing: 0.05em !important;
  }

  .usp-scroll-btn {
    max-width: 100% !important;
  }

  .buy-row {
    gap: 0.8rem !important;
    flex-wrap: wrap !important;
  }

  .btn {
    padding: 0.8rem 1.4rem !important;
    font-size: 0.76rem !important;
  }

  .compare-head {
    text-align: center;
    max-width: 100%;
    margin: 0 auto clamp(2.5rem, 6vw, 4rem);
    padding: 0 1rem;
  }

  .compare-grid {
    padding: 0 1rem !important;
  }

  .compare-card {
    padding: 1.4rem 1rem !important;
    border-radius: 14px !important;
  }

  .compare-rows div {
    font-size: 0.8rem !important;
  }

  .aurique-product-copy .lede {
    font-size: 0.9rem !important;
  }

  .ingredients li {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .compare-head h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .compare-head h2 {
    font-size: 1.15rem;
    white-space: normal;
  }
}


/* ===== COMPARE CARDS EQUAL ALIGNMENT FIX ===== */
@media (min-width: 781px) {
  .compare-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 2rem !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
  }
}

@media (max-width: 780px) {
  .compare-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 0 1.2rem !important;
    gap: 2.2rem !important;
    align-items: stretch !important;
  }
}

.compare-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

.compare-card h3 {
  min-height: 2.4rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 0.5rem 0 !important;
}

.compare-card .tag {
  color: #E2CE9C !important;
  -webkit-text-fill-color: #E2CE9C !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  min-height: 2.8rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  margin-bottom: 1.6rem !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

.compare-rows {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 1.6rem !important;
}

@media (min-width: 781px) {
  .compare-rows div:nth-child(1) {
    min-height: 2.8rem !important;
    display: flex !important;
    align-items: center !important;
  }

  .compare-rows div:nth-child(2) {
    min-height: 2rem !important;
    display: flex !important;
    align-items: center !important;
  }

  .compare-rows div:nth-child(3) {
    min-height: 4.8rem !important;
    display: flex !important;
    align-items: flex-start !important;
  }

  .compare-rows div:nth-child(4) {
    min-height: 2rem !important;
    display: flex !important;
    align-items: center !important;
  }
}

.compare-price {
  margin-top: auto !important;
  margin-bottom: 1.3rem !important;
  min-height: 68px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.aurique-buy-form {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.aurique-qty-control {
  margin: 0 auto 1.2rem !important;
  height: 40px !important;
  box-sizing: border-box !important;
}

.aurique-buy-form .btn.gold,
.compare-card .btn.gold,
.btn.gold.buy-now,
button.btn.gold {
  width: 100% !important;
  max-width: 320px !important;
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px !important;
  padding: 0 1.5rem !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  background: #C9A24B !important;
  background-color: #C9A24B !important;
  border: 1px solid #C9A24B !important;
  color: #05070A !important;
  -webkit-text-fill-color: #05070A !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 15px rgba(201, 162, 75, 0.35) !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.aurique-buy-form .btn.gold:hover,
.compare-card .btn.gold:hover,
.btn.gold.buy-now:hover,
button.btn.gold:hover {
  background: #E7CE93 !important;
  background-color: #E7CE93 !important;
  border-color: #E7CE93 !important;
  color: #05070A !important;
  -webkit-text-fill-color: #05070A !important;
  box-shadow: 0 6px 20px rgba(231, 206, 147, 0.45) !important;
}

.compare-card .btn.ghost-light {
  width: 100% !important;
  max-width: 320px !important;
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px !important;
  padding: 0 1.5rem !important;
  margin: 0.8rem auto 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

/* ---------------------------------------------------------------

