/* ── WIP Scrolling Banner ── */
.wip-banner {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 850;
  overflow: hidden;
  white-space: nowrap;
  height: 40px;
  background: linear-gradient(90deg, #b45309, #d97706, #b45309);
  background-size: 200% 100%;
  animation: wip-bg-shift 6s linear infinite;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.wip-banner-track {
  display: inline-flex;
  animation: wip-scroll 40s linear infinite;
  will-change: transform;
}

.wip-banner:hover .wip-banner-track {
  animation-play-state: paused;
}

.wip-banner-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c0a00;
  letter-spacing: 0.01em;
  padding: 0 8px;
  flex-shrink: 0;
}

@keyframes wip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes wip-bg-shift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
