/* =====================================================================
   Mahbi Botanique — Design System v2 (Nature Green Premium)
   Inspired by: SheaMoisture, Mielle Organic, Briogeo, Aesop
   ===================================================================== */

:root {
  /* Palette — Nature green + warm gold + cream */
  --forest-deep: #1E3A2E;
  --forest-darker: #0F2419;
  --forest-medium: #2D5641;
  --forest-light: #5C7A63;
  --gold: #C9A961;
  --gold-light: #E8D5A3;
  --gold-dark: #A38947;
  --sage: #A8BFA0;
  --sage-light: #D4E0CF;
  --cream: #F7F3EB;
  --cream-warm: #EFE7D6;
  --white: #FFFFFF;
  --text-dark: #0F2419;
  --text-muted: #5E6B5F;
  --text-light: #8A9489;
  --border: rgba(15,36,25,.08);
  --border-strong: rgba(15,36,25,.18);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15,36,25,.06);
  --shadow: 0 8px 24px rgba(15,36,25,.08);
  --shadow-lg: 0 20px 50px rgba(15,36,25,.12);

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-smooth: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture { max-width: 100%; display: block }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease) }
h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--forest-deep);
}
p { margin: 0 }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px }
@media (min-width: 768px) { .container { padding: 0 40px } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; gap: 20px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px } }
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--forest-deep); letter-spacing: .12em; flex-shrink: 0;
  text-transform: uppercase;
}
.logo-mark {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1E3A2E 0%, #2D5641 100%);
  color: #E8D5A3;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(30,58,46,.35);
  border: 1px solid rgba(232,213,163,.18);
}
.footer-brand-name { text-transform: uppercase; letter-spacing: .12em }
.footer-logo-mark { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; background: linear-gradient(135deg, #1E3A2E 0%, #2D5641 100%); color:#E8D5A3; font-family: var(--font-serif); font-weight: 700; border-radius: 12px; font-size: 18px; letter-spacing: .02em; margin-right: 10px; vertical-align: middle; box-shadow: 0 4px 14px rgba(30,58,46,.35); border: 1px solid rgba(232,213,163,.25) }
.nav-links { display: none; gap: 36px; margin-left: auto }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-dark); position: relative; padding: 4px 0 }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100% }
.nav-links a.active { color: var(--forest-deep) }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto }
@media (min-width: 900px) { .nav-links { display: flex } .nav-right { margin-left: 0 } }

.lang-switch {
  display: inline-flex; background: var(--cream);
  border: 1px solid var(--border); border-radius: 999px; padding: 3px;
}
.lang-btn {
  background: none; border: none;
  padding: 5px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; color: var(--text-muted); cursor: pointer;
  border-radius: 999px; transition: all .2s; font-family: var(--font-sans);
}
.lang-btn.active {
  background: var(--forest-deep); color: var(--gold-light);
  box-shadow: 0 2px 8px rgba(30,58,46,.25);
}

.cart-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--forest-deep); color: var(--cream);
  border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: all .2s var(--ease);
}
.cart-btn:hover { background: var(--forest-darker); transform: translateY(-1px) }
.cart-count {
  background: var(--gold); color: var(--forest-darker);
  font-size: 11px; font-weight: 800; padding: 1px 7px;
  border-radius: 999px; min-width: 20px; text-align: center;
}
.nav-hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none;
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--forest-deep); cursor: pointer; font-size: 22px;
}
@media (min-width: 900px) { .nav-hamburger { display: none } }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 24px 30px; z-index: 99;
}
.mobile-menu.open { display: block }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none }

