/** Shopify CDN: Minification failed

Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
Line 36:12 Expected identifier but found whitespace
Line 36:14 Unexpected "{"
Line 36:23 Expected ":"
Line 36:55 Expected ":"
Line 38:8 Expected identifier but found whitespace
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
... and 18 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:commitment (INDEX:0) */
.commitment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: {{ section.settings.background_color }};
  align-items: stretch;
}

.commitment-left {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.commitment-left h2 {
  font-size: {{ section.settings.heading_font_size }}px;
  font-weight: 700;
  color: {{ section.settings.heading_color }};
  margin-bottom: 40px;
  margin-left: 50px;
   font-family: 'GT Walsheim Pro';
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step img {
  width: {{ section.settings.icon_size }}px;
  height: {{ section.settings.icon_size }}px;
  object-fit: contain;
  margin-bottom: 12px;
}

.step span {
  font-size: {{ section.settings.step_font_size }}px;
  font-weight: 600;
  color: {{ section.settings.step_text_color }};
  display: block;
}

.step:not(:last-child)::after {
  content: "➝";
  position: absolute;
  right: -32px;
  top: 25px;
  font-size: 3.6rem;
  color: {{ section.settings.arrow_color }};
  opacity: 0.9;
}

.commitment-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.commitment-right img {
width: 650px;
    height: 250px;
  object-fit: cover;
}

.commitment-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 420px;
  color: #fff;
  font-size: 14px;
   font-family: 'GT Walsheim Pro';
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 25px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .commitment-wrapper {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: row;
    gap: 25px;
  }

  .step:not(:last-child)::after {
    content: "";
  }

  .commitment-right {
    flex-direction: column;
    margin-top: 20px;
  }

  .commitment-text {
    position: static;
    transform: none;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.55);
    text-align: center;
  }
}
/* END_SECTION:commitment */

/* START_SECTION:plantingfaqsection (INDEX:1) */
.planting-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: var(--gap);
  margin: 0 auto;
  max-width: 1200px;
  padding: var(--section-padding);
  background: var(--section-bg);
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card {
  background-size: cover;
  background-position: center;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
   font-family: 'GT Walsheim Pro';
  min-height: 280px;
  gap:10px;
  border-radius: var(--radius);
}

.cta-card a {
  display: flex;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
   font-family: 'GT Walsheim Pro';
  transition: background 0.3s ease;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.cta-card a:hover {
  background: var(--btn-hover-bg);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  line-height: 1.5;
   font-family: 'GT Walsheim Pro';
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .planting-faq-wrapper {
    grid-template-columns: 1fr;
  }
  .cta-card {
    min-height: 180px;
  }
  .cta-card a {
    width: 100%;
}
}
/* END_SECTION:plantingfaqsection */

/* START_SECTION:planting (INDEX:96) */
.planting-section {
  background-color: var(--bg-color);
  padding: 50px 20px;
  font-size: var(--font-size-base);
  color: var(--text-color);
   font-family: 'GT Walsheim Pro';
}

/* --- Top Section --- */
.planting-top {
  display: grid !important;
  grid-template-columns: 0.7fr 1fr;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.planting-quote {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  padding: 25px 30px;
  flex: 1;
}

.planting-quote h2 {
  font-size: var(--font-size-quote);
  font-weight: 700;
   font-family: 'GT Walsheim Pro';
  color: var(--accent-color);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.planting-quote h2::before {
  content: "“";
  font-size: 40px;
  color: var(--accent-color);
  position: absolute;
  left: 0;
   font-family: 'GT Walsheim Pro';
  top: -5px;
}

.planting-quote p {
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: 1.5;
   font-family: 'GT Walsheim Pro';
}

/* --- Icons Row --- */
.planting-icons {
  flex: 1;
  text-align: center;
}

.planting-icons h3 {
  font-size: var(--font-size-heading);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
      text-align: start;
    padding-left: 20px;
     font-family: 'GT Walsheim Pro';
}

.icon-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;

}

.icon-block {
  display: flex;
  flex-direction: column; 
  align-items: center;
  width: 90px;
}

.icon-block img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 5px;
}

.icon-block span {
  font-size: 0.9rem; 
  font-weight: 600;
  color: var(--heading-color);
   font-family: 'GT Walsheim Pro';
}

.tree-img img {
  max-width: 100px;
  margin-top: 10px;
}

/* --- Bottom Section --- */
.planting-bottom {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 20px;
}

.bottom-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bottom-left img {
  width: 100%;
    height: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.right-box {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 25px;
}

.right-box h4 {
  font-size: var(--font-size-heading);
  font-weight: 700;
  margin-bottom: 15px;
   font-family: 'GT Walsheim Pro';
  color: var(--heading-color);
}

.right-box li {
  margin-bottom: 10px;
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: 1.5;
   font-family: 'GT Walsheim Pro';
}

/* --- Responsive --- */
@media(max-width: 900px) {
  .planting-top {
    display: flex !important;
    flex-direction: column;
  }
  .planting-bottom {
    grid-template-columns: 1fr;
  }
  .bottom-left {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 756px) {
.icon-row {
  justify-content: center;  
}

}
/* END_SECTION:planting */