#blackweek-bar {
    width: 100%;
    height: 40px;
    background-color: #1528C4;
    font-size: 18px;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

#blackweek-bar {
position: fixed;
top: 0px;
    display: flex;
}
#masthead.blackweek, #masthead.blackfriday{
    top:40px;
}

#products-category-navigation.blackweek, #products-category-navigation.blackfriday{
    top: 110px;
} 
#products-category-navigation.blackweek, #products-category-navigation.blackfriday {
    @media (max-width: 800px) {
        top: 90px;
    }
}

#blackweek-bar.blackfriday{
      background-color: #171616;
}
#blackweek-bar div, #blackweek-bar span {
    color: #EBC6E0;
}

#blackweek-bar > div {
    display: flex;
    align-items: center; /* WYŚRODKOWANIE PIONOWE */
    height: 100%; /* Wysokość 100% rodzica */
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
}

#blackweek-bar span {
    display: inline-block;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1; /* Opcjonalnie: resetuje line-height dla spana */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}