*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --main-brown : #735240;
    --main-yellow : #fdbd32;
}
header .logo-link{
    display: block;
    width: 60px;
    height: 60px;
}
#nav-logo{
    width: 100%;
    height: 100%;
}
header{
    position: fixed;
    left: 0;
    right: 0;
    background-color: transparent;
    height: 70px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}
#site-header.active{
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.navigation-link.active
{
  color: #735240;
}
header .navbar{
    width: 100%;
    height: 70px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .navbar .logo-container{
    width: 10%;
    height: 70px;
    display: flex;
    align-items: center;
}
header .navbar .link-container{
    width: 70%;
    height: 70px;
    display: flex;
    align-items: center;
}
header .navbar ul{
    width: 100%;
    height: 70px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}
header .navigation-link{
    text-decoration: none;
    font-size: 21px;
    color: #FFFF;
    padding: 5px;
    margin-left: 10px;
}
header .navigation-link:hover{
    color: var(--main-yellow);
}
header .icons-container{
    position: relative;
    width: 20%;
    height: 70px;
    display: flex;
    align-items: center;
}
header .icons-container .shopping-icon {
    cursor: pointer;
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    font-size: 15px;
    color: var(--main-brown);
    text-decoration: none;
    border-radius: 50%;
    background: #eee;
}
  
header .icons-container .shopping-icon:hover{
    color: #fff;
    background: var(--main-yellow);
    transition: all 0.4s linear;
    transform: rotate(360deg);
}
header .icons-container .shopping-icon:hover{
    color: #fff;
    background: var(--main-yellow);
    transition: all 0.4s linear;
    transform: rotate(360deg);
}

header .icons-container .cartQty{
    position: relative;
    top: -14px;
    right: -4px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-yellow);
    color: var(--main-brown);
}
header .icons-container .cartQtyLogged{
    position: relative;
    top: -14px;
    right: -2px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-yellow);
    color: var(--main-brown);
}
header .icons-container a{
    position: relative;
}
@media screen and (max-width: 1000px) {
    #site-header{
        display: none;
    }
}
