/* Vel Exports – shared styles – light colorful palette */
:root {
  --primary: #2E7D32;
  --primary-light: #4CAF50;
  --primary-dark: #1B5E20;
  --dark: #1B5E20;
  --accent: #66BB6A;
  --accent-light: #A5D6A7;
  --footer-bg: #1B5E20;
  --light: #FFFDE7;
  --light-yellow: #FFF9C4;
  --white: #fff;
  --text: #333;
  --muted: #555;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', system-ui, sans-serif;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 1rem; }

/* Header */
header {
  background: #ffffff;
  color: var(--text);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; position: relative; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-size: 3rem; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; color: #1b2a4a; }
.logo img { height: 75px; width: auto; display: block; vertical-align: middle; }
.logo span, .logo { color: #06b2c9; }
nav > ul,
.nav-primary { list-style: none; display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
nav a { color: #281670; text-decoration: none; font-weight: 700; transition: color 0.2s ease; }
nav a:hover { color: #06b2c9; }
nav a.active { color: #06b2c9; font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle:hover {
  background: rgba(6, 178, 201, 0.08);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #4c4c4c;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta-item {
  margin-left: 0.25rem;
}
.header-cta-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 2px solid #06b2c9;
  color: #06b2c9;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.header-cta-btn:hover {
  background: #06b2c9;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(6, 178, 201, 0.35);
}

/* Mega menu */
.nav-mega-wrap {
  position: static;
}
.nav-mega-trigger::after {
  content: '';
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: 0.15em;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom-width: 0;
  opacity: 0.65;
  transition: transform 0.2s ease;
}
.nav-mega-wrap.is-open > .nav-mega-trigger::after {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0.5rem 0 1.25rem;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
/* Invisible bridge so the cursor can reach the panel without closing */
.nav-mega-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
@media (min-width: 769px) {
  .nav-mega-wrap.is-open .nav-mega-panel {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (hover: hover) and (min-width: 769px) {
  .nav-mega-wrap:hover > .nav-mega-trigger::after {
    transform: rotate(180deg);
    opacity: 1;
  }
  .nav-mega-wrap:hover .nav-mega-panel {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-mega-panel-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(27, 94, 32, 0.14), 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 360px;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}
.nav-mega-sidebar {
  background: linear-gradient(180deg, #f7fbf7 0%, #f1f8f1 100%);
  border-right: 1px solid rgba(46, 125, 50, 0.1);
  padding: 1rem 0.75rem;
}
.nav-mega-overview {
  display: block;
  margin: 0 0.5rem 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-mega-overview:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.28);
}
.nav-mega-overview-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-mega-overview-desc {
  display: block;
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 0.15rem;
}
.nav-mega-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.nav-mega-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.nav-mega-cat-btn:hover,
.nav-mega-cat-btn.is-active {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.1);
}
.nav-mega-cat-btn.is-active {
  font-weight: 700;
  border-left: 3px solid var(--primary);
  padding-left: calc(0.85rem - 3px);
}
.nav-mega-cat-count {
  display: none;
}
.nav-mega-panes {
  padding: 1.1rem 1.25rem 1.25rem;
  min-width: 0;
}
.nav-mega-pane {
  display: none;
}
.nav-mega-pane.is-active {
  display: block;
  animation: nav-mega-fade-in 0.22s ease;
}
@keyframes nav-mega-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mega-pane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-mega-pane-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.nav-mega-view-all {
  font-size: 0.9rem;
  font-weight: 700;
  color: #047a8c;
  text-decoration: none;
  white-space: nowrap;
}
.nav-mega-view-all:hover {
  color: var(--primary-dark);
}
.nav-mega-subtabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  margin-bottom: 0.9rem;
  background: #f3f7f3;
  border-radius: 999px;
}
.nav-mega-subtab {
  border: 0;
  background: transparent;
  color: #333333;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.nav-mega-subtab:hover {
  color: var(--primary-dark);
}
.nav-mega-subtab.is-active {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.12);
}
.nav-mega-subpane {
  display: none;
}
.nav-mega-subpane.is-active {
  display: block;
}
.nav-mega-product-scroll {
  position: relative;
  max-height: 17.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.2rem;
  scroll-behavior: smooth;
}
.nav-mega-product-scroll::-webkit-scrollbar {
  width: 6px;
}
.nav-mega-product-scroll::-webkit-scrollbar-thumb {
  background: rgba(46, 125, 50, 0.28);
  border-radius: 999px;
}
.nav-mega-product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.nav-mega-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.45rem;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  text-align: center;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-mega-product-card:hover {
  background: #f7fbf7;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.1);
}
.nav-mega-product-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f4f0;
  border: 1px solid rgba(46, 125, 50, 0.08);
  flex-shrink: 0;
}
.nav-mega-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-mega-product-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nav-mega-product-card:hover .nav-mega-product-name {
  color: var(--primary-dark);
}

@media (max-width: 1024px) {
  .nav-mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  header {
    padding: 0.55rem 0;
  }

  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.25rem;
    gap: 0.45rem;
    min-width: 0;
    flex: 1 1 auto;
    letter-spacing: 0.02em;
  }

  .logo img {
    height: 40px;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    padding: 0.5rem;
  }

  .nav-toggle span {
    width: 24px;
    height: 3px;
    margin: 4px 0;
    background: #333333;
  }

  header nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
    padding: 4.25rem 1rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 110;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open header nav {
    transform: translateX(0);
  }
  .nav-primary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .nav-primary > li > a:not(.header-cta-btn) {
    display: block;
    padding: 0.7rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
  }
  .header-cta-item {
    margin: 0.75rem 0 0;
  }
  .header-cta-btn {
    display: block;
    text-align: center;
  }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 105;
  }
  body.nav-open .nav-backdrop {
    display: block;
    pointer-events: none;
  }

  .nav-mega-wrap {
    width: 100%;
  }
  .nav-mega-wrap.is-open {
    padding-bottom: 0.25rem;
  }
  .nav-mega-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
  }
  .nav-mega-panel {
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    padding: 0;
    opacity: 1 !important;
    visibility: hidden !important;
    transform: none !important;
    pointer-events: none !important;
    display: none !important;
    width: 100%;
    height: auto;
    overflow: visible;
    touch-action: manipulation;
  }
  .nav-mega-panel::before {
    display: none;
  }
  .nav-mega-wrap.is-open .nav-mega-panel {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .nav-mega-panel-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 12px;
    margin-top: 0.35rem;
    box-shadow: none;
    border: 1px solid rgba(46, 125, 50, 0.12);
  }
  .nav-mega-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    padding: 0.75rem;
  }
  .nav-mega-overview {
    margin: 0 0 0.65rem;
  }
  .nav-mega-cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }
  .nav-mega-cat-btn {
    padding: 0.55rem 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
  }
  .nav-mega-cat-btn.is-active {
    border-left: 0;
    padding-left: 0.65rem;
    border-bottom: 2px solid var(--primary);
    border-radius: 8px 8px 0 0;
  }
  .nav-mega-panes {
    padding: 0.85rem;
  }
  .nav-mega-pane-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .nav-mega-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .nav-mega-product-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .nav-mega-product-img {
    width: 48px;
    height: 48px;
  }

  .nav-mega-product-card {
    touch-action: manipulation;
    min-height: 44px;
    padding: 0.75rem 0.5rem;
  }

  .nav-mega-cat-btn {
    min-height: 44px;
  }

  .nav-mega-subtab {
    min-height: 40px;
  }

  .slider {
    min-height: calc(100svh - 58px);
  }

  .slider-track,
  .slider-slide {
    min-height: calc(100svh - 58px);
  }

  .slider-slide {
    align-items: center;
    justify-content: center;
    background-position: center center;
  }

  .slider-slide .container {
    align-self: center;
    width: auto;
    max-width: 17rem;
    padding: 0;
    margin: 0 2.75rem;
    text-align: center;
  }

  .slider-slide h1 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .slider-slide p {
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0 auto 0.85rem;
    max-width: none;
  }

  .slider-slide .btn {
    font-size: 0.82rem;
    padding: 0.55rem 0.85rem;
    margin: 0.2rem 0.25rem;
  }

  .slider-btn {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
  }

  .slider-btn.prev {
    left: 0.25rem;
  }

  .slider-btn.next {
    right: 0.25rem;
  }

  .slider-dots {
    bottom: 0.85rem;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 48px;
    height: 48px;
  }
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.6s ease-out;
  min-height: 100vh;
}
.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 0;
}
.slider-slide .container {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  padding: 0 1rem;
}
.slider-slide h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.65); }
.slider-slide p { font-size: 1.1rem; opacity: 1; max-width: 600px; margin: 0 auto 1.5rem; font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,0.65); }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--white); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(46,125,50,0.4); background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* Sections */
section { padding: 3rem 0; }
section.slider { padding: 0; }
section:nth-child(even):not(.slider) { background: var(--light-yellow); }
section:nth-child(odd):not(.slider) { background: var(--light); }

