How can I adjust header option spacing in the main menu?

How do I change the spacing between the options on my header?

https://loremclothing.com/

Chester69

@lorem

Could you please send a screenshot of what you’d like to change?

Please add below css in bottom of assets/base.css file

.header__menu-item {
padding: 1.2rem 2rem;
}
Thank you.

@lorem

add this code to your base.css file.

Navigate to online store >> Click edit theme code.

Now find base.css and paste the following code:

@media(min-width: 980px){

.list-menu--inline li{

padding-right: 2rem !important;

}

.list-menu--inline li:last-child{

padding-right: 0rem !important;
}

}