/* Tira de promociones: usa exclusivamente los colores existentes de Donata. */
.promotions-strip {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  background: var(--bordo-oscuro);
  color: var(--manteca);
  border-top: 1px solid var(--bordo-suave);
}

.promotions-strip-link {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 14px 0;
  color: inherit;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.promotions-strip-track {
  display: flex;
  width: max-content;
  animation: donata-promotions-right 24s linear infinite;
}

.promotions-strip-group {
  display: flex;
  flex-shrink: 0;
  gap: 36px;
  padding-right: 36px;
}

.promotions-strip-group > span { white-space: nowrap; }
.promotions-strip-separator { margin-left: 36px; color: var(--masa); }
.promotions-strip-link:hover .promotions-strip-track,
.promotions-strip-link:focus .promotions-strip-track,
.promotions-strip.is-paused .promotions-strip-track { animation-play-state: paused; }

.promotions-strip-pause {
  flex-shrink: 0;
  width: 44px;
  min-height: 44px;
  border: 0;
  border-left: 1px solid var(--bordo-suave);
  background: transparent;
  color: inherit;
  font: 17px 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}

.promotions-strip-link:focus-visible,
.promotions-strip-pause:focus-visible {
  outline: 2px solid var(--manteca);
  outline-offset: -4px;
}

@keyframes donata-promotions-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .promotions-strip-track { animation: none; width: 100%; }
  .promotions-strip-group { width: 100%; justify-content: center; padding: 0 12px; }
  .promotions-strip-group > span { white-space: normal; text-align: center; }
  .promotions-strip-group:nth-child(2),
  .promotions-strip-group > span:not(:first-child),
  .promotions-strip-separator,
  .promotions-strip-pause { display: none; }
}