/* Inner page: banner (image only) + breadcrumb bar below */
.page-banner {
  position: relative;
  background-color: var(--primary);
  background-image: url('../images/slider-herbs.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
}

/* Product inner pages banner (matches provided screenshot layout) */
.product-page-banner-section {
  padding: 0;
  background: var(--light-yellow);
}
.product-banner.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 200px;
}
.product-title {
  display: flex;
  align-items: center;
}
.banner-product-title-desc {
  width: 100%;
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.banner-product-title-desc .category-title h1 {
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}
.banner-product-title-desc .category-desc p {
  margin: 0.25rem auto 0;
  max-width: 46ch;
  color: var(--text);
  font-size: 0.95rem;
}
.product-category-img-banner {
  height: 100%;
}
.product-category-img-banner img.img-fluid {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

/* Lightweight "Bootstrap-like" columns for this banner only */
.product-banner .col-12 { width: 100%; }
@media (min-width: 768px) {
  .product-banner .col-md-5 { width: 40%; }
  .product-banner .col-md-7 { width: 60%; }
}

/* Breadcrumbs on banner (optional, subtle) */
.breadcrumbs--on-banner {
  margin-top: 1rem;
}
.breadcrumbs--on-banner ol {
  justify-content: center;
  font-size: 0.8125rem;
}
.breadcrumbs--on-banner a {
  color: var(--primary-dark);
}
.breadcrumbs--on-banner a:hover {
  color: var(--primary);
}
.breadcrumbs--on-banner li + li::before {
  color: rgba(0, 0, 0, 0.35);
}
.breadcrumbs--on-banner li[aria-current="page"] {
  color: rgba(0, 0, 0, 0.55);
}

/* Breadcrumb bar: small section below banner, left-aligned */
.breadcrumb-bar {
  padding: 0.5rem 0;
  background: var(--light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.breadcrumb-bar .container {
  padding: 0 1rem;
}
.breadcrumbs {
  margin: 0;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  text-align: left;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs li + li::before {
  content: '/';
  color: var(--muted);
  margin-right: 0.5rem;
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--text);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.breadcrumbs li[aria-current="page"] {
  color: var(--muted);
  font-weight: 500;
}
h2 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(102, 187, 106, 0.2);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(102, 187, 106, 0.25); transform: translateY(-4px); border-color: var(--accent); }
.product-card img { width: 100%; height: 180px; object-fit: cover; object-position: center center; display: block; }
.product-card .card-body { padding: 1.25rem; }
.product-card h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.15rem; }
.product-card p { color: var(--muted); font-size: 0.9rem; }
.product-card a {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.product-card a:hover { text-decoration: underline; color: var(--primary-dark); }

/* About */
.about p { max-width: 720px; margin: 0 auto 1rem; text-align: center; color: var(--muted); }
.page-about .about-content { max-width: 720px; margin: 0 auto; color: var(--muted); }
.page-about .about-content h2 { margin-bottom: 1rem; }
.page-about .about-content p { text-align: left; margin-bottom: 1rem; }

.home-highlights {
  padding: 2.5rem 0;
  text-align: center;
}
.home-highlights h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.home-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.home-highlight-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(102, 187, 106, 0.25);
  text-align: left;
}
.home-highlight-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.home-highlight-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-extra {
  padding: 2.5rem 0;
}
.about-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}
.about-extra-block h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.about-extra-block ul,
.about-extra-block ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-extra-block li {
  margin-bottom: 0.5rem;
}

.about-vision {
  padding: 2.5rem 0;
}
.about-vision-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.about-vision-block {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(102, 187, 106, 0.25);
}
.about-vision-block h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.about-vision-block p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-values {
  padding: 2.5rem 0;
  text-align: center;
}
.about-values h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.about-value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(102, 187, 106, 0.25);
  text-align: left;
}
.about-value-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.about-value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-testimonials {
  padding: 2.5rem 0;
  background: var(--light-yellow);
  text-align: center;
}
.about-testimonials h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(102, 187, 106, 0.25);
  text-align: left;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.testimonial-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left column – contact information */
.contact-info-title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-light);
  display: inline-block;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #d6ddd6;
}
.contact-info-item:first-of-type { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.25);
}
.contact-info-body { text-align: left; }
.contact-info-body h2 {
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  text-align: left;
  margin-bottom: 0.25rem;
}
.contact-info-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.1rem;
}
.contact-info-body a {
  color: var(--muted);
  text-decoration: none;
}
.contact-info-body a:hover { color: var(--primary); text-decoration: underline; }
.contact-info-note {
  font-size: 0.82rem;
  color: var(--accent);
}
.contact-info-sub { margin-top: 0.35rem !important; font-size: 0.9rem !important; }
.contact-info-addr { line-height: 1.5; }

