@media (max-width: 991px) {    
    .theme-mobile-header-refine-wrapper .theme-mobile-header-sortby select,    .theme-mobile-header-refine-wrapper .theme-mobile-header-filterby .theme-filterby-label {
    font-size: 14px
}
}
.zs-customize-font-section * {
font-family: MARCELLUS SC, serif;
font-size: 14px
}
.zs-customize-font-section h2{
font-size: 26px
}
@media (max-width: 768px) {
  .zs-scroll {
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: flex-start !important;
    [data-element-type="column"] {
      width: 18%;
    }
  }
}
@media (max-width: 768px) {
   .theme-mobile-header-top .theme-mobile-header-nav-wrapper .theme-mobile-header-logo {
        padding-inline-end: 15px;
        position: relative;
        left: 50%;
       transform: translateX(-50%);
    }
        .theme-mobile-header-top .theme-mobile-header-nav-wrapper .theme-mobile-header-logo img{
        max-block-size: 60px !important;
       }
}

@media (max-width: 991px) {
    .theme-mobile-header-style-03.theme-mobile-header-bottom {
        border-block-start: 1px solid #ECF0F1;
    }
}
[data-list-coupon-code]{
    background: yellow;
    border-color: #000;
    color: #000;
}
<style>
 [data-megamenu-content-container] .zpcontainer {
 padding-block-start: 0 !important;
 }

 .marquee {
 width: 100%;
 height: 50px;
 display: flex;
 justify-content: center;
 align-items: center;
 overflow: hidden;
 background: #000;
 color: #fff;
 font-size: 18px;
 font-weight: bold;
 text-align: center;
 position: relative;
 }

 .marquee span {
 display: inline-block;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 position: absolute;
 }

 .marquee span.visible {
 opacity: 1;
 }
</style>

<script>
 const marqueeConfig = {
 textArray: [
 "Free Shipping +200AED",
 "100% Secured Payment",
 ],
 slideDuration: 5000,
 transitionDuration: 1000
 };

 document.addEventListener("DOMContentLoaded", addMarquee);

 function addMarquee() {
 let topBarElement = document.querySelector("[data-theme-topbar]");
 if (topBarElement) {
 let marquee = document.createElement("div");
 topBarElement.insertAdjacentElement("afterend", marquee);
 marquee.classList.add("marquee");

 let marqueeText = document.createElement("span");
 marquee.appendChild(marqueeText);

 let currentIndex = 0;

 function updateMarqueeText() {
 marqueeText.classList.remove("visible");

 setTimeout(() => {
 marqueeText.textContent = marqueeConfig.textArray[currentIndex];
 marqueeText.classList.add("visible");

 currentIndex = (currentIndex + 1) % marqueeConfig.textArray.length;
 }, marqueeConfig.transitionDuration);
 }

 updateMarqueeText();

 setInterval(updateMarqueeText, marqueeConfig.slideDuration);
 }
 }
</script>