/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #F9F7F2;
  color: #2F3E33;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ─── Variables ─── */
:root {
  --cream:       #F9F7F2;
  --cream-dark:  #EDEBE3;
  --sage:        #7D8E7B;
  --sage-light:  #A8B5A6;
  --sage-dark:   #5A6B58;
  --clay:        #C8845A;
  --clay-light:  #DFA882;
  --text:        #2F3E33;
  --text-light:  #657369;
  --border:      #DDD8CF;
  --white:       #FFFFFF;
  --wa-green:    #25D366;
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.2; }
a { text-decoration: none; color: inherit; }

/* ─── Layout helpers ─── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 3px; }

/* ─── Animations ─── */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; }                              to { opacity:1; } }
@keyframes floatY     { 0%,100% { transform:translateY(0); }             50% { transform:translateY(-7px); } }
@keyframes slideLeft  { from { opacity:0; transform:translateX(-36px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideRight { from { opacity:0; transform:translateX(36px); }  to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn    { from { opacity:0; transform:scale(0.93); }       to { opacity:1; transform:scale(1); } }
@keyframes ping       { 0%   { transform:scale(1); opacity:.8; }         100% { transform:scale(1.9); opacity:0; } }

.anim-fadeInUp   { animation: fadeInUp   0.75s ease-out both; }
.anim-fadeIn     { animation: fadeIn     0.6s  ease-out both; }
.anim-float      { animation: floatY     3.5s  ease-in-out infinite; }
.anim-slideLeft  { animation: slideLeft  0.75s ease-out both; }
.anim-slideRight { animation: slideRight 0.75s ease-out both; }
.anim-scaleIn    { animation: scaleIn    0.65s ease-out both; }
.anim-ping       { animation: ping       1.8s  ease-out infinite; }

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }
.d6 { animation-delay: 0.6s; }

.reveal-landing { opacity: 0; }
.reveal-landing.visible { opacity: 1; }

/* ════════════════════════════════════════
   NAVBAR (Landing)
════════════════════════════════════════ */
.navbar-landing {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  padding: 20px 0;
}
.navbar-landing.scrolled {
  background: rgba(249,247,242,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(47,62,51,0.07);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  cursor: pointer;
}

/* Navbar Cart Button */
.nav-cart-landing {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(125,142,123,0.1);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  color: var(--text);
  margin-left: 8px;
}
.nav-cart-landing:hover {
  background: rgba(125,142,123,0.2);
  transform: scale(1.08);
}
.nav-cart-landing svg {
  width: 20px;
  height: 20px;
}
.nav-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-cart-badge.bump {
  transform: scale(1.3);
}
.nav-cart-badge:empty {
  display: none;
}
.nav-links-landing {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links-landing a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.25s;
  cursor: pointer;
}
.nav-links-landing a:hover { color: var(--sage-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: rgba(249,247,242,0.98);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-blob-1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(125,142,123,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -120px; left: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(200,132,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(125,142,123,0.3);
  border-radius: 999px;
  background: rgba(125,142,123,0.06);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.hero-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--text);
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--sage);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn-primary-landing:hover { background: var(--sage-dark); box-shadow: 0 8px 24px rgba(90,107,88,0.25); transform: translateY(-1px); }
.btn-outline-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1.5px solid rgba(47,62,51,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline-landing:hover { border-color: var(--sage); color: var(--sage-dark); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn-wa:hover { background: #1DA851; box-shadow: 0 8px 24px rgba(37,211,102,0.25); transform: translateY(-1px); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.trust-check {
  width: 16px; height: 16px;
  color: var(--sage);
  flex-shrink: 0;
}
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-ring {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(125,142,123,0.12);
  border-radius: 20px;
  transform: rotate(2.5deg);
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(47,62,51,0.12);
  object-fit: cover;
  aspect-ratio: 1/1;
}
.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(47,62,51,0.1);
  padding: 12px 20px;
}
.hero-float-card p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; color: var(--sage-dark); }
.hero-float-card span { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; display: block; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(47,62,51,0.4); }
.hero-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(47,62,51,0.3), transparent); }

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.section-landing { padding: 100px 0; }
.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label.sage { color: var(--sage); }
.section-label.clay { color: var(--clay); }
.section-title-landing {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 20px;
}
.section-title-landing em { font-style: italic; }
.section-title-landing.em-sage em { color: var(--sage); }
.section-title-landing.em-clay em { color: var(--clay); }
.section-sub-landing {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 600px;
}
.section-header-landing { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header-landing .section-sub-landing { margin: 0 auto; }

/* ════════════════════════════════════════
   PROCESS / OUR STORY
════════════════════════════════════════ */
.process-section-landing { background: var(--cream); }
.process-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: var(--cream-dark);
  border-radius: 48px 0 0 48px;
  pointer-events: none;
}
.process-grid-landing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.process-img-wrap { position: relative; }
.process-img-bg {
  position: absolute;
  inset: -12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(125,142,123,0.1), rgba(200,132,90,0.08));
  transform: rotate(1.5deg);
}
.process-img {
  position: relative;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(47,62,51,0.12);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.chem-badge {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(47,62,51,0.1);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.chem-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }
.chem-badge span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); }

.process-steps { display: flex; flex-direction: column; gap: 32px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(125,142,123,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-icon { background: var(--sage); color: var(--white); }
.step-icon svg { width: 26px; height: 26px; }
.step-text h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--text); margin-bottom: 6px; }
.step-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ════════════════════════════════════════
   PRODUCTS (Landing)
════════════════════════════════════════ */
.products-section-landing { background: var(--white); }
.products-grid-landing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card-landing {
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(47,62,51,0.06);
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.3s;
  cursor: pointer;
}
.product-card-landing:hover { box-shadow: 0 16px 48px rgba(47,62,51,0.14); transform: translateY(-4px); }
.product-img-wrap-landing { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.product-img-landing {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.5s ease;
}
.product-card-landing:hover .product-img-landing { transform: scale(1.1); filter: brightness(0.28); }
.product-overlay-landing {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.product-card-landing:hover .product-overlay-landing { opacity: 1; transform: translateY(0); }
.overlay-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.overlay-ingredients { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 5px; }
.overlay-ingredients li { font-size: 0.82rem; color: var(--white); font-weight: 300; }
.overlay-divider { width: 36px; height: 1.5px; border-radius: 1px; margin: 14px auto; }
.overlay-benefit { font-size: 0.75rem; color: rgba(255,255,255,0.75); text-align: center; max-width: 200px; line-height: 1.6; }
.product-info-landing { padding: 20px 24px 24px; text-align: center; }
.product-info-landing h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); }
.product-info-landing p { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.product-bar { width: 24px; height: 2px; border-radius: 2px; margin: 12px auto 0; transition: width 0.4s ease; }
.product-card-landing:hover .product-bar { width: 48px; }

/* Add to Cart Button on Product Card */
.add-cart-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 28px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  position: relative;
  z-index: 3;
}
.add-cart-landing:hover {
  background: var(--sage-dark);
  box-shadow: 0 6px 20px rgba(90,107,88,0.3);
  transform: translateY(-1px);
}
.add-cart-landing.added {
  background: var(--clay) !important;
  pointer-events: none;
}
.add-cart-landing svg {
  width: 14px;
  height: 14px;
}

.products-footer-note {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  color: var(--text-light);
}
.trust-pill svg { width: 18px; height: 18px; color: var(--sage); }

/* ════════════════════════════════════════
   ORDER CTA
════════════════════════════════════════ */
.order-section {
  background: linear-gradient(160deg, rgba(125,142,123,0.05) 0%, var(--cream) 50%, rgba(200,132,90,0.05) 100%);
  position: relative;
}
.order-top-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(125,142,123,0.3));
}
.order-inner { text-align: center; max-width: 680px; margin: 0 auto; padding-top: 64px; }
.order-inner .section-sub-landing { margin: 0 auto 48px; }
.order-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.order-contact { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.order-contact a { font-size: 0.9rem; color: var(--text-light); transition: color 0.2s; }
.order-contact a:hover { color: var(--sage); }

/* ════════════════════════════════════════
   FOOTER (Landing)
════════════════════════════════════════ */
.footer-landing { background: var(--text); padding: 56px 0 32px; }
.footer-grid-landing {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(249,247,242,0.1);
  margin-bottom: 28px;
}
.footer-brand-landing h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 10px; }
.footer-brand-landing p { font-size: 0.85rem; color: rgba(249,247,242,0.5); line-height: 1.7; }
.footer-col-landing h4 {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249,247,242,0.6);
  margin-bottom: 18px;
}
.footer-col-landing ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-landing a { font-size: 0.85rem; color: rgba(249,247,242,0.45); transition: color 0.2s; cursor: pointer; }
.footer-col-landing a:hover { color: var(--cream); }
.footer-copy-landing { text-align: center; font-size: 0.75rem; color: rgba(249,247,242,0.25); letter-spacing: 0.05em; }

