/* ==========================================================================
   FEMI360 — Main Stylesheet
   ========================================================================== */

:root {
  --ink: #241531;
  --ink-soft: #4a3a58;
  --plum-900: #2f1247;
  --plum-800: #42195f;
  --plum-700: #5a2380;
  --plum-600: #7431a3;
  --plum-400: #9c5fc4;
  --lilac-200: #ecdff7;
  --lilac-100: #f5eefb;
  --sage-800: #3f5c2e;
  --sage-600: #5c7a45;
  --sage-400: #84a866;
  --sage-100: #e9f1e1;
  --blush-500: #c9789a;
  --blush-200: #f2d7e2;
  --blush-100: #faeef4;
  --gold-600: #a9803a;
  --gold-300: #dcbf82;
  --bone: #fbf7f1;
  --bone-deep: #f4ecdf;
  --paper: #ffffff;
  --line: #e6dcee;
  --shadow-sm: 0 2px 10px rgba(47, 18, 71, 0.06);
  --shadow-md: 0 12px 32px rgba(47, 18, 71, 0.12);
  --shadow-lg: 0 24px 64px rgba(47, 18, 71, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  line-height: 1.65;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

::selection {
  background: var(--plum-400);
  color: #fff;
}

:focus-visible {
  outline: 2.5px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Utility Classes ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-600);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-600);
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--gold-300);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--plum-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary2 {
  border-color: var(--gold-300);
  background: var(--plum-800);
  color: #fff;
}

.btn-primary2:hover {
  background: var(--plum-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(36, 21, 49, 0.25);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--plum-700);
  color: var(--plum-700);
  transform: translateY(-2px);
}

.btn-ghost.on-dark {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.btn-ghost.on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
  background: var(--gold-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: #8f6a2c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--lilac-100);
  color: var(--plum-700);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 14px;
  line-height: 1.12;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Header Navigation ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--line);
  box-shadow: 0 2px 20px rgba(47, 18, 71, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  height: 34px;
  width: auto;
  transition: opacity 0.3s ease;
}

.brand .light {
  display: block;
}

.brand .dark {
  display: none;
}

header.scrolled .brand .light {
  display: none;
}

header.scrolled .brand .dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

header.scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

header.scrolled .burger span {
  background: var(--ink);
}

/* ---------- Hero Slider ---------- */
.hero-slider {
  position: relative;
  min-height: min(780px, 96vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(120% 130% at 15% 0%, var(--plum-600) 0%, var(--plum-800) 45%, var(--plum-900) 100%);
  overflow: hidden;
  padding: 150px 0 30px;
  isolation: isolate;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at var(--glow-x, 85%) var(--glow-y, 20%), var(--glow-c, rgba(220, 191, 130, 0.18)), transparent 42%),
    radial-gradient(circle at 10% 85%, rgba(236, 223, 247, 0.10), transparent 45%);
  transition: background-image 0.9s ease;
  pointer-events: none;
}

.hs-mouse-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(220px 220px at var(--mx, 50%) var(--my, 30%), rgba(255, 255, 255, 0.06), transparent 70%);
}

.hs-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hs-particles.on {
  opacity: 1;
}

.hs-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-300);
  opacity: 0.55;
  animation: drift 6s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.15; }
  50% { transform: translate(14px, -22px); opacity: 0.7; }
}

.hs-wrap {
  position: relative;
  z-index: 2;
}

.hs-track {
  position: relative;
  min-height: 520px;
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.hs-copy .eyebrow {
  margin-bottom: 20px;
}

.hs-copy h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.hs-copy .sub {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  line-height: 1.6;
}

.hs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hs-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 100px;
}

.hs-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hs-cta .btn-primary {
  position: relative;
}

.hs-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}

.hs-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  animation: spin 60s linear infinite;
}

.hs-ring.r2 {
  width: 500px;
  height: 600px;
  border-color: rgba(220, 191, 130, 0.26);
  animation-duration: 90s;
  animation-direction: reverse;
}

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

