/* Ensure the image box can anchor the overlay */
.preview__stage {
  position: relative;
}

/* Red strip pinned to the bottom of the image box */
.promo-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  background: #ff0000;         /* red */
  color: #fff;
  overflow: hidden;
  padding: 6px 0;

  border-top: 1px solid rgba(255,255,255,.25);
  z-index: 5;

  /* Don't block clicks/zoom on the image area */
  pointer-events: none;
}

/* Scrolling track */
.promo-track {
  display: flex;
  width: max-content;          /* shrink to content so -50% trick works */
  animation: promo-marquee 18s linear infinite;
  will-change: transform;
}

/* Two identical halves for a seamless loop */
.promo-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 18px;
  white-space: nowrap;
}

/* Text style */
.promo-strip .copy {
  font-family: "Archivo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Separator dot */
.promo-strip .dot {
  opacity: .9;
}

/* Smooth infinite scroll across exactly two halves */
@keyframes promo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile: slightly smaller */
@media (max-width: 480px) {
  .promo-strip { padding: 5px 0; }
  .promo-strip .copy { font-size: 0.8rem; }
  .promo-inner { gap: 22px; padding: 0 14px; }
}

/* Respect reduced-motion preferences (show static, centered) */
@media (prefers-reduced-motion: reduce) {
  .promo-track { animation: none; }
  .promo-inner { justify-content: center; }
}
