/* Shared product hero trust labels. */
.product-trust-labels {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 0;
}

.product-trust-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.product-trust-label__dot {
  display: inline-block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background-color: #28a745;
  border-radius: 50%;
  animation: productTrustDotPulse 2s infinite;
}

.product-trust-label__text {
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@keyframes productTrustDotPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 650px) {
  .product-trust-labels {
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .product-trust-label {
    flex-shrink: 0;
  }

  .product-trust-label__text {
    font-size: 14px;
  }
}
