.wat-sale-banner{
  width: 100%;
  background: var(--wat-sale-bg, #111);
  color: var(--wat-sale-fg, #fff);
  position: relative;
  z-index: 99999;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 15px;
}

.wat-sale-inner{
  padding: 6px 0;
}

.wat-sale-marquee{
  width: 100%;
  overflow: hidden;
}

.wat-sale-track{
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: wat-sale-marquee var(--wat-sale-speed, 28s) linear infinite;
  padding-left: 14px;
}

@keyframes wat-sale-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wat-sale-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  opacity: 0.95;
}

.wat-sale-item span.uap-role-label{ display:none !important; }

.wat-sale-item:hover{
  opacity: 1;
  text-decoration: underline;
}

.wat-sale-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  font-size: 11px;
}

.wat-sale-badge--icon .dashicons{
  font-size: 14px;
  width: 14px;
  height: 14px;
  line-height: 14px;
}

.wat-sale-title{ font-weight: 600; }

.wat-sale-price{
  opacity: 0.9;
  font-weight: 700;
}

.wat-sale-sep{ opacity: 0.5; }

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

@media (prefers-reduced-motion: reduce){
  .wat-sale-track{ animation:none; transform:none; }
}

.wat-sale-banner .screen-reader-text{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.wat-sale-price del{
  text-decoration: line-through !important;
  opacity: 0.65;
  font-weight: 600;
  display: inline-block;
  margin-right: 6px;
}

.wat-sale-price del *{ text-decoration: inherit !important; }

.wat-sale-price ins{
  text-decoration: none !important;
  font-weight: 800;
  display: inline-block;
}