/* ════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 56px; height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
.float-wa svg { width: 28px; height: 28px; }
.float-wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
}
.float-call {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 200;
  width: 56px; height: 56px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(125,142,123,0.35);
  transition: transform 0.25s;
  display: none;
}
.float-call:hover { transform: scale(1.1); }
.float-call svg { width: 24px; height: 24px; }

/* ════════════════════════════════════════
   RESPONSIVE (Landing)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-img-wrap { max-width: 420px; margin: 0 auto; }
  .hero-float-card { left: 0; bottom: -12px; }
  .process-grid-landing { grid-template-columns: 1fr; gap: 52px; }
  .process-bg-shape { display: none; }
  .products-grid-landing { grid-template-columns: 1fr 1fr; }
  .footer-grid-landing { grid-template-columns: 1fr 1fr; }
  .footer-brand-landing { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .section-landing { padding: 72px 0; }
  .hero-landing { padding: 100px 0 64px; }
  .products-grid-landing { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .nav-links-landing { display: none; }
  .hamburger { display: flex; }
  #mobileCartBtn { display: flex !important; }
  .hero-img { max-width: 100%; }
  .footer-grid-landing { grid-template-columns: 1fr; }
  .order-btns { flex-direction: column; align-items: center; }
  .float-call { display: flex !important; }
  .add-cart-landing { width: 100%; padding: 12px 20px; }
  .nav-cart-landing { width: 36px; height: 36px; }
  .nav-cart-landing svg { width: 18px; height: 18px; }
}
