/** Shopify CDN: Minification failed

Line 22:10 Expected identifier but found whitespace
Line 22:12 Unexpected "{"
Line 22:21 Expected ":"
Line 22:48 Unexpected "0"
Line 22:51 Unexpected "{"
Line 22:60 Expected ":"
Line 22:89 Expected ":"
Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
... and 63 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:why_this_former_icon (INDEX:73) */
.why-icon {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  background-color: {{ section.settings.background_color }};
}

.why-icon__inner {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-icon__heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: {{ section.settings.heading_color }};
  margin: 0 0 3rem;
  letter-spacing: 0.02em;
}

/* ── Grid ─────────────────────────────────────────────────────────── */
.why-icon__grid {
  display: grid;
  gap: {{ section.settings.card_gap }}px;
  align-items: start;
}

.why-icon__grid--1 { grid-template-columns: minmax(0, 1fr); }
.why-icon__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.why-icon__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-icon__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── Card ─────────────────────────────────────────────────────────── */
.why-icon__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* ── Circle icon ──────────────────────────────────────────────────── */
.why-icon__circle {
  width: {{ section.settings.icon_size }}px;
  height: {{ section.settings.icon_size }}px;
  border-radius: 50%;
  background-color: {{ section.settings.icon_bg_color }};
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.why-icon__circle--empty {
  border: 1px dashed {{ section.settings.icon_bg_color }};
  background: transparent;
}

.why-icon__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Text ─────────────────────────────────────────────────────────── */
.why-icon__title {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  color: {{ section.settings.title_color }};
  margin: 0;
  line-height: 1.3;
}

.why-icon__desc {
  font-size: clamp(0.8rem, 1.2vw, 0.875rem);
  color: {{ section.settings.desc_color }};
  line-height: 1.7;
  margin: 0;
}

.why-icon__desc p { margin: 0; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .why-icon__grid--3,
  .why-icon__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .why-icon__grid--2,
  .why-icon__grid--3,
  .why-icon__grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* END_SECTION:why_this_former_icon */

/* START_SECTION:why_this_reformer (INDEX:74) */
.why-reformer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .why-reformer__inner {
    padding: 0;
  }

  .why-reformer__heading {
    padding: 0 24px;
    margin-bottom: 1.5rem;
  }

  .why-reformer__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 0 24px 16px;
    scrollbar-width: none;
  }

  .why-reformer__grid::-webkit-scrollbar {
    display: none;
  }

  .why-reformer__card {
    flex: 0 0 75vw;
    max-width: 75vw;
    scroll-snap-align: start;
  }

  .why-reformer__image-wrap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 479px) {
  .why-reformer__card {
    flex: 0 0 80vw;
    max-width: 80vw;
  }
}
.why-reformer {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  background-color: {{ section.settings.background_color }};
}

.why-reformer__inner {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-reformer__heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: {{ section.settings.heading_color }};
  margin: 0 0 2.5rem;
  letter-spacing: 0.02em;
}

/* ── Grid: always one row, equal columns ─────────────────────────── */
.why-reformer__grid {
  display: grid;
  gap: {{ section.settings.card_gap }}px;
  align-items: start;
}

/* Force all cards into a single row regardless of count (1–4) */
.why-reformer__grid--1 { grid-template-columns: minmax(4, 1fr); }
.why-reformer__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.why-reformer__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-reformer__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── Card ─────────────────────────────────────────────────────────── */
.why-reformer__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-reformer__image-wrap {
  width: 100%;
  
  overflow: hidden;
  border-radius: {{ section.settings.image_border_radius }}px;
  background-color: #f5f5f5;
}

.why-reformer__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-reformer__card:hover .why-reformer__image {
  transform: scale(1.03);
}

.why-reformer__content {
  padding: 0 4px;
}

.why-reformer__title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: {{ section.settings.title_color }};
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.why-reformer__desc {
  font-size: clamp(0.8rem, 1.2vw, 0.875rem);
  color: {{ section.settings.desc_color }};
  line-height: 1.65;
  margin: 0;
}

.why-reformer__desc p { margin: 0; }

/* ── Responsive: below 768px stack to 2 cols, below 480px to 1 col ─ */
@media (max-width: 767px) {
  .why-reformer__grid--3,
  .why-reformer__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .why-reformer__grid--2,
  .why-reformer__grid--3,
  .why-reformer__grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* END_SECTION:why_this_reformer */