.wat-sale-banner{
  width: 100%;
  background: var(--wat-sale-bg, #111);
  color: var(--wat-sale-fg, #fff);
  position: sticky; /* bleibt oben, ohne Content zu überdecken */
  top: 0;
  z-index: 99999;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.wat-sale-inner{
  width: 100%;
  padding: 10px 0;
}

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

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

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

.wat-sale-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 14px;
  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: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  font-size: 12px;
}

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

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

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

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

/* Pause on hover (optional) */
.wat-sale-banner:hover .wat-sale-track{
  animation-play-state: paused;
}

/* Accessibility: reduced motion */
@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;
}

/* Sale-Preis klar darstellen (Theme-Overrides überschreiben) */
.wat-sale-price del{
  text-decoration: line-through !important;
  opacity: 0.65;
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
}

.wat-sale-price del *{
  text-decoration: inherit !important; /* falls innen Spans alles entfernen */
}

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

/* Optional: etwas Luft */
.wat-sale-price-label{
  margin-right: 8px;
  opacity: 0.85;
  font-weight: 600;
}

.header.-sticky.showed {
padding-top: 90px;
}

.header-wrap-inner {
padding-bottom: 50px;
}