/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 41:12 Expected identifier but found whitespace
Line 41:14 Unexpected "{"
Line 41:23 Expected ":"
Line 41:47 Expected ":"
Line 42:8 Expected identifier but found whitespace
Line 42:10 Unexpected "{"
Line 42:19 Expected ":"
... and 7 more hidden warnings

**/


/* CSS from section stylesheet tags */
.custom-trust-banner {
  background-color: {{ section.settings.background_color }};
  padding: 40px 20px;
}
.custom-trust-banner .trust-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Increased from 20px */
}

.custom-trust-banner .trust-feature {
  text-align: center;
  max-width: 160px;
  padding: 10px;
}

.custom-trust-banner .trust-feature img {
  margin-bottom: 16px; /* Increased for better spacing */
}

  .custom-trust-banner .trust-feature h3 {
  font-size: {{ section.settings.text_size }}px;
  color: {{ section.settings.text_color }};
  margin: 5px 0 3px;
}
.custom-trust-banner .trust-feature p {
  font-size: {{ section.settings.text_size | minus: 2 }}px;
  color: {{ section.settings.text_color }};
  margin: 0;
}
@media (max-width: 600px) {
  .custom-trust-banner .trust-feature img {
    width: 30px !important;
  }
}