/* ============================================================
   PARAZYN BALANCE — Premium Hungarian Wellness Ecommerce
   Design System & Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --color-bg: #0f0e0c;
  --color-bg-2: #161410;
  --color-surface: #1e1b16;
  --color-surface-2: #252118;
  --color-card: #1a1815;
  --color-border: rgba(196, 164, 104, 0.15);
  --color-border-light: rgba(255,255,255,0.06);

  --gold: #c4a468;
  --gold-light: #d4b87a;
  --gold-dark: #9a7d4a;
  --gold-shimmer: #e8d5a0;

  --beige: #f5efe6;
  --beige-dark: #e8ddd0;
  --cream: #faf7f2;
  --warm-white: #f9f6f0;

  --olive: #6b7c5c;
  --olive-light: #8a9e72;
  --sage: #a8b89a;

  --text-primary: #f0ebe0;
  --text-secondary: #b8a88a;
  --text-muted: #7a7060;
  --text-dark: #1a1512;
  --text-dark-secondary: #4a3f30;

  --accent-warm: #c4773a;
  --accent-rich: #8b4513;

  --success: #4a7c59;
  --error: #a0392a;
  --warning: #b07a20;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(196,164,104,0.15);
  --shadow-glow: 0 0 80px rgba(196,164,104,0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-width: 1240px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container-pad: clamp(16px, 5vw, 60px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-shimmer);
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-shimmer));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── PROMOTIONAL TOP BAR ── */
.promo-bar {
  background: linear-gradient(90deg, #1a1510, #2a2018, #1a1510);
  border-bottom: 1px solid var(--color-border);
  padding: 10px var(--container-pad);
  text-align: center;
  position: relative;
  z-index: 100;
}

.promo-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-bar__badge {
  background: rgba(196,164,104,0.2);
  border: 1px solid var(--color-border);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

.promo-bar__text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.promo-bar__text strong {
  color: var(--text-primary);
}

.promo-bar__separator {
  color: var(--gold-dark);
  opacity: 0.5;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ── STICKY HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(15,14,12,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-med);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.site-logo__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.site-logo__name span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color var(--transition-fast);
}

.site-nav a:hover {
  color: var(--text-primary);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-med);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 0.06;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-shimmer) 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(196,164,104,0.35), 0 0 0 0 rgba(196,164,104,0.4);
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,164,104,0.5), 0 0 0 0 rgba(196,164,104,0.4);
  color: var(--text-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,164,104,0.05);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.btn--dark {
  background: var(--color-surface-2);
  color: var(--text-primary);
  border: 1px solid var(--color-border);
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn--xl {
  padding: 20px 44px;
  font-size: 17px;
}

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

.btn--checkout {
  background: linear-gradient(135deg, #2d5a1b, #4a8c2a, #6aac42);
  color: white;
  box-shadow: 0 4px 20px rgba(74,140,42,0.3);
}

.btn--checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,140,42,0.4);
  color: white;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(196,164,104,0.35), 0 0 0 0 rgba(196,164,104,0); }
  50% { box-shadow: 0 4px 28px rgba(196,164,104,0.45), 0 0 30px rgba(196,164,104,0.1); }
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── SECTION BASICS ── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

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

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

.section--light {
  background: var(--beige);
}

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

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  background: var(--gold);
  opacity: 0.5;
}

