/* ── Trust Bar Section wrapper ────────────── */
.bsx-trust-bar-section {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Trust Carousel ────────────────────────── */
.bsx-trust-bar {
  width: 100%;
  padding: 4px 0;
  overflow: hidden;
}

.bsx-trust-bar__track-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.bsx-trust-bar__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: bsx-trust-scroll 35s linear infinite;
  padding: 4px 0;
  align-items: center;
}

/* Hover slow-down handled by JS — see trust-carousel.js */
@keyframes bsx-trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Item ─────────────────────────────────── */
.bsx-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--bsx-font), sans-serif;
  cursor: default;
  transition: transform 0.25s ease;
}

.bsx-trust-item:hover {
  transform: scale(1.06);
}

/* ── Icon — unified sizing ────────────────── */
.bsx-trust-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.bsx-trust-item__icon img,
.bsx-trust-item__icon svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Colored-background icon variants */
.bsx-trust-item__icon--ts,
.bsx-trust-item__icon--google,
.bsx-trust-item__icon--disq { background: transparent; }

.bsx-trust-item__icon--shield { background: #10B981; border-radius: 50%; }
.bsx-trust-item__icon--users  { background: #2890C1; border-radius: 50%; }
.bsx-trust-item__icon--trophy { background: #F59E0B; border-radius: 50%; }
.bsx-trust-item__icon--de     { background: transparent; border-radius: 4px; }

/* White SVG icons inside colored circles */
.bsx-trust-item__icon--shield svg,
.bsx-trust-item__icon--users svg,
.bsx-trust-item__icon--trophy svg {
  width: 13px;
  height: 13px;
}

/* Brand logos render at full container size */
.bsx-trust-item__icon--ts img,
.bsx-trust-item__icon--google img,
.bsx-trust-item__icon--disq img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* ── Text ─────────────────────────────────── */
.bsx-trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.bsx-trust-item__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.bsx-trust-item__sub {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.bsx-trust-item__stars {
  color: #FBBC05;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ── Divider ──────────────────────────────── */
.bsx-trust-item__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── Tablet (768px+) ──────────────────────── */
@media (min-width: 768px) {
  .bsx-trust-bar { padding: 6px 0; }
  .bsx-trust-bar__track { gap: 32px; }
  .bsx-trust-item { gap: 10px; }
  .bsx-trust-item__icon { width: 28px; height: 28px; }
  .bsx-trust-item__icon--shield svg,
  .bsx-trust-item__icon--users svg,
  .bsx-trust-item__icon--trophy svg { width: 14px; height: 14px; }
  .bsx-trust-item__icon--ts img,
  .bsx-trust-item__icon--google img,
  .bsx-trust-item__icon--disq img { width: 28px; height: 28px; }
  .bsx-trust-item__label { font-size: 13px; }
  .bsx-trust-item__sub { font-size: 11px; }
  .bsx-trust-item__divider { height: 22px; }
}

/* ── Desktop (1024px+) ────────────────────── */
@media (min-width: 1024px) {
  .bsx-trust-bar { padding: 8px 0; }
  .bsx-trust-bar__track { gap: 40px; }
  .bsx-trust-item__icon { width: 30px; height: 30px; }
  .bsx-trust-item__icon--shield svg,
  .bsx-trust-item__icon--users svg,
  .bsx-trust-item__icon--trophy svg { width: 15px; height: 15px; }
  .bsx-trust-item__icon--ts img,
  .bsx-trust-item__icon--google img,
  .bsx-trust-item__icon--disq img { width: 30px; height: 30px; }
  .bsx-trust-item__divider { height: 24px; }
}

/* ── Elementor wrapper reset ──────────────── */
.elementor-widget-container:has(> .bsx-trust-bar),
.elementor-element:has(.bsx-trust-bar) {
  padding: 0 !important;
  margin: 0 !important;
}
