Remove Shopping Bag in Header on Balance Theme

I’ve tried placing the following in custom css to remove the shopping bag from the header as we don’t sell products and haven’t had any luck:

.header-cart.action-area__link .header__link {
display: none;
}

and

span.icon-button.icon-button-header-shopping-cart {
display: none;
}

[data-js-cart-icon=“cart”] [data-js-cart-count] {
display: none;
}

I also have this in base.css and still not removing the shopping bag in the header:

/* Hiding cart icon */

.header__icon:not(.header__icon–summary){

display:none;

}

Website is OhioRoofUnlimited.com - we don’t sell products and need to remove the shopping bag icon in the header. Any other ideas?

I fixed it! I removed it by placing the following code in custom css:

/* Hide the cart icon in the header */ .header-actions__cart-icon { display: none !important; }

@mloehner congratulations