/** Shopify CDN: Minification failed

Line 19:10 Expected identifier but found whitespace
Line 19:12 Unexpected "{"
Line 19:21 Expected ":"
Line 19:56 Unexpected "20px"
Line 19:62 Unexpected "{"
Line 19:71 Expected ":"
Line 19:108 Expected ":"

**/
/* START_SECTION:tabular (INDEX:146) */
/* =============================================
   TRUST STATISTICS BAR — scoped to section
   ============================================= */

.tsb-section {
  width: 100%;
  padding: {{ section.settings.section_padding_top }}px 20px {{ section.settings.section_padding_bottom }}px;
  box-sizing: border-box;
  background: transparent;
}

.tsb-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.tsb-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 6px 24px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

/* Grid: items + dividers */
.tsb-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Each stat item */
.tsb-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tsb-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(105, 190, 40, 0.18);
}

/* Vertical divider */
.tsb-divider {
  width: 1px;
  height: 52px;
  background: #E5E7EB;
  flex-shrink: 0;
  margin: 0 4px;
}

/* Icon circle */
.tsb-icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  border: 2px solid #69BE28;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2E7D32;
  box-sizing: border-box;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.tsb-item:hover .tsb-icon-wrap {
  background: rgba(105, 190, 40, 0.07);
  border-color: #2E7D32;
}

.tsb-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.tsb-custom-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Text content */
.tsb-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tsb-title {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.tsb-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.4;
  white-space: nowrap;
}

/* ---- Tablet: 3 columns ---- */
@media (max-width: 1024px) {
  .tsb-card {
    padding: 24px 20px;
  }

  .tsb-grid {
    flex-wrap: wrap;
    gap: 4px 0;
    justify-content: flex-start;
  }

  .tsb-item {
    flex: 0 0 calc(33.333% - 2px);
    padding: 14px 12px;
  }

  /* Hide dividers on tablet — spacing alone separates items */
  .tsb-divider {
    display: none;
  }

  /* Subtle row separator every 3rd child */
  .tsb-item:nth-child(n+4) {
    border-top: 1px solid #F3F4F6;
  }
}

/* ---- Mobile: 2 columns ---- */
@media (max-width: 640px) {
  .tsb-section {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .tsb-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .tsb-item {
    flex: 0 0 calc(50% - 2px);
    gap: 12px;
    padding: 14px 10px;
  }

  .tsb-title {
    font-size: 16px;
  }

  .tsb-subtitle {
    font-size: 12px;
    white-space: normal;
  }

  .tsb-icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .tsb-item:nth-child(n+3) {
    border-top: 1px solid #F3F4F6;
  }

  .tsb-item:nth-child(4) {
    border-top: 1px solid #F3F4F6;
  }
}

/* ---- Mobile: 1 column (narrow) ---- */
@media (max-width: 380px) {
  .tsb-item {
    flex: 0 0 100%;
    padding: 12px 8px;
  }

  .tsb-item + .tsb-item {
    border-top: 1px solid #F3F4F6;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tsb-item {
    transition: none;
  }
}
/* END_SECTION:tabular */