/* HERO CAROUSEL */
.hero {
  position: relative; height: 100vh;
  min-height: 620px; max-height: 900px;
  overflow: hidden; margin-top: 72px;
}
.hero-carousel { position: absolute; inset: 0 }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease-smooth);
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; animation: kenBurns 12s ease-in-out infinite alternate }
@keyframes kenBurns {
  from { transform: scale(1.05) translate(0,0) }
  to { transform: scale(1.12) translate(-15px,-10px) }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,25,.35) 0%, rgba(15,36,25,.55) 55%, rgba(15,36,25,.78) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 24px; max-width: 1280px; margin: 0 auto;
  color: var(--cream);
}
@media (min-width: 768px) { .hero-content { padding: 0 40px; align-items: center; text-align: center } }
.hero-eyebrow {
  color: var(--gold-light); font-size: 12px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  margin-bottom: 24px; padding: 6px 16px;
  border: 1px solid rgba(232,213,163,.35); border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05; letter-spacing: -.025em;
  max-width: 900px; color: var(--cream); margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400 }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 620px; color: rgba(255,255,255,.88);
  margin-bottom: 36px; line-height: 1.6; font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap }
@media (min-width: 768px) { .hero-ctas { justify-content: center } }
.hero-dots {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.35); cursor: pointer;
  border: none; transition: all .3s;
}
.hero-dot.active { background: var(--gold-light); width: 42px }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; transform: none }
  .hero-slide.active { opacity: 1 }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; border: 1.5px solid transparent;
  border-radius: 999px; cursor: pointer;
  transition: all .25s var(--ease); text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--forest-darker); box-shadow: 0 8px 24px rgba(201,169,97,.35) }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(163,137,71,.45) }
.btn-forest { background: var(--forest-deep); color: var(--cream) }
.btn-forest:hover { background: var(--forest-darker); transform: translateY(-2px) }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(232,213,163,.55) }
.btn-ghost:hover { background: rgba(232,213,163,.12); border-color: var(--gold-light) }
.btn-outline { background: transparent; color: var(--forest-deep); border-color: var(--forest-deep) }
.btn-outline:hover { background: var(--forest-deep); color: var(--cream) }

/* SECTIONS */
.section { padding: 80px 0 }
@media (min-width: 768px) { .section { padding: 120px 0 } }
.section-cream { background: var(--cream) }
.section-forest { background: var(--forest-deep); color: var(--cream) }
.section-forest h2, .section-forest h3 { color: var(--cream) }
.section-head { text-align: center; margin-bottom: 60px }
.section-h {
  font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; letter-spacing: -.02em; line-height: 1.1;
  max-width: 720px; margin: 0 auto;
}
.section-sub {
  color: var(--text-muted); font-size: 16px; margin-top: 16px;
  max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.section-forest .section-sub { color: rgba(247,243,235,.78) }

/* TRUST STRIP */
.trust-strip { background: var(--cream); padding: 28px 0; border-bottom: 1px solid var(--border) }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr) } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px }
.trust-icon { font-size: 22px; line-height: 1 }
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--forest-deep); text-transform: uppercase }

/* BRAND INTRO */
.brand-intro { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center }
@media (min-width: 900px) { .brand-intro { grid-template-columns: 1fr 1fr; gap: 80px } }
.brand-intro-img {
  aspect-ratio: 4/5; background: var(--cream);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow);
}
.brand-intro-img img { width: 100%; height: 100%; object-fit: cover }
.brand-intro-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 24px }
.brand-intro-text p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; text-align: justify; hyphens: auto }
.brand-intro-text .btn { margin-top: 14px }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 28px }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr) } }
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; position: relative;
  transition: all .35s var(--ease); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px) }