/* Right column – Get a Quote form */
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.12);
}
.contact-form-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.quote-field {
  position: relative;
  margin-bottom: 1.6rem;
}
.quote-field input,
.quote-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfd8cf;
  background: transparent;
  padding: 0.5rem 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.quote-field textarea { min-height: 70px; }
.quote-field input:focus,
.quote-field textarea:focus {
  border-bottom-color: var(--primary);
}
.quote-field label {
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #9aa39a;
  font-size: 0.95rem;
  pointer-events: none;
  transition: transform 0.18s ease, color 0.18s ease, font-size 0.18s ease;
}
.quote-field input:focus + label,
.quote-field input:not(:placeholder-shown) + label,
.quote-field textarea:focus + label,
.quote-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.15rem);
  font-size: 0.75rem;
  color: var(--primary);
}
.quote-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.quote-submit {
  width: 100%;
  border: none;
  background: var(--primary-light);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.quote-submit:hover { background: var(--primary); transform: translateY(-1px); }
.quote-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.quote-feedback {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  display: none;
}
.quote-feedback.is-success,
.quote-feedback.is-error { display: block; }
.quote-feedback.is-success { color: var(--primary); }
.quote-feedback.is-error { color: #c0392b; }

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-card { padding: 1.5rem; }
}

/* CTA */
.cta {
  background: var(--accent-light);
  color: var(--primary-dark);
  text-align: center;
  padding: 3rem 0;
  border-top: 4px solid var(--primary);
}
.cta h2 { color: var(--primary-dark); margin-bottom: 1rem; }
.cta p { color: var(--primary-dark); margin-bottom: 1.5rem; opacity: 0.95; }
.cta .btn { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.cta .btn:hover { background: var(--footer-bg); border-color: var(--footer-bg); color: var(--white); }
.btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--white); }

