/** Shopify CDN: Minification failed

Line 64:8 Expected identifier but found whitespace
Line 64:10 Unexpected "{"
Line 64:19 Expected ":"
Line 68:8 Expected identifier but found whitespace
Line 68:10 Unexpected "{"
Line 68:19 Expected ":"

**/


/* CSS from section stylesheet tags */
/* --- Base Styles --- */
.process-flow {
  padding: 100px 20px 20px 20px !important;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.process-flow__overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}
.process-flow__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.process-flow__heading {
  font-family: 'TAYRoadRunner', system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.3;
margin: 0 auto 40px auto;
      max-width: 794px;
}

/* --- Cards Grid (default mode) --- */
.process-flow__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: start;
}
.process-flow__card {
  background: linear-gradient(115.85deg, #668F3D 9.53%, #4B7336 90.47%);
  border-radius: 22px;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
  color: {{ section.settings.card_text_color }};
}
.process-flow__card:hover {
  background: #d24d27;
  color: {{ section.settings.card_hover_text_color }};
}
.process-flow__icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.3s ease;
}
.process-flow__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* .process-flow__card:hover .process-flow__icon-wrapper {
  background: #000;
} */
.process-flow__card-title {
  font-family: 'TAYRoadRunner', system-ui, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 30px;
  color: inherit;
  margin: 0 0 30px 0;
  transition: color 0.3s ease;
}
.process-flow__card-paragraph {
  font-family: 'poppins', system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: inherit;
  margin: 0;
  transition: color 0.3s ease;
}

/* --- Carousel Mode --- */
.process-flow__carousel {
  display: flex;
  overflow: hidden;
  gap: 20px;
  position: relative;
          justify-content: flex-start !important;
}
.process-flow__carousel .process-flow__card {
  flex: 0 0 33.333%;
  scroll-snap-align: start;
}
.process-flow__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4B7336;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}
.process-flow__carousel-btn:hover {
  background: #000;
}
.process-flow__carousel-btn.prev { left: -60px; }
.process-flow__carousel-btn.next { right: -60px; }
/* ====== SCROLLBAR STYLING ====== */
/* Chrome, Edge, Safari */
.process-flow__cards::-webkit-scrollbar {
  height: 8px;
}
.process-flow__cards::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.process-flow__cards::-webkit-scrollbar-thumb {
  background-color: #4B7336;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.05);
}
.process-flow__cards::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}
/* Firefox */
.process-flow__cards {
  scrollbar-width: thin;
  scrollbar-color: #4B7336 rgba(0, 0, 0, 0.05);
}
/* --- Mobile Behavior --- */
@media (max-width: 768px) {
  /* When carousel is enabled */
  .process-flow__carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .process-flow__carousel .process-flow__card {
    flex: 0 0 80%;
  }
  .process-flow__carousel-btn {
    display: none;
  }

  /* When carousel is NOT enabled → scrollable cards */
  .process-flow__cards:not(.process-flow__carousel) {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .process-flow__cards:not(.process-flow__carousel) .process-flow__card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}