/** Shopify CDN: Minification failed

Line 121:20 Unexpected "{"
Line 121:29 Expected ":"
Line 126:20 Unexpected "{"
Line 126:29 Expected ":"
Line 134:20 Unexpected "{"
Line 134:29 Expected ":"
Line 138:20 Unexpected "{"
Line 138:29 Expected ":"
Line 143:20 Unexpected "{"
Line 143:29 Expected ":"
... and 8 more hidden warnings

**/
.sfb-section {
  background-color: var(--sfb-bg, #ffffff);
  padding-top: var(--sfb-pt-d, 28px);
  padding-bottom: var(--sfb-pb-d, 28px);
  width: 100%;
}

.sfb-container {
  max-width: var(--sfb-max-width, 1200px);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ---- Grid ---- */
.sfb-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sfb-gap, 32px);
}

/* ---- Each Item ---- */
.sfb-item {
  flex: 1 1 0%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.sfb-item__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* ---- Icon Circle ---- */
.sfb-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /*
  width: var(--sfb-icon-circle, 60px);
  height: var(--sfb-icon-circle, 60px);
  border: var(--sfb-icon-border-width, 1px) solid var(--sfb-icon-border-color, #e5e5e5);
  */
  color: var(--sfb-icon-color, #333333);
}

.sfb-item__icon svg {
  display: block;
  color: inherit;
  stroke: currentColor;
}

.sfb-item__icon img {
  display: block;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

/* ---- Text ---- */
.sfb-item__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.sfb-item__title {
  margin: 0;
  padding: 0;
  font-size: var(--sfb-title-size, 15px);
  color: var(--sfb-title-color, #1a1a1a);
  line-height: 1.3;
  letter-spacing: 0;
}

.sfb-item__desc {
  margin: 0;
  padding: 0;
  font-size: var(--sfb-desc-size, 13px);
  color: var(--sfb-desc-color, #666666);
  line-height: 1.4;
}

/* ---- Vertical Dividers ---- */
.sfb-divider {
  position: absolute;
  left: calc(var(--sfb-gap, 32px) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: var(--sfb-divider-width, 1px);
  height: 40px;
  background-color: var(--sfb-divider-color, #e5e5e5);
  display: block;
}


@media screen and (max-width: 749px) {
  #ServiceFeatures-{{ section.id }} .sfb-container {
    padding-top: var(--sfb-pt-m);
    padding-bottom: var(--sfb-pb-m);
  }

  #ServiceFeatures-{{ section.id }} .sfb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    max-width: 100%;
  }

  /* divider hide karo mobile pe, minimal look ke liye */
  #ServiceFeatures-{{ section.id }} .sfb-divider {
    display: none;
  }

  #ServiceFeatures-{{ section.id }} .sfb-item {
    display: flex;
    justify-content: center;
  }

  #ServiceFeatures-{{ section.id }} .sfb-item__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  #ServiceFeatures-{{ section.id }} .sfb-item__icon {
    width: var(--sfb-icon-circle);
    height: var(--sfb-icon-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sfb-icon-color);
  }

  #ServiceFeatures-{{ section.id }} .sfb-item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  #ServiceFeatures-{{ section.id }} .sfb-item__title {
    font-size: calc(var(--sfb-title-size) - 1px);
    line-height: 1.3;
    margin: 0 0 2px;
}
  #ServiceFeatures-{{ section.id }} .sfb-item__desc {
    font-size: calc(var(--sfb-desc-size) - 1px);
    line-height: 1.3;
    margin: 0;
  }
}


/* Tablet: 2 columns */
@media screen and (max-width: 989px) {
  .sfb-section {
    padding-top: var(--sfb-pt-m, 20px);
    padding-bottom: var(--sfb-pb-m, 20px);
  }

  .sfb-grid {
    justify-content: flex-start;
  }

  .sfb-item {
    flex: 0 0 calc(50% - var(--sfb-gap, 32px) / 2);
  }

  .sfb-divider {
    display: none;
  }
}

/* Mobile: stacked */
@media screen and (max-width: 575px) {
  .sfb-item {
    flex: 0 0 100%;
  }

  .sfb-item__inner {
    gap: 12px;
  }
}