.navbar{
  background-color: #e60073;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 30px;
}

.navbar__menu {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;
  list-style: none;

  margin: 2px 0 0 5px;
  padding: 2px 5px 0 3px;


  text-align: center;
  justify-content: center;
  align-items: center;


}

.menu__link {
  display: flex;
  color: #ffff;
  background-color: #e60073;

  font-size: 1.05rem;
  font-weight: bold;
  font-family:'Poppins', sans-serif;

  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;


  padding: 9px 8px;

  list-style: none;
  transition: background-color 0.3s ease;
}

.menu__link:hover,.menu__link:focus, .menu__link:active {
  background-color: #ff4d94;
  border-radius: 5px;
}

.menu__link .links__,
.menu__link .links__1,
.menu__link .links__2{
  color:white;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 0;
}

.menu__link .link--login_img {
  max-width: 30px;
  max-height: 30px;
  margin:0 10px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e60073;
}

.menu__link .link--login{
  background-color: #ffff;
  color: #e60073;
  border-radius: 50px;
  box-shadow: 3px 3px 3px 3px #b3005c;
}

.links__2 .link--login_text{
  color: #e60073;
  padding: 0 10px 0 0;
}

.menu__link .link--carrito_img {
  max-width: 30px;
  max-height: 30px;
  object-fit: cover;
  margin:0 10px;
}

.menu__link .link--carrito_img,
.menu__link .link--carrito_text{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:1180px){
  .navbar{
    display: none;
  }
}