.section-label--center {
  justify-content: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title--dark {
  color: var(--text-dark);
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.section-subtitle--dark {
  color: var(--text-dark-secondary);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ── DISCLAIMER BOXES ── */
.disclaimer-banner {
  background: rgba(156, 120, 60, 0.08);
  border: 1px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer-banner__icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-banner--light {
  background: rgba(107, 84, 40, 0.05);
  border-color: rgba(107, 84, 40, 0.15);
  color: var(--text-dark-secondary);
}

.disclaimer-banner--prominent {
  background: rgba(196,164,104,0.05);
  border: 1px solid rgba(196,164,104,0.25);
  border-left: 3px solid var(--gold);
  color: #8a7a60;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(90deg, var(--color-surface), var(--color-surface-2), var(--color-surface));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: trust-scroll 30s linear infinite;
  width: max-content;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-right: 1px solid var(--color-border);
}

.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__item .icon {
  color: var(--gold);
  font-size: 16px;
}

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

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(40,30,15,0.9) 0%, var(--color-bg) 70%),
              linear-gradient(135deg, #0f0e0c 0%, #1a160e 50%, #0f0e0c 100%);
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
  pointer-events: none;
}

.hero__bg-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation: orb-float-1 12s ease-in-out infinite;
}

.hero__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--olive);
  bottom: -50px;
  left: -50px;
  animation: orb-float-2 15s ease-in-out infinite;
}

.hero__bg-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--gold-shimmer);
  top: 40%;
  left: 40%;
  animation: orb-float-3 10s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(0.9); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 15px); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--container-pad) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,164,104,0.1);
  border: 1px solid rgba(196,164,104,0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__title span {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__bullets {
  list-style: none;
  margin-bottom: 36px;
  display: grid;
  gap: 10px;
}

.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  animation: bullet-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__bullet:nth-child(1) { animation-delay: 0.3s; }
.hero__bullet:nth-child(2) { animation-delay: 0.4s; }
.hero__bullet:nth-child(3) { animation-delay: 0.5s; }
.hero__bullet:nth-child(4) { animation-delay: 0.6s; }
.hero__bullet:nth-child(5) { animation-delay: 0.7s; }
.hero__bullet:nth-child(6) { animation-delay: 0.8s; }

@keyframes bullet-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__bullet-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 480px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

/* ── PRODUCT VISUAL (CSS-based) ── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-visual-reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes hero-visual-reveal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-3d {
  position: relative;
  width: 320px;
  height: 480px;
  animation: product-float 6s ease-in-out infinite;
}

@keyframes product-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

.product-3d__bottle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottle-shape {
  position: relative;
  width: 160px;
  height: 360px;
  margin-top: 60px;
}

.bottle-cap {
  width: 70px;
  height: 45px;
  background: linear-gradient(180deg, #3d3020, #2a2014);
  border-radius: 8px 8px 4px 4px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.bottle-cap::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -5px;
  right: -5px;
  height: 10px;
  background: linear-gradient(180deg, #4a3a22, #2a2014);
  border-radius: 4px;
}

.bottle-body {
  width: 150px;
  height: 300px;
  background: linear-gradient(135deg,
    rgba(255,218,130,0.15) 0%,
    rgba(200,170,90,0.25) 20%,
    rgba(180,140,60,0.35) 40%,
    rgba(140,100,40,0.45) 60%,
    rgba(100,70,20,0.35) 80%,
    rgba(180,140,60,0.2) 100%);
  border-radius: 20px 20px 30px 30px;
  position: relative;
  overflow: hidden;
  box-shadow:
    2px 0 0 rgba(255,220,140,0.15),
    -2px 0 0 rgba(0,0,0,0.3),
    0 20px 60px rgba(0,0,0,0.7),
    inset 4px 0 15px rgba(255,220,140,0.08),
    inset -4px 0 15px rgba(0,0,0,0.3);
  border: 1px solid rgba(200,170,100,0.2);
}

.bottle-body::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 15px;
  width: 12px;
  bottom: 15px;
  background: linear-gradient(180deg, rgba(255,230,160,0.3), rgba(255,220,140,0.1), rgba(255,230,160,0.2));
  border-radius: 10px;
}

.bottle-label {
  position: absolute;
  inset: 18px 12px;
  background: linear-gradient(175deg, #faf6ec, #f0e8d4, #e8dcc0);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(200,170,100,0.3);
}

.bottle-label__brand {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

.bottle-label__brand span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-dark-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bottle-label__emblem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(196,164,104,0.1), rgba(196,164,104,0.05));
}

.bottle-label__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #1a1206;
  letter-spacing: -0.3px;
  text-align: center;
}

.bottle-label__sub {
  font-size: 8px;
  color: #6b5a30;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.bottle-label__divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.bottle-label__count {
  font-size: 11px;
  color: #4a3a1a;
  font-weight: 600;
}

.bottle-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(196,164,104,0.25) 0%, transparent 70%);
  animation: bottle-glow-pulse 3s ease-in-out infinite;
}

@keyframes bottle-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

.product-3d__badge {
  position: absolute;
  top: 40px;
  right: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  animation: badge-bounce 4s ease-in-out infinite;
}

@keyframes badge-bounce {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

.product-3d__trust {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  animation: card-float 5s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.product-3d__trust-icon {
  color: var(--gold);
  font-size: 20px;
}

.product-3d__trust-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.product-3d__trust-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 13px;
}

/* ── HOTSPOT ── */
.product-hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196,164,104,0.1);
  border: 1.5px solid rgba(196,164,104,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: hotspot-pulse 2.5s ease-in-out infinite;
}

.product-hotspot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(196,164,104,0.2);
  animation: hotspot-ring 2.5s ease-in-out infinite;
}