.product-media { aspect-ratio: 1/1; overflow: hidden; background: var(--cream); position: relative }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease) }
.product-card:hover .product-media img { transform: scale(1.04) }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--forest-deep); color: var(--gold-light);
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 11px;
  border-radius: 999px; z-index: 2;
}
.product-badge.new { background: var(--gold); color: var(--forest-darker) }
.product-info { padding: 20px 4px 0 }
.product-cat { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px }
.product-name { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--forest-deep); margin-bottom: 6px; line-height: 1.25 }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 10px; min-height: 2.8em }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 12px; color: var(--text-muted) }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 13px }
.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px }
.product-price { font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: var(--forest-deep) }
.product-price .price-cur { font-size: 14px; color: var(--text-muted); margin-right: 3px }
.add-cart {
  background: var(--forest-deep); color: var(--cream); border: none;
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
  transition: all .2s var(--ease); font-family: var(--font-sans);
}
.add-cart:hover { background: var(--gold); color: var(--forest-darker) }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 28px }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr) } }
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all .3s var(--ease);
}
.testimonial:hover { border-color: var(--gold); box-shadow: var(--shadow) }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px }
.testimonial-quote { font-family: var(--font-serif); font-size: 19px; line-height: 1.55; color: var(--forest-deep); font-style: italic; font-weight: 400; flex: 1 }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border) }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0 }
.testimonial-name { font-weight: 600; color: var(--forest-deep); font-size: 14px }
.testimonial-city { font-size: 12px; color: var(--text-muted) }

/* INGREDIENTS */
.ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px }
@media (min-width: 768px) { .ingredients-grid { grid-template-columns: repeat(4, 1fr); gap: 40px } }
.ingredient { text-align: center }
.ingredient-img {
  width: 160px; height: 160px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 4px solid var(--cream);
}
.ingredient-img img { width: 100%; height: 100%; object-fit: cover }
.ingredient-name { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--forest-deep); margin-bottom: 8px }
.ingredient-latin { font-size: 11px; font-style: italic; color: var(--gold-dark); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px }
.ingredient-benefit { font-size: 14px; color: var(--text-muted); line-height: 1.55 }

/* ROUTINE BUILDER */
.routines { display: grid; grid-template-columns: 1fr; gap: 24px }
@media (min-width: 768px) { .routines { grid-template-columns: repeat(3, 1fr) } }
.routine-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  transition: all .35s var(--ease); border: 1.5px solid transparent;
}
.routine-card:hover {
  background: var(--white); border-color: var(--gold);
  box-shadow: var(--shadow); transform: translateY(-4px);
}
.routine-emoji { font-size: 46px; margin-bottom: 14px; display: block }
.routine-title { font-family: var(--font-serif); font-size: 26px; font-weight: 500; color: var(--forest-deep); margin-bottom: 20px }
.routine-steps { list-style: none; text-align: left }
.routine-steps li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--text-dark) }
.routine-steps li:last-child { border-bottom: none }
.routine-step-num { background: var(--forest-deep); color: var(--gold-light); width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700 }

/* ETHICS BANNER */
.ethics-banner {
  background: linear-gradient(135deg, var(--forest-darker), var(--forest-deep));
  padding: 60px 0; text-align: center;
  position: relative; overflow: hidden;
}
.ethics-banner::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,97,.12) 0%, transparent 70%);
  transform: translateX(-50%);
}
.ethics-icons { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; margin-top: 20px }
.ethics-item { color: var(--gold-light); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: center; gap: 10px }
.ethics-item::before { content: '✦'; color: var(--gold); font-size: 18px }
.ethics-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; color: var(--cream); position: relative; z-index: 1 }

/* NEWSLETTER */
.newsletter { background: var(--cream-warm); padding: 90px 0; position: relative; overflow: hidden }
.newsletter-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 24px; position: relative; z-index: 1 }
.newsletter h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px }
.newsletter p { color: var(--text-muted); margin-bottom: 30px; font-size: 15px }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap }
.newsletter-input {
  flex: 1; min-width: 220px; padding: 16px 22px;
  border: 1.5px solid var(--border-strong); background: var(--white);
  border-radius: 999px; font-size: 14px; color: var(--forest-deep);
  font-family: var(--font-sans); outline: none; transition: border-color .2s;
}
.newsletter-input:focus { border-color: var(--gold) }
.newsletter-offer { margin-top: 18px; font-size: 12px; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; font-weight: 600 }
.newsletter-offer b { color: var(--gold-dark) }

