.header{
    width: 100%;
    height: 4rem;
    display: flex;
    position: fixed;
    background-color: black;
    color: white;
    z-index: 130;
    border-bottom: solid 1px rgb(74, 74, 74);
}
.header-inner{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}
.checkout-button{
    background-color: transparent;
    position: relative;
    color: white;
    border: none;
    font-weight: bold;
}

.options{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.option-large-screen a{
    text-decoration: none;
    color: white;
}

.company-name{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.header-logo{
    width: 3rem;

}

.cart{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.cart-icon{
    width: 2rem;
}
.cart-number{
    position:absolute;
    top: 0;
    color: lightgreen;
}


.option-svg-burger{
    display: block;
    width: 2rem;
}
.social{
    width: 100%;
}

.burger-btn{
    display: block;
    width: 30px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding-top: 10px;
    
    
}
.burger-btn span{
    display: block;
    background-color: white;
    width: 30px;
    height: 4px;
    margin-bottom: 4px;
    margin-top: 3px;
}
.nav-menu{
    display: none;
    position: absolute;
    width: 60%;
    height: 100vh;
    transition: 0.3s ease-in-out;
    transform:  translateX(100%);
    top: 3rem;
    padding-top: 1rem;
    left: 0;
    background-color: rgba(31, 30, 31);
    padding-left: 1rem;
    list-style: none; 

}
.nav-menu-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}
.nav-menu-item-icon{
    width: 1rem;

}
.nav-submenu{
    display: none;
    list-style: none;
    padding-left: 20px;
    padding-top: 10px;

}
.nav-submenu li{
    height: 40px;
    
}
.nav-submenu a{
    padding-top: 10px;
    margin-bottom: 40px;
    display: flex;
    padding-left: 20px;
    padding-bottom: 10px;
}
.submenu-icon{
    width: 1rem;
}

.nav-submenu.show{
    display: block;
}
.nav-menu li{

    padding-left: 10px;
    border-bottom: solid 1px rgb(97, 97, 97);
}

.nav-menu a{
    text-decoration: none;
    color: white;

}
.nav-menu.show{
    display: block;
    transform: translateX(0);
}


@media (max-width: 945px) {
    .option-large-screen{
        display: none;
    }

}

@media (min-width: 945px) {
    .option-svg-burger{
        display: none;
    }
}

