/* ============================================
   HEH:F INDIA — Main Stylesheet
   hehfindia.com | Hexa Trendz Private Limited
   Brand: heh:f — Happily Ever aFter (SMC International Korea)
   ============================================ */

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

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

:root {
  --white:      #FFFFFF;
  --off-white:  #FAF9F2;   /* warm cream */
  --blush:      #FBF3BE;   /* soft heh:f yellow tint */
  --yellow:     #F5E750;   /* heh:f primary yellow (C0 M11 Y80 K0) */
  --sage:       #DCE3C6;   /* light olive */
  --sage-dark:  #5C7040;   /* mid olive */
  --charcoal:   #24350F;   /* heh:f dark olive (C82 M52 Y100 K29) */
  --mid-grey:   #6B6B6B;
  --light-grey: #E8E8E8;
  --gold:       #C9A342;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(36,53,15,0.08);
  --shadow-lg:  0 12px 48px rgba(36,53,15,0.12);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--bg { background: var(--off-white); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--blush { background: var(--blush); }
.section--sage { background: var(--sage); }

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: 400; }

.display-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--mid-grey);
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--mid-grey);
  max-width: 640px;
}
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--primary:hover {
  background: transparent;
  color: var(--charcoal);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
}
.btn--yellow {
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--yellow);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
}

/* ── NAVIGATION ───────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(36,53,15,0.08);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: var(--transition);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.nav__cta:hover {
  color: var(--charcoal) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-family: var(--font-serif);
  font-weight: 400;
}
.nav__link.btn--primary,
.nav__link.btn--primary:visited {
  color: var(--white);
}
.nav__link.btn--primary:hover {
  color: var(--charcoal);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF9F2 0%, #F9F0A6 50%, #EDF1DC 100%);
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(220,227,198,0.45) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245,231,80,0.30) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__kicker::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--sage-dark);
}
.hero__title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}
.hero__body {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
}
.hero__card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.hero__card-flag {
  font-size: 2rem;
  margin-bottom: 16px;
}
.hero__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.hero__card-text {
  color: var(--mid-grey);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__country-badge {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--mid-grey);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.trust-bar__item .icon {
  font-size: 1rem;
}

/* ── BRAND INTRO ──────────────────────────── */
.brand-intro { padding: 96px 0; }
.brand-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-intro__label {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.brand-intro__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.25;
}
.brand-intro__body {
  color: var(--mid-grey);
  line-height: 1.9;
  margin-bottom: 16px;
}
.brand-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--light-grey);
}
.brand-intro__stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.brand-intro__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-weight: 500;
}
.brand-intro__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.brand-intro__img-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--blush);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-intro__img-card:first-child {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.brand-intro__img-placeholder {
  color: var(--mid-grey);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 24px;
}

/* ── PRODUCTS GRID ────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
}
.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}
.product-card__body { padding: 24px; }
.product-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__key-ingredient {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ── INGREDIENTS ──────────────────────────── */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ingredient-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid var(--light-grey);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--sage));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.ingredient-card:hover { box-shadow: var(--shadow); }
.ingredient-card:hover::before { transform: scaleX(1); }
.ingredient-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.ingredient-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  margin-bottom: 6px;
}
.ingredient-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.ingredient-card__desc {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ── WHY US ───────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.why-card {
  text-align: center;
}
.why-card__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--sage-dark);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.why-card__desc {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

/* ── SKIN MIND LIFE (philosophy strip) ───── */
.sml-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.sml-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}
.sml-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.sml-card__icon { font-size: 2.5rem; margin-bottom: 10px; }
.sml-card__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
}
.sml-card__desc {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: 4px;
  line-height: 1.6;
}

