icon-account icon-glass
/* Existing CSS styles */ /* Other CSS rules... */ @media screen and (max-width: 840px) { /* Hide the existing brand logo */ .site-header__logo { display: none; /* Hides the logo */ } /* Flex container for the header items */ .header-control { display: flex; /* Makes header items align horizontally */ justify-content: space-between; /* Space between items */ align-items: center; /* Vertically center the items */ } /* Style adjustments for the hamburger, logo, and cart */ .header-control .hamburger, .header-control .site-header__logo, .header-control .cart-icon { flex: 1; /* Makes all items share equal space */ text-align: center; /* Center align each item */ } /* Additional adjustments to the cart icon if needed */ .header-control .cart-icon { margin-left: auto; /* Aligns cart icon to the right */ } }