/* ======================================================
   NAV
====================================================== */

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:50px;
  margin-top:15px;
}

.nav__link{
  display:inline-block;
  color:#F7F3EE;

  font-size:12px;
  text-decoration:none;

  font-weight:500;
  letter-spacing:.5px;
}

.nav__link:hover{
  opacity:.8;
}

.nav__link--active{
  text-decoration:underline;
}

/* ======================================================
   CARRITO NAV
====================================================== */

.nav__cart{
  font-size:10px;
  text-decoration:none;
  color:#F7F3EE;

  display:flex;
  align-items:center;
  justify-content:center;
}

.nav__cart svg{
  width:10px;
  height:30px;
  stroke:#ffffff;
  display:block;
}

.cart-count{
  position:absolute;
  top:5px;
  right:-5px;

  background:#D4AF37;
  color:#000;

  font-size:3px;
  font-weight:bold;

  padding:1px 2px;

  border-radius:50px;

  display:none;
}