.hs-product {
  position: relative;
  z-index: 3;
  width: 500px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
  animation: hsfloat 7s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.hs-product:hover {
  transform: scale(1.04);
}

@keyframes hsfloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Hotspots ---------- */
.hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--plum-800);
  border: none;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
  animation: pulse 2.6s ease-in-out infinite;
}

.hotspot:hover, .hotspot.open {
  background: var(--gold-300);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16); }
  50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05); }
}

.hp1 { top: 10%; left: 6%; }
.hp2 { top: 34%; right: 2%; }
.hp3 { bottom: 28%; left: 0%; }
.hp4 { bottom: 6%; right: 14%; }

.hotspot-card {
  position: absolute;
  max-width: 230px;
  background: #fff;
  color: var(--ink);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 6;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hotspot-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hotspot-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 15.5px;
  color: var(--plum-800);
  margin-bottom: 6px;
}

.hotspot-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hotspot-card .hc-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--ink-soft);
  cursor: pointer;
}

/* ---------- Slide Visual Effects ---------- */
.hs-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  color: var(--plum-800);
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  animation: chipIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hs-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
  display: inline-block;
}

@keyframes chipIn {
  to { opacity: 1; transform: translateY(0); }
}

.hs-slide[data-slide="2"] .hs-chip:nth-child(1) { top: 6%; left: 2%; animation-delay: 0.15s; }
.hs-slide[data-slide="2"] .hs-chip:nth-child(2) { top: 30%; right: 0%; animation-delay: 0.3s; }
.hs-slide[data-slide="2"] .hs-chip:nth-child(3) { bottom: 22%; left: -2%; animation-delay: 0.45s; }
.hs-slide[data-slide="2"] .hs-chip:nth-child(4) { bottom: 4%; right: 10%; animation-delay: 0.6s; }

.hs-droplet {
  position: absolute;
  width: 9px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  background: #8fd0ea;
  transform: rotate(45deg);
  opacity: 0;
  animation: dropFall 2.4s ease-in infinite;
}

@keyframes dropFall {
  0% { opacity: 0; transform: translateY(-60px) rotate(45deg); }
  18% { opacity: 1; }
  62% { opacity: 0.9; transform: translateY(70px) rotate(45deg) scale(0.8); }
  100% { opacity: 0; transform: translateY(80px) rotate(45deg) scale(0.5); }
}

.dry-badge {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-100);
  color: var(--sage-800);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.empower-visual {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.empower-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empower-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(47, 18, 71, 0.55), transparent 55%);
}

.empower-tags {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.empower-tags .hs-chip {
  opacity: 0;
}

.empower-tags .hs-chip:nth-child(1) { top: 8%; left: 4%; animation-delay: 0.2s; }
.empower-tags .hs-chip:nth-child(2) { top: 8%; right: 4%; animation-delay: 0.4s; }
.empower-tags .hs-chip:nth-child(3) { bottom: 10%; left: 4%; animation-delay: 0.6s; }
.empower-tags .hs-chip:nth-child(4) { bottom: 10%; right: 4%; animation-delay: 0.8s; }

.cotton-visual {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cotton-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: pan 9s ease-in-out infinite alternate;
}

@keyframes pan {
  from { transform: scale(1.14) translate(1%, 1%); }
  to { transform: scale(1.08) translate(-1%, -1%); }
}

.cotton-visual::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: sweep 3.2s ease-in-out infinite;
  z-index: 2;
}

@keyframes sweep {
  0% { left: -50%; }
  100% { left: 110%; }
}

/* ---------- Hero Controls ---------- */
.hs-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.hs-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hs-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hs-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-dots {
  display: flex;
  gap: 10px;
  flex: 1;
  overflow-x: auto;
}

.hs-dot {
  flex: 1 1 0;
  min-width: 104px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hs-dot:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hs-dot.active {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-300);
}

