:root {
  /* Identidad Haiko Natural — v3 */
  --brown: #8B6B5F;
  --brown-title: #84645C;
  --brown-dark: #6B4F45;
  --brown-deep: #4a3530;
  --brown-50: #f5efec;
  --brown-100: #ead9d2;
  /* deep editorial tones for tonal contrast */
  --forest-deep: #1C2B1A;
  --forest-deep-2: #162315;
  --cream-deep: #FFFFFF;
  --espresso: #2A2016;

  --black: #3F3F42;
  --black-strong: #2A2A2C;
  --ink-warm: #5C4F45;
  --ink-warm-deep: #3F352D;
  --off-white: #F7F5F2;
  --cream: #F5F0EB;
  --hairline: #EDE8E3;
  --hairline-strong: #E8E0D8;

  /* v3 acento — verde salvia de marca Haiko */
  --accent: #6E8A4E;
  --accent-dark: #566F39;
  --accent-soft: #EDF2E2;
  --accent-mid: #CBDDAE;
  --accent-pastel: #B4CC8E;

  /* segundo acento — lila pastel de marca */
  --lilac: #C9C9EE;
  --lilac-soft: #EEEEF9;
  --lilac-mid: #DCDCF1;
  --lilac-dark: #6A6AA0;

  /* tercer acento — azul pastel */
  --blue: #90B2CB;
  --blue-soft: #E7EEF4;
  --blue-dark: #5A7E9C;

  --lavender: #9D9BB5;
  --lavender-light: #d7d5e1;
  --lavender-soft: #ede9f0;
  --lavender-dark: #5e5b7a;

  --ink: #4A423A;
  --ink-soft: #786E64;
  --ink-mute: #A39A8E;
  --ink-soft: #555;
  --ink-mute: #8a8483;
  --line: #ece7e3;
  --line-strong: #d8d2cd;

  --paper: #ffffff;
  --paper-warm: #faf6f3;
  --paper-cool: #f3eeea;
  --hero-bg: #d9d2cc;   /* neutro cálido para hero */
  --hero-bg-2: #e5dfd9;

  --success: #6b8f6b;

  /* radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* type */
  --serif: 'Montserrat', -apple-system, system-ui, sans-serif;
  --sans: 'Montserrat', -apple-system, system-ui, sans-serif;

  /* shadows: soft, layered */
  --sh-xs: 0 1px 2px rgba(60, 40, 30, 0.04);
  --sh-sm: 0 1px 2px rgba(60, 40, 30, 0.04), 0 2px 6px rgba(60, 40, 30, 0.04);
  --sh-md: 0 2px 4px rgba(60, 40, 30, 0.04), 0 8px 18px rgba(60, 40, 30, 0.06);
  --sh-lg: 0 4px 8px rgba(60, 40, 30, 0.05), 0 16px 40px rgba(60, 40, 30, 0.10);
  --sh-xl: 0 8px 16px rgba(60, 40, 30, 0.06), 0 24px 60px rgba(60, 40, 30, 0.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink-warm-deep); font-weight: 700; margin: 0; letter-spacing: -0.02em; text-transform: uppercase; }
h1 {
  font-family: var(--sans);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-warm);
}
h2 {
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-warm);
}
h3 { font-family: var(--sans); font-size: 22px; line-height: 1.2; font-weight: 600; letter-spacing: -0.005em; color: var(--ink-warm); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* ============= ANNOUNCEMENT BAR ============= */
.announce {
  background: var(--forest-deep);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 11px 16px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}
.announce strong { font-weight: 600; letter-spacing: 0.08em; }
.announce .pipe { opacity: 0.4; margin: 0 12px; }
.announce a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ============= HEADER ============= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0; }
.brand-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-img--footer { height: 64px; }

.nav { display: flex; align-items: center; justify-content: center; gap: 24px; }
.nav a {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color 200ms var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
}
.nav a.has-caret::after {
  content: " ⌄";
  font-size: 14px;
  margin-left: 4px;
}

.actions { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); border-radius: var(--r-pill);
  transition: background 200ms var(--ease), color 200ms var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--accent-soft); color: var(--accent-dark); }
