/* Empêche tout scroll horizontal sur la page et le ticker */
html, body {
  overflow-x: hidden !important;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
}
.trust-ticker {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  overflow-y: visible;
  position: relative;
}
.trust-ticker .ticker-inner {
  overflow-x: hidden !important;
  overflow-y: visible;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
}
/* Trust ticker défilant en bas de page */
.trust-ticker {
  width: 100%;
  background: #25325d !important; /* bleu charte graphique */
  color: #fff;
  font-family: 'Bebas Neue', 'Arial', sans-serif;
  font-size: 1.15rem;
  user-select: none;
  margin: 0;
  padding: 0;
  display: block;
  z-index: 100;
  position: relative;
  margin-top: 30px;
}
.trust-ticker .ticker-inner {
  overflow: hidden;
  width: 100vw;
  height: 38px;
  display: flex;
  align-items: center;
}
.trust-ticker .ticker-track {
  display: flex;
  gap: 36px;
  animation: ticker-scroll 32s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  width: max-content;
  max-width: none;
  box-sizing: border-box;
}
.trust-ticker .ticker-track li {
  white-space: nowrap;
  padding: 0 8px;
  opacity: 0.92;
}
.trust-ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (max-width: 700px) {
  .trust-ticker { font-size: 0.98rem; }
  .trust-ticker .ticker-inner { height: 32px; }
}