.product-hotspot--1 { top: 80px; right: 20px; }
.product-hotspot--2 { top: 200px; left: 10px; }

@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes hotspot-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}

.product-hotspot__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,164,104,0.3);
  box-shadow: var(--shadow-gold);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(196,164,104,0.1), rgba(196,164,104,0.05));
  border: 1px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Feature cards light version */
.feature-card--light {
  background: white;
  border-color: rgba(196,164,104,0.15);
}

.feature-card--light .feature-card__title {
  color: var(--text-dark);
}

.feature-card--light .feature-card__text {
  color: var(--text-dark-secondary);
}

/* ── PRODUCT GALLERY ── */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-med);
  aspect-ratio: 3/4;
  border: 1px solid var(--color-border);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item__visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── COMPARISON TABLE ── */
.comparison-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.comparison-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--color-surface);
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  gap: 16px;
}

.comparison-table__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.comparison-table__col-title--highlight {
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 24px;
  gap: 16px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 14px;
  transition: background var(--transition-fast);
  animation: row-reveal 0.5s ease both;
}

.comparison-table__row:hover {
  background: rgba(255,255,255,0.02);
}

.comparison-table__row:last-child {
  border-bottom: none;
}

.comparison-table__feature {
  color: var(--text-secondary);
}

.comparison-table__cell {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

.comparison-table__cell--yes {
  color: var(--olive-light);
}

.comparison-table__cell--no {
  color: #6a4040;
}

.comparison-table__cell--partial {
  color: var(--warning);
}

/* ── SHOPIFY PRODUCT SECTION ── */
.shopify-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.shopify-gallery {
  position: sticky;
  top: 100px;
}

.shopify-gallery__main {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.shopify-gallery__main-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,220,140,0.03) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(200%) rotate(45deg); }
}

.shopify-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.shopify-gallery__thumb {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.shopify-gallery__thumb:hover,
.shopify-gallery__thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(196,164,104,0.2);
}

.shopify-product__info {
  padding-top: 10px;
}

.shopify-product__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(106,172,66,0.12);
  border: 1px solid rgba(106,172,66,0.25);
  color: #6aac42;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.shopify-product__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.15;
}

.shopify-product__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.shopify-product__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-primary);
}

.price-old {
  font-size: 22px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-badge {
  background: linear-gradient(135deg, #8b2a1a, #c0392b);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  animation: price-pulse 2s ease-in-out infinite;
}

@keyframes price-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(192,57,43,0); }
}

.shopify-product__variants {
  margin-bottom: 24px;
}

.variants-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.variants-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.variant-btn:hover,
.variant-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,164,104,0.05);
}

.shopify-product__quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.qty-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background: var(--color-surface-2);
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--color-surface);
  color: var(--gold);
}

.qty-display {
  width: 52px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 10px 0;
  outline: none;
}