.icon-btn svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent-dark); color: #fff;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: var(--r-pill);
  font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 220ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover { background: #000; box-shadow: var(--sh-md); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: #fff; }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--sh-md); transform: translateY(-1px); }

.btn-ghost-dark {
  background: var(--ink);
  color: #fff;
}
.btn-ghost-dark:hover { background: #000; }

.link-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all 200ms var(--ease);
}
.link-text:hover { color: var(--accent-dark); border-bottom-color: var(--accent); gap: 10px; }
.link-text .arrow { transition: transform 220ms var(--ease); }
.link-text:hover .arrow { transform: translateX(2px); }

.btn-sm { padding: 12px 22px; font-size: 11px; }

/* ============= HERO ============= */
.hero {
  position: relative;
  width: 100%;
  background: #ffffff;
  color: var(--forest-deep);
  overflow: hidden;
  aspect-ratio: 1.56 / 1;
  max-height: 86vh;
  min-height: 540px;
}
.hero-img,
.hero-stage {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  transform: scale(1.22) translateY(-5%);
  transform-origin: 100% center;
  z-index: 0;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(44%, 540px);
  padding-left: max(40px, calc((100vw - 1320px) / 2 + 8px));
  padding-right: 24px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.34em;
  font-weight: 600;
  color: var(--forest-deep);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--forest-deep);
  opacity: 0.8;
}
.hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--forest-deep);
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: capitalize;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-title-line {
  display: inline-block;
  line-height: 0.96;
  white-space: nowrap;
  font-weight: 500;
}
.hero-title-line--mixed {
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 400;
}
.hero-title-line em,
.hero-title-line .t-italic {
  color: var(--forest-deep);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.hero-title-line .t-box {
  background: var(--accent-pastel);
  color: var(--forest-deep);
  font-style: normal;
  font-weight: 700;
  font-size: 1.16em;
  letter-spacing: -0.04em;
  padding: 4px 30px 18px;
  transform: rotate(-2deg) translateY(8px);
  transform-origin: left center;
  box-shadow: 0 16px 36px rgba(28, 43, 26, 0.22);
  display: inline-block;
  margin: 0;
}
.hero-sub {
  font-family: var(--serif);
  font-style: normal;
  font-size: 16px;
  font-weight: 300;
  color: var(--forest-deep);
  max-width: 400px;
  margin-bottom: 26px;
  line-height: 1.5;
  text-shadow: none;
}
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: nowrap; margin-top: 4px; }
.hero-ctas .btn {
  padding: 17px 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.hero-ctas .btn-accent {
  background: var(--forest-deep);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(28, 43, 26, 0.24);
}
.hero-ctas .btn-accent:hover {
  background: #14210f;
  box-shadow: 0 14px 32px rgba(28, 43, 26, 0.34);
  transform: translateY(-2px);
}
.hero-ctas .link-text {
  font-size: 12px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  padding: 12px 0;
  color: var(--forest-deep);
}
.hero-ctas .link-text:hover {
  color: #14210f;
  border-bottom-color: var(--forest-deep);
}
.hero-meta {
  display: flex; gap: 0; align-items: stretch;
  margin-top: 60px;
  padding: 26px 36px;
  border-top: none;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
  width: fit-content;
}
.hero-meta .stat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 36px;
  position: relative;
}
.hero-meta .stat:first-child { padding-left: 0; }
.hero-meta .stat:last-child { padding-right: 0; }
.hero-meta .stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.hero-meta .stat-num {
  font-family: var(--sans); font-size: 44px; color: #fff;
  line-height: 0.95; font-weight: 800; letter-spacing: -0.03em;
}
.hero-meta .stat-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 500;
}

.hero-visual { display: none; }
.hero-photo { display: none; }
.hero::after { display: none; }

