@import url(../../style.css);
@import url(../../css/aside.css);
@import url(../Button/button.css);
@import url(../Badge/badge.css);
@import url(../Avatar/avatar.css);

.navbar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    width: 12rem;
  }

  .search{
      position: relative;
  }

  .search-input{
      width: 15rem;
      font-size: 1.5rem;
      background-color: var(--bg-color);
      border: none;
      box-shadow: var(--normal-inset-shadow);
      border-radius: 20px;
      padding-left: 2rem;
      outline: none;
      line-height: .2rem;
  }

  .fa-search{
      position: absolute;
      z-index: 1;
      top: 10px;
      left: 10px;
      font-size: 1rem;
  }

  .nav-links{
      display: flex;
      width: 14rem;
      justify-content: space-around;
      align-items: center;
  }

  .btn-login{
      padding: 0 1rem;
      height: fit-content;
  }

.fa-cart-plus, .fa-heart{
    font-size: 1.5rem;
}

.badge-no{
    top: 4px;
    right: 4px;
}

.hamburger{
    display: none;
}

/* Media Queries */
@media screen and (max-width:768px){
    .nav-links{
        display: none;
    }

    .hamburger{
        display: block;
    }

    .fa-bars{
        font-size: 1.5rem;
    }
    .search{
        display: none;
    }

    .logo img{
        width: 10rem;
    }
}

