/** Shopify CDN: Minification failed

Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 35:8 Expected identifier but found whitespace
Line 35:10 Unexpected "{"
Line 35:19 Expected ":"
Line 94:8 Expected identifier but found whitespace
Line 94:10 Unexpected "{"
Line 94:19 Expected ":"
Line 100:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:how_it_works (INDEX:27) */
.how-it-works {
  padding: 20px 20px;
  background-color: {{ section.settings.background_color }};
}

.how-it-works__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works__title {
  text-align: center;
  font-size: 3.7rem;
  font-weight: 800;
  color: {{ section.settings.title_color }};
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  border: 2px solid #a8dce8;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.step-image-wrapper img,
.step-image-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  background: #5bc8d8;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}

.step-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: {{ section.settings.title_color }};
  margin-bottom: 12px;
}

.step-description {
  font-size: 1.8rem;
  color: {{ section.settings.text_color }};
  line-height: 1.7;
  margin: 0;
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .how-it-works {
    padding: 40px 16px;
  }

  .how-it-works__title {
    font-size: 3.7rem;
    margin-bottom: 32px;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step-image-wrapper {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* END_SECTION:how_it_works */