.shopify-product__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.shopify-product__cta-full {
  grid-template-columns: 1fr;
}

.shopify-trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.trust-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.trust-icon-item__icon {
  color: var(--gold);
  font-size: 16px;
}

/* ── ACCORDION ── */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all var(--transition-fast);
}

.accordion-trigger:hover {
  background: rgba(255,255,255,0.02);
  color: var(--gold);
}

.accordion-trigger__icon {
  font-size: 18px;
  color: var(--gold);
  transition: transform var(--transition-med);
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-trigger__icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.accordion-content.open {
  max-height: 500px;
}

.accordion-content__inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FAQ SECTION ── */
.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(196,164,104,0.25);
}

.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: color var(--transition-fast);
}

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

.faq-trigger__icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform var(--transition-med);
  flex-shrink: 0;
}

.faq-item.open .faq-trigger__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 0 26px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--color-border-light);
  padding-top: 18px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand__logo span {
  color: var(--gold);
}

.footer-brand__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(15,14,12,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 14px var(--container-pad);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform var(--transition-med);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta__info {
  font-size: 12px;
  color: var(--text-muted);
}

.sticky-cta__info strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.sticky-cta__price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

/* ── INFO SECTIONS ── */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-block--reverse {
  direction: rtl;
}

.info-block--reverse > * {
  direction: ltr;
}

.info-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.info-content {
  padding: 20px 0;
}

.info-content__list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.info-content__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-content__list-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── STATS / NUMBERS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-med);
}

.stat-item:hover {
  border-color: rgba(196,164,104,0.3);
  transform: translateY(-4px);
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── CTA TRANSITION BLOCK ── */
.cta-transition {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 50%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-transition::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(196,164,104,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-transition__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-transition__title span {
  color: var(--gold);
  font-style: italic;
}

.cta-transition__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-transition__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-transition__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-transition__trust-item .icon {
  color: var(--gold);
}

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }

/* ── SECTION DIVIDERS ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* ── PARALLAX ── */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

/* ── CHECKOUT PAGE SPECIFIC ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: 100vh;
  gap: 0;
}

.checkout-main {
  padding: 48px clamp(24px, 5vw, 60px);
  background: var(--beige);
  min-height: 100vh;
}

.checkout-sidebar {
  background: #f0ebe0;
  border-left: 1px solid rgba(196,164,104,0.15);
  padding: 48px 32px;
  position: relative;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(196,164,104,0.15);
}

.checkout-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.checkout-logo span {
  color: var(--gold-dark);
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dark-secondary);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 4px;
}

.checkout-step.active {
  color: var(--gold-dark);
  font-weight: 600;
}

.checkout-step-sep {
  color: var(--text-dark-secondary);
  opacity: 0.4;
}

.checkout-section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,164,104,0.2);
}

.checkout-form-group {
  margin-bottom: 20px;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dark-secondary);
  margin-bottom: 8px;
}

.checkout-input {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.checkout-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(196,164,104,0.1);
}

.checkout-input::placeholder {
  color: rgba(74,63,48,0.3);
}

.checkout-select {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c4a468' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  transition: all var(--transition-fast);
}

.checkout-select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(196,164,104,0.1);
}

.checkout-textarea {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: all var(--transition-fast);
}

.checkout-textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(196,164,104,0.1);
}

.checkout-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.checkout-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(196,164,104,0.3);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold-dark);
}

.checkout-checkbox-label {
  font-size: 13px;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

.checkout-payment-options {
  display: grid;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 1.5px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--gold-dark);
  background: rgba(196,164,104,0.03);
}

.payment-option__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,164,104,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-option.selected .payment-option__radio {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.payment-option.selected .payment-option__radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

.payment-option__icon {
  font-size: 20px;
}

.payment-option__info {
  flex: 1;
}

.payment-option__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.payment-option__desc {
  font-size: 12px;
  color: var(--text-dark-secondary);
  margin-top: 2px;
}

/* Checkout Sidebar */
.checkout-summary-toggle {
  display: none;
  width: 100%;
  padding: 14px 16px;
  background: #ede5d8;
  border: none;
  border-bottom: 1px solid rgba(196,164,104,0.2);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196,164,104,0.1);
}

.order-product-thumb {
  width: 64px;
  height: 64px;
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196,164,104,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
}

.order-product-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--gold-dark);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-product-info {
  flex: 1;
}

