/** Shopify CDN: Minification failed

Line 44:19 Expected identifier but found whitespace
Line 44:21 Unexpected "{"
Line 44:30 Expected ":"
Line 45:9 Expected identifier but found whitespace
Line 45:10 Unexpected "1px"
Line 45:21 Unexpected "{"
Line 45:30 Expected ":"

**/
.how-it-works-section {
  width: 100%;
  box-sizing: border-box;
}

.hiw-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hiw-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hiw-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.hiw-steps-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* Boxed step */
.hiw-step-box {
  flex: 1;
  background-color: {{ section.settings.box_bg_color }};
  border: 1px solid {{ section.settings.box_border_color }};
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgb(233, 233, 233);
}

.hiw-step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
}

.hiw-step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  background-color: #2c6e2f;
  color: white;
}

.hiw-step-number img {
  max-width: 55%;
  max-height: 55%;
  object-fit: contain;
}

.hiw-step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hiw-step-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Desktop arrow between boxes */
.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-arrow svg {
  display: block;
}

/* Mobile connector (hidden on desktop) */
.mobile-connector {
  display: none;
}
/* Mobile styles */
@media (max-width: 768px) {
  .hiw-steps-wrapper {
    flex-direction: column;
    gap: 0;
  }
  
  .hiw-step-box {
    margin-bottom: 0;
    border-radius: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .hiw-step-number {
    margin: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .hiw-step-content {
    flex: 1;
  }
  
  .hiw-step-content h3 {
    margin-top: 0;
  }
  
  /* Show arrows on mobile too (rotated 90 degrees) */
  .desktop-arrow {
    display: flex;
    justify-content: center;
    margin: -5px 0;
  position: relative;
  z-index: 2;
  }
  
  .desktop-arrow svg {
    transform: rotate(90deg);
  }
  
  /* Hide vertical connectors */
  .mobile-connector {
    display: none;
  }
}

/* Small tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .hiw-step-box {
    padding: 1.5rem 1rem;
     border: 1px solid rgb(233, 233, 233);
  }
  
  .hiw-step-number {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
  
  .hiw-step-content h3 {
    font-size: 1.1rem;
  }
  
  .hiw-step-content p {
    font-size: 0.85rem;
  }
}