/* Sale marquee: static yellow-black stripes, moving red text only */
.sale-marquee {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 3vh;
  min-height: 28px;
  max-height: 40px;
  overflow: hidden;
  background: repeating-linear-gradient(
    135deg,
    #ffd400 0,
    #ffd400 18px,
    #111 18px,
    #111 36px
  );
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.sale-marquee.is-hidden {
  display: none;
}

body.sale-marquee-hidden {
  padding-top: 0;
}

body.sale-marquee-hidden #sp-header.header-sticky {
  top: 0;
}

.sale-marquee__text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  background: transparent;
  color: #e31e25;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(15px, 1.35vw, 21px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow:
    -1px 0 #fff,
    0 1px #fff,
    1px 0 #fff,
    0 -1px #fff,
    0 2px 4px rgba(0, 0, 0, 0.35);
  animation: sale-marquee-run 16s linear infinite;
}

body {
  padding-top: clamp(28px, 3vh, 40px);
}

#sp-header.header-sticky {
  top: clamp(28px, 3vh, 40px);
}

@keyframes sale-marquee-run {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}
