/** Shopify CDN: Minification failed

Line 140:10 Unexpected "{"
Line 140:19 Expected ":"
Line 141:14 Expected identifier but found whitespace
Line 141:16 Unexpected "{"
Line 141:25 Expected ":"
Line 141:51 Expected ":"
Line 142:17 Expected identifier but found whitespace
Line 142:19 Unexpected "{"
Line 142:28 Expected ":"
Line 142:57 Expected ":"

**/
.bies-trust-badges {
  padding: 0 1.5rem;
}

.bies-trust-badges__container {
  max-width: var(--page-width);
  margin: 0 auto;
}

.bies-trust-badges--inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.bies-trust-badges--inline::-webkit-scrollbar {
  display: none;
}

.bies-trust-badges--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bies-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 90, 61, 0.06);
  border: 1px solid rgba(45, 90, 61, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.bies-trust-badges--inline .bies-trust-badge {
  min-width: max-content;
}

.bies-trust-badge:hover {
  background: rgba(45, 90, 61, 0.1);
  border-color: rgba(45, 90, 61, 0.2);
}

.bies-trust-badge__icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bies-trust-badge__icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
}

.bies-trust-badge__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bies-trust-badge__title {
  font-size: 13px;
  font-weight: 600;
  color: #2d5a3d;
  line-height: 1.2;
  white-space: nowrap;
}

.bies-trust-badge__subtitle {
  font-size: 11px;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
}

@media screen and (min-width: 750px) {
  .bies-trust-badges--inline {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 16px;
  }

  .bies-trust-badges--grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bies-trust-badge {
    padding: 14px 20px;
    gap: 12px;
  }

  .bies-trust-badge__icon {
    width: 36px;
    height: 36px;
  }

  .bies-trust-badge__icon svg {
    width: 18px;
    height: 18px;
  }

  .bies-trust-badge__title {
    font-size: 14px;
  }

  .bies-trust-badge__subtitle {
    font-size: 12px;
  }
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}
