export type ThemeStyle = 'moderno' | 'minimalista' | 'vitrine';

export interface StoreTheme {
  storeId: string;
  style: ThemeStyle;
  primaryColor: string;
  secondaryColor: string;
  buttonColor: string;
  showCategories: boolean;
  showFeatured: boolean;
  footerText?: string;
}

export interface ThemePreset {
  id: ThemeStyle;
  name: string;
  description: string;
  primaryColor: string;
  secondaryColor: string;
  buttonColor: string;
}
