/** Shopify CDN: Minification failed

Line 137:24 Expected identifier but found whitespace
Line 137:26 Unexpected "{"
Line 137:35 Expected ":"
Line 138:27 Expected identifier but found whitespace
Line 138:29 Unexpected "{"
Line 138:38 Expected ":"
Line 141:0 Unexpected "{"
Line 141:1 Expected identifier but found "%"
Line 143:21 Expected identifier but found whitespace
Line 143:23 Unexpected "{"
... and 22 more hidden warnings

**/


/* CSS from section stylesheet tags */
.product-features {
  background-color: rgb(var(--color-background));
  padding-top: calc(var(--section-padding-top) * 1px);
  padding-bottom: calc(var(--section-padding-bottom) * 1px);
}

.product-features--full-width {
  width: 100%;
}

.product-features__container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--grid-desktop-horizontal-spacing);
}

@media screen and (max-width: 749px) {
  .product-features__container {
    padding: 0 var(--grid-mobile-horizontal-spacing);
  }
}

.product-features__heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.product-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
}

@media screen and (min-width: 750px) {
  .product-features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.product-features__item {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.product-features__icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--icon-color, rgb(var(--color-foreground)));
}

.product-features__icon svg {
  width: 100%;
  height: 100%;
  max-width: 3.2rem;
  max-height: 3.2rem;
}

.product-features__title {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0;
  line-height: 1.3;
}

.product-features__subtitle {
  font-size: 0.9rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments */
@media screen and (max-width: 749px) {
  .product-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .product-features__item {
    padding: 1rem;
  }
  
  .product-features__title {
    font-size: 1.4rem;
  }
  
  .product-features__subtitle {
    font-size: 1.2rem;
  }
  
  .product-features__icon {
    width: 3rem;
    height: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .product-features__grid {
    grid-template-columns: 1fr;
  }
}

/* Custom properties for section settings */
.product-features {
  --section-padding-top: {{ section.settings.padding_top | default: 36 }};
  --section-padding-bottom: {{ section.settings.padding_bottom | default: 36 }};
}

{% if section.settings.background_color != blank %}
  .product-features {
    background-color: {{ section.settings.background_color }};
  }
{% endif %}

{% if section.settings.text_color != blank %}
  .product-features__title,
  .product-features__subtitle,
  .product-features__heading {
    color: {{ section.settings.text_color }};
  }
{% endif %}

{% for block in section.blocks %}
  {% if block.settings.icon_color != blank %}
    .product-features__item:nth-child({{ forloop.index }}) .product-features__icon {
      color: {{ block.settings.icon_color }};
    }
  {% endif %}
{% endfor %}