/* Products listing page */
.page-products .product-category-section { padding: 2.5rem 0; }
.page-products .product-category-section:nth-child(even) { background: var(--light); }
.product-category-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.product-category-intro {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}
.product-listing-grid { margin-top: 0; }
.product-listing-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-listing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(102, 187, 106, 0.35); }
.product-listing-card .product-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.product-listing-card:hover .product-card-link { text-decoration: underline; }

/* Product detail page */
.page-product-detail { padding-bottom: 3rem; }
.product-detail-section { padding: 2rem 0; }
.product-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.product-detail-layout .col-12 { width: 100%; }
.product-detail-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.product-detail-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.product-detail-image-wrap:hover {
  box-shadow: 0 8px 24px rgba(102, 187, 106, 0.35);
}
.product-detail-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
}
.product-detail-content { min-width: 0; width: 100%; }
.product-detail-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-detail-title {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.product-detail-desc {
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  font-size: 18px !important;
}
.product-detail-sections { margin-top: 1.5rem; }
.product-detail-sections .product-detail-para {
  margin-bottom: 1rem;
  line-height: 1.65;
  color: var(--text);
}
.product-detail-sections .product-detail-heading {
  font-size: 26px;
  color: var(--primary);
  margin: 1.75rem 0 0.75rem;
  font-weight: 600;
}
.product-detail-sections .product-detail-list {
  margin: 0.5rem 0 1rem 1.5rem;
  padding: 0;
  line-height: 1.6;
}
.product-detail-sections .product-detail-list li { margin-bottom: 0.25rem; }
.product-detail-list-label { font-weight: 700; }
.product-variety-block {
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.product-variety-title {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.product-variety-desc {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--text);
}
.product-variety-specs-heading {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}
.product-specs { margin: 1.5rem 0; }
.product-detail-tables-section {
  padding-top: 0.5rem;
}
.product-specs-heading {
  font-size: 26px !important;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.specs-table th,
.specs-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.specs-table th {
  color: var(--muted);
  font-weight: 500;
  width: 40%;
}
.specs-table td { color: var(--text); }
.product-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Desktop: sticky image left, content right (like reference page) */
@media (min-width: 992px) {
  .page-product-detail,
  .page-product-detail .product-detail-section,
  .page-product-detail .container,
  .product-detail-layout,
  .product-detail-image-col {
    overflow: visible;
  }
  .product-detail-layout {
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 1100px;
  }
  .product-detail-image-col {
    display: block;
    width: 40%;
    align-self: flex-start;
    position: sticky;
    top: 96px; /* header is sticky; keep image visible while scrolling */
    height: fit-content;
  }
  .product-detail-content {
    width: 60%;
  }
  .product-detail-image-wrap {
    max-width: none;
    position: relative !important;
    margin: 0;
  }
}

.related-products-section {
  padding: 2.5rem 0 3rem;
}
.related-products-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(102, 187, 106, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25);
  border-color: var(--accent);
}
.related-card-image-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.related-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-card-body {
  padding: 1rem 1rem 1.25rem;
  text-align: center;
}
.related-card-title {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.related-card-cta {
  display: inline-block;
  padding: 0.45rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 120;
}
.whatsapp-float-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.whatsapp-float:hover {
  background: #1ebe5a;
}

/* Lazy load – sections and cards reveal on scroll */
.lazy-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lazy-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keep sticky behavior reliable on product detail page */
.page-product-detail .product-detail-section.lazy-section,
.page-product-detail .product-detail-section.lazy-section.is-visible {
  opacity: 1;
  transform: none;
}
.lazy-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lazy-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
img[data-src] {
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
img.is-loaded {
  opacity: 1;
}

/* Herbs & Leaves – simple botanical card layout */
.page-herbs .product-category-title {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.herbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.25rem;
}
.herb-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.herb-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.herb-card-image-wrap {
  background: #fff;
  border-bottom: 1px solid #eee;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.herb-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.herb-card-name {
  background: var(--accent, #66bb6a);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 0.55rem 0.75rem;
}
.herb-card-meta,
.herb-detail-meta {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #555;
}
.herb-meta-row {
  margin-bottom: 0.35rem;
}
.herb-meta-row:last-child {
  margin-bottom: 0;
}
.herb-meta-row dt {
  display: inline;
  font-weight: 700;
  color: #333;
}
.herb-meta-row dd {
  display: inline;
  margin: 0;
}
.herb-detail-meta {
  margin-top: 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid #eee;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .herbs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .herbs-grid { grid-template-columns: 1fr; }
}

/* Footer */
footer { text-align: center; font-size: 0.9rem; }
.footer-main {
  background: var(--footer-bg);
  color: var(--white);
  padding: 2rem 0;
}
.footer-main a { color: var(--accent-light); text-decoration: none; }
.footer-main a:hover { text-decoration: underline; color: var(--white); }
.footer-bottom {
  background: var(--light-yellow);
  color: var(--primary-dark);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(46, 125, 50, 0.15);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}
.footer-copyright {
  text-align: left;
}
.footer-credit {
  text-align: right;
  margin-left: auto;
}
.footer-credit a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}
.footer-credit a:hover {
  color: #047a8c;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-credit {
    text-align: left;
    margin-left: 0;
  }
}
