.carrito {
  width: 30px; 
  height: 30px;
}

.comanda-circle {
  position: absolute;
  top: -5px; 
  right: -5px; 
  background-color: orange;
  color: rgb(0, 0, 0);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  z-index: 10;
}
.vercarrito {
  text-decoration: none; 
  color: inherit; 
  cursor: default; 
}

#modalQuantity {
  font-size: 18px;
  font-weight: bold;
}

.cart-notification {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: transparent;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, bottom 0.5s ease;
  transform: translateY(100%);
}

.cart-notification.show {
  transform: translateY(0);
  bottom: 0; 
}

.cart-notification.hide {
  transform: translateY(100%);
  bottom: -100px; 
}

.cart-notification .btn {
  border-radius: 20px;
  font-size: 16px;
  padding: 10px 20px;
}

/* //////////////////////////////////////////////////////////////// */
.menu {
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu.show {
  display: block; /* Cambiar visibilidad */
  opacity: 1;
  transform: translateY(0); /* Retorna a su posición original */
}