.hs-dot .num {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  color: var(--gold-300);
  display: block;
}

.hs-dot .label {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin: 2px 0 8px;
}

.hs-dot .bar {
  display: block;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

.hs-dot .bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold-300);
}

.hs-dot.active .bar i {
  animation: hsprogress var(--hs-duration, 6.5s) linear forwards;
}

.hs-dot.active.paused .bar i {
  animation-play-state: paused;
}

@keyframes hsprogress {
  from { width: 0%; }
  to { width: 100%; }
}

.hs-contact-line {
  position: relative;
  z-index: 3;
  margin-top: 26px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.hs-contact-line a {
  color: rgba(255, 255, 255, 0.8);
}

.hs-contact-line a:hover {
  color: #fff;
}

/* ---------- Size Quick Selector ---------- */
.size-quick {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  margin-bottom: 64px;
}

.sq-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.sq-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

.sq-opt {
  background: var(--bone);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 9px 16px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--plum-800);
  transition: all 0.3s ease;
  text-align: center;
}

.sq-opt span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 2px;
}

.sq-opt:hover {
  border-color: var(--plum-400);
}

.sq-opt.active {
  background: var(--plum-800);
  border-color: var(--plum-800);
  color: #fff;
}

.sq-opt.active span {
  color: rgba(255, 255, 255, 0.7);
}

.sq-price {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--ink);
  white-space: nowrap;
}

.sq-price small {
  font-size: 11px;
  color: var(--ink-soft);
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

/* ---------- Quick Buy Modal ---------- */
.qb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 21, 49, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.qb-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.qb-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.qb-overlay.open .qb-modal {
  transform: translateY(0) scale(1);
}

.qb-media {
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.qb-media img {
  max-width: 160px;
  filter: drop-shadow(0 16px 30px rgba(47, 18, 71, 0.18));
}

.qb-body {
  padding: 32px 30px;
}

.qb-body h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.qb-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink-soft);
  cursor: pointer;
  z-index: 2;
}

.qb-field-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.qb-sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.qb-sizes button {
  background: var(--bone);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}

.qb-sizes button.active {
  background: var(--plum-800);
  border-color: var(--plum-800);
  color: #fff;
}

.qb-qty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.qb-qty button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  color: var(--plum-700);
}

.qb-qty span {
  font-weight: 800;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
}

.qb-price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 22px;
}

.qb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.qb-actions .btn {
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hs-product, .hs-ring, .hotspot, .cotton-visual img, .cotton-visual::before, .hs-particles span, .hs-chip {
    animation: none !important;
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .hs-slide {
    transition: opacity 0.5s ease !important;
    transform: none !important;
  }
  .hs-mouse-glow {
    display: none;
  }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--bone);
  padding: 30px 0 64px;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--plum-600);
  flex: none;
}

/* ---------- About (Who We Are) ---------- */
.who {
  background: var(--paper);
  padding: 110px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.who-media {
  position: relative;
}

.who-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.who-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-media .badge-float {
  position: absolute;
  bottom: -26px;
  right: -26px;
  background: var(--plum-800);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 190px;
}

.who-media .badge-float .num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--gold-300);
}

.who-media .badge-float p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  line-height: 1.4;
}

.who-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.16;
}

.who-copy .lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
}

.who-quote {
  margin-top: 32px;
  padding: 28px 30px;
  border-left: 3px solid var(--gold-600);
  background: var(--bone);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--plum-800);
  line-height: 1.5;
}

.who-mission {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- Technology & Video ---------- */
.tech {
  background: var(--plum-900);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.tech::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 95, 196, 0.35), transparent 70%);
}

.tech .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.tech .section-head h2 {
  color: #fff;
}

.anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

/* Video Frame (Responsive 16:9 Aspect Ratio) */
.anatomy .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #180927;
}

.anatomy .frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

