/* ============================================================
   FITTOXX — COLD LUXURY / CORAL PEACH PALETTE
   style.css
   ============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,300;1,9..144,400;1,9..144,600;1,9..144,700&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-cream:       #F5EDE8;
  --color-cream-dark:  #EDE0D9;
  --color-coral:       #FF8C6B;
  --color-coral-deep:  #F06B44;
  --color-peach:       #F9B99E;
  --color-peach-light: #FDDFD4;
  --color-off-black:   #2A2420;
  --color-dark:        #1E1A17;
  --color-mid:         #7A6358;
  --color-light-text:  #9E8478;
  --color-white:       #FFFFFF;
  --color-border:      rgba(255,140,107,0.18);
  --color-border-soft: rgba(42,36,32,0.10);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(42,36,32,0.07);
  --shadow-md:  0 6px 32px rgba(42,36,32,0.10);
  --shadow-lg:  0 16px 60px rgba(42,36,32,0.12);

  --transition-fast: 0.22s cubic-bezier(0.4,0,0.2,1);
  --transition-mid:  0.42s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.72s cubic-bezier(0.4,0,0.2,1);

  --nav-w: 260px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-off-black);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ============================================================
   ON-DARK SCOPING
   ============================================================ */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-coral);
}

.text-accent { color: var(--color-coral); }

em.styled {
  font-style: italic;
  color: var(--color-coral);
}

/* ============================================================
   PHOTO PLACEHOLDER
   ============================================================ */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}
.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ============================================================
   BUTTONS — B5 (SPLIT: text | price separated by vertical line)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,140,107,0.30);
}

.btn__label {
  padding: 14px 20px;
  background: var(--color-coral);
  color: #fff;
}

.btn__badge {
  padding: 14px 18px;
  background: var(--color-coral-deep);
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.22);
}

/* Ghost variant */
.btn--ghost .btn__label { background: transparent; color: var(--color-coral); border: 1.5px solid var(--color-coral); border-right: none; }
.btn--ghost .btn__badge { background: transparent; color: var(--color-coral); border: 1.5px solid var(--color-coral); border-left: 1px solid var(--color-coral); }
.btn--ghost:hover .btn__label,
.btn--ghost:hover .btn__badge { background: var(--color-coral); color: #fff; }

/* Dark variant */
.btn--dark .btn__label { background: var(--color-off-black); color: #fff; }
.btn--dark .btn__badge { background: var(--color-dark); color: rgba(255,255,255,0.80); border-left-color: rgba(255,255,255,0.12); }

/* Full-width util */
.btn--full { width: 100%; justify-content: space-between; }
.btn--full .btn__label { flex: 1; text-align: center; }

/* Simple (no badge) */
.btn--simple { border-radius: var(--radius-md); overflow: hidden; }
.btn--simple .btn__label { padding: 13px 28px; border-right: none; }

/* Soft (cream bg) */
.btn--soft .btn__label { background: var(--color-peach-light); color: var(--color-off-black); }
.btn--soft .btn__badge { background: var(--color-peach); color: var(--color-off-black); border-left-color: rgba(255,140,107,0.3); }
.btn--soft:hover { box-shadow: 0 8px 28px rgba(255,140,107,0.20); }

/* Loading state */
.btn.is-loading { opacity: 0.75; pointer-events: none; }

/* ============================================================
   SPINNER
   ============================================================ */
@keyframes spin { to { transform: rotate(360deg); } }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

/* ============================================================
   SIDE STICKY NAV — V5
   ============================================================ */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-w);
  height: 100vh;
  background: var(--color-white);
  border-right: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  z-index: 200;
  padding: 40px 0 32px;
  transition: transform var(--transition-mid);
}

.side-nav__logo {
  padding: 0 32px 40px;
  border-bottom: 1px solid var(--color-border-soft);
}

.side-nav__logo a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-off-black);
  letter-spacing: -0.02em;
}

.side-nav__logo span { color: var(--color-coral); }

.side-nav__links {
  flex: 1;
  padding: 32px 0;
  overflow-y: auto;
}

.side-nav__links li { padding: 0; }

.side-nav__links a {
  display: block;
  padding: 11px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.side-nav__links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--color-coral);
  border-radius: 0 2px 2px 0;
  transition: height var(--transition-fast);
}

