:root {
  --sage: #8a9a7e;
  --sage-dark: #6b7a5f;
  --cream: #f7f3ea;
  --gold: #c8a456;
  --gold-dark: #a8843c;
  --ink: #2e3328;
  --white: #ffffff;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); }

a { text-decoration: none; }

.section-padding { padding: 6.5rem 0; }
.bg-cream { background-color: var(--cream); }

.section-eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .75rem;
}
.badge-eyebrow {
  display: inline-block;
  background: rgba(200,164,86,.18);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sage-dark);
}

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--sage-dark);
  letter-spacing: 1px;
}
.preloader-logo span { color: var(--gold); }

/* Navbar */
.navbar-custom {
  padding: 1.2rem 0;
  background: transparent;
  transition: all .35s ease;
}
.navbar-custom .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color .35s ease;
}
.navbar-custom .navbar-brand span { color: var(--gold); }
.navbar-custom .nav-link {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
  transition: color .3s ease;
}
.navbar-custom .nav-link:hover { color: var(--gold); }
.navbar-custom.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: .6rem 0;
}
.navbar-custom.scrolled .navbar-brand { color: var(--sage-dark); }
.navbar-custom.scrolled .nav-link { color: var(--ink); }
.navbar-toggler { border: none; box-shadow: none !important; }
.navbar-custom.scrolled .navbar-toggler-icon,
.navbar-custom .navbar-toggler-icon {
  filter: none;
}
.navbar-custom:not(.scrolled) .navbar-toggler-icon {
  filter: invert(1);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(168,132,60,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-gold:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(168,132,60,.45);
}
.btn-outline-light {
  border-radius: 50px;
  font-weight: 600;
  border-width: 2px;
  transition: all .3s ease;
}
.btn-outline-light:hover { transform: translateY(-3px); }

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(46,51,40,.85) 20%, rgba(46,51,40,.45) 60%, rgba(46,51,40,.15) 100%);
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  max-width: 560px;
  opacity: .92;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* About */
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: auto; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--white);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  display: flex; align-items: center; gap: .8rem;
}
.about-badge i { font-size: 1.8rem; color: var(--gold); }
.about-badge strong { display: block; color: var(--sage-dark); }
.about-badge span { font-size: .8rem; color: #888; }
.counter-number {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 0;
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(138,154,126,.2);
  border-color: var(--sage);
}
.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
}
.feature-card h3 { font-size: 1.2rem; color: var(--sage-dark); margin-bottom: .6rem; }
.feature-card p { color: #777; font-size: .92rem; margin-bottom: 0; }

/* Product cards */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,.12);
}
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
  letter-spacing: .5px;
}
.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: .3rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.price { font-weight: 700; font-size: 1.15rem; color: var(--sage-dark); }

/* Promo */
.promo-section { position: relative; padding: 7rem 0; }
.promo-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(46,51,40,.88), rgba(107,122,95,.75)); }
.promo-title { font-size: 2.6rem; font-weight: 700; }

/* Testimonials */
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .3s ease;
}
.testi-card:hover { transform: translateY(-6px); }
.testi-text { color: #666; font-style: italic; min-height: 90px; }
.testi-profile { display: flex; align-items: center; gap: .9rem; margin-top: 1.2rem; }
.testi-profile img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-profile strong { display: block; color: var(--ink); font-size: .95rem; }
.testi-profile span { font-size: .8rem; color: #999; }

/* FAQ */
.accordion-item { border: none; margin-bottom: 1rem; border-radius: 14px !important; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.accordion-button {
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--white);
  font-family: var(--font-body);
}
.accordion-button:not(.collapsed) {
  background: var(--sage);
  color: var(--white);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: none; }

/* CTA */
.cta-section { position: relative; padding: 7rem 0; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(46,51,40,.82); }
.cta-title { font-size: 2.5rem; font-weight: 700; max-width: 750px; margin: 0 auto; }

/* Footer */
.footer-section { background: var(--ink); padding: 5rem 0 2rem; color: var(--white); }
.footer-section .navbar-brand { font-size: 1.6rem; font-family: var(--font-display); font-weight: 700; }
.footer-heading { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { color: rgba(255,255,255,.7); transition: color .3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,.15); margin: 2rem 0 1.5rem; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 1000;
  animation: pulse-wa 2.2s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Scroll to top */
#scrollTopBtn {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 1.2rem;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  z-index: 1000;
  transition: transform .3s ease, opacity .3s ease;
}
#scrollTopBtn:hover { transform: translateY(-4px); }

/* Scroll reveal (AOS-lite) */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos].aos-animate { opacity: 1; transform: translate(0,0) scale(1); }

/* Responsive */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 1.9rem; }
  .promo-title, .cta-title { font-size: 2rem; }
  .navbar-collapse {
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    margin-top: .8rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
  }
  .navbar-custom .navbar-collapse .nav-link { color: var(--ink) !important; }
  .about-badge { position: static; margin-top: 1rem; display: inline-flex; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 1rem; }
  .section-padding { padding: 4rem 0; }
}
