/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 107:0 Unexpected "<"

**/
<style>
.trust-badges-wrapper {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 20px 0;
  position: relative;
  /* Ensure the overflow is hidden to prevent horizontal scrolling */
  overflow-x: hidden;
}

.trust-badges-scroll {
  display: flex;
  gap: 40px;
  animation: scrollBadges 30s linear infinite;
  align-items: center;
  width: max-content;
  padding: 0 10px;
  justify-content: center; /* Center the items */
}

.trust-badge {
  width: 180px; /* Fixed width for consistent size */
  height: 120px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  flex-shrink: 0; /* Ensures they don't shrink */
  overflow: hidden; /* Ensure no content overflows */
}

.trust-badge img:hover,
.trust-badge img:focus {
  box-shadow: 0 0 10px 3px red;
}

/* Image styles inside badges */
.trust-badge img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
}

/* Center uplift animation logic */
.trust-badge:nth-child(3) {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Add hover interactivity */
.trust-badge:hover {
  transform: scale(1.1) translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll animation */
@keyframes scrollBadges {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .trust-badges-wrapper {
    /* Hide horizontal overflow on smaller screens */
    overflow-x: hidden;
  }

  .trust-badges-scroll {
    animation: scrollBadgesMobile 20s linear infinite;
    gap: 20px;
  }

  .trust-badge {
    width: 140px; /* Adjust width for mobile */
    height: 100px;
    border-radius: 16px;
  }

  .trust-badge img {
    max-height: 60px;
  }

  .trust-badge:nth-child(3) {
    transform: scale(1.12) translateY(-8px);
  }

  @keyframes scrollBadgesMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

</style>