.header{
    width: 100%;
    position: relative;
    height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 200px;
    box-sizing: border-box;
    user-select: none;
}

a {
    text-decoration: none;
}

.header .buttons{
    width: auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header .buttons button{
    background-color: transparent;
    color: white;
    border: none;
    height: 100%;
    font-family: Montserrat-Regular;
    font-size: 12pt;
    transition: 0.1s;
    padding: 0px 25px;
}

.header .buttons button:hover{
    color: var(--main-color);
}

.header .buttons .icon {
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    width: 50px;
    padding: 0px 0px;
}

.header .buttons .icon:hover{
    opacity: 0.8;
}

.header .buttons .member {
    background-image: url("../media/images/profile-user.png");
}
.header .buttons .cart{
    background-color: var(--main-color);
    background-image: url("../media/images/shopping-cart.png");
}

.header .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    white-space:nowrap;
}

.header .logo img{
    width: 30px;
    height: 30px;
}

.header .logo p{
    color: white;
    font-family: Montserrat-Medium;
    font-size: 24pt;
}

.header .logo span{
    color:var(--main-color);
}


@media only screen and (max-width: 1000px) {

    .header{
        justify-content: center;
        align-items: center;
    }

    .header .buttons{
        display: none;
    }
        .header .logo p {
            color: white;
            font-family: Montserrat-Medium;
            font-size: 20pt;
        }
}