/** Shopify CDN: Minification failed

Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 44:8 Expected identifier but found whitespace
Line 44:10 Unexpected "{"
Line 44:19 Expected ":"
Line 64:8 Expected identifier but found whitespace
Line 64:10 Unexpected "{"
Line 64:19 Expected ":"
Line 74:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
.features-grid-wrapper {
  padding: 60px 20px;
  background-color: {{ section.settings.background_color }};
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: {{ section.settings.icon_color }};
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-heading {
  font-family: 'Metropolis', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.212;
  text-transform: capitalize;
  color: {{ section.settings.heading_color }};
  margin: 0;
}

.feature-description {
  font-family: 'Metropolis', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.212;
  text-transform: capitalize;
  color: {{ section.settings.text_color }};
  margin: 0;
  max-width: 271px;
}

@media screen and (max-width: 768px) {
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: thin;
  }
  
  .features-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .features-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .features-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  .feature-item {
    flex: 0 0 200px;
    scroll-snap-align: start;
    gap: 12px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-heading {
    font-size: 14px;
  }
  
  .feature-description {
    font-size: 12px;
    max-width: 180px;
  }
  
  .features-grid-wrapper {
    padding: 40px 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}