/* ========== MENU PAGE ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.menu-item-content {
  flex: 1;
  padding: 0 0 0 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .menu-item img {
    width: 76px;
    height: 62px;
  }
}

.menu-item h3 {
  font-size: 1rem;
}

.menu-item p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #555;
}

.price {
  font-weight: bold;
  color: var(--muted);
}

/* ========== PRIJSNOTA ========== */
.menu-note-bar {
  padding: var(--space-4) 0;
}

.menu-note {
  background: #fef9ec;
  border: 1px solid #f0d98a;
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  font-size: 0.9rem;
  color: var(--text);
}

.menu-note a {
  color: var(--accent);
  text-decoration: underline;
}

.menu-item-sub {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.menu-section-note {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}