.order-product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.order-product-variant {
  font-size: 11px;
  color: var(--text-dark-secondary);
  margin-top: 2px;
}

.order-product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.discount-code-row {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.discount-code-input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  background: white;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition-fast);
}

.discount-code-input:focus {
  border-color: var(--gold-dark);
}

.discount-apply-btn {
  padding: 12px 18px;
  background: var(--color-surface-2);
  border: 1.5px solid rgba(196,164,104,0.3);
  border-radius: var(--radius-md);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.discount-apply-btn:hover {
  background: rgba(196,164,104,0.1);
  border-color: var(--gold-dark);
}

.summary-lines {
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dark-secondary);
}

.summary-line--total {
  border-top: 1px solid rgba(196,164,104,0.15);
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.summary-line--total .summary-value {
  font-family: var(--font-serif);
  font-size: 22px;
}

.checkout-secure-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-dark-secondary);
}

/* ── CONFIRMATION PAGE ── */
.confirmation-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px var(--container-pad);
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2d5a1b, #4a8c2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  animation: confirm-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confirm-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ── LEGAL/SUPPORT PAGES ── */
.legal-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-pad) var(--container-pad);
}

.legal-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
  margin: 36px 0 14px;
  font-weight: 600;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 10px;
}

.legal-body p {
  margin-bottom: 16px;
}

.legal-body ul, .legal-body ol {
  margin: 16px 0 16px 24px;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── TRACKING PAGE ── */
.tracking-form {
  max-width: 520px;
  margin: 0 auto;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.contact-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,164,104,0.08);
}

.contact-input::placeholder {
  color: var(--text-muted);
}

.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-primary);
  resize: vertical;
  min-height: 140px;
  outline: none;
  transition: all var(--transition-fast);
}

.contact-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,164,104,0.08);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(196,164,104,0.08);
  border: 1px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

/* Visual placeholders (CSS art) */
.visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .shopify-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shopify-gallery {
    position: static;
  }

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

  .checkout-sidebar {
    border-left: none;
    border-top: 1px solid rgba(196,164,104,0.15);
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__bullets {
    text-align: left;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__subtitle {
    margin: 0 auto 32px;
  }

  .hero__disclaimer {
    margin: 0 auto;
  }

  .hero__visual {
    order: -1;
  }

  .product-3d {
    width: 240px;
    height: 360px;
  }

  .bottle-shape {
    width: 120px;
    height: 270px;
  }

  .bottle-body {
    width: 110px;
    height: 220px;
  }

  .site-nav {
    display: none;
  }

  .sticky-cta {
    display: flex;
  }

  .info-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-block--reverse {
    direction: ltr;
  }

  .comparison-table__header,
  .comparison-table__row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .comparison-table__col-title:last-child,
  .comparison-table__cell:last-child {
    display: none;
  }

  .shopify-product__cta {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

  .promo-bar__inner {
    gap: 8px;
  }

  .promo-bar__separator {
    display: none;
  }

  .section-title {
    font-size: 24px;
  }

  .shopify-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Animations for supporting pages & nav ── */
.page-nav {
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
  padding: 12px var(--container-pad);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.page-nav a {
  color: var(--text-muted);
}

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

.page-nav__sep {
  opacity: 0.5;
}

/* Express checkout strip */
.express-checkout {
  background: var(--beige-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 28px;
  text-align: center;
}

.express-checkout__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.express-checkout__title::before,
.express-checkout__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,164,104,0.2);
}

.express-checkout__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.express-btn {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(196,164,104,0.2);
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.express-btn:hover {
  border-color: var(--gold-dark);
  background: rgba(196,164,104,0.05);
}

/* ── NEW PRODUCT & INGREDIENT STYLES ── */
.hero-product-img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 80px rgba(196, 164, 104, 0.45));
  animation: float-3d 6s ease-in-out infinite;
  transition: transform var(--transition-slow);
}

@keyframes float-3d {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(2deg); }
}

.spotlight-photo-container {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  perspective: 1000px;
}

.spotlight-main-img {
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(196, 164, 104, 0.35));
  transition: transform var(--transition-med);
}

