export type ProductCategory = | 'beauty_industry' | 'makeup' | 'toiletries' | 'sanitary_hygiene' | 'perfumes' | 'skin_care' | 'clothing'; export interface Product { id: string; name: string; description: string; price: number; currency: string; category: ProductCategory; images: string[]; stock: number; sellerId: string; flashPrice?: number; flashExpiresAt?: string; } export interface Category { id: string; name: string; slug: string; imageUrl: string; }