/* Product tubes layered at hero seam (hidden — real product photo replaces them) */
.hero-products {
  display: none;
}
.tube {
  width: 130px;
  height: 280px;
  border-radius: 14px 14px 8px 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(40, 25, 20, 0.25);
  overflow: hidden;
  transition: transform 320ms var(--ease);
}
.tube:hover { transform: translateY(-8px); }
.tube .cap {
  height: 28px; background: var(--brown-dark);
  border-radius: 14px 14px 0 0;
}
.tube .body {
  position: absolute; inset: 28px 0 0 0;
  background: #fff;
  padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.tube .label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brown-title);
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 6px;
}
.tube .product-name {
  font-size: 7.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
}
.tube .swatch {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin-top: 14px;
  background: var(--brown-50);
}
.tube .desc {
  font-size: 6px; color: var(--ink-mute);
  margin-top: 8px; line-height: 1.4;
}
.tube--green .cap { background: #5a7d3f; }
.tube--green .swatch { background: linear-gradient(135deg, #b9d59f, #6b9f57); }
.tube--blue .cap { background: #4a6680; }
.tube--blue .swatch { background: linear-gradient(135deg, #c9d6df, #6a8aa3); }
.tube--brown .cap { background: #5a3f2d; }
.tube--brown .swatch { background: linear-gradient(135deg, #c8a48a, #7a4f3a); }

/* hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 28%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--ink-soft);
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 4;
}
.scroll-indicator .bar {
  width: 1px; height: 28px;
  background: rgba(60, 40, 30, 0.4);
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============= VALUE / CERTIFICATIONS BAR ============= */
.values-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  padding: 28px 32px;
}
.values-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 24px;
}
.value-item {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.value-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--lilac-soft);
  color: var(--lilac-dark);
}
.value-icon svg { width: 18px; height: 18px; }
.value-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.1;
}
.value-text .label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
}
.value-text .sub {
  font-size: 10px;
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.value-divider { width: 1px; height: 32px; background: var(--line-strong); }

/* ============= SECTION GENERIC ============= */
.section { padding: 108px 0; }
.section-narrow { padding: 72px 0; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  padding: 0 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: "·"; margin: 0 12px; color: var(--accent);
}
.section-sub {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  letter-spacing: 0;
}

/* ============= CATEGORIES ============= */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.cat-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--hairline);
  box-shadow: none;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease), border-color 380ms var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--accent); }
.cat-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
  display: block;
}
.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.cat-card:hover .cat-img { transform: scale(1.03); }
.cat-card-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 28px 30px;
  text-align: center;
  border-top: 1px solid var(--hairline);
  align-items: center;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(110, 138, 78, 0.22);
  transition: all 240ms var(--ease);
}
.cat-cta svg { transition: transform 220ms var(--ease); }
.cat-card:hover .cat-cta {
  background: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(110, 138, 78, 0.32);
  transform: translateY(-1px);
}
.cat-card:hover .cat-cta svg { transform: translateX(4px); }
.cat-tube {
  display: none;
}
.cat-card-foot--legacy {
  /* deprecated absolute layout — kept null */
}
.cat-name {
  background: transparent;
  padding: 14px 0 18px;
  border-radius: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.26em;
  font-weight: 600;
  color: var(--accent);
  box-shadow: none;
  position: relative;
  transition: all 220ms var(--ease);
  text-transform: uppercase;
}
.cat-name::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms var(--ease), left 280ms var(--ease);
}
.cat-card:hover .cat-name { color: var(--accent-dark); }
.cat-card:hover .cat-name::after { width: 64px; left: calc(50% - 32px); }
.cat-card-foot .cat-name {
  order: 2;
}
.cat-card-foot .cat-tagline {
  order: 1;
}
.cat-tagline {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: none;
}

