  
  .promo-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fbfbfb;
    z-index: 30;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    padding-top: 5px;
  }

  .promo-marquee {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
    animation: marquee var(--marquee-duration, 25s) linear infinite;
  }

  .promo-marquee img {
    max-height: 95px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
  }

  .promo-marquee-text {
    position: relative;
    height: 36px;
    line-height: 36px;
    padding: 0 36px;
    display: inline-block;
    white-space: nowrap;

    background: linear-gradient(
      90deg,
      #ffc4bd 0%,
      #f6aea5 0%,
      #e7897f 0%,
      #da685c 0%,
      #cf4d3f 0%,
      #c73728 1%,
      #c02516 1%,
      #bb1909 2%,
      #b81202 2%,
      #b81100 3%,
      #ff1900 12%,
      #ff918b 16%,
      #ea1305 31%,
      #d60c08 38%,
      #c4050c 46%,
      #b8010e 55%,
      #b5000f 65%,
      #bd010f 70%,
      #d40411 78%,
      #e20613 82%,
      #7e1208 99%,
      #761308 100%
    );

    box-shadow:
      0 5px 10px rgba(0,0,0,0.22),
      0 2px 4px rgba(0,0,0,0.15),
      inset 0 1px 1px rgba(255,255,255,0.25),
      inset 0 -1px 1px rgba(0,0,0,0.12);
  }

  .promo-marquee-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24.55px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.55' height='36'%3E%3Cpolygon fill='%23fbfbfb' points='0,0 25.55,18 0,36'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .promo-marquee-text::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 24.55px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.55' height='36'%3E%3Cpolygon fill='%23fbfbfb' points='25.55,0 0,18 25.55,36'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .promo-marquee-text {
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.10),
                inset 0 -1px 1px rgba(255,255,255,0.15);
  }

  @keyframes marquee {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
  }

  @media (max-width: 768px) {
    .promo-marquee-wrapper {
      position: relative;
      order: 2;
      margin-top: 0;
      height: 80px
    }

    .promo-marquee img {
      max-height: 70px;
    }

    header.site-header {
      order: 1;
    }

    .storefront-header {
      display: flex;
      flex-direction: column;
    }

    .promo-marquee {
      font-size: 1rem;
      gap: 14px;
      animation-duration: 18s;
    }
  }
