# Price Display

Renders a price from cents with optional original retail comparison.

## Props
- `price` — number (cents)
- `originalRetail` — number | null (cents)
- `size` — "sm" | "md" | "lg" (default: "md")

## Display Rules
- Always format as "$X.XX"
- If originalRetail is present and greater than price, show struck-through original and percentage off
- Never show "$0.00" — minimum display price is "$0.01"
- Size affects font size only, not layout