.side-nav__links a:hover,
.side-nav__links a.active {
  color: var(--color-off-black);
  background: var(--color-cream);
}

.side-nav__links a:hover::before,
.side-nav__links a.active::before {
  height: 60%;
}

.side-nav__bottom {
  padding: 20px 32px 0;
  border-top: 1px solid var(--color-border-soft);
}

.side-nav__bottom p {
  font-size: 11px;
  color: var(--color-light-text);
  line-height: 1.5;
}

.side-nav__bottom a {
  color: var(--color-coral);
  font-size: 11px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 300;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-border-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-off-black);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,36,32,0.35);
  z-index: 190;
  backdrop-filter: blur(2px);
}

/* ============================================================
   PAGE LAYOUT — with side nav offset
   ============================================================ */
.page-wrap {
  margin-left: var(--nav-w);
  min-height: 100vh;
}

/* ============================================================
   HERO — Variant B (Full Bleed Immersive)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #FDDFD4 0%, #F9B99E 40%, #FF8C6B 75%, #F06B44 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,36,32,0.45) 0%, rgba(42,36,32,0.08) 50%, transparent 100%);
  z-index: 1;
}

.hero__product-float {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: clamp(240px, 38vw, 520px);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.hero__product-float img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(42,36,32,0.22));
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 80px clamp(28px, 6vw, 80px) 72px;
  max-width: 660px;
}

.hero__advertorial {
  display: inline-block;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-peach-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-strip {
  background: var(--color-off-black);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-coral);
  flex-shrink: 0;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

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

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-off-black);
  margin-top: 12px;
}

.section-header__title em {
  font-style: italic;
  color: var(--color-coral);
}

.section-header__body {
  font-size: 16px;
  color: var(--color-mid);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-header--center .section-header__body {
  margin-inline: auto;
}

/* ============================================================
   PROBLEM SECTION — large text columns, dark banner
   ============================================================ */
.section-problem {
  background: var(--color-off-black);
  padding: clamp(72px, 10vw, 120px) 0;
}

.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.22;
  color: #fff;
  max-width: 700px;
  margin-bottom: 56px;
  border-left: 3px solid var(--color-coral);
  padding-left: 32px;
}

.problem-statement em {
  font-style: italic;
  color: var(--color-peach);
}

.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.problem-col {
  padding: 40px 36px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.problem-col:last-child { border-right: none; }
.problem-col:not(:first-child) { padding-left: 36px; }

.problem-col__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-coral);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.problem-col__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.problem-col__body {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.72;
}

/* ============================================================
   PRODUCT HIGHLIGHT — FEATURED PRODUCTS ON INDEX
   ============================================================ */
.section-products {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--color-cream);
}

.products-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-cream);
  overflow: hidden;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-off-black);
  line-height: 1.2;
}

.product-card__tagline {
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.6;
  flex: 1;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-coral);
}

.product-card__cta {
  margin-top: 6px;
}

/* Featured full-width card */
.product-card--hero {
  grid-column: span 2;
  flex-direction: row;
  min-height: 340px;
}

.product-card--hero .product-card__img-wrap {
  width: 44%;
  flex-shrink: 0;
  aspect-ratio: unset;
}

.product-card--hero .product-card__body {
  padding: 36px 32px;
}

.product-card--hero .product-card__name {
  font-size: 26px;
}

.product-card__badge {
  display: inline-block;
  background: var(--color-peach-light);
  color: var(--color-coral-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* ============================================================
   UNIQUE SECTION — "RITUAL" (non-standard memorable block)
   ============================================================ */
.section-ritual {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--color-cream-dark);
  position: relative;
  overflow: hidden;
}

.ritual-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 800;
  color: rgba(255,140,107,0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

.ritual-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.ritual-left__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 20px;
}

.ritual-left__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-off-black);
  margin-bottom: 20px;
}

.ritual-left__title em {
  font-style: italic;
  color: var(--color-coral);
}

.ritual-left__body {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ritual-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.ritual-step:last-child { border-bottom: none; }

.ritual-step__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-coral);
  letter-spacing: 0.08em;
  min-width: 28px;
  padding-top: 2px;
}

.ritual-step__content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-off-black);
  margin-bottom: 4px;
}

.ritual-step__content p {
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.65;
}

.ritual-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ritual-stat-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ritual-stat-card:first-child {
  grid-column: span 2;
  background: var(--color-coral);
  color: #fff;
}

