/*=====================
    DEAL BANNER MARQUEE
   ==================== */

/* Deal Banner Marquee wrapper - clean, no border */
.deal-banner-marquee-wrapper {
  padding: 0.35rem 0.9rem;
  border: none;
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.deal-banner-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Track uses CSS variable for duration */
.deal-banner-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  will-change: transform;
  animation: dealMarqueeScroll var(--marquee-duration, 20s) linear infinite;
}

/* Individual marquee item - no hover effects */
.deal-banner-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(230, 230, 240, 0.9);
  padding: 0.5rem 1rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* Subtle color change on hover only */
.deal-banner-marquee-item:hover {
  color: rgba(255, 255, 255, 1);
}

/* Focus visible state for accessibility */
.deal-banner-marquee-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* Item icon */
.deal-banner-marquee-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Text content wrapper */
.deal-banner-marquee-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

/* Deal title badge */
.deal-banner-marquee-title {
  color: rgba(200, 200, 200, 0.95);
  letter-spacing: 0.6px;
  font-weight: 800;
}

/* Deal message text */
.deal-banner-marquee-message {
  color: rgba(230, 230, 240, 0.9);
  font-weight: 500;
}

/* Category badge pill */
.deal-banner-marquee-badge {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(230, 230, 240, 0.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Discount badge pill */
.deal-banner-marquee-discount {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: rgba(255, 255, 255, 0.98);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Marquee scroll animation - seamless loop */
@keyframes dealMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .deal-banner-marquee-wrapper {
    padding: 0.3rem 0.75rem;
  }

  .deal-banner-marquee-track {
    gap: 16px;
  }

  .deal-banner-marquee-item {
    padding: 0.4rem 0.8rem;
  }

  .deal-banner-marquee-text {
    font-size: 13px;
    gap: 6px;
  }

  .deal-banner-marquee-badge {
    font-size: 9px;
    height: 17px;
    padding: 0 7px;
  }

  .deal-banner-marquee-discount {
    font-size: 10px;
    height: 17px;
    padding: 0 7px;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .deal-banner-marquee-track {
    animation: none;
    transform: none;
  }

  .deal-banner-marquee-item {
    transition: none;
  }
}

/* Reduced effects toggle (manual) */
.reduced-effects .deal-banner-marquee-track {
  animation: none;
  transform: none;
}

.reduced-effects .deal-banner-marquee-item {
  transition: none;
}

/* Speed classes - slowed down for smoother viewing */
.deal-banner-marquee.deal-marquee-speed-10 {
  --marquee-duration: 12s;
}

.deal-banner-marquee.deal-marquee-speed-12 {
  --marquee-duration: 14s;
}

.deal-banner-marquee.deal-marquee-speed-14 {
  --marquee-duration: 17s;
}

.deal-banner-marquee.deal-marquee-speed-16 {
  --marquee-duration: 20s;
}

.deal-banner-marquee.deal-marquee-speed-18 {
  --marquee-duration: 22s;
}

.deal-banner-marquee.deal-marquee-speed-20 {
  --marquee-duration: 25s;
}

.deal-banner-marquee.deal-marquee-speed-24 {
  --marquee-duration: 30s;
}

.deal-banner-marquee.deal-marquee-speed-28 {
  --marquee-duration: 35s;
}

.deal-banner-marquee.deal-marquee-speed-32 {
  --marquee-duration: 40s;
}

.deal-banner-marquee.deal-marquee-speed-36 {
  --marquee-duration: 45s;
}

.deal-banner-marquee.deal-marquee-speed-40 {
  --marquee-duration: 50s;
}
