export interface CatalogItemRowProps { imageUrl: string; title: string; description: string; price: number; quantity: number; onAdd: () => void; onRemove: () => void; }