/* ── B2B BANNER ───────────────────────────── */
.b2b-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #16220A 100%);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.b2b-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(245,231,80,0.10) 0%, transparent 50%);
}
.b2b-banner__content { position: relative; z-index: 1; }
.b2b-banner__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--white);
}
.b2b-banner__title em {
  font-style: italic;
  color: var(--yellow);
}
.b2b-banner__body {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.b2b-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PAGE HEADER ──────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--off-white), var(--blush));
  text-align: center;
}
.page-header__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 16px;
}
.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.page-header__desc {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── ABOUT PAGE ───────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story__body {
  color: var(--mid-grey);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-story__quote {
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 32px 0;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  background: linear-gradient(145deg, var(--blush), var(--sage));
  border-radius: 12px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -32px; left: -32px;
  background: var(--charcoal);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 8px;
  width: 240px;
}
.about-img-float__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--yellow);
}
.about-img-float__label {
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--light-grey);
}
.team-card__role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--mid-grey);
}
.team-card__info a:hover { color: var(--charcoal); }

/* ── PRODUCTS PAGE ────────────────────────── */
.products-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--light-grey);
  border-radius: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--mid-grey);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.product-detail-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.product-detail-card__img {
  background: linear-gradient(135deg, var(--blush), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 280px;
}
.product-detail-card__img img {
  max-height: 320px;
  object-fit: contain;
}
.product-detail-card__body { padding: 40px; }
.product-detail-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-detail-card__name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-detail-card__desc {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}
.product-detail-card__how-to {
  background: var(--off-white);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.product-detail-card__how-to strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  font-weight: 500;
}

/* ── INGREDIENTS PAGE ─────────────────────── */
.ingredient-detail {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--light-grey);
}
.ingredient-detail:last-child { border-bottom: none; }
.ingredient-detail__icon-box {
  background: linear-gradient(135deg, var(--blush), var(--sage));
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ingredient-detail__icon-box .emoji { font-size: 3rem; }
.ingredient-detail__name-box {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  padding: 0 12px;
}
.ingredient-detail__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.ingredient-detail__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 8px;
}
.ingredient-detail__subtitle {
  color: var(--mid-grey);
  font-size: 0.875rem;
  margin-bottom: 20px;
  font-style: italic;
}
.ingredient-detail__body {
  color: var(--mid-grey);
  line-height: 1.9;
  margin-bottom: 16px;
}
.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.benefit-pill {
  background: var(--yellow);
  color: var(--charcoal);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── STOCKIST PAGE ────────────────────────── */
.stockist-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.stockist-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--light-grey);
}
.stockist-benefit__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.stockist-benefit__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 6px;
}
.stockist-benefit__desc {
  font-size: 0.875rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(92,112,64,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }

/* ── CONTACT PAGE ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid-grey);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-info__value a:hover { color: var(--sage-dark); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--mid-grey);
}
.social-link:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__logo-img {
  height: 72px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}
.footer__logo-main {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.footer__logo-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer__about {
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: var(--transition);
}
.footer__link:hover { opacity: 1; padding-left: 4px; }
.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  opacity: 0.7;
  align-items: flex-start;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8125rem;
  opacity: 0.5;
}
.footer__made {
  font-size: 0.8125rem;
  opacity: 0.5;
}
.footer__made span { color: var(--yellow); opacity: 1; }

/* ── WHATSAPP FLOAT ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ── DIVIDER ──────────────────────────────── */
.divider {
  width: 48px; height: 2px;
  background: var(--yellow);
  margin: 20px 0 24px;
}
.divider--center { margin: 20px auto 24px; }

/* ── UTILITIES ────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.gap-16 { gap: 16px; }
.flex   { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── ANIMATIONS ───────────────────────────── */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.animate {
  opacity: 0;
  transform: translateY(24px);
}
.fade-in.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 48px; padding-top: 140px; }
  .hero__visual { display: none; }
  .brand-intro__grid { grid-template-columns: 1fr; }
  .brand-intro__visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .sml-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-card { grid-template-columns: 1fr; }
  .ingredient-detail { grid-template-columns: 1fr; }
  .ingredient-detail__icon-box { aspect-ratio: unset; padding: 32px; flex-direction: row; justify-content: flex-start; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .sml-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .brand-intro__stats { grid-template-columns: repeat(3,1fr); }
  .stockist-benefits { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .trust-bar__inner { gap: 20px; }
}
@media (max-width: 480px) {
  .sml-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .b2b-banner__actions { flex-direction: column; align-items: center; }
}
