const fmt = (n) => "$" + n.toLocaleString("es-CL");

const CATEGORIES = [
  { num: "01", title: "Semillas",     count: "24 ref",  tag: "Genética" },
  { num: "02", title: "Iluminación",  count: "18 ref",  tag: "LED / HPS" },
  { num: "03", title: "Parafernalia", count: "32 ref",  tag: "Accesorios" },
];

const PRODUCTS = [
  { id: 1, brand: "BSF Seeds",   name: "All-Star Automix",       sub: "Feminizada Auto · 5 semillas", price: 29990, was: null,  badge: ["BESTSELLER"], rating: "4.9 / 312", image: "common-articles/semillas/all-star-bsf-seeds.png" },
  { id: 2, brand: "ProGarden",   name: "Ampolleta Haluro 600W",  sub: "Metal Halide · Extra Lumen",   price: 18990, was: null,  badge: [],             rating: "4.6 / 143", image: "common-articles/iluminacion/ampolleta haluro.png" },
  { id: 3, brand: "ProGarden",   name: "Balastro Magnético 250W",sub: "Compatibilidad HPS · MH",      price: 54990, was: 64990, badge: ["-15%"],        rating: "4.7 / 88",  image: "common-articles/iluminacion/balastro.png" },
  { id: 4, brand: "Glass Art",   name: "Bong Alien",             sub: "Vidrio borosilicato · 20cm",   price: 34990, was: null,  badge: ["NUEVO"],       rating: "4.8 / 57",  image: "common-articles/parafernalia/bong alien.png" },
  { id: 5, brand: "Calvo Glass", name: "Bong Beaker Premium",    sub: "Vidrio esmerilado · 35cm",     price: 24990, was: 29990, badge: ["-17%"],        rating: "4.9 / 201", image: "common-articles/parafernalia/bongs.png" },
];

const JOURNAL = [
  { cat: "Guía",     title: "Cómo iniciar tu primer cultivo indoor",    date: "29 · 04 · 26", read: "8 min" },
  { cat: "Genética", title: "Sativa vs Indica: la guía definitiva",     date: "22 · 04 · 26", read: "6 min" },
  { cat: "Cultura",  title: "Underground growers de Valparaíso",        date: "14 · 04 · 26", read: "11 min" },
];

Object.assign(window, { CATEGORIES, PRODUCTS, JOURNAL, fmt });
