/* ============================================================
   FUMZ HERBAL HAIR CARE — Main Stylesheet
   fumz-theme/assets/css/fumz.css
   ============================================================ */

@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=Jost:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --teal:        #00AEA9;
  --teal-dark:   #007D79;
  --teal-light:  #E0F5F4;
  --gold:        #C9A84C;
  --gold-light:  #F5EDD4;
  --dark:        #1A1A1A;
  --charcoal:    #2E2E2E;
  --warm-white:  #FDFAF6;
  --cream:       #F7F3EC;
  --muted:       #6B6B6B;
  --border:      rgba(0,174,169,0.18);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* ---- LAYOUT UTILITIES ---- */
.fumz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.6rem;
}
.teal-line      { width: 48px; height: 2px; background: var(--teal); margin-bottom: 1.5rem; }
.gold-line      { width: 48px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.teal-line-c    { width: 48px; height: 2px; background: var(--teal); margin: 1rem auto 0; }
.gold-line-c    { width: 48px; height: 2px; background: var(--gold); margin: 1rem auto 0; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
}
.section-header h2 em  { font-style: italic; color: var(--teal); }
.section-header p {
  color: var(--muted);
  max-width: 500px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); color: #fff; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#fumz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#fumz-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 0.52rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal); }

/* ============================================================
   HERO
   ============================================================ */
#fumz-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
  background: var(--cream);
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.hero-eyebrow span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero-left h1 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-left h1 em { font-style: italic; color: var(--teal); }
.hero-desc {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-right {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.hero-bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}
.h-bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.h-bottle-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px 10px 6px 6px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  padding: 1rem 0.7rem 1.2rem;
  gap: 0.4rem;
}
.h-bottle-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: rgba(255,255,255,0.1);
  border-radius: 10px 10px 0 0;
}
.hb-teal  { background: linear-gradient(155deg, #00AEA9, #007D79); }
.hb-dark  { background: linear-gradient(155deg, #1e1e1e, #2e2e2e); }
.hb-teal2 { background: linear-gradient(155deg, #00C8C2, #00AEA9); }
.hb-sm    { width: 72px;  height: 140px; }
.hb-md    { width: 88px;  height: 180px; }
.hb-lg    { width: 80px;  height: 160px; }
.hb-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.hb-name {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.hb-vol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.hb-gold { color: var(--gold); }
.h-bottle-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   MARQUEE
   ============================================================ */
#fumz-marquee {
  background: var(--teal);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.m-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
#fumz-about {
  padding: 7rem 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.about-text h2 strong { font-weight: 500; color: var(--teal); }
.about-text p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.9;
  font-size: 0.95rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.af-icon {
  width: 36px; height: 36px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.af-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.1rem;
}
.af-sub {
  font-size: 0.75rem;
  color: var(--muted);
}
.about-visual { position: relative; }
.about-card-big {
  background: var(--cream);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-card-big::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.06;
}
.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.big-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.ab-badge {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
}
.ab-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.ab-txt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#fumz-products {
  padding: 7rem 0;
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,174,169,0.14);
}
.pc-header {
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pc-header::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.pc-teal  { background: linear-gradient(150deg, #00AEA9, #007D79); }
.pc-dark  { background: linear-gradient(150deg, #1a1a1a, #2e2e2e); }
.pc-teal2 { background: linear-gradient(150deg, #00C8C2, #00AEA9); }
.pc-bottle {
  width: 54px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pc-neck {
  width: 40%;
  height: 14px;
  background: rgba(255,255,255,0.28);
  border-radius: 4px 4px 0 0;
}
.pc-body {
  width: 100%;
  height: 90px;
  background: rgba(255,255,255,0.16);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.pc-body-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.pc-body-sub {
  font-size: 6px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.pc-body-vol {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.pc-gold .pc-body-brand { color: var(--gold); }
.pc-gold .pc-body-sub   { color: rgba(201,168,76,0.85); }
.pc-gold .pc-body-vol   { color: rgba(201,168,76,0.7); }
.pc-gold .pc-neck       { background: rgba(201,168,76,0.35); }
.pc-gold .pc-body       { border: 1px solid rgba(201,168,76,0.3); }
.pc-title { color: #fff; }
.pc-title h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.pc-title .vol {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}
.pc-body-area { padding: 1.75rem; }
.pc-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.pc-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.pc-points { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
.pc-point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--charcoal);
}
.pc-check {
  width: 16px; height: 16px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--teal-dark);
}
.pc-footer { padding: 0 1.75rem 1.75rem; }
.pc-link {
  display: block;
  text-align: center;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 0.72rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.pc-link:hover { background: var(--teal); color: #fff; }

/* ============================================================
   INGREDIENTS
   ============================================================ */
#fumz-ingredients {
  padding: 7rem 0;
  background: var(--warm-white);
}
.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
  align-items: start;
}
.ing-left h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.ing-left h2 em { font-style: italic; color: var(--teal); }
.ing-left > p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.ing-list { display: flex; flex-direction: column; gap: 1.1rem; }
.ing-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.ing-item:last-child { border-bottom: none; }
.ing-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 300;
  line-height: 1.1;
}
.ing-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.ing-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}
.ing-right { position: sticky; top: 100px; }
.ing-showcase {
  background: var(--teal);
  border-radius: 4px;
  padding: 2.75rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ing-showcase::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.ing-showcase::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.isc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.isc-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.herb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
}
.h-pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  cursor: default;
}
.h-pill:hover { background: rgba(255,255,255,0.26); }
.isc-div {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.isc-benefit {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}
.isc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.isc-benefit span { font-size: 0.82rem; opacity: 0.9; }

/* ============================================================
   HOW TO USE
   ============================================================ */
#fumz-htu {
  padding: 7rem 0;
  background: var(--dark);
}
#fumz-htu .section-label { color: var(--gold); text-align: center; }
#fumz-htu h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}
#fumz-htu h2 em { font-style: italic; color: var(--gold); }
.htu-subtitle {
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-size: 0.9rem;
  margin: 1.5rem 0 2.5rem;
}
.htu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.htu-tab {
  padding: 0.55rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none;
  transition: all 0.3s;
}
.htu-tab.active, .htu-tab:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.htu-panel { display: none; }
.htu-panel.active { display: block; }
.htu-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.htu-step { text-align: center; }
.step-circle-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.5rem;
}
.step-circle {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--teal);
}
.step-connector {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 54px + 1.5rem);
  height: 1px;
  background: rgba(0,174,169,0.22);
}
.htu-step:last-child .step-connector { display: none; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}

/* ============================================================
   WHY FUMZ
   ============================================================ */
#fumz-why {
  padding: 7rem 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.why-card {
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-top-color: var(--teal); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; }
.why-card h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#fumz-testimonials {
  padding: 7rem 0;
  background: var(--warm-white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.testi-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem;
}
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.28;
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}
.t-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.t-name { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.t-loc  { font-size: 0.7rem;  color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
#fumz-contact {
  padding: 7rem 0;
  background: var(--teal);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.contact-left .section-label { color: rgba(255,255,255,0.65); }
.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-left h2 em { font-style: italic; }
.contact-desc { color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.c-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: #fff;
}
.c-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-detail span { font-size: 0.88rem; }
.contact-form-wrap {
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  padding: 0.7rem 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  transition: border-color 0.3s;
  outline: none;
  background: #fff;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { height: 96px; resize: vertical; }
.btn-form {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.btn-form:hover { background: var(--teal-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#fumz-footer {
  background: var(--dark);
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.fb-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.fb-desc {
  font-size: 0.82rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.fb-social { display: flex; gap: 0.65rem; }
.fb-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s;
}
.fb-social a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.fc-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.fc-links { display: flex; flex-direction: column; gap: 0.6rem; }
.fc-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.3s;
}
.fc-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  #fumz-hero    { grid-template-columns: 1fr; }
  .hero-right   { min-height: 50vh; }
  .about-grid, .ing-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .htu-steps    { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .ing-right    { position: static; }
}
@media (max-width: 640px) {
  .products-grid, .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .htu-steps    { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .hero-stats   { gap: 2rem; flex-wrap: wrap; }
  .about-features { grid-template-columns: 1fr; }
  .hero-left    { padding: 3.5rem 1.5rem; }
  .fumz-container { padding: 0 1.25rem; }
}

/* ── Extra styles for v2 customizer theme ── */
.fumz-body { margin: 0; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.hero-product-image { max-width: 90%; max-height: 80vh; object-fit: contain; z-index: 2; position: relative; }
.about-image-custom { width: 100%; border-radius: 4px; object-fit: cover; max-height: 420px; }
.product-custom-image { width: 100%; height: 200px; object-fit: contain; padding: 1rem; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--teal); font-weight: 500; margin-bottom: 0.75rem; }
.htu-tabs { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
.htu-tab { background: none; border: 1.5px solid var(--teal); color: var(--teal); padding: 0.6rem 2rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.3s; }
.htu-tab.active, .htu-tab:hover { background: var(--teal); color: white; }
.htu-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.htu-step { text-align: center; padding: 2rem 1.5rem; background: white; border-radius: 4px; border: 1px solid var(--border); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--teal); opacity: 0.4; line-height: 1; margin-bottom: 1rem; }
.htu-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.htu-step p { font-size: 0.82rem; color: var(--text-muted); }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.contact-detail-icon { font-size: 1rem; }
.about-feature .feature-icon { font-size: 1rem; width: 36px; height: 36px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-mobile { display: none; flex-direction: column; background: var(--warm-white); padding: 1rem 2rem; border-top: 1px solid var(--border); }
.nav-mobile a { padding: 0.75rem 0; font-size: 0.85rem; font-weight: 500; text-decoration: none; color: var(--dark); border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); transition: all 0.3s; }
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .htu-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .htu-steps { grid-template-columns: 1fr; }
}
