/* ===================================================
   Nutimune – Main Stylesheet
   Responsive, rem-based, mobile-first
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --clr-green:       #4a9c59;
  --clr-green-light: #6bbf7a;
  --clr-green-dark:  #194A33;
  --clr-dark:        #1a1a1a;
  --clr-text:        #444444;
  --clr-muted:       #888888;
  --clr-white:       #ffffff;
  --clr-border:      #e8e8e8;
  --clr-hero-bg:     #2a2a2a;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Mulish', sans-serif;

  --navbar-h:   4.5rem;
  --radius-sm:  0.32rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.5rem;

  --transition: 0.25s ease;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
}

/* ---------- Reset ---------- */

@font-face {
  font-family: "Teapoz";
  src: url("./image/font/Teapoz-Regular.eot");
  /* src: url("./image/font/Teapoz-Regular.eot"); */
  src: url("./image/font/Teapoz-Regular.eot?#iefix") format("embedded-opentype"), url("./image/font/Teapoz-Regular.woff2") format("woff2"), url("./image/font/Teapoz-Regular.woff") format("woff"), url("./image/font/Teapoz-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Teapoz";
  src: url("./image/font/Teapoz-Medium.eot");
  src: url("./image/font/Teapoz-Medium.eot?#iefix") format("embedded-opentype"), url("./image/font/Teapoz-Medium.woff2") format("woff2"), url("./image/font/Teapoz-Medium.woff") format("woff"), url("./image/font/Teapoz-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Teapoz";
  src: url("./image/font/Teapoz-Semibold.eot");
  src: url("./image/font/Teapoz-Semibold.eot?#iefix") format("embedded-opentype"), url("./image/font/Teapoz-Semibold.woff2") format("woff2"), url("./image/font/Teapoz-Semibold.woff") format("woff"), url("./image/font/Teapoz-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 600;
  font-family: "Teapoz", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

html{
  font-size: 100%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: "Teapoz", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: var(--clr-green-dark);
  line-height: 1.6;
  /* font-weight: 500; */
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  /* border-bottom: 1px solid var(--clr-border); */
  /* height: var(--navbar-h); */
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  /*max-width: 90rem;*/
  margin: 0 auto;
  padding: 0 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__icon { font-size: 1.5rem; }
.logo__text {
  font-family: "Teapoz", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--clr-green);
  letter-spacing: -0.02em;
}

/* Nav list */
.navbar__nav { flex: 1; display: flex; justify-content: end; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  font-family: "Teapoz", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  gap: 0.25rem;
  padding: 2.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.13rem;
  text-transform: uppercase;
  color: #184d2b;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__item--active > .nav__link { color: var(--clr-green); }

.nav__arrow {
  font-size: 0.75rem;
  line-height: 1;
  transition: transform var(--transition);
  display: inline-block;
}
.nav__item:hover .nav__arrow { transform: rotate(180deg); }

.nav__icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav__item:hover .nav__icon { transform: rotate(180deg); }

/* Parent dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 0rem);
  left: 0;
  min-width: 10rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;

  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity var(--transition), transform var(--transition);

  z-index: 100;
}

/* Show parent dropdown */
.nav__item:hover > .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* Important: parent of subdropdown */
.dropdown-item{
  position: relative;
}


/* Sub dropdown */
.nav__subdropdown {
  position: absolute;
  left: 100%;
  top: 0;
 padding: 0.5rem 0;
  min-width: 10rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);

  opacity: 0;
  pointer-events: none;
  transform: translateX(0.5rem);
  transition: opacity var(--transition), transform var(--transition);

  z-index: 100;
}


/* Show subdropdown */
.dropdown-item:hover > .nav__subdropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav__dropdown li a {
  display: block;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: color var(--transition), background var(--transition);
}
.nav__dropdown li a:hover {
  color: var(--clr-green);
  background: rgba(74, 156, 89, 0.06);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  color: #184d2b;
  transition: color var(--transition), background var(--transition);
  font-size: 0.875rem;
}
.action-btn:hover { color: var(--clr-green); background: rgba(74,156,89,0.07); }
.action-btn--text {
  width: auto;
  /* padding: 0.75rem 1.5rem; */
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}
.cart-btn { gap: 0.2rem; }
.cart-count { font-size: 0.8125rem; font-weight: 600; }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(74,156,89,0.07); }
.hamburger span {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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(-5px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  /* min-height: 37.5rem;
  height: calc(100vh - var(--navbar-h));
  max-height: 50rem; */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 3;
}

/* Tile overlay */
.tile-wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.tile {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.hero .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero:hover .owl-nav {
  opacity: 1;
  pointer-events: all;
}

.hero .owl-nav button {
  background: rgba(255, 255, 255, 0.95) !important;
  border: none !important;
  border-radius: 50%;
  width: 5.7rem;
  height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: all;
}

.hero .owl-nav button:hover {
  background: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}



.img1banner,
.img2banner,
.img3banner{
position: absolute;
z-index: 10;
}
.img3banner{
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  object-position: center;
}
.img1banner{
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.img2banner{
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  /* Fallback dark textured background matching the screenshot */
  background:
    radial-gradient(ellipse at 60% 40%, rgba(60,60,50,0.6) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 8px
    ),
    #2e2e2c;
}
/* When you have the actual background image, use: */
/*
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
*/

/* Decorative prop images (replace placeholders with actual <img> tags) */
.hero__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__decor img { width: 100%; height: 100%; object-fit: contain; }

.hero__decor--spoon-left {
  top: 8%;
  left: 0;
  width: clamp(7rem, 12vw, 12rem);
  height: clamp(7rem, 12vw, 12rem);
  /* placeholder visual */
  background: radial-gradient(circle at 60% 60%, #5a8a3a 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
}
.hero__decor--fern-right {
  top: 0;
  right: 0;
  width: clamp(10rem, 22vw, 22rem);
  height: clamp(18rem, 38vw, 38rem);
  background: radial-gradient(ellipse at 50% 50%, #4a7a2a 20%, transparent 70%);
  opacity: 0.3;
}
.hero__decor--teapot {
  right: clamp(12rem, 28vw, 30rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(14rem, 30vw, 32rem);
  height: clamp(14rem, 30vw, 32rem);
  background: radial-gradient(circle, rgba(255,255,255,0.08) 30%, transparent 70%);
  border-radius: 50%;
}
.hero__decor--cup {
  right: clamp(1rem, 5vw, 6rem);
  bottom: 10%;
  width: clamp(6rem, 12vw, 14rem);
  height: clamp(6rem, 12vw, 14rem);
  background: radial-gradient(circle, rgba(200,150,60,0.3) 40%, transparent 70%);
  border-radius: 50%;
}
.hero__decor--spoon-bottom {
  right: clamp(6rem, 16vw, 20rem);
  bottom: 5%;
  width: clamp(8rem, 16vw, 18rem);
  height: clamp(3rem, 6vw, 7rem);
  background: radial-gradient(ellipse at 50% 50%, rgba(160,100,40,0.3) 40%, transparent 70%);
}

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--clr-dark);
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition);
}
.hero__arrow:hover {
  background: var(--clr-white);
  transform: translateY(-50%) scale(1.08);
}
.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 clamp(2rem, 8vw, 8rem);
  max-width: 42rem;
  animation: heroFadeUp 0.8s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Organic badge */
.hero__badge {
  width: clamp(6rem, 10vw, 8.5rem);
  height: clamp(6rem, 10vw, 8.5rem);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: badgePop 0.6s 0.3s ease both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7) rotate(-15deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero__title {
  font-family: "Teapoz", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  
  color: var(--clr-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.15rem;
    font-weight: 600;
  color: #fff;
      text-shadow: 0 2px 12px rgb(0 0 0);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.7rem;
  background: #fff;
  /* border: 2px solid var(--clr-white); */
  color: #000;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.hero__cta:hover {
  background: #8CBC4F;
  color: #fff;
  /* transform: translateX(0.25rem); */
}
.cta__arrow {
  font-size: 1.25rem;
  transition: transform var(--transition);
}
/* .hero__cta:hover .cta__arrow { transform: translateX(0.25rem); } */

/* Slide dots */
.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.dot {
  /* width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background var(--transition), transform var(--transition); */
  cursor: pointer;
}
.dot--active {
  background: var(--clr-white);
  transform: scale(1.3);
}

/* Hero Carousel Styles (Owl Carousel) */
.hero.owl-carousel {
  position: relative;
  width: 100%;
  min-height: 37.5rem;
  height: calc(100vh - var(--navbar-h));
  max-height: 50rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;
}

.hero-slide__bg img {
   width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  /* object-position: center;

  transform: scale(1.15);
  transition: transform 6s ease-in-out;
  will-change: transform; */
}
.puzzle-grid {
  position: absolute;
  inset: 0;
  display: grid;
  z-index: 2;

  transform: scale(1.15);
  transition: transform 2s ease-out;
}

.puzzle-grid.zoom-out {
  transform: scale(1);
}

.puzzle-tile {
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.puzzle-tile.show {
  opacity: 1;
}

.owl-item.active .hero-slide__bg img {
  transform: scale(1);
}

.hero-slide__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-slide__content {
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 6rem 2rem 0;
  margin: 0 auto 0 15rem;
  max-width: 37rem;
  animation: heroFadeUp 0.8s ease both;
}

.hero.owl-carousel .owl-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex !important;
  gap: 0.5rem;
  justify-content: center;
}

.hero.owl-carousel .owl-dots .owl-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4) !important;
  transition: background var(--transition), transform var(--transition);
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.hero.owl-carousel .owl-dots .owl-dot.active {
  background: var(--clr-white) !important;
  transform: scale(1.3);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet: ≤ 1024px */
@media (max-width: 64rem) {
  .navbar__inner { gap: 1rem; }
  .nav__link { padding: 0.75rem 1rem; font-size: 0.85rem; }
  .action-btn--text { display: none; }
}

/* Mobile: ≤ 768px */
@media (max-width: 48rem) {
  .hamburger { display: flex; }

  .navbar__nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-white);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
    /* box-shadow: var(--shadow-md); */
  }
  .navbar__nav.open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav__item { width: 100%; }
  .nav__link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--clr-border);
    width: 100%;
    justify-content: space-between;
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(74,156,89,0.05);
    border-radius: 0;
    display: none;
  }
  .nav__item.open .nav__dropdown { display: block; }
  .nav__dropdown li a { padding: 0.625rem 1.5rem; }

  .hero { height: 75vw; min-height: 20rem; max-height: 32rem; }
  .hero__decor--fern-right,
  .hero__decor--teapot,
  .hero__decor--cup,
  .hero__decor--spoon-bottom { opacity: 0.15; }
  
  /* Show hero arrows on mobile (no hover available) */
  .hero.owl-carousel .owl-nav button {
    opacity: 0.7;
    width: 3rem;
    height: 3rem;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 30rem) {
  .navbar__inner { padding: 0 1rem; }
  .hero { min-height: 22rem; }
  .hero__content { padding: 0 1.5rem; }
  .hero__cta { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
  
  /* Smaller arrows on mobile */
  .hero.owl-carousel .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* =====================================================
   PRODUCT SLIDER SECTION
   Add this to your main style.css
   ===================================================== */

.products-section {
  padding: 4rem 0 4rem;
  background: #fff;
}

.products-section__inner {
  width: 100%;
  /*max-width: 90rem;*/
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header row */
.products-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}

.products-section__title {

  color: var(--clr-green-dark);
  

  font-size: 3.15rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.products-section__view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  white-space: nowrap;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.products-section__view-all:hover { color: var(--clr-green-dark); }
.products-section__view-all span { font-size: 1.1rem; }

/* ---- Slider container ---- */
.product-slider {
  position: relative;
}

.product-slider__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;   /* room for scrollbar on some OS */
  /* hide scrollbar */
  scrollbar-width: none;
}
.product-slider__track::-webkit-scrollbar { display: none; }

/* ---- Product Card ---- */
.product-card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 13rem;
  scroll-snap-align: start;
  background: #f7f7f7;
  border-radius: 0.32rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-0.25rem);
}

/* Image area */
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-main-image img{
  object-fit: cover;
    height: 100%;
    border-radius: 0.32rem;
}
.product-card__img-wrap img {
  width: 100%;
  mix-blend-mode: multiply;
  height: 100%;
  object-fit: contain;
  padding: 1rem 1.8rem 1.8rem;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}
/* Placeholder (remove once real images are added) */
.product-card__img-placeholder {
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, #ddd 0%, #c8c8c8 100%);
  border-radius: 0.5rem;
  opacity: 0.5;
}

/* Sale badge */
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #e8435a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  z-index: 1;
  text-transform: uppercase;
}

/* Info area */
.product-card__info {
  padding: 1rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* Stars */
.product-card__stars { display: flex; gap: 0.1rem; }
.star {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1;
}
.star.filled { color: #4a9c59; }
.star.half {
  position: relative;
  color: #d0d0d0;
}
.star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #4a9c59;
}

/* Bottom row: name + price + cart */
.product-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.product-card__name {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: #184d2b;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.product-card__price {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
}

.product-card__cart-btn {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  border: 1.5px solid #ddd;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product-card__cart-btn:hover {
  background: #4a9c59;
  color: #fff;
  border-color: #4a9c59;
}

/* ---- Slider nav buttons ---- */
.slider-btn {
  position: absolute;
  top: 38%;                    /* vertically centered on image area */
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.slider-btn:hover {
  background: #4a9c59;
  color: #fff;
  border-color: #4a9c59;
  box-shadow: 0 4px 16px rgba(74,156,89,0.3);
}
.slider-btn--prev { left: -1.25rem; }
.slider-btn--next { right: -1.25rem; }

/* ---- Responsive ---- */
@media (max-width: 64rem) {       /* ≤ 1024px: show 3 cards */
  .product-card { flex: 0 0 calc(33.333% - 1rem); }
  .slider-btn--prev { left: -0.75rem; }
  .slider-btn--next { right: -0.75rem; }
}

@media (max-width: 48rem) {       /* ≤ 768px: show 2 cards */
  .product-card { flex: 0 0 calc(50% - 0.75rem); }
  /* .slider-btn { display: none; }    */
}

@media (max-width: 30rem) {       /* ≤ 480px: show 1.2 cards */
  /* .products-section__inner { padding: 0 1rem; } */
  .product-card { flex: 0 0 82%; }
}

/* =============================
   WHY US SECTION
============================= */
.leaves_one{
  position: absolute;
  top: 10%;
  right: -7%;
}
.why-us {
  position: relative;
  padding: 6rem 0;
  /* background: #f9fbf7; */
}

.container {
  width: 100%;
  /*max-width: 90rem;*/
  margin: 0 auto;
  padding: 0 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT SIDE */

.why-label {
  font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #8CBC4F;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.7rem;
}

.why-title {
     font-size: 3.15rem;
    line-height: 1.1;
    font-weight: 700;
  color: var(--clr-green-dark);
  margin-bottom: 1.5rem;
}

.why-description {
  font-weight: 500;
  font-size: 1rem;
  color: var(--clr-green-dark);
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

/* Image */

.why-image-wrapper {
  position: relative;
}

.why-main-image {
      width: 100%;
    height: 39rem;
    background: #cde7c8;
    border-radius: 0.32rem;
}

.natural-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: var(--clr-green-dark);
  font-size: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
}

/* RIGHT SIDE */

.features-card {
  background: #f7f7f7;
  padding: 6rem 4rem;
  border-radius: 0.32rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  /* box-shadow: 0 1rem 2rem rgba(0,0,0,0.04); */
}

.feature-item h4 {
  font-size: 1.125rem;
  color: var(--clr-green-dark);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-weight: 500;
  font-size: 0.875rem;
  color: #6b7b72;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #e6f3e3;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* MASTER SECTION */

.master-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 4rem; */
  gap: 2rem;
}

.master-content h3 {
  font-size: 1.89rem;
  line-height: 2rem;
  color: var(--clr-green-dark);
  margin-bottom: 1rem;
}

.master-content p {
  font-size: 1rem;
  font-weight: 500;
  color: #55665d;
  margin-bottom: 1.2rem;
}

.master-link {
  font-size: 0.8rem;
    color: #184d2b;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid;
    font-weight: 600;
  text-decoration: none;
}

.master-link:hover {
  /* text-decoration: underline; */
}

.master-image {
  /* width: 16rem;
  height: 18rem; */
 
  border-radius: 1rem;
}
.master-image img {
      height: 100%;
      margin-top: -63px;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 64rem) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .master-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .master-image {
    width: 100%;
    height: 16rem;
  }
}

.footerupimage{
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.footerbelowimage{
  position: absolute;
  top: 0%;
  right: 0%;
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

@media (max-width: 40rem) {
  .features-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .why-title {
    font-size: 2rem;
  }

  .why-main-image {
    height: 22rem;
  }

  .natural-badge {
    width: 6rem;
    height: 6rem;
    font-size: 0.85rem;
  }
}
/* Base animation */
.animate {
  /* opacity: 0; */
  transition: all 0.8s ease;
}

 .animate.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.animate-up {
  transform: translateY(50px);
}

.animate-down {
  transform: translateY(-50px);
}

.animate-left {
  transform: translateX(-60px);
}

.animate-right {
  transform: translateX(60px);
}

.animate-zoom {
  transform: scale(0.8);
} 

/* =============================
   CTA BANNER
============================= */
.logo_imgae{
  height: 4.6rem !important;
  object-fit: contain;
}
.cta-banner .containe{
  position: relative;
  overflow: hidden;
  background-size: cover;
    background-position: 50%;
    transition: transform 0.6s ease;
    z-index: 1;
/* background: #f2efec; */
 border-radius: 5px;
}
.cta-banner .containe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("image/clipboard-image-1772540503.webp");
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: -1;
}

.cta-banner .containe:hover::before {
  transform: scale(1.1);
}
.cta-banner {
 
  width: 100%;
  /*max-width: 90rem;*/
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  
  box-sizing: border-box;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 1rem;
  overflow: hidden;
}

.cta-content {
  padding: 4.4rem 0 4.4rem 12.5rem;
}

.cta-title {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.cta-subtitle {
  font-size: 1rem;
      font-weight: 600;
  color: #909090;
    margin-bottom: 0.6rem;
}

.cta-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f4f2f;
  text-decoration: none;
  border-bottom: 0.125rem solid #1f4f2f;
  padding-bottom: 0.25rem;
  transition: 0.3s ease;
}

.cta-link:hover {
  opacity: 0.7;
}
.cta-image img{
  mix-blend-mode: multiply;
  margin: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta-image {
  height: 18rem;
  /* height: 22rem;
  
  background-size: cover;
  background-position: center; */
}

/* Responsive */

@media (max-width: 64rem) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-image {
    height: 18rem;
  }

  .cta-content {
    padding: 3rem;
  }
}

@media (max-width: 40rem) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-content {
    padding: 2rem;
  }
}

/* =============================
   ABOUT SECTION
============================= */

.about-section {
  position: relative;
  padding: 3.5rem 0;
  background: var(--clr-green-dark);
  background-position: center center;
  background-image: url(image/h2_bg-1.png);
  text-align: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: url('your-leaf-pattern.png') center/cover no-repeat;
  opacity: 0.08; /* subtle leaf pattern */
  pointer-events: none;
}

.about-content {
  position: relative;
  /*max-width: 90rem;*/
  margin: 0 auto;
  padding: 0 2rem;
  color: #fff;
}

.about-label {
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: #9bd28e;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.about-title {
  font-size: 3.15rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.about-description {
 font-size: 1rem;
 font-weight: 500;
    line-height: 1.7;
    width: 45%;
    color: #fff;
    margin: 0 auto 1.8rem auto;
}
.about-btn-page,
.about-btn {
  display: inline-block;
  padding: 0.6rem 1.7rem;
  border: 0.08rem solid #8CBC4F;
  border-radius: 0.32rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: 0.3s ease;
}
.about-btn-page:hover,
.promo-btn:hover,
.about-btn:hover {
  background: #8CBC4F;
  color: #fff;
}

/* Responsive */

@media (max-width: 40rem) {
  .about-title {
    font-size: 2.2rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

/* =============================
   FOOTER
============================= */

.site-footer {
  position: relative;
  background: var(--clr-green-dark);
  color: #ffffff;
  padding: 5rem 2rem 3rem;
  font-size: 1rem;
}

.footer-wrapper {
  width: 100%;
  /*max-width: 90rem;*/
  margin: 0 auto;
}

.site-footer .container {
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-heading {
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  color: #9bd28e;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.9rem;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #9bd28e;
}

.footer-address,
.footer-help {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-phone {
  color: #fff;
  /* font-weight: 600; */
  font-size: 1.1rem;
}

/* Newsletter */

.newsletter-text {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  width: auto;
  border: none;
  background-color: #fff !important;
  outline: none;
  font-size: 0.95rem;
  border-radius: 0 !important;
}

.newsletter-form button {
  padding: 0.875rem 2rem;
  border: none;
  background: #9bd28e;
  color: #184d2b;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #b7e5aa;
}

/* Divider */

.footer-divider {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-divider span {
  flex: 1;
  height: 0.0625rem;
  background: rgba(255,255,255,0.15);
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 500;
}

/* Bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.copyright span {
  color: #9bd28e;
}

/* Payments */

.payment-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payment-item {
  width: 3.5rem;
  height: 2rem;
  background: #ffffff;
  border-radius: 0.3rem;
}

/* Social */

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.back-to-top {
  color: #9bd28e;
  display: flex;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 75rem) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48rem) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================
   PROMO HERO SECTION
============================= */

.promo-hero {
  /* padding: 4rem 0; */
  
  overflow: hidden;
}

.promo-wrapper {
  padding: 6.5rem 7rem;
  background: linear-gradient(135deg, #ffe4c7 0%, #ffe4c7 100%);
  border-radius: 0.32rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 3rem;
      background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* LEFT SIDE */

.promo-content {
  padding-left: 2rem;
}

.promo-label {

  font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #6ea34f;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.7rem;
}

.promo-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 1.5rem;
}

.promo-description {
  font-size: 1rem;
  color: #2f4f2f;
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.promo-btn {
  display: inline-block;
      padding: 0.6rem 1.7rem;
  background: #ffffff;
  color: #111;
  font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  text-decoration: none;
      border-radius: var(--radius-sm);
  transition: 0.3s ease;
}

.promo-btn:hover {
  /* transform: translateY(-0.2rem); */
  /* box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08); */
}

/* RIGHT SIDE */

.promo-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-main-image {
  
}

.promo-main-image img {
     height: 100%;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
/* Decorative Leaves */

.promo-leaf {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  /* opacity: 0.4; */
}
.promo-leaf img{
  mix-blend-mode: multiply;
}
.leaf-top {
  top: -2rem;
  left: -2rem;
}

.leaf-bottom {
  bottom: -2rem;
  left: 4rem;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 64rem) {
  .promo-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-content {
    padding-left: 0;
  }

  .promo-description {
    margin-left: auto;
    margin-right: auto;
  }

  .promo-image-area {
    margin-top: 3rem;
  }
}

@media (max-width: 40rem) {
  .promo-title {
    font-size: 2.5rem;
  }

  .promo-main-image {
    height: 20rem;
  }
}
@media only screen and (max-width:768px){
  .story-card{
    min-height: 41rem !important;
  }
  .story-content{
    height:auto !important;
  }
  .category-title{
        padding-top: 1rem !important;
  }
  .category-hero{
    padding: 2rem 0 3rem 0 !important;
  }
  .toolbar-left{
    gap: 0rem !important;
  }
  .product-title{
    font-size: 2.2rem !important;
  }
  .product-tabs{
    padding-bottom: 0 !important;
    margin-top: 1rem !important;
  }
  
  .promo-image-area{
    display: none !important;
  }
  .hero-slide__bg img{
    object-position: center center !important;
  }
  .hero__title{
    font-size: 3rem;
  }
  .about-content{
    padding:0 !important;
  }
  .story-content{
    margin: auto !important;
    max-width: 23rem !important;
  }
  .about-content-page {
    padding: 3rem 2rem !important;
}
  .about-title-page {
    font-size: 2.2rem !important;
  }
  .story-grid{
        grid-template-columns: repeat(1, 1fr) !important;
  }
  .about-wrapper{
    flex-direction: column !important;
  }
  html,body{
    overflow-x: hidden;
  }
  .features-strip img{
    height: 2rem !important;
    position: absolute;
    top: 0;
    display: none;
    right: 2rem !important;
  }
  .leaves_one {
    position: absolute;
    top: 3% !important;
    height: 100px;
    right: 0% !important;
}
      .navbar__inner {
        justify-content: space-between;
        padding: 1rem 2rem;
    }
  .products-section__title{
    font-size: 2.2rem !important;
  }
  .slider-btn{
    top:50%;
  }
  .master-content{
    margin-top: 4rem;
  }
  .master-image{
    display: none;
  }
  .promo-wrapper
 {
      background-position: left;
    padding: 3.5rem 2rem;
 }
  .img1banner,
  .img2banner,
  .img3banner {
    height: 5rem }
  html{
  font-size: 75% !important;
}
  .about-description{
    width: 100% !important;
  }
  .hero-slide__content{
    margin: 0 auto 0 auto !important;
  }
  .hero {
        min-height: 45rem !important;
    }
}

@media only screen and (min-width:768px) and (max-width:1180px){
    .hero-slide__content{
    margin: 0 auto 0 auto !important;
  }
   .master-image{
    display: none;
  }
}

@media only screen and (max-width:1350px){
  html{
    font-size: 85% !important;
  }
}

.woocommerce-breadcrumb {
  font-size: 1rem !important;
  margin-bottom: 2.5rem;
  color: #86938D;
  display: flex;
  flex-wrap: wrap;
  padding-top: 2rem !important;
  gap: 0.6rem;
   font-weight: 500;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
  color: #86938D !important;
  text-decoration: none;
  font-size: 1rem !important;
  transition: 0.3s ease;
}

.tabs-content p{
  color:#194A33;
  font-weight: 500; 
  font-size: 1rem;
  line-height: 1.3;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a:hover {
  color: #7da75b;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb .current {
  color: #86938D;
  font-weight: 500;
}

.product-tabs {
  margin-top: 4rem;
}

/* Tab Navigation */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 3rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
      background: #f7f7f7 !important;
  border: none !important;
  padding: 1rem 1.4rem !important;
  font-size: 1.13rem !important;
  margin: 0 !important;
  cursor: pointer;
  color: #000 !important;
      font-weight: 700;
      /* border-radius: var(--radius-sm) !important; */
  position: relative;
  transition: 0.3s ease;
}

.tab-btn.active {
  color: #000;
      z-index: 1;
  font-weight: 700;
}

.tab-btn.active::after {
 content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% + 7px);
    border-color: #e0e0e0;
    background-color: #fff;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  /* background: #7da75b; */
}

/* Tab Content */
.tabs-content {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

/* Additional Info Table */
.info-table {
  max-width: 40rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.info-row span:first-child {
  font-weight: 500;
  color: #333;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product page css */

.product-detail__wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ================= LEFT ================= */

.product-gallery {
  display: flex;
  gap: 1.5rem;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thumb {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  transition: 0.3s ease;
}

.thumb.active,
.thumb:hover {
  border-color: #7da75b;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main {
  flex: 1;
  background: #f3f3f3;
  border-radius: var(--radius-sm);
  padding: 2rem;
}

.product-gallery__main .main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-gallery__main {
  min-width: 0;
}

.product-gallery {
  min-width: 0;
}
.product-gallery__main .main-image{
  background-color: #f5f5f5;
}

.product-gallery__main .main-image img{
  mix-blend-mode: multiply;
}

.product-detail__wrapper {
  overflow: hidden;
}

/* ================= RIGHT ================= */
.product-detail{
 padding: 2rem 0 0 0;
}

.product-tabs{
  padding-bottom: 4rem;
  border-bottom: 1px solid #e0e0e0;
}

.product-title {
      font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color:var(--clr-green-dark);
}

.product-meta {
  border: 0.02rem solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #666;
}

.rating {
  color: #7da75b;
}
.wc-tabs-wrapper ul,
.product-description ul{
  list-style: disc !important;
  padding-left: 1rem !important;
}
.wc-tabs-wrapper li,
.product-description li{
   font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--clr-green-dark);
}
.wc-tabs-wrapper p,
.product-description p {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--clr-green-dark);
}
.wc-tabs-wrapper h2,
.wc-tabs-wrapper h3,
.wc-tabs-wrapper h4{
  margin-bottom: 0.7rem;
}

.request-btn {

  color: #fff;
  margin-top: 2rem;
  width: 100%;
  background: #a9c38b;
  border: none;
     padding: 0.6rem 1.7rem;
    font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.request-btn:hover {
  background: #92b06f;
}

.product-extra .flexs{
  display: flex;
    gap: 0.2rem;
}

.posted_in{
  color:#86938D;
  font-weight: 500;
  font-size: 0.9rem;
}

.posted_in a{
  font-weight: 500;
  color:var(--clr-green-dark) !important;
  font-size: 0.9rem;
}

.product_meta {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: #666;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (max-width: 992px) {
  .product-detail__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-gallery {
    flex-direction: column-reverse;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    justify-content: center;
  }

  .thumb {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.features-strip {
  position: relative;
  /* background: #f5f5f3; */
  padding: 4rem 2rem;
}
.features-strip img{
  height: 9rem !important;
  position: absolute;
  top: 0;
  right: -2rem;
}
.features-container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.features-item {
  flex: 1;
  text-align: center;
  color: #111;
}

.features-item i {
  width: 5rem;
  height: 5rem;
  stroke: #8bbf4d; /* green tone */
  margin-bottom: 1.2rem;
  color:#8bbf4d;
}
.features-item svg{
  width: 3.2rem;
  height: 3.2rem;
  stroke-width: 1px;
  color:#8bbf4d;
  margin-bottom: 1rem;
}
.features-item h4 {
  font-size: 0.8rem;
    letter-spacing: 0.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.feature-divider {
  width: 0.1rem;
  height: 6rem;
  background: #ddd;
}

@media (max-width: 992px) {
  .features-container {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .feature-divider {
    display: none;
  }

  .feature-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .feature-item {
    flex: 1 1 100%;
  }
}

/* category page layout */

.category-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background: #eef1f2; */
  padding: 2rem 0 9rem 0;
  position: relative;
  overflow: hidden;
}

.category-hero__content {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.category-hero__left {
  flex: 1;
}
.breadcrumb-list{
  display: flex;
  align-items: center;
}
.breadcrumb {
  font-size: 1rem;
  color: #86938D;
  margin-bottom: 6rem;
}

.dot{
  position: relative;
  /* display: none; */
}
/* .breadcrumb-list li:not(:last-child)::after{
  content: "/";
  margin: 0 8px;
  color: #86938D;
} */

.dot::before{
  content: "/";
  margin: 0 8px;
  color: #86938D;
}

.breadcrumb a {
  color: #86938D;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 0.4rem;
}

.category-title {
  font-size: 4rem;
  font-weight: 700;
  padding-top: 3rem;
  color: var(--clr-green-dark);
      line-height: 1.08em;
    letter-spacing: -1px;
}

.category-hero__right {
  flex: 1;
  text-align: right;
}

.category-hero__right img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .category-hero__content {
    flex-direction: column;
    text-align: center;
  }

  .category-hero__right {
    text-align: center;
  }

  .category-title {
    font-size: 3.6rem;
  }
}

.shop-section {
  padding: 6rem 0;
  /* background: #f8f8f8; */
}

.shop-toolbar {
      background: #fff;
    /* padding: 2rem; */
    border-radius: var(--radius-sm);
    display: flex;
    padding: 0.4rem;
    border: 1px solid #e6e6e6;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.filter-btn {
      background: none;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.filter-btn svg{
  width: 1.2rem;
  height: 1.2rem;
  stroke: #000;
}

.view-icons i {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.woocommerce .woocommerce-result-count {
  font-size: 0.9rem;
    color: #86938D;
    font-weight: 500;
    margin: 0 !important;
}
.woocommerce .woocommerce-ordering{
  margin: 0 !important;
}
.toolbar-right {
  display: flex;
  gap: 0.4rem;
}

.toolbar-left select {
     padding: 0.8rem 1.2rem;
    border-radius: 0.6rem;
    border: navajowhite;
    font-size: 0.9rem;
    font-weight: 500;
}

/* GRID */

.products-grids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-cards {
  background: #f6f6f6;
  padding: 2rem;
  border-radius: var(--radius-sm);
  transition: 0.3s ease;
}

.product-cards:hover {
  transform: translateY(-0.5rem);
}

.product-cards .product-image {
  
  margin-bottom: 2rem;
      position: relative;
    aspect-ratio: 1 / 1;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-cards .product-image img {
  width: 100%;
  mix-blend-mode: multiply;
  height: auto;
}

.sale-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #e86b6b;
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  border-radius: 0.4rem;
}

.product-info h3 {
  font-size: 1rem;
  margin: 0.8rem 0;
  color: #194A33;
}

.price {
  font-size: 1.4rem;
  color: #333;
}

@media (max-width: 1200px) {
  .products-grids {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-grids {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-toolbar {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .products-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About Page */
.about-tea {
     background: var(--clr-green-dark);
}

.about-wrapper {
  display: flex;
  align-items: center;
  /* gap: 4rem; */
}

.about-image {
  flex: 1;
  height: 40rem;
}

.about-image img {
      width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.about-content-page {
  flex: 1;
  padding: 1rem 4rem;
}

.about-subtitle-page {
      font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #9bd28e;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.7rem;
}

.about-title-page {
  font-size: 3.15rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-content-page p {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.2rem;
}
/* 
.about-btn-page {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border: 0.1rem solid #194A33;
  color: #194A33;
  text-decoration: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.about-btn-page:hover {
  background: #194A33;
  color: #ffffff;
}

.about-btn-page .arrow {
  font-size: 1.2rem;
  line-height: 1;
} */

.story-section {
  background: #fff;
   padding: 4rem 0;
}



.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.6rem;
  min-height: 38rem;
  display: flex;
  align-items: center;
}

.story-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* Optional dark overlay for readability */
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.story-content {
  position: relative;
  z-index: 3;
  background: #ffffff;
  padding: 3rem;
  height: 30rem;
  max-width: 26rem;
  margin-left: 3rem;
  border-radius: 0.5rem;
}

.story-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #8cbc4f;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.7rem;
}

.story-title {
  font-size: 2rem;
  font-weight: 700;
  color: #194A33;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #86938D;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-link {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #194A33;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.story-link:hover {
  opacity: 0.7;
}



.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-section {
  background: #ffffff;
  text-align: center;
}

.team-main-title {
  font-size: 3.15rem;     /* Same as your h2 */
  line-height: 1.1;
  font-weight: 700;
  color: #194A33;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 30rem);
  gap: 2rem;
   justify-content: center;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.6rem;
}

.team-card img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay */
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(27 75 52 / 81%) 0%, rgb(25 74 51 / 54%) 40%, rgb(47 83 66 / 53%) 70%);
}

.team-info {
      padding: 0 2rem;
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    color: #ffffff;
    z-index: 2;
    text-align: left;
}

.team-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 62rem) { /* 992px */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-main-title {
    font-size: 2.4rem;
  }

  .team-card img {
    height: 26rem;
  }
}

@media (max-width: 36rem) { /* 576px */
  .team-main-title {
    font-size: 2rem;
  }

  .team-info {
    bottom: 1.5rem;
    /* left: 1.5rem; */
  }
}

.team-section{
  padding: 0 0 4rem 0;
}
.woocommerce div.product div.summary{
  width:100% !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs{
      padding: 0 !important;
      overflow: unset !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
      background: #fff !important;
          border-color: #e0e0e0 !important;
    background-color: #fff !important;
    border-style: solid !important;
    border-width: 1px 1px 0 1px !important;
    border-top-right-radius: 5px !important;
    border-top-left-radius: 5px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before{
  border-bottom: 0px !important;
}

.search-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#ffffff;
z-index:9999;
display:flex;
align-items:center;
justify-content:center;
opacity:0;
visibility:hidden;
transition:0.35s ease;
}

.search-overlay.active{
opacity:1;
visibility:visible;
}

.search-overlay__content{
width:90%;
max-width:700px;
text-align:center;
}

.search-field{
width:100%;
padding:18px 20px;
font-size:20px;
border:2px solid #ddd;
outline:none;
border-radius:4px;
}
.search-form button{
      padding: 16px 20px;
    /* font-size: 0px; */
    border: 2px solid #ddd;
    outline: none;
    border-radius: 4px;
}
.search-submit{
margin-top:15px;
padding:12px 28px;
border:none;
background:#000;
color:#fff;
cursor:pointer;
}

.search-close{
position:absolute;
top:30px;
right:40px;
font-size:36px;
border:none;
background:none;
cursor:pointer;
}

.search-form{
  display: flex;
  gap:0.4rem;
  align-items: center;
  justify-content: center;
}
input,
textarea,
select {
  width: 100%;
  border: 0.0625rem solid #e6e6e6;
  color: #646464;
  font-size: 1rem;
  line-height: 1.375rem;
  font-family: "Teapoz", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 500;
  padding: 0.9375rem 1.5625rem;
  border-radius: 0.3125rem;
  background-color: transparent;
  outline: none;
}

select {
  /* appearance: none; */
  cursor: pointer;
}

input[type="date"]{
  cursor: pointer;
}
input[type="radio"],
input[type="checkbox"]{
  width: auto;
  margin-right: 0.5rem;
  accent-color: #e6e6e6;
}

input:focus,
textarea:focus,
select:focus{
  border-color: #e6e6e6;
}

::placeholder{
  color: #646464;
  font-size: 0.9375rem;
}

#gridLayout{
  margin-top: 4rem;
}

.quote-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:rgba(0,0,0,0.5);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:9999;
}

.quote-modal.active{
opacity:1;
visibility:visible;
}

.quote-modal__box{
background:#fff;
padding:2rem;
width:90%;
overflow: hidden;
max-width:30rem;
border-radius:0.5rem;
position:relative;
}

.quote-close{
position:absolute;
top:10px;
right:15px;
border:none;
background:none;
font-size:28px;
cursor:pointer;
}

.quote-form{
display:flex;
flex-direction:column;
gap:1rem;
}

.quote-form input,
.quote-form textarea{
width:100%;
background: #fff;
padding:0.9rem 1.2rem;
border:1px solid #cacaca;
border-radius:0.3rem;
}
.quote-title{
font-size:1.5rem;
color:var(--clr-green-dark);
font-weight:700;
margin-bottom: 1rem;
}
.quote-submit{
color: #fff;
    margin-top: 2rem;
    /* width: 100%; */
    background: #8cbc4f;
    border: none;
        z-index: 10;
    padding: 0.6rem 1.7rem;
    font-family: var(--ff-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    
    cursor: pointer;
    transition: 0.3s ease;
}

.quote-decor{
  position: absolute;
    height: 8rem !important;
    mix-blend-mode: multiply;
    z-index: 0;
    bottom: -12px;
    overflow: hidden;
    left: -32px;
}

.contact-heading{
    color: var(--clr-green-dark);
    font-size: 3.15rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.4rem;
}

.contact-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:1.5rem;
margin-bottom:3rem;
}

.contact-card{
display:flex;
justify-content:space-between;
align-items:center;
background:#f5f5f5;
padding:1.5rem;
border-radius:8px;
}

.contact-card__content h4{
margin-bottom:.5rem;
}

.contact-card__icon{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border:3px solid #1f4d3a;
border-radius:50%;
}

.contact-card__icon svg{
width:20px;
height:20px;
color:#1f4d3a;
}

.contact-form-wrapper{
max-width:650px;
margin:auto;
text-align:center;
}

.form-heading{
 color: var(--clr-green-dark);
    font-size: 3.15rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.4rem;
}

.form-subheading{
margin-bottom:2rem;
font-size:1rem;
color:#86938D;
}

.contact-section{
  padding:4rem 0;
}

.contact-form{
display:flex;
flex-direction:column;
gap:1rem;
}

.contact-form textarea{
min-height:140px;
resize:vertical;
}

.contact-btn{

background: #8CBC4F;
    margin-top: 1rem;
    justify-content: center;
    display: inline-flex;
    padding: 0.6rem 1.7rem;
    /* border: 0.08rem solid #8CBC4F; */
    border-radius: 0.32rem;
    color: #fff;
    align-items: center;
    margin: auto;
    width: 17rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: 0.3s ease;
}

@media (max-width:900px){

.contact-cards{
grid-template-columns:1fr;
}

.contact-card{
flex-direction:row;
}

}

.values-section{
  padding: 4rem 0;
background:#f5f5f5;
}

.values-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:3rem;
text-align:center;
}

.value-item{
max-width:260px;
margin:auto;
}

.value-icon{
margin-bottom:1rem;
}

.value-icon svg{
width:48px;
height:48px;
color:#8CBC4F;
}

.value-title{
font-size:1.34rem;
margin-bottom:.75rem;
color:var(--clr-green-dark);
}

.value-text{
font-size:1rem;
line-height:1.6;
height: 9rem;
font-weight: 500;
color:#86938D;
}
.value-item:hover svg{
transform:translateY(-4px);
stroke:#79a84a;
transition:0.3s;
}
@media (max-width:1024px){

.values-grid{
grid-template-columns:repeat(2,1fr);
gap:2.5rem;
}

}

@media (max-width:600px){

.values-grid{
grid-template-columns:1fr;
}

}