export interface StoreSocial {
  whatsapp?: string;
  instagram?: string;
  facebook?: string;
}

export interface StorePolicies {
  shipping?: string;
  exchange?: string;
  privacy?: string;
  terms?: string;
}

export interface Store {
  id: string;             // tenant_id / store_id / company_id
  slug: string;
  name: string;
  description: string;
  logoUrl?: string;
  bannerUrl?: string;
  email: string;
  phone: string;
  document: string;       // CNPJ/CPF
  address: string;
  social: StoreSocial;
  policies: StorePolicies;
  open: boolean;
  themeId: string;
}