/* Video Fallback & Interactive Cover */
.video-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 18, 71, 0.75), rgba(36, 21, 49, 0.88)), url('../assets/Femi360-Poster-11.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.video-cover-overlay.is-playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-trigger-btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--gold-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(220, 191, 130, 0.22), var(--shadow-lg);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
}

.play-trigger-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  margin-left: 3px;
}

.video-cover-overlay:hover .play-trigger-btn {
  transform: scale(1.1);
  background: var(--gold-300);
  color: var(--plum-900);
  box-shadow: 0 0 0 12px rgba(220, 191, 130, 0.35), var(--shadow-lg);
}

.video-cover-overlay h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.video-cover-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.anatomy-copy .k {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--gold-300);
}

.anatomy-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.5px;
}

.anatomy-copy ul {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.anatomy-copy li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
}

.anatomy-copy li svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-300);
  flex: none;
  margin-top: 2px;
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.layer-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, border-color 0.4s ease;
}

.layer-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 191, 130, 0.4);
}

.layer-card .layer-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-300);
  text-transform: uppercase;
}

.layer-card .icon-badge {
  margin: 18px 0 20px;
}

.layer-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}

.layer-card .tagline {
  font-size: 13.5px;
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 14px;
}

.layer-card p.desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
}

.layer-card .benefits {
  display: grid;
  gap: 8px;
}

.layer-card .benefits li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.layer-card .benefits li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-300);
  margin-top: 7px;
  flex: none;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(220, 191, 130, 0.22), rgba(220, 191, 130, 0.05));
  border: 1px solid rgba(220, 191, 130, 0.3);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-300);
}

.icon-badge.plum {
  background: linear-gradient(140deg, rgba(116, 49, 163, 0.16), rgba(116, 49, 163, 0.04));
  border-color: rgba(116, 49, 163, 0.3);
}

.icon-badge.plum svg {
  stroke: var(--plum-700);
}

.icon-badge.sage {
  background: linear-gradient(140deg, rgba(92, 122, 69, 0.16), rgba(92, 122, 69, 0.04));
  border-color: rgba(92, 122, 69, 0.32);
}

.icon-badge.sage svg {
  stroke: var(--sage-700);
}

/* ---------- Features ---------- */
.features {
  background: var(--bone);
  padding: 120px 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.feat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--lilac-200);
}

.feat-card h3 {
  font-size: 17.5px;
  margin: 16px 0 8px;
  font-weight: 600;
}

.feat-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.feat-list {
  margin-top: 16px;
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.feat-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.feat-list li svg {
  width: 15px;
  height: 15px;
  stroke: var(--sage-700);
  flex: none;
  margin-top: 1px;
}

/* ---------- Chemical-Free Section ---------- */
.clean {
  background: linear-gradient(120deg, var(--sage-100), var(--bone) 60%);
  padding: 100px 0;
}

.clean-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.clean-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.clean-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clean-copy h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

.clean-copy p.lead {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.free-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.free-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.free-pill svg {
  width: 14px;
  height: 14px;
  stroke: #b5473f;
}

/* ---------- Marquee Strip ---------- */
.love {
  background: var(--plum-800);
  padding: 46px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.marquee span::after {
  content: "✦";
  color: var(--gold-300);
  font-style: normal;
  font-size: 14px;
}

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

/* ---------- Benefits ---------- */
.benefits-sec {
  background: var(--paper);
  padding: 120px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 38px 20px;
  border-radius: var(--radius-md);
  background: var(--bone);
  transition: background 0.35s ease, transform 0.35s ease;
}

.benefit-card:hover {
  background: var(--lilac-100);
  transform: translateY(-6px);
}

.benefit-card .icon-badge {
  margin: 0 auto 18px;
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 13px;
  color: var(--ink-soft);
}

.benefit-point {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  max-width: 190px;
}

.benefit-point svg {
  width: 15px;
  height: 15px;
  stroke: var(--sage-700);
  flex: none;
  margin-top: 2px;
}

/* ---------- Campaign Gallery ---------- */
.gallery {
  background: var(--bone-deep);
  padding: 110px 0;
}

.gallery-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 4px 26px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll figure {
  flex: 0 0 auto;
  width: 300px;
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.4s ease;
}

.gallery-scroll figure:hover {
  transform: translateY(-8px);
}

.gallery-scroll img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-scroll figcaption {
  padding: 14px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.gallery-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.gallery-hint svg {
  width: 16px;
  height: 16px;
  stroke: var(--plum-600);
  animation: nudge 1.8s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ---------- Women Empowerment & Distributor ---------- */
.empower {
  position: relative;
  padding: 0;
  background: var(--plum-900);
  color: #fff;
}

.empower-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.empower-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
}

.empower-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--plum-900) 5%, rgba(47, 18, 71, 0.65) 42%, rgba(47, 18, 71, 0.15) 75%);
}

.empower-hero-copy {
  position: relative;
  z-index: 2;
  padding: 70px 0 60px;
  max-width: 640px;
}

.empower-hero-copy .eyebrow {
  color: var(--gold-300);
}

.empower-hero-copy h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  color: #fff;
  line-height: 1.1;
  margin-top: 14px;
}

