:root {
  --forest: #2d5a27;
  --forest-dark: #1e3d1a;
  --forest-light: #4a7c3f;
  --leaf: #7fa356;
  --earth: #8b5e34;
  --earth-light: #c9a66b;
  --cream: #f7f3e9;
  --cream-dark: #f0e9d8;
  --text-dark: #23301f;
  --text-muted: #6b7566;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--forest-dark);
}

a { text-decoration: none; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-cream { background-color: var(--cream); }
.bg-forest { background-color: var(--forest); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title .eyebrow {
  display: inline-block;
  color: var(--forest-light);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .5rem;
}
.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.section-title p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Buttons */
.btn-forest {
  background-color: var(--forest);
  border-color: var(--forest);
  color: #fff;
  font-weight: 600;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  transition: all .25s ease;
}
.btn-forest:hover {
  background-color: var(--forest-dark);
  border-color: var(--forest-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-forest {
  border: 2px solid var(--forest);
  color: var(--forest);
  font-weight: 600;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  transition: all .25s ease;
  background: transparent;
}
.btn-outline-forest:hover {
  background-color: var(--forest);
  color: #fff;
}

/* Header */
.topbar {
  background-color: var(--forest-dark);
  color: #e7ecdf;
  font-size: .85rem;
  padding: .5rem 0;
}
.topbar a { color: #e7ecdf; }
.topbar-social a { margin-left: .9rem; color: #e7ecdf; }
.topbar-social a:hover { color: var(--earth-light); }

.site-header { z-index: 1030; }
.main-nav {
  background: #fff;
  padding: .75rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.brand-logo { max-height: 52px; }
.brand-text { font-size: 1.5rem; }
.main-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: .5rem 1rem !important;
  position: relative;
}
.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: var(--forest);
}
.nav-phone {
  background-color: var(--forest);
  color: #fff !important;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-phone:hover { background-color: var(--forest-dark); color: #fff !important; }

.nav-cart-link {
  position: relative;
  color: var(--text-dark) !important;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
}
.nav-cart-link .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--earth);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Hero Slider */
.hero-slider .carousel-item {
  height: 88vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
}
.hero-slider .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,35,15,.35) 0%, rgba(20,35,15,.65) 100%);
}
.hero-caption {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-caption h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-caption p {
  color: #eef3e8;
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
}
.hero-slider .carousel-control-prev, .hero-slider .carousel-control-next { width: 5%; }

/* About summary */
.about-summary-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(45,90,39,.18);
}
.about-summary-img img { width: 100%; height: 100%; object-fit: cover; }

/* Stats strip */
.stats-strip {
  background: var(--forest);
  color: #fff;
  padding: 3rem 0;
}
.stat-item { text-align: center; }
.stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--earth-light);
}
.stat-item .stat-label { color: #dce6d4; font-weight: 600; }

/* Cards */
.card-hover {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(45,60,40,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(45,60,40,.16);
}
.card-hover .card-img-top {
  height: 220px;
  object-fit: cover;
}
.card-hover .card-body { padding: 1.4rem; }
.badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--earth);
  color: #fff;
  font-size: .7rem;
  padding: .35rem .7rem;
  border-radius: 50px;
  z-index: 2;
}
.product-card-wrap { position: relative; }

.category-filter .btn {
  border-radius: 50px;
  margin: .25rem;
  font-weight: 600;
}

/* Services icon cards */
.service-icon-card {
  text-align: center;
  padding: 2.4rem 1.5rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(45,60,40,.08);
  height: 100%;
  transition: all .25s ease;
}
.service-icon-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(45,60,40,.16); }
.service-icon-card .icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(45,60,40,.08);
  height: 100%;
}
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimonial-stars { color: var(--earth); }

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
  color: #fff; padding: .6rem .8rem; font-size: .85rem; opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* News */
.news-card .card-img-top { height: 200px; object-fit: cover; }
.news-date { color: var(--forest-light); font-weight: 600; font-size: .85rem; }

/* FAQ */
.accordion-button:not(.collapsed) {
  background-color: var(--cream-dark);
  color: var(--forest-dark);
}
.accordion-button:focus { box-shadow: none; border-color: var(--leaf); }

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: #cfd9c6;
  padding: 4rem 0 1.5rem;
}
.site-footer h5, .site-footer h6 { color: #fff; }
.footer-logo { max-height: 48px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: .6rem; }
.footer-links a { color: #cfd9c6; }
.footer-links a:hover { color: var(--earth-light); }
.footer-contact li { display: flex; gap: .5rem; align-items: flex-start; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; margin-right: .5rem;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--forest-light); }
.footer-divider { border-color: rgba(255,255,255,.12); margin: 2rem 0 1.25rem; }
.footer-bottom { color: #a9b6a0; font-size: .9rem; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 1040;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Contact page */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item .icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream-dark); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(45,60,40,.1); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Page header (inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header .breadcrumb-nav a { color: #dce6d4; }
.page-header .breadcrumb-nav span { color: #fff; }

@media (max-width: 991px) {
  .hero-caption h1 { font-size: 2.1rem; }
  .hero-slider .carousel-item { height: 70vh; }
}
