Motion theme announcement bar customization - urgent

My website uses the Motion theme. I need to customize the announcement bar to make it sticky in both mobile and desktop views.

website: https://www.taramajeans.com/

Hi @Sivadarshan

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file normalize.css and add this code at the end of the file

#shopify-section-sections--24508589670702__announcement-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header#SiteHeader {
    margin-top: 29px !important;
}

Result

Best,

DaisyVo