.spotlight-main-img:hover {
  transform: scale(1.05) rotateX(5deg);
}

/* Ingredients Showcase */
.section-dark-gold {
  background: radial-gradient(circle at 50% 0%, #252015 0%, #0f0e0c 100%);
  border-top: 1px solid var(--color-border);
  padding: 100px 0;
}

.ingredients-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .ingredients-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ingredients-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ingredients-showcase {
    grid-template-columns: 1fr;
  }
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 164, 104, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ingredient-img-box {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ingredient-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ingredient-card:hover .ingredient-img-box img {
  transform: scale(1.15);
}

.ingredient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 14, 12, 0.8));
}

.ingredient-info {
  position: relative;
  z-index: 2;
}

.ingredient-info h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.ingredient-info p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ingredient-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  padding: 6px 14px;
  background: rgba(196, 164, 104, 0.1);
  border: 1px solid rgba(196, 164, 104, 0.25);
  border-radius: var(--radius-full);
}

/* Shopify Section Layout Fix */
.shopify-product {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.product-photo-wrap {
  position: relative;
  padding: 60px;
  background: radial-gradient(circle at center, rgba(196, 164, 104, 0.12) 0%, transparent 75%);
  border-radius: var(--radius-xl);
  display: flex;
  justify-content: center;
}

.shopify-main-img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  animation: float-simple 8s ease-in-out infinite;
}

@keyframes float-simple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 991px) {
  .shopify-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ingredients-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ingredient-img-box {
    height: 200px;
  }
}

/* ================================================================
   COMPATIBILITY LAYER — flat class names used by HTML
   ================================================================ */

/* ── CSS VARIABLE ADDITIONS ── */
:root {
  --text-muted2: rgba(74, 63, 48, 0.65);
  --white: #ffffff;
}