/* ============= WHOLESALE SECTION ============= */
.wholesale {
  background: #F2DDD0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 600px;
  align-items: stretch;
}
.wholesale-copy {
  padding: 90px 96px 90px 120px;
  display: flex; flex-direction: column; justify-content: center;
}
.wholesale-copy .eyebrow { color: #6B4A33; margin-bottom: 18px; }
.wholesale-copy .eyebrow::before, .wholesale-copy .eyebrow::after { color: #6B4A33; }
.ws-h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 32px;
}
.ws-h2-small {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: #3D2B1F;
}
.ws-h2-big {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(50px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #3D2B1F;
}
.ws-h2-mid {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3D2B1F;
  margin-top: 10px;
}
.ws-h2-box {
  display: inline-block;
  background: #3D2B1F;
  color: #ffffff;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(46px, 5.8vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  padding: 4px 26px 14px;
  margin-top: 8px;
  transform: rotate(-1.6deg);
  transform-origin: left center;
  box-shadow: 0 14px 32px rgba(61, 43, 31, 0.28);
}
.wholesale-copy h2 {
  color: var(--ink-warm-deep);
  margin-bottom: 32px;
  max-width: 620px;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.wholesale-copy p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  color: #3D2B1F;
  font-size: 22px;
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 44px;
}
.wholesale-features {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 48px;
  max-width: 480px;
}
.wholesale-feat {
  display: flex; gap: 14px; align-items: center;
}
.wholesale-feat svg { color: #3D2B1F; flex-shrink: 0; width: 22px; height: 22px; }
.wholesale-feat .lbl {
  font-size: 17px; font-weight: 500; color: #3D2B1F; line-height: 1.3;
}
.wholesale-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.wholesale-cta .btn-accent { background: #3D2B1F; color: #fff; }
.wholesale-cta .btn-accent:hover { background: #2a1d14; color: #fff; }

.wholesale-visual {
  position: relative;
  background-image: url('../images/redesign/wholesale-model.png');
  background-size: contain;
  background-position: 25% bottom;
  background-repeat: no-repeat;
  background-color: #F2DDD0;
  min-height: 620px;
}
.wholesale-visual::before {
  display: none;
}
.wholesale-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #F2DDD0 0%, rgba(242, 221, 208, 0.5) 8%, rgba(242, 221, 208, 0) 22%);
  z-index: 1;
  pointer-events: none;
}
.wholesale-badge {
  position: absolute;
  top: 36px; right: 36px;
  background: var(--accent);
  border-radius: 0;
  padding: 6px 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: none;
  z-index: 2;
}

/* ============= BEST SELLERS ============= */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.product-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--hairline);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--hairline-strong);
}
.product-img {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: none;
}
.product-photo {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
  transition: transform 500ms var(--ease);
}
.product-card:hover .product-photo { transform: scale(1.05); }
.product-img .tube {
  width: 110px; height: 240px; transform: translateY(20px);
}
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #ffffff;
  padding: 5px 11px;
  border-radius: 0;
  text-transform: uppercase;
  box-shadow: none;
}
.product-tag--new { background: var(--black); color: #fff; }
.product-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brown-dark);
  cursor: pointer;
  transition: all 200ms var(--ease);
  z-index: 2;
}
.product-fav:hover { background: #fff; color: #c0392b; transform: scale(1.06); }
.product-fav.active { color: #c0392b; }
.product-fav svg { width: 16px; height: 16px; }

.product-info {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
  flex: 1;
}
.product-cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-dark);
  color: #ffffff;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 0;
  align-self: flex-start;
}
.product-name {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  min-height: 40px;
}
.product-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: -2px;
}
.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.product-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.product-price small { font-size: 11px; color: var(--ink-mute); margin-left: 4px; font-family: var(--sans); font-weight: 500; letter-spacing: 0.05em; }
.product-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}
.product-rating .stars { color: var(--accent); letter-spacing: 1px; }

.product-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 0;
  padding-top: 14px;
}
.product-actions .btn { padding: 13px 20px; font-size: 11px; letter-spacing: 0.16em; }
.product-actions .link-text { align-self: center; padding: 4px 0; }

/* === Bundle / discount selector === */
.bundle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.bundle-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  position: relative;
}
.bundle-opt:hover { border-color: var(--accent); }
.bundle-opt.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.bundle-opt input { position: absolute; opacity: 0; pointer-events: none; }
.bundle-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  transition: all 200ms var(--ease);
  position: relative;
}
.bundle-opt.is-active .bundle-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px #fff;
}
.bundle-text {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.3;
  flex: 1;
}
.bundle-text strong { color: var(--accent-dark); font-weight: 700; }
.bundle-save {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: #fff;
  border: 1px solid var(--accent);
  padding: 3px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.bundle-opt.is-active .bundle-save { background: var(--accent); color: #fff; border-color: var(--accent); }

/* === Benefit icons row === */
.prod-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--hairline);
}
.prod-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.pb-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pb-lbl {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.2;
}

