// UI constants — category definitions used throughout the app
const CATEGORIES = [
  { id: "pottery",   label: "Lončarstvo",     en: "Pottery",      color: "tomato",  glyph: "○" },
  { id: "painting",  label: "Slikanje",       en: "Painting",     color: "cobalt",  glyph: "△" },
  { id: "glass",     label: "Steklo",         en: "Glass",        color: "sage",    glyph: "◇" },
  { id: "print",     label: "Grafika",        en: "Printmaking",  color: "mustard", glyph: "▦" },
  { id: "sculpture", label: "Kiparstvo",      en: "Sculpture",    color: "ink",     glyph: "◆" },
  { id: "textile",   label: "Tekstil",        en: "Textile",      color: "tomato",  glyph: "⊹" },
  { id: "photo",     label: "Fotografija",    en: "Photography",  color: "cobalt",  glyph: "◎" },
  { id: "mixed",     label: "Mešane tehnike", en: "Mixed media",  color: "mustard", glyph: "◐" },
];

Object.assign(window, { CATEGORIES });
