nav.options ul{
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

nav.options ul li{
 width: 100%;
 min-width: 10vw;
 height: 40px;
 display: flex;
 align-items: center;
 cursor: pointer;
 justify-content: center;
 border-radius: 5px;
 font-size: 0.88vw;
 margin: 0 5px;
}

nav.options ul .cart-menu-icon{
    background-color: #f59f27;
}

nav.options ul .cart-menu-icon a{
    color: #fff;
}

nav.options ul li:hover{
    background-color: #f3f3f3;    
}

nav.options ul li a{
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

nav.options ul li a span{
    margin: 0 10px 0 0;
}

@media screen and (max-width: 1025px) {
    nav.options ul{
        flex-direction: column;
    }

    nav.options ul li{
    width: 50%;
    font-size: 1.88vw;
        background-color: #f0f0f0;
        margin:  0 0 10px 0;
    }
}

@media screen and (max-width: 1025px) {
    nav.options ul li{
        width: 100%;
        font-size: 4vw;
        background-color: #f0f0f0;
    }
}