.food-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.food-card img {
  width: 100%;
  height: auto;        /* 🔥 very important */
  max-height: 250px;   /* limit maximum height */
  object-fit: contain; /* prevent cropping */
  display: block;
}
.card-body {
  padding: 20px;
  text-align: center;
}
.qty-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.qty-box button {
  padding: 5px 12px;
  border: none;
  background: #ff6b6b;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.remove-btn {
  margin-top: 10px;
  background: #888;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.order-btn {
  background: #ff6b6b;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}