/* ============================================================
   CanchApp UI Kit — mock data (es-CO, COP)
   ============================================================ */

const COURTS = [
  {
    id: 'arenosa', name: 'Cancha La Arenosa', barrio: 'Alto Prado', dist: '1,2 km',
    price: 60000, rating: 4.8, type: 'Fútbol 5', tint: '#2E7D5B',
    slotsLeft: 2, surface: 'Sintética', open: '6:00 AM – 11:00 PM',
  },
  {
    id: 'caribe', name: 'Complejo El Caribe', barrio: 'Riomar', dist: '2,8 km',
    price: 85000, rating: 4.6, type: 'Fútbol 7', tint: '#1F6E4E',
    slotsLeft: 5, surface: 'Grama natural', open: '7:00 AM – 10:00 PM',
  },
  {
    id: 'malecon', name: 'Canchas Malecón', barrio: 'Centro', dist: '3,5 km',
    price: 50000, rating: 4.4, type: 'Fútbol 5', tint: '#2B6CB0',
    slotsLeft: 0, surface: 'Sintética', open: '5:00 PM – 12:00 AM',
  },
  {
    id: 'prado', name: 'Arena Prado Norte', barrio: 'Villa Country', dist: '4,1 km',
    price: 70000, rating: 4.9, type: 'Fútbol 6', tint: '#27795B',
    slotsLeft: 3, surface: 'Sintética', open: '6:00 AM – 11:00 PM',
  },
];

const SLOTS = ['6:00 PM', '7:00 PM', '8:00 PM', '9:00 PM', '10:00 PM'];
const SLOT_STATE = { '6:00 PM': 'taken', '7:00 PM': 'open', '8:00 PM': 'open', '9:00 PM': 'low', '10:00 PM': 'open' };

const PICKUP = [
  {
    id: 'p1', court: 'Cancha La Arenosa', barrio: 'Alto Prado', time: 'Hoy · 8:00 PM',
    type: 'Fútbol 5', level: 'Intermedio', price: 12000, filled: 8, total: 10, tint: '#2E7D5B',
    host: 'Andrés M.',
  },
  {
    id: 'p2', court: 'Complejo El Caribe', barrio: 'Riomar', time: 'Hoy · 9:30 PM',
    type: 'Fútbol 7', level: 'Avanzado', price: 15000, filled: 13, total: 14, tint: '#1F6E4E',
    host: 'Cristian R.',
  },
  {
    id: 'p3', court: 'Arena Prado Norte', barrio: 'Villa Country', time: 'Mañana · 7:00 PM',
    type: 'Fútbol 6', level: 'Principiante', price: 10000, filled: 4, total: 12, tint: '#27795B',
    host: 'Laura G.',
  },
];

const RESERVATIONS = [
  {
    id: 'r1', court: 'Cancha La Arenosa', barrio: 'Alto Prado', when: 'Hoy · 7:00 PM',
    status: 'confirmed', price: 60000, type: 'Fútbol 5', tint: '#2E7D5B',
  },
  {
    id: 'r2', court: 'Canchas Malecón', barrio: 'Centro', when: 'Sáb 7 jun · 9:00 PM',
    status: 'pending', price: 50000, type: 'Fútbol 5', tint: '#2B6CB0',
  },
  {
    id: 'r3', court: 'Complejo El Caribe', barrio: 'Riomar', when: 'Dom 1 jun · 8:00 PM',
    status: 'cancelled', price: 85000, type: 'Fútbol 7', tint: '#1F6E4E',
  },
];

const TOURNAMENTS = [
  { id: 't1', name: 'Copa Carnaval F5', teams: 16, starts: '14 jun', prize: '$1.500.000', tint: '#27795B' },
  { id: 't2', name: 'Liga Nocturna Riomar', teams: 10, starts: '21 jun', prize: '$800.000', tint: '#2B6CB0' },
];

const fmtCOP = n => '$' + n.toLocaleString('es-CO');

Object.assign(window, { COURTS, SLOTS, SLOT_STATE, PICKUP, RESERVATIONS, TOURNAMENTS, fmtCOP });
