/** * Format price in GHS (native currency — all prices stored in GHS) */ export function formatPrice(ghsPrice: number, discount?: number): string { const effective = discount !== undefined ? ghsPrice * (1 - discount) : ghsPrice; return `GH₵ ${effective.toFixed(2)}`; }