.empower-hero-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 520px;
}

.paths {
  padding: 90px 0 60px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.path-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.path-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.path-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-300);
}

.path-card h3 {
  font-size: 18px;
  color: #fff;
  margin: 12px 0 8px;
  font-weight: 500;
}

.path-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
}

.distributor {
  padding: 20px 0 110px;
}

.dist-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--gold-600), #8f6a2c);
}

.dist-copy {
  padding: 56px;
  color: #2a1d0d;
}

.dist-copy .eyebrow {
  color: #4a3311;
}

.dist-copy .eyebrow::before {
  background: #2a1d0d;
}

.dist-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  color: #241505;
  margin-top: 12px;
}

.dist-copy p {
  margin-top: 14px;
  color: #4a3311;
  font-size: 15.5px;
  max-width: 440px;
}

.dist-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.dist-list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2a1d0d;
}

.dist-list li svg {
  width: 16px;
  height: 16px;
  stroke: #2a1d0d;
  flex: none;
  margin-top: 2px;
}

.dist-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dist-visual {
  position: relative;
  background: rgba(0, 0, 0, 0.08);
}

.dist-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institutions {
  padding: 0 0 40px;
}

.inst-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.inst-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inst-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.inst-chips svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-300);
  flex: none;
}

/* ---------- Shop & Products ---------- */
.shop {
  background: var(--bone);
  padding: 120px 0;
}

.size-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.size-tab {
  flex: 1 1 200px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: left;
}

.size-tab:hover {
  border-color: var(--plum-400);
}

.size-tab.active {
  border-color: var(--plum-700);
  background: var(--plum-800);
  box-shadow: var(--shadow-md);
}

.size-tab .sz {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--plum-800);
}

.size-tab.active .sz {
  color: #fff;
}

.size-tab .fl {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: block;
}

.size-tab.active .fl {
  color: rgba(255, 255, 255, 0.7);
}

.shop-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.shop-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-media img {
  max-width: 280px;
  filter: drop-shadow(0 24px 40px rgba(47, 18, 71, 0.16));
}

.shop-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--plum-800);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.shop-copy h3 {
  font-size: 15px;
  color: var(--plum-700);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-top: 8px;
}

.shop-copy .best-for {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.shop-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin-top: 26px;
}

.shop-specs li {
  display: flex;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}

.shop-specs li svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-700);
  flex: none;
  margin-top: 2px;
}

.shop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 18px;
}

.shop-pack {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.shop-pack strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  font-family: 'Fraunces', serif;
}

.save-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.save-card {
  flex: 1 1 220px;
  background: var(--paper);
  border: 1px dashed var(--plum-400);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}

.save-card .pct {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--plum-700);
}