/* INSTAGRAM */
.insta-head { text-align: center; margin-bottom: 40px }
.insta-handle { font-family: var(--font-serif); font-size: 28px; color: var(--forest-deep); margin-top: 6px }
.insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px }
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(3, 1fr) } }
@media (min-width: 1024px) { .insta-grid { grid-template-columns: repeat(6, 1fr) } }
.insta-tile { aspect-ratio: 1/1; overflow: hidden; position: relative; cursor: pointer }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease) }
.insta-tile:hover img { transform: scale(1.08) }
.insta-tile::after {
  content: 'Bientôt'; position: absolute; inset: 0;
  background: rgba(15,36,25,.7); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; opacity: 0; transition: opacity .3s;
}
.insta-tile:hover::after { opacity: 1 }

/* FOOTER */
.footer { background: var(--forest-darker); color: var(--sage-light); padding: 70px 0 30px }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr } }
.footer-brand { display: flex; flex-direction: column; gap: 18px }
.footer-brand-name { font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: var(--gold-light) }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(212,224,207,.72); max-width: 320px }
.footer-col h4 { font-family: var(--font-sans); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; color: rgba(212,224,207,.75); transition: color .2s }
.footer-col a:hover { color: var(--gold-light) }
.footer-social { display: flex; gap: 10px; margin-top: 8px }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(168,191,160,.1); border: 1px solid rgba(168,191,160,.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sage-light); transition: all .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--forest-darker); border-color: var(--gold) }
.footer-payment { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap }
.footer-payment span { background: rgba(247,243,235,.08); border: 1px solid rgba(247,243,235,.14); padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; letter-spacing: .04em; color: rgba(247,243,235,.65) }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(168,191,160,.12); display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; font-size: 12px; color: rgba(168,191,160,.55) }
.footer-bottom a { color: rgba(168,191,160,.75); margin: 0 10px }
.footer-bottom a:hover { color: var(--gold-light) }
.footer-bottom .nbtech { color: rgba(168,191,160,.4); font-size: 11px; letter-spacing: .04em }
.footer-bottom .nbtech a { color: var(--gold-light); margin: 0 4px }

/* BOUTIQUE FILTERS */
.filter-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px }
.filter-pill { padding: 9px 20px; border: 1.5px solid var(--border-strong); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--text-dark); cursor: pointer; transition: all .2s; font-family: var(--font-sans) }
.filter-pill:hover { border-color: var(--gold) }
.filter-pill.active { background: var(--forest-deep); color: var(--gold-light); border-color: var(--forest-deep) }

/* CART */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 40px }
@media (min-width: 900px) { .cart-layout { grid-template-columns: 2fr 1fr; gap: 60px } }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border) }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover }
.cart-item-name { font-family: var(--font-serif); font-size: 18px; color: var(--forest-deep); margin-bottom: 4px }
.cart-item-meta { font-size: 12px; color: var(--text-muted) }
.cart-qty { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 999px; overflow: hidden; margin-top: 6px }
.cart-qty button { width: 30px; height: 30px; background: none; border: none; cursor: pointer; color: var(--forest-deep); font-size: 16px; font-weight: 600 }
.cart-qty button:hover { background: var(--cream) }
.cart-qty span { padding: 0 12px; font-weight: 600; color: var(--forest-deep) }
.cart-remove { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 12px; text-decoration: underline; padding: 4px }
.cart-remove:hover { color: #c24444 }
.cart-summary { background: var(--cream); border-radius: var(--radius); padding: 32px 28px; position: sticky; top: 100px }
.cart-summary h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 20px }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--text-muted) }
.cart-summary-row.total { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--forest-deep); padding: 18px 0; border-top: 1px solid var(--border-strong); margin-top: 10px }
.cart-summary .btn { width: 100%; margin-top: 16px }
.cart-trust { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: var(--text-muted) }
.cart-trust span::before { content: '✓ '; color: var(--gold-dark); font-weight: 700 }
.cart-empty { text-align: center; padding: 80px 20px }
.cart-empty-icon { font-size: 72px; margin-bottom: 20px; opacity: .4 }
.cart-empty h3 { font-size: 28px; margin-bottom: 10px }
.cart-empty p { color: var(--text-muted); margin-bottom: 24px }

