import type { Product } from '@/types';

const now = '2025-01-15T10:00:00.000Z';

export const mockProducts: Product[] = [
  {
    id: 'prod_001',
    storeId: 'store_001',
    name: 'Fone Bluetooth Pulse Pro',
    slug: 'fone-bluetooth-pulse-pro',
    shortDescription: 'Cancelamento de ruído e 30h de bateria.',
    description:
      'O Pulse Pro entrega áudio cristalino com cancelamento ativo de ruído, conexão multiponto e estojo com carregamento rápido. Ideal para trabalho e treino.',
    sku: 'UT-FONE-001',
    barcode: '7891234560012',
    categoryId: 'cat_01',
    brand: 'Pulse',
    images: [
      'https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=800&q=80',
      'https://images.unsplash.com/photo-1583394838336-acd977736f90?w=800&q=80',
    ],
    price: 399.9,
    promoPrice: 329.9,
    cost: 180,
    status: 'ativo',
    featured: true,
    trackStock: true,
    stock: 42,
    minStock: 10,
    dimensions: { weight: 0.3, height: 6, width: 18, length: 18 },
    tags: ['bluetooth', 'fone', 'anc'],
    seoTitle: 'Fone Bluetooth Pulse Pro com ANC',
    seoDescription: 'Fone com cancelamento de ruído e 30h de bateria.',
    variations: [
      { id: 'var_001a', sku: 'UT-FONE-001-PT', options: { Cor: 'Preto' }, stock: 30, active: true },
      { id: 'var_001b', sku: 'UT-FONE-001-BR', options: { Cor: 'Branco' }, stock: 12, active: true },
    ],
    createdAt: now,
    updatedAt: now,
  },
  {
    id: 'prod_002',
    storeId: 'store_001',
    name: 'Caixa de Som Wave Mini',
    slug: 'caixa-de-som-wave-mini',
    shortDescription: 'Portátil, à prova d\'água, som 360°.',
    description: 'Caixa compacta com graves potentes, resistência IPX7 e 12 horas de reprodução.',
    sku: 'UT-SOM-002',
    categoryId: 'cat_01',
    brand: 'Wave',
    images: ['https://images.unsplash.com/photo-1608043152269-423dbba4e7e1?w=800&q=80'],
    price: 249.9,
    cost: 110,
    status: 'ativo',
    featured: true,
    trackStock: true,
    stock: 8,
    minStock: 10,
    tags: ['som', 'portatil'],
    variations: [],
    createdAt: now,
    updatedAt: now,
  },
  {
    id: 'prod_003',
    storeId: 'store_001',
    name: 'Carregador Turbo 65W GaN',
    slug: 'carregador-turbo-65w-gan',
    shortDescription: 'Carrega notebook e celular ao mesmo tempo.',
    description: 'Tecnologia GaN, 3 portas (2x USB-C, 1x USB-A) e proteção contra sobrecarga.',
    sku: 'UT-CARR-003',
    categoryId: 'cat_02',
    brand: 'Volt',
    images: ['https://images.unsplash.com/photo-1583863788434-e58a36330cf0?w=800&q=80'],
    price: 189.9,
    promoPrice: 159.9,
    cost: 70,
    status: 'ativo',
    featured: false,
    trackStock: true,
    stock: 0,
    minStock: 5,
    tags: ['carregador', 'usb-c'],
    variations: [],
    createdAt: now,
    updatedAt: now,
  },
  {
    id: 'prod_004',
    storeId: 'store_001',
    name: 'Camiseta Tech Dry',
    slug: 'camiseta-tech-dry',
    shortDescription: 'Tecido leve e respirável.',
    description: 'Camiseta com tecnologia dry-fit, costuras reforçadas e caimento moderno.',
    sku: 'UT-CAM-004',
    categoryId: 'cat_03',
    brand: 'Urban',
    images: ['https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=800&q=80'],
    price: 89.9,
    cost: 30,
    status: 'ativo',
    featured: true,
    trackStock: true,
    stock: 60,
    minStock: 15,
    tags: ['roupa', 'camiseta'],
    variations: [
      { id: 'var_004a', sku: 'UT-CAM-004-P-AZ', options: { Tamanho: 'P', Cor: 'Azul' }, stock: 15, active: true },
      { id: 'var_004b', sku: 'UT-CAM-004-M-VD', options: { Tamanho: 'M', Cor: 'Verde' }, stock: 20, active: true },
      { id: 'var_004c', sku: 'UT-CAM-004-G-PT', options: { Tamanho: 'G', Cor: 'Preto' }, stock: 25, active: true },
    ],
    createdAt: now,
    updatedAt: now,
  },
  {
    id: 'prod_005',
    storeId: 'store_002',
    name: 'Vela Aromática Lavanda',
    slug: 'vela-aromatica-lavanda',
    shortDescription: 'Cera vegetal, 40h de queima.',
    description: 'Vela artesanal de cera de soja com óleo essencial de lavanda. Relaxante e duradoura.',
    sku: 'CA-VELA-001',
    categoryId: 'cat_04',
    brand: 'Casa & Aroma',
    images: ['https://images.unsplash.com/photo-1602874801007-bd458bb1b8b6?w=800&q=80'],
    price: 69.9,
    promoPrice: 59.9,
    cost: 22,
    status: 'ativo',
    featured: true,
    trackStock: true,
    stock: 25,
    minStock: 8,
    tags: ['vela', 'lavanda'],
    variations: [],
    createdAt: now,
    updatedAt: now,
  },
  {
    id: 'prod_006',
    storeId: 'store_002',
    name: 'Difusor de Varetas Capim-Limão',
    slug: 'difusor-varetas-capim-limao',
    shortDescription: 'Aroma cítrico por até 90 dias.',
    description: 'Difusor de ambiente com 250ml e varetas de fibra natural.',
    sku: 'CA-DIF-002',
    categoryId: 'cat_05',
    brand: 'Casa & Aroma',
    images: ['https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?w=800&q=80'],
    price: 89.9,
    cost: 28,
    status: 'ativo',
    featured: false,
    trackStock: true,
    stock: 4,
    minStock: 6,
    tags: ['difusor'],
    variations: [],
    createdAt: now,
    updatedAt: now,
  },
];
