/** Shopify CDN: Minification failed

Line 137:11 Expected identifier but found whitespace
Line 137:13 Unexpected "{"
Line 137:22 Expected ":"
Line 137:55 Expected ":"

**/


/* CSS from section stylesheet tags */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

.section-microgreens {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 70px;
  font-family: 'Open Sans', sans-serif;
  flex-wrap: wrap;
  text-align: left;
  min-height: 400px;
  gap: 30px;
  background: #effee7; /* updated background */
  overflow: hidden;
}

.microgreens-text {
  flex: 1;
  max-width: 55%;
  position: relative;
  z-index: 2; /* keep text above wave */
}

.microgreens-text h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 45px;
  font-weight: 800; /* bold */
  margin: 0;        /* remove margin */
  color: #295b2b;   /* heading color */
}

.microgreens-text h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;        /* remove margin */
  line-height: 1.2; /* tighter spacing */
  color: #71b75e;   /* subheading color */
}

.microgreens-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000; /* description in black */
}

.microgreens-text .highlight {
  font-family: 'Open Sans';
  font-size: 35px;
  font-weight: 700; /* bold */
  font-style: italic; /* remove italic */
  margin-top: 10px;
  color: #000000; /* bold black line */
}

/* Right side image */
.microgreens-image {
  flex: 1;
  max-width: 45%;
  position: relative;
  z-index: 1; /* lower than wave now */
}

.microgreens-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  position: relative;
  top: 20px; /* slight downward shift to overlap wave */
}

/* Wave container */
.wave-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 4; /* bring wave above the image */
}

/* ❌ removed height:auto — we’ll override dynamically */
.wave-shape img {
  width: 100%;
  display: block;
}

/* Mobile layout */
@media (max-width: 768px) {
  .section-microgreens {
    flex-direction: column;
    padding: 40px 20px;
  }

  .microgreens-text,
  .microgreens-image {
    max-width: 100%;
    text-align: center;
  }

  .microgreens-text h2 {
    font-size: 28px;
  }

  .microgreens-text h3 {
    font-size: 18px;
  }

  .microgreens-text p {
    font-size: 14px;
  }

  .microgreens-text .highlight {
    font-size: 16px;
  }

  .microgreens-image img {
    margin-top: 20px;
    top: 0; /* reset on mobile */
  }

  /* ✅ Dynamic Wave Height for mobile */
  .wave-shape img {
    height: {{ section.settings.wave_mobile_height }}px !important;
    object-fit: cover;
  }
}
.custom-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-banner-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 35px 100px;
  border-radius: 14px;
  max-width: 1200px;
  width: 95%;
  text-align: center;
}

.custom-banner-section__heading {
  font-weight: 800;
  font-size: 48px;
  color: #000;
  margin-bottom: 18px;
}

.custom-banner-section__text {
  font-size: 22px;
  color: #000;
  margin-bottom: 28px;
  line-height: 1.6;
}

.custom-banner-section__button {
  background-color: #68af54;
  color: #fff;
  padding: 16px 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  max-width: 100%;
  width: 60%;
}

.custom-banner-section__button:hover {
  background-color: #549c42;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .custom-banner-section {
    min-height: 100vh; /* fill full screen */
    padding: 50px 15px;
  }

  .custom-banner-content {
    padding: 25px 20px;  /* smaller padding */
    width: 90%;
  }

  .custom-banner-section__heading {
    font-size: 32px;  /* smaller heading */
  }

  .custom-banner-section__text {
    font-size: 18px;  /* smaller text */
  }

  .custom-banner-section__button {
    padding: 14px 30px;
    font-size: 18px;
    width: 80%; /* button fills more space on mobile */
  }
}
.testimonial-scroll {
  background-size: 110% auto;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-inner {
  position: relative;
  width: 80%;
  max-width: 1200px;
}

.testimonial-block {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-block.active {
  display: flex;
  opacity: 1;
}

.testimonial-left {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.testimonial-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white !important; /* Force white text */
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7); /* Optional for readability */
}

.testimonial-text {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white !important; /* Force white text */
}

.testimonial-name {
  font-weight: bold;
  color: white !important; /* Force white text */
}