.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* IMAGE (fixed equal height for ALL cards) */
.menu-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #16a34a;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

/* CONTENT */
.menu-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* TITLE + PRICE ALWAYS ALIGNED */
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.menu-content h3 {
  font-size: 16px;
  margin: 0;
}

.price {
  font-weight: 600;
  color: #16a34a;
  white-space: nowrap;
}

/* DESCRIPTION FIXED HEIGHT FEEL */
.menu-content p {
  font-size: 13px;
  color: #555;
  margin: 8px 0 12px;
  min-height: 38px;
}

/* ACTIONS ALWAYS ALIGNED */
.menu-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTON */
.btn-small {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
}

.btn-small:hover {
  background: #333;
}

/* RATING */
.rating {
  font-size: 12px;
  color: #f59e0b;
}