/* ── SECTION VARIANTS ── */
.section-dark  { background: var(--color-bg); }
.section-dark2 { background: var(--color-bg-2); }
.section-warm  { background: #f5ede0; }
.section-light { background: var(--beige); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-warm  .section-eyebrow,
.section-light .section-eyebrow { color: var(--gold-dark); }

.section-dark  h2,
.section-dark2 h2,
.section-dark-gold h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-warm h2,
.section-light h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-warm .section-subtitle,
.section-light .section-subtitle { color: var(--text-dark-secondary); }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin: 18px auto 28px;
  border-radius: 2px;
}
.section-center .divider { margin-left: auto; margin-right: auto; }
.spotlight-content .divider,
.awareness-content .divider { margin-left: 0; }

/* ── PROMO BAR LINK ── */
.promo-bar__link {
  font-size: 12px;
  color: var(--gold);
  text-decoration: underline;
  white-space: nowrap;
}

/* ── TRUST BAR (flat naming) ── */
.trust-bar-track {
  display: flex;
  align-items: center;
  animation: trust-scroll 30s linear infinite;
  width: max-content;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-bar-item svg { color: var(--gold); flex-shrink: 0; }
.trust-bar-sep {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── HAMBURGER & MOBILE MENU ── */
.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: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
@media (max-width: 768px) { .nav-hamburger { display: flex; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(15,14,12,0.97);
  backdrop-filter: blur(20px);
  z-index: 450;
  padding: 60px var(--container-pad) 40px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 20px;
  font-family: var(--font-serif);
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  width: 100%;
  text-align: center;
}
.mobile-menu a.btn--primary { margin-top: 20px; border: none; }

/* ── HERO PRODUCT VISUAL ── */
.hero-glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(196,164,104,0.15);
  box-shadow: 0 0 80px rgba(196,164,104,0.1), inset 0 0 80px rgba(196,164,104,0.05);
  animation: ring-pulse 4s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 1; }
}
.product-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SPOTLIGHT SECTION ── */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.spotlight-img-wrap { position: relative; }
.spotlight-label {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.spotlight-label span { display: block; font-size: 11px; margin-top: 4px; }
.spotlight-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── FEATURE CARD (flat icon name) ── */
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(196,164,104,0.1), rgba(196,164,104,0.05));
  border: 1px solid rgba(196,164,104,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.section-warm  .feature-card,
.section-light .feature-card { background: #fff; border-color: rgba(196,164,104,0.15); }
.section-warm  .feature-card h4,
.section-light .feature-card h4 { color: var(--text-dark); }
.section-warm  .feature-card p,
.section-light .feature-card p  { color: var(--text-dark-secondary); }

/* ── AWARENESS SECTION ── */
.awareness-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.awareness-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.awareness-sidebar { display: grid; gap: 16px; }
.awareness-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color var(--transition-fast);
}
.awareness-card:hover { border-color: rgba(196,164,104,0.3); }
.awareness-card-icon { font-size: 24px; margin-bottom: 10px; }
.awareness-card h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.awareness-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

.awareness-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.awareness-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ── WHO SECTION ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.who-card {
  background: #fff;
  border: 1px solid rgba(196,164,104,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-med);
  opacity: 0;
  transform: translateY(20px);
}
.who-card.visible { opacity: 1; transform: translateY(0); }
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(196,164,104,0.3);
}
.who-card-icon { font-size: 28px; margin-bottom: 14px; }
.who-card h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.who-card p  { font-size: 14px; color: var(--text-dark-secondary); line-height: 1.65; }

/* ── COMPARISON TABLE (HTML <table> element) ── */
table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
}
table.comparison-table thead tr { background: var(--color-surface); }
table.comparison-table th,
table.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-light);
}
table.comparison-table th:first-child,
table.comparison-table td:first-child { text-align: left; color: var(--text-secondary); }
table.comparison-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
table.comparison-table th:nth-child(2) { color: var(--gold); }
table.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }
table.comparison-table tbody tr:last-child td { border-bottom: none; }
.check-yes     { color: var(--olive-light); font-size: 16px; font-weight: 700; }
.check-no      { color: #6a4040; font-size: 16px; }
.check-partial { color: var(--warning); font-size: 16px; }

/* ── PRODUCT SECTION ── */
.product-gallery-col { position: relative; }
.product-main-img { position: relative; }
.shimmer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,220,140,0.04) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.product-info-col { padding-top: 10px; }

.product-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.badge-sale    { background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3); color: #e74c3c; }
.badge-popular { background: rgba(196,164,104,0.12); border: 1px solid rgba(196,164,104,0.25); color: var(--gold); }
.badge-stock   { background: rgba(74,124,89,0.12); border: 1px solid rgba(74,124,89,0.25); color: var(--success); }

.product-info-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.15;
}
.product-tagline { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }

.price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.price-new   { font-family: var(--font-serif); font-size: 42px; font-weight: 600; color: var(--text-primary); }
.price-old   { font-size: 22px; color: var(--text-muted); text-decoration: line-through; }
.price-save  { font-size: 13px; color: #e74c3c; font-weight: 600; background: rgba(192,57,43,0.1); padding: 4px 10px; border-radius: var(--radius-full); }

.product-short-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.product-notice {
  background: rgba(196,164,104,0.06);
  border: 1px solid rgba(196,164,104,0.2);
  border-left: 3px solid var(--gold-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.quantity-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.quantity-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.quantity-selector { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }

.product-cta-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.btn-cart {
  padding: 14px 20px;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-med);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cart:hover { border-color: var(--gold); color: var(--gold); }

.btn-buy-now {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-shimmer));
  border: none;
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-med);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,164,104,0.4); color: var(--text-dark); }

