#home-navbar{
    position: relative;
    background-color: #609966;
    width: 100%;
    height: 50px;
    box-shadow: 0 2px 4px 0 black;
    z-index: 1;
    
}

#home-navbar ul {
    display: flex;
    align-items: center;
    list-style: none;

}

#home-navbar ul li {
    margin-left: auto;
    margin-right: auto; 
}

#home-navbar > ul > li:nth-child(6){
    padding-left: 20px;
    margin-right: 0;
}
#home-navbar > ul > li:nth-child(7){
    padding-left: 10px;
    margin-left: 0px;
}


  
#account-logo {
    padding: 0 15px;
}
  
#logo{
    position: absolute;
    width: 130px;
    height: 120px;
    z-index: 1;
    top: 10px;
    left: 15px;
    
}



#home-navbar ul > li > a {
    color: #f4f3e9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    text-decoration: none;
    font-size: 25px;
    

}
#home-navbar ul > li > a:hover {
    color: black;
}
#home-navbar.sticky {
    position: fixed;
    top: 0;
}
.nav-acnt{
    display: flex;
    height: 50px;
    align-items: center;
}    


#ham-nav{
    display: none;
}

.hamburger1 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
    cursor: pointer;
}

.hamburger1.hamsticky {
    top: auto;
}

.hamburger1 span {
    display: block;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
}
  
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #F4F3EB;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-x: hidden;
    animation-name: slide-in; 
    animation-duration: 1s;
    animation-timing-function: ease-in-out;

}
  
.sidebar.active {
    width: 50%;
    display: block;
    right: 0;

}

@keyframes slide-in {
    from {
      right: -250px; 
    }
    to {
      right: 0; 
    }
  }
  
.sidebar .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}
  
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 50px 0 0 0;
    text-align: center;
}
  
.sidebar li {
    margin: 10px 0;
    border-bottom: 1px dashed green;
}


  
.sidebar a {
    padding: 10px;
    color: #000;
    display: flex;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: medium;
    text-decoration: none;
}


  
.sidebar a:hover {
    color: green;
}
  
#hamCart {
    display: none;
}
#hamCart.hamCartsticky{
    top: auto;
}

#cart-logo {
    padding: 0 45px;
}

.cart{
    height: 2.5rem;
    width: 2.5rem;
    padding: 0px 0rem;
}

.acntlogo{
    height: 2.5rem;
    width: 2.5rem;
    padding: 0px 0rem;
}

.cart-count {
    background-color: white;
    border-radius: 100%;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    position: relative;
    right: -12px;
    bottom: 10px;
    font-size: 15px;
    font-family:'Montserrat', sans-serif;
    font-weight: bold;

}
.acnt-name {
    display: flex;
    height: 50px;
    align-items: center;
}

.acnt-logo {
    height: 35px;
    padding: 0;
}


.user-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(-10px);
}


.user-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu > div > a {
    background-color: white;
    padding: 4px 0px;
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: medium;
}



/* ------------------RESPONSIVE---------------------------- */

/*------------------ NAVBAR --------------- */


@media screen and (max-width: 840px) {
    
    
    #home-navbar {
        display: none;
      }
    
    #ham-nav{
        display: flex;
        position: relative;
        background-color: #609966;
        box-shadow: 0 2px 4px 0 black;
        height: 45px;
        width: 100%;

    }
    #ham-nav.hamnavsticky{
        position: fixed;
        z-index: 1;
        top: 0;
    }
    
    .hamburger1 {
      display: flex;
      position: absolute; 
      right: 5%;
      top: 12px;
    }
    .hamburger1.hamsticky {
        top: 12px;
    }
    #hamCart.hamCartsticky{
        top: 3px;
    }
    
    .sidebar {
      display: none;
      
    }

    .acntlogo{
        display: none;
    }
  
    #navlogo{
        position: relative;
        width: 100px;
        height: 90px;
        top: 10px;
        left: 6px;
        z-index: 1;
        
    }
    #hamCart {
        display: flex;
        position: absolute; 
        right: 5%;
    }
    
    .cart-count {
        position: absolute;
        right: 72px;
        bottom: 23px
    }
    
    
  }
  
  
  @media only screen and (max-width: 480px) {
    
    #navlogo{
        width: 65px;
        height: 60px;
        
    }
  }