.ritual-stat-card__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-off-black);
  line-height: 1;
}

.ritual-stat-card:first-child .ritual-stat-card__num { color: #fff; }

.ritual-stat-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-mid);
  line-height: 1.4;
}

.ritual-stat-card:first-child .ritual-stat-card__label { color: rgba(255,255,255,0.75); }

/* ============================================================
   STATS STRIP — N4
   ============================================================ */
.stats-strip {
  background: var(--color-coral);
  padding: 36px 0;
}

.stats-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.20);
  text-align: center;
}

.stats-strip__item:last-child { border-right: none; }

.stats-strip__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stats-strip__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

/* ============================================================
   EMAIL SUBSCRIPTION SECTION
   ============================================================ */
.section-subscribe {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--color-peach-light);
}

.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.subscribe-left__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--color-off-black);
  line-height: 1.15;
  margin-bottom: 14px;
}

.subscribe-left__title em {
  font-style: italic;
  color: var(--color-coral);
}

.subscribe-left__body {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.70;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.subscribe-form__row {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.subscribe-form__input {
  flex: 1;
  padding: 15px 20px;
  border: 1.5px solid var(--color-border);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--color-white);
  font-size: 14px;
  color: var(--color-off-black);
  outline: none;
  transition: border-color var(--transition-fast);
}

.subscribe-form__input:focus { border-color: var(--color-coral); }

.subscribe-form__btn {
  padding: 15px 22px;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.subscribe-form__btn:hover { background: var(--color-coral-deep); }

.subscribe-form__note {
  font-size: 12px;
  color: var(--color-light-text);
  line-height: 1.5;
}

.subscribe-form__note a { color: var(--color-coral); }

.subscribe-success {
  display: none;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  text-align: center;
}

.subscribe-success h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-off-black);
  margin-bottom: 8px;
}

.subscribe-success p {
  font-size: 14px;
  color: var(--color-mid);
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--color-cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  border-top: 1px solid var(--color-border-soft);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-off-black);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--color-coral); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-coral);
  transition: transform var(--transition-fast);
}

.faq--open .faq-icon {
  background: var(--color-coral);
  transform: rotate(45deg);
}

.faq--open .faq-icon svg { stroke: #fff; }

.faq-answer {
  display: none;
  padding: 0 0 22px;
}

.faq--open .faq-answer { display: block; }

.faq-answer p {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.75;
}

/* ============================================================
   SUPPORT / CONTACT STRIP
   ============================================================ */
.section-support {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--color-off-black);
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,140,107,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-coral);
}

.support-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.support-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}

.support-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-coral);
  transition: color var(--transition-fast);
}

.support-card__link:hover { color: var(--color-peach); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  padding: clamp(48px, 7vw, 88px) 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer__brand h3 span { color: var(--color-coral); }

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 16px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__contact-info a,
.footer__contact-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  transition: color var(--transition-fast);
}

.footer__contact-info a:hover { color: var(--color-coral); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition-fast);
}

.footer__col ul li a:hover { color: var(--color-coral); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition-fast);
}

.footer__legal-links a:hover { color: var(--color-coral); }

/* ============================================================
   ADVERTORIAL BANNER (top of content pages)
   ============================================================ */
.advertorial-bar {
  background: var(--color-peach-light);
  border-bottom: 1px solid var(--color-border);
  padding: 9px 0;
  text-align: center;
}

.advertorial-bar p {
  font-size: 12px;
  color: var(--color-mid);
  font-weight: 500;
}

.advertorial-bar a { color: var(--color-coral); }

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.page-catalog {
  padding: clamp(60px, 8vw, 100px) 0 clamp(72px, 9vw, 120px);
}

.catalog-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--color-cream) 100%);
  margin-bottom: 0;
}

.catalog-hero .section-header { margin-bottom: 0; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: clamp(48px, 6vw, 72px);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.catalog-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.catalog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.catalog-card:hover .catalog-card__img img {
  transform: scale(1.05);
}

.catalog-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.catalog-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-off-black);
  line-height: 1.2;
}

.catalog-card__desc {
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.6;
  flex: 1;
}

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

.catalog-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-coral);
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  background: var(--color-cream);
  min-height: calc(100vh - 100px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Order Summary */
.checkout-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 32px;
}

.checkout-summary__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-off-black);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-soft);
}