/* ABOUT */
.about-hero { background: linear-gradient(135deg, var(--forest-deep), var(--forest-darker)); padding: 140px 0 100px; color: var(--cream); text-align: center }
.about-hero h1 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 18px; font-weight: 300 }
.about-hero p { max-width: 620px; margin: 0 auto; color: rgba(247,243,235,.85); font-size: 17px; line-height: 1.7 }
/* OWNER PORTRAIT with name overlay */
.owner-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.owner-portrait img { width: 100%; height: 100%; object-fit: cover }
.owner-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,36,25,.75) 100%);
  pointer-events: none;
}
.owner-name {
  position: absolute;
  left: 0; right: 0; bottom: 28px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  z-index: 2;
  padding: 0 20px;
  line-height: 1.15;
}
.owner-title {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.about-values { display: grid; grid-template-columns: 1fr; gap: 24px }
@media (min-width: 640px) { .about-values { grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 900px) { .about-values { grid-template-columns: repeat(3, 1fr) } }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; transition: all .3s }
.value-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow) }
.value-icon { font-size: 28px; margin-bottom: 14px; display: block }
.value-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 10px }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; text-align: justify; hyphens: auto }
.product-desc { text-align: justify !important; hyphens: auto }
.ingredient-benefit { text-align: justify !important; hyphens: auto; padding: 0 6px }
.testimonial-quote { text-align: left }
.faq-answer { text-align: justify !important; hyphens: auto }
.hero-subtitle { text-align: center; text-wrap: balance }
.about-hero p { text-align: center }
.section-sub { text-align: center; text-wrap: balance }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 60px } }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 24px }
.contact-info p { color: var(--text-muted); margin-bottom: 30px }
.contact-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start }
.contact-item-icon { font-size: 22px; flex-shrink: 0 }
.contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 3px }
.contact-item-value { font-size: 15px; color: var(--forest-deep); font-weight: 500 }
.contact-item-value a { color: var(--forest-deep) }
.contact-item-value a:hover { color: var(--gold-dark) }
.contact-form { background: var(--cream); border-radius: var(--radius); padding: 32px 28px }
.form-field { margin-bottom: 18px }
.form-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-deep); margin-bottom: 6px }
.form-input { width: 100%; padding: 12px 16px; background: var(--white); border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); font-size: 15px; color: var(--forest-deep); font-family: var(--font-sans); outline: none; transition: border-color .2s }
.form-input:focus { border-color: var(--gold) }
textarea.form-input { resize: vertical; min-height: 140px }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0 }
.faq-question { width: 100%; background: none; border: none; text-align: left; font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: var(--forest-deep); cursor: pointer; padding: 8px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px }
.faq-question::after { content: '+'; color: var(--gold); font-size: 28px; font-weight: 300; transition: transform .3s }
.faq-item.open .faq-question::after { content: '−'; transform: rotate(180deg) }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-smooth); color: var(--text-muted); font-size: 15px; line-height: 1.7; padding-top: 0 }
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; padding-bottom: 10px }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease) }
.reveal.in { opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none } }

.text-center { text-align: center }
.mt-lg { margin-top: 40px }

/* LEGAL PAGES */
.legal-container { max-width: 880px }
.legal-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px 48px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .legal-section { padding: 32px 22px } }
.legal-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  color: var(--forest-deep);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -.005em;
}
.legal-section h2:first-of-type { margin-top: 22px }
.legal-section p {
  color: var(--text-dark);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: justify;
  hyphens: auto;
}
.legal-section a {
  color: var(--forest-medium);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--gold-dark) }
.legal-section strong { color: var(--forest-deep); font-weight: 600 }
.legal-section code {
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--forest-deep);
  font-family: 'Menlo', 'Consolas', monospace;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  padding: 10px 14px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
  text-align: left !important;
}
