body {
  background: #fffdfa;
  color: #333;
}

/* Imágenes del menú */
.menu-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 10px;
}

/* Botón de pedido directo personalizado (WhatsApp) */
.direct-btn {
  background-color: #25d366;
  color: white;
  margin-left: 5px;
  border-radius: 5px;
}

.direct-btn:hover {
  background-color: #1ebe5d;
}

/* Ítems de carrito dentro del modal */
#cart-items {
  max-height: 200px;
  overflow-y: auto;
  padding-left: 0;
}

/* Botón enviar por WhatsApp dentro del modal */
#send-whatsapp {
  background: #25d366;
  border: none;
  padding: 0.6rem;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .menu-img {
    max-width: 600px;
  }
}