.checkout-product-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.checkout-product-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.checkout-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

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

.checkout-product-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-off-black);
  margin-bottom: 4px;
}

.checkout-product-info .qty-label {
  font-size: 12px;
  color: var(--color-mid);
}

.checkout-product-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-coral);
}

.checkout-totals {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-totals__row span {
  font-size: 13px;
  color: var(--color-mid);
}

.checkout-totals__row .total-val {
  font-size: 13px;
  color: var(--color-off-black);
  font-weight: 600;
}

.checkout-totals__row--big span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-off-black);
}

.checkout-totals__row--big .total-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-coral);
}

/* Seller block */
.checkout-seller {
  background: var(--color-cream);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
}

.checkout-seller__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-light-text);
  margin-bottom: 10px;
}

.checkout-seller p {
  font-size: 12px;
  color: var(--color-mid);
  line-height: 1.65;
}

.checkout-seller a {
  color: var(--color-coral);
}

.checkout-order-terms {
  background: var(--color-peach-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-mid);
  line-height: 1.65;
}

/* Form side */
.checkout-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-off-black);
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-off-black);
  letter-spacing: 0.04em;
}

.form-group label span.optional {
  font-weight: 400;
  color: var(--color-light-text);
  margin-left: 4px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-off-black);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus { border-color: var(--color-coral); }
.form-input.error { border-color: #e05555; }

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

.field-error {
  font-size: 12px;
  color: #e05555;
  display: none;
  margin-top: 3px;
}

.field-error.visible { display: block; }

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-coral);
  margin-top: 2px;
  cursor: pointer;
}

.checkout-cod-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.checkout-cod-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-coral);
  flex-shrink: 0;
}

.checkout-cod-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-off-black);
}

.checkout-submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout-submit-btn:hover {
  background: var(--color-coral-deep);
  transform: translateY(-1px);
}

.checkout-submit-btn:disabled {
  opacity: 0.70;
  pointer-events: none;
}

.checkout-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,36,32,0.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fade-up 0.4s ease forwards;
}

.modal-box__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-box__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-coral);
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-off-black);
  margin-bottom: 10px;
}

.modal-box p {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.65;
  margin-bottom: 24px;
}

.modal-box__close {
  padding: 13px 32px;
  background: var(--color-coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.modal-box__close:hover { background: var(--color-coral-deep); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: calc(var(--nav-w) + 24px);
  right: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(42,36,32,0.18);
  padding: 24px 28px;
  z-index: 400;
  display: none;
  max-width: 700px;
  border: 1px solid var(--color-border-soft);
}

.cookie-banner.visible { display: block; }

.cookie-banner__text {
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.cookie-banner__text a { color: var(--color-coral); }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.cookie-btn--accept {
  background: var(--color-coral);
  color: #fff;
}

.cookie-btn--accept:hover { background: var(--color-coral-deep); }

.cookie-btn--reject {
  background: var(--color-cream-dark);
  color: var(--color-mid);
}

.cookie-btn--reject:hover { background: var(--color-cream); }

.cookie-btn--config {
  background: transparent;
  color: var(--color-mid);
  border: 1px solid var(--color-border-soft);
}

.cookie-btn--config:hover { border-color: var(--color-coral); color: var(--color-coral); }

.cookie-config-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-soft);
}

.cookie-config-panel.open { display: block; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.cookie-toggle-row + .cookie-toggle-row {
  border-top: 1px solid var(--color-border-soft);
}

.cookie-toggle-label {
  font-size: 13px;
  color: var(--color-off-black);
  font-weight: 600;
}

.cookie-toggle-desc {
  font-size: 11px;
  color: var(--color-mid);
  margin-top: 2px;
}

.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--color-cream-dark);
  border-radius: 12px;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.cookie-toggle input:checked + .cookie-toggle-track { background: var(--color-coral); }

.cookie-toggle-track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.cookie-toggle input:checked + .cookie-toggle-track::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.60;
  cursor: not-allowed;
}

.cookie-save-btn {
  margin-top: 14px;
  padding: 10px 22px;
  background: var(--color-coral);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(-50%) }
  50%       { transform: translateY(calc(-50% - 14px)) }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Hero entrance animations */
