/** Shopify CDN: Minification failed

Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 24:2 Unexpected "{"
Line 24:3 Expected identifier but found "%"
Line 25:15 Expected identifier but found whitespace
Line 25:16 Unexpected "1px"
Line 25:27 Unexpected "{"
Line 25:36 Expected ":"
Line 26:2 Unexpected "{"
... and 55 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:trust-badges (INDEX:46) */
/* ── Szekció háttér + szegély ── */
.tb__section {
  background-color: {{ section.settings.bg_color }};
  {% if section.settings.border_top %}
    border-top: 1px solid {{ section.settings.border_color }};
  {% endif %}
  {% if section.settings.border_bottom %}
    border-bottom: 1px solid {{ section.settings.border_color }};
  {% endif %}
  padding: {{ section.settings.padding_v }}px 20px;
  box-sizing: border-box;
  width: 100%;
}

/* ── Belső sor (desktop: vízszintes) ── */
.tb__wrap {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

/* ── Egy badge ── */
.tb__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 {{ section.settings.item_gap }}px;
  box-sizing: border-box;
}

/* ── Ikon tartó ── */
.tb__icon-wrap {
  width: 100% !important;
  height: {{ section.settings.icon_size }}px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  overflow: hidden;
}

.tb__icon-img {
  width: auto !important;
  height: {{ section.settings.icon_size }}px !important;
  max-height: {{ section.settings.icon_size }}px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* ── Cím ── */
.tb__title {
  margin: 0 0 6px 0;
  padding: 0;
  font-size: {{ section.settings.title_size }}px;
  font-weight: {{ section.settings.title_weight }};
  color: {{ section.settings.title_color }};
  line-height: 1.3;
}

/* ── Leírás ── */
.tb__desc {
  margin: 0;
  padding: 0;
  font-size: {{ section.settings.desc_size }}px;
  color: {{ section.settings.desc_color }};
  line-height: 1.6;
}

/* ──────────────────────────────────────
   MOBILNÉZET: függőleges oszlop
   ────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .tb__wrap {
    flex-direction: column;
    align-items: center;
    gap: {{ section.settings.mobile_gap }}px;
  }

  .tb__item {
    width: 100%;
    max-width: 400px;
    padding: 0;
  }
}
/* END_SECTION:trust-badges */