/** Shopify CDN: Minification failed

Line 49:10 Expected identifier but found whitespace
Line 49:12 Unexpected "{"
Line 49:21 Expected ":"
Line 49:51 Expected ":"
Line 68:6 Expected identifier but found whitespace
Line 68:8 Unexpected "{"
Line 68:17 Expected ":"
Line 68:44 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-about (INDEX:14) */
.collection-excellence {
  overflow: hidden;
}

.social-proof-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .testimonial-item {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .testimonial-item {
    flex: 0 0 33.333%;
  }
}
/* END_SECTION:collection-about */

/* START_SECTION:product-icon (INDEX:75) */
.product-specs-section {
  padding: {{ section.settings.section_padding }}px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-specs-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(var(--icons-per-row), 1fr);
  gap: {{ section.settings.icon_spacing }}px;
  justify-content: center;
    align-items: center; /* Center align items vertically */
    justify-items: center; /* Center align items horizontally */
}

  

.product-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-spec__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.product-spec__icon img {
  max-width: 100%;
  height: auto;
}

.product-spec__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
}

.product-spec__description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 767px) {
  .product-specs-grid {
    grid-template-columns: repeat(var(--icons-per-row-mobile), 1fr);
  }
}

@media (max-width: 479px) {
  .product-spec {
    max-width: 250px;
    margin: 0 auto;
  }
}
/* END_SECTION:product-icon */