// APEX product data — fictional brand, original design

const APEX_PRODUCTS = [
  {
    id: 'obj-01',
    code: 'OBJ-01',
    name: 'Voidshell Bomber',
    category: 'Outerwear',
    price: 890,
    drop: '04',
    palette: ['#0a0a0a', '#1c1c1a'],
    accent: '#e5ff00',
    tag: 'NEW',
    sizes: ['XS','S','M','L','XL','XXL'],
    soldOut: ['XS','XXL'],
    fabric: 'Nylon ripstop / Cordura',
    desc: 'Triple-stitched bomber. Magnetic closure, articulated sleeves.',
  },
  {
    id: 'obj-02',
    code: 'OBJ-02',
    name: 'Apex Cargo Trouser',
    category: 'Bottoms',
    price: 420,
    drop: '04',
    palette: ['#0e0d0a', '#2a2820'],
    accent: '#e5ff00',
    tag: 'LOW STOCK',
    sizes: ['28','30','32','34','36'],
    soldOut: ['28'],
    fabric: 'Japanese twill',
    desc: 'Tactical cargo. Six pocket. Reinforced knee panel.',
  },
  {
    id: 'obj-03',
    code: 'OBJ-03',
    name: 'Carbon Crew',
    category: 'Knitwear',
    price: 340,
    drop: '04',
    palette: ['#0a0a0a', '#161613'],
    accent: '#e5ff00',
    tag: null,
    sizes: ['S','M','L','XL'],
    soldOut: [],
    fabric: 'Merino / Carbon weave',
    desc: 'Heavyweight crew. Asymmetric ribbed collar.',
  },
  {
    id: 'obj-04',
    code: 'OBJ-04',
    name: 'Dark Matter Tee',
    category: 'Essentials',
    price: 160,
    drop: '04',
    palette: ['#080808', '#181816'],
    accent: '#e5ff00',
    tag: 'HERO',
    sizes: ['XS','S','M','L','XL'],
    soldOut: ['M'],
    fabric: '320gsm jersey',
    desc: 'Boxed silhouette. Tonal embroidery. Cold-pigment dye.',
  },
  {
    id: 'obj-05',
    code: 'OBJ-05',
    name: 'Halo Hood',
    category: 'Knitwear',
    price: 540,
    drop: '04',
    palette: ['#070707', '#15140e'],
    accent: '#e5ff00',
    tag: null,
    sizes: ['S','M','L','XL','XXL'],
    soldOut: [],
    fabric: 'Loopback fleece',
    desc: 'Oversize hood. Reflective bonded tape, kangaroo pocket.',
  },
  {
    id: 'obj-06',
    code: 'OBJ-06',
    name: 'Phase Boot',
    category: 'Footwear',
    price: 760,
    drop: '04',
    palette: ['#0a0a0a', '#1f1d18'],
    accent: '#e5ff00',
    tag: 'WAITLIST',
    sizes: ['41','42','43','44','45','46'],
    soldOut: ['41','46'],
    fabric: 'Vegetable-tanned leather',
    desc: 'Side-zip boot. Vibram® unit. Sculpted shaft.',
  },
  {
    id: 'obj-07',
    code: 'OBJ-07',
    name: 'Signal Cap',
    category: 'Accessories',
    price: 140,
    drop: '04',
    palette: ['#0a0a0a', '#171614'],
    accent: '#e5ff00',
    tag: null,
    sizes: ['ONE'],
    soldOut: [],
    fabric: 'Brushed cotton twill',
    desc: 'Six-panel. Embroidered logo, antique brass closure.',
  },
  {
    id: 'obj-08',
    code: 'OBJ-08',
    name: 'Eclipse Shell Pant',
    category: 'Bottoms',
    price: 520,
    drop: '04',
    palette: ['#080808', '#1a1a18'],
    accent: '#e5ff00',
    tag: 'NEW',
    sizes: ['28','30','32','34','36','38'],
    soldOut: [],
    fabric: 'Coated GORE-TEX®',
    desc: 'Storm shell pant. Welded seams. Stirrup hem.',
  },
];

const APEX_CATEGORIES = [
  { id: 'all', label: 'ALL', count: 8 },
  { id: 'Outerwear', label: 'OUTERWEAR', count: 1 },
  { id: 'Knitwear', label: 'KNITWEAR', count: 2 },
  { id: 'Bottoms', label: 'BOTTOMS', count: 2 },
  { id: 'Footwear', label: 'FOOTWEAR', count: 1 },
  { id: 'Accessories', label: 'ACCESSORIES', count: 1 },
  { id: 'Essentials', label: 'ESSENTIALS', count: 1 },
];

window.APEX_PRODUCTS = APEX_PRODUCTS;
window.APEX_CATEGORIES = APEX_CATEGORIES;
