/** Shopify CDN: Minification failed

Line 180:5 Unexpected "/"
Line 194:0 Unexpected "}"

**/
.how-it-works-section {
  width: 100%;
  overflow: hidden;
}

.how-it-works-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.section-header .section-title {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  min-height: 450px;
}

.card-inner {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-card:hover .card-inner {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
}

.step-title {
  font-size: 32px;
  /* font-weight: 900; */
  line-height: 1.1;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-weight: 400 !important;
  max-width: 100%;
    margin-top: 40px;
    font-family: 'Foodescape Headline' !important;
}

.step-icon {
  /* width: 120px;
  height: 120px; */
  margin: 20px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 160px !important;
  height: 160px !important;
  object-fit: contain;
}

.placeholder-icon {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  opacity: 0.3;
}

.step-description {
  font-size: 16px;
  line-height: 1.5;
  margin: auto 0 0 0;
  font-weight: 500;
  margin-top: 20px !important;
}

.step-description p {
  margin: 0 0 12px 0;
}

.step-description p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .section-header .section-title {
    font-size: 48px;
  }
  
  .step-title {
    font-size: 28px;
  }
}

/* Mobile */
@media screen and (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header .section-title {
    font-size: 36px;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .step-card {
    min-height: 380px;
  }
  
  .card-inner {
    padding: 35px 25px;
  }
  
  .step-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* .step-icon {
    /* width: 100px;
    height: 100px; */
    margin: 15px 0 20px 0;
  } */
  
  .step-description {
    font-size: 15px;
    margin-top: 20px !important;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 14px;
    top: 15px;
    left: 15px;
  }
}

/* Extra small mobile */
@media screen and (max-width: 400px) {
  .section-header .section-title {
    font-size: 32px;
  }
  
  .step-title {
    font-size: 22px;
  }
  
  .card-inner {
    padding: 30px 20px;
  }
}