.trust-badges-row { display: flex; flex-wrap: wrap; gap: 16px; padding: 16px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); margin-bottom: 16px; }
.trust-badge-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-secondary); }
.trust-badge-item svg { color: var(--gold); }

.shipping-note, .returns-note { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.shipping-note svg, .returns-note svg { color: var(--gold); flex-shrink: 0; }

/* ── ACCORDION (flat naming) ── */
.accordion-header {
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all var(--transition-fast);
}
.accordion-header:hover { background: rgba(255,255,255,0.02); color: var(--gold); }
.accordion-icon { font-size: 18px; color: var(--gold); transition: transform var(--transition-med); flex-shrink: 0; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 18px 16px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── CHECKOUT PROMO CTA ── */
.checkout-promo {
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-2));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(40px, 6vw, 80px) var(--container-pad);
  text-align: center;
}
.checkout-promo h2 { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 44px); font-weight: 600; color: var(--text-primary); margin-bottom: 14px; }
.checkout-promo > div > p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.checkout-trust-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.checkout-trust-item { display: flex; align-items: center; gap: 6px; }
.checkout-trust-item svg { color: var(--gold); }

/* ── BUTTONS (flat naming) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-shimmer));
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-med);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,164,104,0.5); color: var(--text-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-med);
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

/* ── FAQ (flat naming) ── */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--gold); }
.faq-question-icon { font-size: 22px; color: var(--gold); transition: transform var(--transition-med); flex-shrink: 0; }
.faq-item.open .faq-question-icon { transform: rotate(45deg); }
.faq-answer-inner { padding: 16px 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.75; border-top: 1px solid var(--color-border-light); }
.faq-disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(196,164,104,0.05);
  border: 1px solid rgba(196,164,104,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FINAL CTA SECTION ── */
.final-cta {
  background: linear-gradient(135deg, #0f0e0c, #1a160e, #0f0e0c);
  padding: clamp(60px, 8vw, 100px) var(--container-pad);
  text-align: center;
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(196,164,104,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 52px); font-weight: 600; color: var(--text-primary); margin-bottom: 16px; line-height: 1.15; }
.final-cta p  { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.final-cta-disclaimer { margin-top: 28px; font-size: 11px; color: var(--text-muted); line-height: 1.65; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── FOOTER (flat naming) ── */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad) 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--text-primary); margin-bottom: 14px; }
.footer-logo em { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-disclaimer-box {
  background: rgba(196,164,104,0.05);
  border: 1px solid rgba(196,164,104,0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--text-secondary); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding: 24px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── STICKY MOBILE CTA (flat naming) ── */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(15,14,12,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 12px var(--container-pad);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform var(--transition-med);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
@media (max-width: 768px) { .sticky-mobile-cta { display: flex; } }

.sticky-price { display: flex; align-items: baseline; gap: 10px; }
.sticky-price .price-new { font-size: 22px; }
.sticky-price .price-old { font-size: 14px; }
.sticky-cta-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-med);
}
.sticky-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,164,104,0.4); color: var(--text-dark); }

/* ── REVEAL DIRECTION ALIASES ── */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-bottom { transform: translateY(30px); }
.reveal.from-left.visible,
.reveal.from-right.visible,
.reveal.from-bottom.visible { opacity: 1; transform: translate(0); }

/* ── RESPONSIVE FIXES FOR NEW CLASSES ── */
@media (max-width: 1024px) {
  .spotlight-grid  { grid-template-columns: 1fr; gap: 40px; }
  .awareness-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .who-grid               { grid-template-columns: 1fr 1fr; gap: 16px; }
  .awareness-stat-grid    { grid-template-columns: 1fr 1fr; }
  .product-cta-group      { grid-template-columns: 1fr; }
  .footer-inner           { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery-col .product-photo-wrap { padding: 30px; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
}