.save-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------- Product Comparison Table ---------- */
.compare {
  margin-top: 90px;
}

table.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

table.compare-table th, table.compare-table td {
  padding: 16px 18px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

table.compare-table th {
  background: var(--plum-800);
  color: #fff;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}

table.compare-table td:first-child, table.compare-table th:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}

table.compare-table tr:last-child td {
  border-bottom: none;
}

table.compare-table td:not(:first-child) {
  color: var(--ink-soft);
}

.yes {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #98DB98;
  align-items: center;
  justify-content: center;
}

.yes svg {
  width: 12px;
  height: 12px;
  stroke: var(--sage-700);
}

.no {
  color: #c8bfd2;
}

.partial {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--gold-600);
}

.partial svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-600);
  flex: none;
}

/* ---------- Contact Section ---------- */
.contact {
  background: var(--paper);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(28px, 3.2vw, 36px);
}

.contact-info p.lead {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.info-list {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p, .info-item a {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.info-item a:hover {
  color: var(--plum-700);
}

.form-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}

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

.field {
  margin-bottom: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.3s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--plum-600);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 22px;
}

.check-row input {
  margin-top: 3px;
}

.check-row label {
  font-size: 13px;
  color: var(--ink-soft);
}

.form-success {
  display: none;
  background: var(--sage-100);
  color: var(--sage-800);
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

/* ---------- Final Call To Action ---------- */
.final-cta {
  background: radial-gradient(120% 160% at 50% 0%, var(--plum-700), var(--plum-900) 75%);
  padding: 110px 0;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
}

.final-cta p {
  margin: 18px auto 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.final-cta .hero-cta {
  justify-content: center;
  margin-top: 38px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--plum-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.foot-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
}

.foot-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.foot-col ul {
  display: grid;
  gap: 12px;
}

.foot-col a {
  font-size: 13.5px;
  transition: color 0.3s ease;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive Media Queries ---------- */
@media (max-width: 1080px) {
  .who-grid, .clean-grid, .contact-grid, .shop-panel, .anatomy {
    grid-template-columns: 1fr;
  }
  .who-media {
    max-width: 420px;
  }
  .layer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dist-panel {
    grid-template-columns: 1fr;
  }
  .dist-visual {
    min-height: 280px;
  }
  .hs-slide {
    grid-template-columns: 1fr;
    position: relative;
  }
  .hs-track {
    min-height: auto;
  }
  .hs-visual {
    order: -1;
    height: 340px;
  }
  .hs-copy .sub {
    max-width: 100%;
  }
  .hs-dots {
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .btn-ghost {
    display: none;
  }
  .burger {
    display: block;
  }
  .container {
    padding: 0 22px;
  }
  .hero-slider {
    padding: 130px 0 26px;
  }
  .layer-grid, .feat-grid, .benefits-grid, .path-grid, .dist-list, .form-row {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-row {
    justify-content: flex-start;
  }
  .hs-ring, .hs-ring.r2 {
    width: 260px;
    height: 260px;
  }
  .hs-product {
    width: 180px;
  }
  .hs-chip {
    font-size: 10.5px;
    padding: 7px 11px;
  }
  .hs-nav {
    flex-wrap: wrap;
  }
  .hs-dots {
    order: 3;
    width: 100%;
  }
  .hs-dot {
    min-width: 88px;
  }
  .size-quick {
    margin-top: 20px;
  }
  .sq-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .sq-options {
    justify-content: space-between;
  }
  .qb-modal {
    grid-template-columns: 1fr;
  }
  .size-tabs {
    flex-direction: column;
  }
  table.compare-table {
    font-size: 12px;
  }
  table.compare-table th, table.compare-table td {
    padding: 10px 8px;
  }
}

/* Mobile Navigation Panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--plum-900);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 26px 28px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.mobile-nav .mn-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .mn-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .mn-cta {
  margin-top: 30px;
}
