/* Nexa: combo right column — quality / compliance list + scroll stagger fade */
.nexa-combo-trust.box--white {
  min-height: 0;
}

.nexa-combo-trust .nexa-combo-trust__bottom {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
}

.nexa-combo-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 28rem;
}

.nexa-combo-trust__item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(0.55rem, 1.2vw, 0.75rem) 0;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.08);
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;

  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 1.15s ease-out,
    transform 1.15s ease-out;
  transition-delay: calc(var(--nexa-i, 0) * 0.52s);
}

.nexa-combo-trust__item:last-child {
  border-bottom: 0;
}

.nexa-combo-trust__icon {
  flex-shrink: 0;
  width: clamp(2.35rem, 4.5vw, 2.75rem);
  height: clamp(2.35rem, 4.5vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: hsla(25, 32%, 88%, 0.95);
  color: #5c3d2e;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.nexa-combo-trust__label {
  flex: 1;
  min-width: 0;
}

.nexa-combo-trust--visible .nexa-combo-trust__item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .nexa-combo-trust__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
