#trending-keep-shopping-banner .trend-shop {
    font-family: "Open Sans", sans-serif;
    color: #fff;
    background: #1928a0;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    flex-wrap: nowrap;
}

#trending-keep-shopping-banner .trend-list {
    display: flex;
    flex-wrap: nowrap;
    /* Ensure items don't wrap to the next line */
    padding-left: 0;
    /* Reset list padding */
    margin: 0;
    /* Reset list margin */
    overflow-x: auto;
    padding: 1px 0px;
    /* scrollbar-width: thin;
    scrollbar-color: transparent transparent; */
}

/* #trending-keep-shopping-banner ul.trend-list::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}

#trending-keep-shopping-banner ul.trend-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
} */

/* Chrome, Safari, Opera */
#trending-keep-shopping-banner ul.trend-list::-webkit-scrollbar {
    display: none;
}

/* Firefox */
#trending-keep-shopping-banner ul.trend-list {
    scrollbar-width: none;
}

#trending-keep-shopping-banner .trend-list li {
    font-size: 12px;
    margin: 7px 6px;
    /* Add space between list items */
    list-style-type: none;
    display: flex;
    align-items: stretch;
}

#trending-keep-shopping-banner .trend-list li:first-child {
    /* Styles for the first item */
    margin-left: 0px;
}

#trending-keep-shopping-banner .trend-list li:last-child {
    /* Styles for the last item */
    margin-right: 0;
}

#trending-keep-shopping-banner .headline {
    white-space: nowrap;
    flex-shrink: 0;
    /* Prevent the headline from shrinking */
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    color: white;
    position: sticky;
    left: 0;
    background: #1928a0;
    /* Match the background to blend seamlessly */
    z-index: 1;
    /* Ensure it stays on top */
    padding: 0.5rem 0.5rem 0.5rem 0rem;
}

#trending-keep-shopping-banner .trend-btn {
    color: white;
    white-space: nowrap;
}

#trending-keep-shopping-banner .trend-btn a {
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

#trending-keep-shopping-banner .trend-btn-link {
    border: 1px solid white;
    padding: 7px 12px;
    border-radius: 4px;
    width: 95px;
    display: flex;
    justify-content: center;
}

#trending-keep-shopping-banner .trend-btn-link:hover {
    border: 1px solid #cccccc;
}

.trend-btn:hover,
#trending-keep-shopping-banner .trend-btn:hover a {
    color: #cccccc;
    text-decoration: none;
}

#trending-keep-shopping-banner .trend-list li:hover img {
    opacity: 0.7;
    /* Adjust this value to control how dark the image gets */
}

#trending-keep-shopping-banner .banner-separator {
    width: 100%;
    height: 2px;
    background-color: #0749aa;
    top: 0;
    left: 0;
    display: none;
}

@media (min-width: 540px) {
    #trending-keep-shopping-banner .contentSidesLeft {
        padding-left: 24px;
        /* padding-right: 24px; */
    }
}

@media (max-width: 540px) {
    #trending-keep-shopping-banner .contentSidesLeft {
        padding-left: 16px;
        /* padding-right: 16px; */
    }
}

@media (min-width: 1024px) {
    #trending-keep-shopping-banner .banner-separator {
        display: block;
    }

        #trending-keep-shopping-banner .contentSidesLeft {
        padding-left: 32px;
        /* padding-right: 32px; */
    }
}

/* Responsive adjustments for mobile */

@media (max-width: 768px) {
    #trending-keep-shopping-banner .headline {
        font-size: 16px;
    }
}