export function formatWeight(grams: number | null | undefined): string { if (grams == null) return "--"; return `${Math.round(grams)}g`; } export function formatPrice(cents: number | null | undefined): string { if (cents == null) return "--"; return `$${(cents / 100).toFixed(2)}`; }