/* === Subscribe modal === */
.sub-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(63, 53, 45, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: subFade 280ms var(--ease) both;
}
@keyframes subFade { from { opacity: 0; } to { opacity: 1; } }
.sub-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.05fr;
  box-shadow: 0 40px 100px rgba(40, 28, 22, 0.34);
  animation: subPop 380ms var(--ease) both;
}
@keyframes subPop { from { opacity: 0; transform: translateY(18px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.sub-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  color: var(--ink-warm-deep);
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 200ms var(--ease);
}
.sub-modal-close:hover { background: #fff; }

.sub-modal-visual {
  position: relative;
  background: linear-gradient(160deg, #7E9A5A 0%, #6E8A4E 45%, #566F39 100%);
  padding: 56px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.sub-modal-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.16) 0%, transparent 40%),
    radial-gradient(circle at 12% 90%, rgba(0,0,0,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.sub-modal-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
  position: relative;
}
.sub-modal-deal {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.sub-modal-num {
  font-family: var(--sans);
  font-size: 92px;
  font-weight: 900;
  color: #ffffff;
  line-height: 0.82;
  letter-spacing: -0.05em;
}
.sub-modal-num .pct {
  font-size: 42px;
  font-weight: 800;
  vertical-align: super;
  margin-left: 2px;
}
.sub-modal-off {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
  background: #ffffff;
  padding: 4px 14px 6px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 20px rgba(40, 55, 25, 0.22);
  align-self: center;
}
.sub-modal-ship {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.28);
  position: relative;
}
.sub-modal-leaf {
  position: absolute;
  width: 150px; height: 150px;
  right: -34px; bottom: -34px;
  color: rgba(255,255,255,0.14);
  transform: rotate(-18deg);
}
.sub-modal-body {
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
}
.sub-modal-title {
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 600;
  color: var(--ink-warm-deep);
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-transform: none;
  margin: 10px 0 12px;
}
.sub-modal-title .t-italic {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
  background: none;
  padding: 0;
  box-shadow: none;
  transform: none;
}
.sub-modal-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 22px;
}
.sub-modal-sub strong { color: var(--accent-dark); font-weight: 700; letter-spacing: 0.04em; }
.sub-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-modal-form input {
  font-family: var(--sans);
  font-size: 14px;
  padding: 15px 18px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 999px;
  outline: none;
  transition: border-color 200ms var(--ease);
  color: var(--ink);
}
.sub-modal-form input:focus { border-color: var(--accent); }
.sub-modal-form .btn { padding: 15px; font-size: 12px; }
.sub-modal-decline {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-mute);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
  transition: color 200ms var(--ease);
}
.sub-modal-decline:hover { color: var(--ink-soft); }
.sub-modal-success { text-align: center; display: flex; flex-direction: column; align-items: center; }
.sub-modal-success-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.sub-modal-success .btn { margin-top: 8px; padding: 14px 32px; font-size: 12px; }

@media (max-width: 620px) {
  .sub-modal { grid-template-columns: 1fr; max-width: 420px; }
  .sub-modal-visual { padding: 32px; }
  .sub-modal-percent { font-size: 68px; }
  .sub-modal-body { padding: 32px 28px; }
}

/* ============= HAIRCARE BANNER ============= */
.banner {
  position: relative;
  overflow: hidden;
  background: var(--accent-pastel);
}
.banner-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
  min-height: 680px;
  max-width: 100%;
  margin: 0;
}
.banner-img {
  background-image: url('../images/redesign/haircare-models.png');
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.banner-copy {
  padding: 64px 64px 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--ink-warm-deep);
  background: var(--accent-pastel);
  position: relative;
}
.banner-copy::before {
  content: "";
  position: absolute;
  top: 30%; right: 20%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(60px);
}
.banner-copy .eyebrow { color: var(--accent-dark); margin-bottom: 14px; font-size: 10.5px; }
.banner-copy .eyebrow::before, .banner-copy .eyebrow::after { color: var(--accent-dark); }
.banner-copy h2 {
  color: var(--ink-warm-deep);
  margin-bottom: 20px;
  max-width: 460px;
  position: relative;
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.banner-copy p { font-family: var(--serif); font-style: normal; font-weight: 300; font-size: 16px; color: var(--ink); max-width: 440px; line-height: 1.55; margin-bottom: 28px; position: relative; }
.banner-list { list-style: none; padding: 0; margin: 0 0 36px; position: relative; }
.banner-list { list-style: none; padding: 0; margin: 0 0 28px; position: relative; }
.banner-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  font-size: 13px; color: var(--ink-warm-deep);
  border-bottom: 1px solid rgba(63, 53, 45, 0.14);
}
.banner-list li:last-child { border-bottom: none; }
.banner-list svg { color: var(--accent-dark); flex-shrink: 0; }
.banner-cta { display: flex; gap: 12px; position: relative; flex-wrap: wrap; }
.banner-cta .btn { padding: 14px 26px; font-size: 11.5px; letter-spacing: 0.18em; }
.banner-cta .btn-primary {
  background: var(--ink-warm-deep);
  color: #ffffff;
}
.banner-cta .btn-primary:hover { background: #2a221c; color: #ffffff; }
.banner-cta .btn-accent {
  background: var(--ink-warm-deep);
  color: #ffffff;
}
.banner-cta .btn-accent:hover { background: #2a221c; color: #ffffff; }
.banner-cta .btn-outline { color: var(--ink-warm-deep); border-color: var(--ink-warm-deep); }
.banner-cta .btn-outline:hover { background: var(--ink-warm-deep); color: #ffffff; border-color: var(--ink-warm-deep); }

/* On the pastel-green banner, h2 t-box is a white box with green text */
.banner-copy h2 .t-box {
  background: #ffffff;
  color: var(--accent-dark);
  box-shadow: 0 8px 22px rgba(63, 53, 45, 0.12);
}
.banner-copy h2 .t-italic {
  color: var(--accent-dark);
  font-style: normal;
}

/* ============= TESTIMONIALS ============= */
.testimonials {
  background: var(--lilac-soft);
  padding: 100px 0;
  border-top: 1px solid var(--hairline);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  transition: all 280ms var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testi-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.005em;
}
.testi-quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 64px;
  color: var(--accent);
  display: block;
  line-height: 0.3;
  margin-bottom: 16px;
  font-style: normal;
}
.testi-foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brown-100);
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.testi-meta { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-loc { font-size: 12px; color: var(--ink-mute); }
.testi-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; margin-left: auto; }

/* ============= FINAL CTA / NEWSLETTER ============= */
.final-cta {
  background: var(--accent-pastel);
  color: var(--ink-warm-deep);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(157, 155, 181, 0.18) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.final-cta h2 {
  color: var(--ink-warm-deep);
  max-width: 800px; margin: 0 auto 24px;
  position: relative;
}
.final-cta h2 .t-box {
  background: #ffffff;
  color: var(--accent-dark);
}
.final-cta p {
  font-family: var(--serif); font-style: normal; font-weight: 300;
  font-size: 19px; color: var(--ink);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.5;
  position: relative;
}
.newsletter-form {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 6px;
  position: relative;
  box-shadow: var(--sh-lg);
}
.newsletter-form input {
  flex: 1;
  border: none; outline: none;
  background: transparent;
  padding: 0 20px;
  font-family: var(--sans); font-size: 14px;
  color: var(--ink);
}
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form .btn { padding: 14px 28px; }
.final-cta .small {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 18px;
  letter-spacing: 0.04em;
  position: relative;
}

/* ============= FOOTER ============= */
.footer {
  background: #ffffff;
  color: var(--ink);
  padding: 80px 32px 0;
  border-top: 1px solid var(--hairline);
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand-logo { color: var(--brown-title); }
.footer-brand .brand-text .name { color: var(--ink); }
.footer-brand .brand-text .tag { color: var(--ink-mute); }
.footer-brand .desc {
  margin-top: 24px;
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 340px;
  color: var(--ink-soft);
}
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brown-title);
  background: #fff;
  transition: all 200ms var(--ease);
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 200ms var(--ease);
}
.footer-col li a:hover { color: var(--accent-dark); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}
.footer-legal {
  display: flex; gap: 24px;
  font-size: 12px;
}
.footer-legal a { color: var(--ink-mute); transition: color 200ms var(--ease); }
.footer-legal a:hover { color: var(--accent-dark); }

/* ============= UTILITY ============= */
.mt-12 { margin-top: 12px; }
.text-center { text-align: center; }

/* ============= ANIM ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 600ms var(--ease) both; }

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger inside grids */
.categories .cat-card.reveal { transition-delay: 0ms; }
.categories .cat-card.reveal:nth-child(2) { transition-delay: 100ms; }
.categories .cat-card.reveal:nth-child(3) { transition-delay: 200ms; }
.bestsellers-grid .product-card.reveal:nth-child(1) { transition-delay: 0ms; }
.bestsellers-grid .product-card.reveal:nth-child(2) { transition-delay: 80ms; }
.bestsellers-grid .product-card.reveal:nth-child(3) { transition-delay: 160ms; }
.bestsellers-grid .product-card.reveal:nth-child(4) { transition-delay: 240ms; }
.testi-grid .testi-card.reveal:nth-child(2) { transition-delay: 120ms; }
.testi-grid .testi-card.reveal:nth-child(3) { transition-delay: 240ms; }
.values-grid .value-item.reveal:nth-child(2) { transition-delay: 80ms; }
.values-grid .value-item.reveal:nth-child(3) { transition-delay: 160ms; }
.values-grid .value-item.reveal:nth-child(4) { transition-delay: 240ms; }
.values-grid .value-item.reveal:nth-child(5) { transition-delay: 320ms; }

/* === Hero stagger entrance === */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow,
.hero-title-line,
.hero-sub,
.hero-ctas {
  opacity: 0;
  animation: heroIn 900ms var(--ease) forwards;
}
.hero-eyebrow { animation-delay: 80ms; }
.hero-title-line:nth-child(1) { animation-delay: 220ms; }
.hero-title-line:nth-child(2) { animation-delay: 420ms; }
.hero-sub { animation-delay: 620ms; }
.hero-ctas { animation-delay: 780ms; }

/* === Hero photo subtle zoom-in === */
@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(1.28) translateY(-5%); }
  to { opacity: 1; transform: scale(1.22) translateY(-5%); }
}
.hero-img {
  animation: heroPhotoIn 1400ms var(--ease) both;
}
/* === Floating tubes in hero === */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-products .tube {
  animation: floatY 6s ease-in-out infinite;
}
.hero-products .tube:nth-child(1) { animation-delay: 0s; }
.hero-products .tube:nth-child(2) { animation-delay: 1.2s; }
.hero-products .tube:nth-child(3) { animation-delay: 2.4s; }