.hero__advertorial  { animation: fade-up 0.7s ease 0.1s both; }
.hero__title        { animation: fade-up 0.8s ease 0.25s both; }
.hero__subtitle     { animation: fade-up 0.8s ease 0.42s both; }
.hero__cta-row      { animation: fade-up 0.8s ease 0.56s both; }
.hero__product-float { animation: fade-up 0.9s ease 0.3s both, float 5s ease-in-out 1.2s infinite; }

/* Stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.stagger-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger.stagger-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger.stagger-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger.stagger-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.stagger.stagger-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.stagger.stagger-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.stagger.stagger-visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }

/* CountUp number animation */
.countup { transition: opacity 0.3s; }

/* ============================================================
   LEGAL PAGES (shared)
   ============================================================ */
.legal-page {
  padding: clamp(60px, 8vw, 100px) 0 clamp(72px, 9vw, 120px);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--color-off-black);
  margin-bottom: 8px;
}

.legal-page .lead {
  font-size: 16px;
  color: var(--color-mid);
  margin-bottom: 40px;
  line-height: 1.7;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-off-black);
  margin: 36px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-page a { color: var(--color-coral); }

/* ============================================================
   CATALOG PAGE HERO HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--color-cream) 100%);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--color-off-black);
  margin-top: 10px;
  line-height: 1.10;
}

.page-header h1 em { font-style: italic; color: var(--color-coral); }

.page-header p {
  font-size: 15px;
  color: var(--color-mid);
  margin-top: 12px;
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================================
   STICKY BOTTOM CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: var(--nav-w);
  right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border-soft);
  padding: 14px 32px;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform var(--transition-mid);
}

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

.sticky-cta__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-off-black);
}

/* ============================================================
   BLOG PAGE (article modal cards)
   ============================================================ */
.section-blog {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--color-cream);
}

.blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card__body {
  padding: 24px 24px 28px;
}

.blog-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-off-black);
  line-height: 1.2;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--color-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card__read svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-coral);
  transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card__read svg {
  transform: translateX(4px);
}

/* Article Modal */
.article-modal {
  position: fixed;
  inset: 0;
  background: rgba(42,36,32,0.55);
  backdrop-filter: blur(4px);
  z-index: 600;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.article-modal.active { display: flex; }

.article-modal__box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 760px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fade-up 0.4s ease forwards;
}

.article-modal__header {
  position: relative;
}

.article-modal__header img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.article-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.90);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.article-modal__close:hover { background: var(--color-white); }

.article-modal__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-off-black);
}

.article-modal__content {
  padding: clamp(28px, 5vw, 48px);
}

.article-modal__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.article-modal__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--color-off-black);
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-modal__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-off-black);
  margin: 28px 0 10px;
}

.article-modal__body p {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.80;
  margin-bottom: 14px;
}

.article-modal__body ol,
.article-modal__body ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.article-modal__body li {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--hero { grid-column: span 1; flex-direction: column; }
  .product-card--hero .product-card__img-wrap { width: 100%; aspect-ratio: 4/3; }
  .products-featured { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ritual-inner { grid-template-columns: 1fr; gap: 48px; }
  .ritual-right { grid-template-columns: repeat(4, 1fr); }
  .ritual-stat-card:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  .side-nav {
    transform: translateX(-100%);
  }
  .nav-open .side-nav {
    transform: translateX(0);
  }
  .nav-open .nav-overlay {
    display: block;
  }
  .nav-toggle { display: flex; }
  .page-wrap { margin-left: 0; }
  .cookie-banner { left: 24px; }
  .sticky-cta { left: 0; }
  .problem-cols { grid-template-columns: 1fr; }
  .problem-col { padding: 28px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .problem-col:last-child { border-bottom: none; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .subscribe-inner { grid-template-columns: 1fr; gap: 32px; }
  .support-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__product-float { width: clamp(160px, 32vw, 320px); }
}

@media (max-width: 680px) {
  .products-featured { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: 1fr; }
  .ritual-right { grid-template-columns: 1fr 1fr; }
  .stats-strip__row { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stats-strip__item:nth-child(2) { border-right: none; }
  .stats-strip__item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.20); border-top: 1px solid rgba(255,255,255,0.12); }
  .stats-strip__item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__content { padding: 60px 24px 60px; }
  .hero__product-float { opacity: 0.20; width: 85vw; right: 50%; transform: translate(50%, -50%); }
  .checkout-layout { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
