/** Shopify CDN: Minification failed

Line 176:24 Expected identifier but found whitespace
Line 176:26 Unexpected "{"
Line 176:35 Expected ":"
Line 176:61 Expected ":"
Line 177:27 Expected identifier but found whitespace
Line 177:29 Unexpected "{"
Line 177:38 Expected ":"
Line 177:67 Expected ":"
Line 178:29 Expected identifier but found whitespace
Line 178:31 Unexpected "{"
... and 4 more hidden warnings

**/
.product-features-section {
  background-color: var(--section-background-color, #ffffff);
  color: var(--section-text-color, #000000);
  padding: 4rem 0;
}

.product-features-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'ProximaNova Regular';
  padding: 0 20px;
}

.product-features-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.product-features-title {
  flex: 0 0 20%;
  min-width: 0;
}

.product-features-heading {
  font-size: 30px;
  line-height: normal;
  font-family: 'ProximaNova Regular';
  margin: 0;
  color: inherit;
  text-align: left;
}

.product-features-callouts {
  flex: 0 0 80%;
  min-width: 0;
}

.callouts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.callout-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.callout-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.callout-icon img {
  width: 100%;
  height: 100%;
  max-width: 60px;
  object-fit: contain;
}

.callout-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.callout-content {
  flex: 1;
  min-width: 0;
}

.callout-description {
  font-size: 1.6rem;
  line-height: normal;
  margin: 0;
  color: inherit;
}

@media screen and (max-width: 990px) {
  .product-features-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .product-features-title {
    flex: none;
    width: 100%;
  }
  
  .product-features-callouts {
    flex: none;
    width: 100%;
  }
  
  .callouts-grid {
    gap: 30px 40px;
  }
}

@media screen and (max-width: 750px) {
  .product-features-container {
    padding: 0 15px;
  }
  
  .product-features-content {
    gap: 30px;
  }
  
  .product-features-heading {
    font-size: 2rem;
    text-align: center;
  }

  .callouts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .callout-item {
    gap: 15px;
  }
  
  .callout-description {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  .product-features-section {
    padding: 24px 0;
  }

  .product-features-callouts {
    padding: 0 8%;
  }

  .callout-description {
    font-size: 1.4rem;
  }
  
  .product-features-container {
    padding: 0 12px;
  }
  
  .product-features-heading {
    font-size: 2.4rem;
  }
  
  .callout-item {
    gap: 20px;
  }
}

.product-features-section {
  --section-padding-top: {{ section.settings.padding_top }}px;
  --section-padding-bottom: {{ section.settings.padding_bottom }}px;
  --section-background-color: {{ section.settings.background_color }};
  --section-text-color: {{ section.settings.text_color }};
}