/* === Coral box pulse on hover (for h2 t-box) === */
.t-box {
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
h2:hover .t-box {
  transform: rotate(-1.2deg) scale(1.04);
  box-shadow: 0 10px 24px rgba(110, 138, 78, 0.32);
}

/* === Marquee strip === */
.marquee {
  background: var(--accent-pastel);
  color: var(--ink-warm-deep);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: "•";
  color: var(--accent-dark);
  font-size: 16px;
  margin-left: 48px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === Smooth scroll + reduced motion === */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-products .tube { animation: none; }
}

/* ============= TITLE ACCENTS (boxed + italic) ============= */
.t-italic {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.t-box {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 2px 16px 8px;
  transform: rotate(-1.2deg);
  transform-origin: left center;
  box-shadow: 0 6px 18px rgba(110, 138, 78, 0.18);
  margin: 0 2px;
}
h2 .t-box { padding: 2px 14px 6px; }
.section-head .t-box,
.section-head .t-italic { letter-spacing: -0.035em; }

/* On dark sections the box-text reads cream for richer warmth */
.wholesale-copy .t-box,
.final-cta .t-box { color: var(--cream); }

/* ============= RESPONSIVE ============= */

/* === Tablet === */
@media (max-width: 1100px) {
  .header-inner { gap: 16px; padding: 14px 24px; }
  .nav { gap: 20px; }
  .nav a { font-size: 11.5px; letter-spacing: 0.1em; }
  .actions { gap: 8px; }
  .actions .icon-btn { width: 32px; height: 32px; }

  .hero { aspect-ratio: auto; max-height: none; display: flex; flex-direction: column; }
  .hero-img, .hero-stage { position: relative; inset: auto; height: auto; aspect-ratio: 2.13 / 1; order: 2; }
  .hero-content { position: relative; top: auto; bottom: auto; width: 100%; order: 1; padding: 56px 24px 28px; align-items: flex-start; }
  .hero h1 { font-size: clamp(48px, 9vw, 80px); }

  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .categories { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .value-divider { display: none; }

  .wholesale-inner,
  .banner-inner { grid-template-columns: 1fr; }
  .wholesale-copy { padding: 64px 32px; }
  .wholesale-visual { min-height: 480px; background-position: center bottom; }
  .banner-copy { padding: 48px 32px; }
  .banner-img { min-height: 480px; background-size: contain; background-position: center bottom; }

  .testi-grid { grid-template-columns: 1fr; max-width: 640px; padding: 0 24px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section { padding: 72px 0; }
  .testimonials { padding: 72px 0; }
  .final-cta { padding: 72px 24px; }
}

/* === Mobile === */
@media (max-width: 720px) {
  body { font-size: 14px; }

  .announce { font-size: 11px; letter-spacing: 0.06em; padding: 9px 12px; }
  .announce .pipe { display: none; }
  .announce strong { display: block; margin-bottom: 2px; }

  .header-inner { grid-template-columns: auto 1fr; padding: 12px 18px; gap: 12px; }
  .nav { display: none; }
  .actions { gap: 4px; }
  .actions .icon-btn { width: 36px; height: 36px; }
  .actions .icon-btn:nth-child(2),
  .actions .icon-btn:nth-child(3),
  .actions .icon-btn:nth-child(4) { display: none; }
  .brand-img { height: 38px; }

  .hero-content { padding: 44px 22px 26px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); gap: 4px; }
  .hero-title-line .t-box { padding: 2px 16px 8px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { padding: 16px 28px; font-size: 11.5px; width: 100%; }
  .hero-ctas .link-text { width: 100%; justify-content: center; }

  .values-bar { padding: 22px 16px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-item { justify-content: flex-start; }

  .marquee-item { font-size: 11px; gap: 24px; letter-spacing: 0.18em; }
  .marquee-item::after { margin-left: 24px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; padding: 0 20px; }
  h2 { font-size: clamp(32px, 9vw, 44px); line-height: 1.05; }
  .t-box { padding: 2px 12px 6px; }
  .section-sub { font-size: 16px; }

  .categories { padding: 0 20px; gap: 16px; }
  .cat-card-foot { padding: 20px 20px 24px; }
  .cat-name { font-size: 14px; }

  .bestsellers-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .product-info { padding: 18px 18px 22px; gap: 8px; }
  .product-name { font-size: 15px; min-height: auto; }
  .product-actions .btn { padding: 12px 18px; }

  .wholesale-copy { padding: 56px 24px; }
  .wholesale-copy h2 { font-size: clamp(38px, 10vw, 56px); }
  .wholesale-copy p { font-size: 17px; margin-bottom: 28px; }
  .wholesale-features { gap: 14px; margin-bottom: 32px; }
  .wholesale-feat .lbl { font-size: 15px; }
  .wholesale-visual { min-height: 380px; }

  .banner-copy { padding: 40px 24px; }
  .banner-copy h2 { font-size: clamp(28px, 8vw, 36px); }
  .banner-copy p { font-size: 15px; }
  .banner-img { min-height: 380px; background-size: 90% auto; }

  .testi-card { padding: 28px 24px; }
  .testi-quote { font-size: 17px; }

  .final-cta { padding: 56px 20px; }
  .final-cta h2 { font-size: clamp(34px, 9vw, 48px); }
  .final-cta p { font-size: 16px; }
  .newsletter-form { flex-direction: column; padding: 12px; border-radius: var(--r-lg); gap: 10px; }
  .newsletter-form input { padding: 12px 14px; text-align: center; border: 1px solid var(--hairline); border-radius: var(--r-pill); }
  .newsletter-form .btn { width: 100%; padding: 14px; }

  .footer { padding: 56px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-brand .desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 0 28px; }
}

/* === Small mobile === */
@media (max-width: 380px) {
  .hero h1 { font-size: 38px; }
  .hero-ctas .btn { font-size: 11px; padding: 14px 22px; }
  h2 { font-size: 28px; }
}
