How do I remove the cart button from my website's header?

Hey!

We are not ready to launch but have created a Coming Soon page to collect email subscribers.

Can anyone help me remove the ‘Cart’ button from the home page? When someone clicks through, they can then ‘continue browsing’ and then find all of our products, which we don’t want them to see just yet!

Any help would be much appreciated!

Theme: Narrative

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

.template-index .site-header__section.site-header__section--button .icon.icon-header-bag {
    display: none;
}

You’re a genius, thank you so so much!!