export function fmtEur(cents: number): string { return `${(cents / 100).toLocaleString("de-DE", { minimumFractionDigits: 2 })} EUR`; }