export interface Variant {
  id: string
  name: string
  color?: string
  price: number
  stock: number
  inStock?: boolean
  product_id?: string
}

