// ========== MOCK DATA ==========

var CATEGORIES = [
  { id: 'all', label: 'All', tone: 'indigo' },
  { id: 'hair', label: 'Hair', tone: 'coral' },
  { id: 'nails', label: 'Nails', tone: 'lav' },
  { id: 'makeup', label: 'Makeup', tone: 'blush' },
  { id: 'lashes', label: 'Lashes', tone: 'rose' },
  { id: 'skincare', label: 'Skincare', tone: 'mint' },
  { id: 'barbering', label: 'Barbering', tone: 'sand' },
  { id: 'braids', label: 'Braids', tone: 'peach' },
];

var PROVIDERS = [
  {
    id: 'p1', username: 'studiojasmine', name: 'Jasmine M.', verified: true,
    rating: 4.94, reviews: 287, category: 'hair', tone: 'coral',
    tagline: 'Silk press specialist', area: 'New Kingston, JM',
    distance: '1.2 km', priceMin: 80, priceMax: 220, pos: {x: 62, y: 42},
    services: ['Silk Press', 'Deep Conditioning', 'Blowout'],
    joinedYear: 2023,
  },
  {
    id: 'p2', username: 'montegonails', name: 'Danielle O.', verified: true,
    rating: 4.88, reviews: 412, category: 'nails', tone: 'lav',
    tagline: 'Bio gel & chrome art', area: 'Montego Bay, JM',
    distance: '2.4 km', priceMin: 45, priceMax: 120, pos: {x: 28, y: 32},
    services: ['Bio Gel', 'Chrome Art', 'Extensions'],
    joinedYear: 2022,
  },
  {
    id: 'p3', username: 'trinibridal', name: 'Alana K.', verified: true,
    rating: 5.0, reviews: 96, category: 'makeup', tone: 'blush',
    tagline: 'Bridal + editorial', area: 'Port of Spain, TT',
    distance: '3.1 km', priceMin: 150, priceMax: 450, pos: {x: 74, y: 60},
    services: ['Bridal', 'Editorial', 'Airbrush'],
    joinedYear: 2024,
  },
  {
    id: 'p4', username: 'barbershopkgn', name: 'Marcus R.', verified: false,
    rating: 4.79, reviews: 531, category: 'barbering', tone: 'sand',
    tagline: 'Classic cuts, tight fades', area: 'Half Way Tree, JM',
    distance: '0.8 km', priceMin: 25, priceMax: 60, pos: {x: 48, y: 54},
    services: ['Fade', 'Line-up', 'Hot Towel'],
    joinedYear: 2021,
  },
  {
    id: 'p5', username: 'lashcaribbean', name: 'Nia S.', verified: true,
    rating: 4.92, reviews: 204, category: 'lashes', tone: 'rose',
    tagline: 'Volume & hybrid lashes', area: 'Bridgetown, BB',
    distance: '4.5 km', priceMin: 70, priceMax: 180, pos: {x: 18, y: 68},
    services: ['Classic', 'Hybrid', 'Mega Volume'],
    joinedYear: 2023,
  },
  {
    id: 'p6', username: 'braidsbyrena', name: 'Rena W.', verified: true,
    rating: 4.85, reviews: 327, category: 'braids', tone: 'peach',
    tagline: 'Knotless & box braids', area: 'Spanish Town, JM',
    distance: '5.7 km', priceMin: 90, priceMax: 280, pos: {x: 82, y: 26},
    services: ['Knotless', 'Box Braids', 'Cornrows'],
    joinedYear: 2022,
  },
  {
    id: 'p7', username: 'glowskinstudio', name: 'Camille T.', verified: true,
    rating: 4.97, reviews: 178, category: 'skincare', tone: 'mint',
    tagline: 'Facials + dermaplaning', area: 'Ocho Rios, JM',
    distance: '6.1 km', priceMin: 110, priceMax: 260, pos: {x: 40, y: 78},
    services: ['Signature Facial', 'Dermaplane', 'Peel'],
    joinedYear: 2024,
  },
  {
    id: 'p8', username: 'makeupbykeisha', name: 'Keisha B.', verified: false,
    rating: 4.71, reviews: 89, category: 'makeup', tone: 'rose',
    tagline: 'Glam & natural glow', area: 'Nassau, BS',
    distance: '7.3 km', priceMin: 95, priceMax: 220, pos: {x: 56, y: 20},
    services: ['Glam', 'Natural', 'Special FX'],
    joinedYear: 2023,
  },
];

var BOOKINGS = [
  {
    id: 'b1', providerId: 'p1', providerName: 'Jasmine M.', tone: 'coral',
    service: 'Silk Press + Trim', date: 'APR', day: 28, year: 2026,
    time: '2:30 PM', duration: '2h 30m', price: 180, status: 'upcoming',
    location: 'Studio Jasmine, New Kingston',
  },
  {
    id: 'b2', providerId: 'p3', providerName: 'Alana K.', tone: 'blush',
    service: 'Bridal Trial', date: 'MAY', day: 3, year: 2026,
    time: '10:00 AM', duration: '3h', price: 320, status: 'upcoming',
    location: 'Client Home Visit — Westmoorings',
  },
  {
    id: 'b3', providerId: 'p5', providerName: 'Nia S.', tone: 'rose',
    service: 'Hybrid Lash Full Set', date: 'APR', day: 14, year: 2026,
    time: '11:30 AM', duration: '2h', price: 140, status: 'completed',
    location: 'Lash Caribbean, Bridgetown',
  },
  {
    id: 'b4', providerId: 'p2', providerName: 'Danielle O.', tone: 'lav',
    service: 'Bio Gel Full Set + Chrome', date: 'APR', day: 5, year: 2026,
    time: '4:00 PM', duration: '1h 45m', price: 95, status: 'completed',
    location: 'Montego Nails Studio',
  },
  {
    id: 'b5', providerId: 'p4', providerName: 'Marcus R.', tone: 'sand',
    service: 'Fade + Line-up', date: 'MAR', day: 22, year: 2026,
    time: '1:00 PM', duration: '45m', price: 45, status: 'cancelled',
    location: 'BarberShop KGN',
  },
];

var CONVERSATIONS = [
  { id: 'c1', providerId: 'p1', name: 'Jasmine M.', tone: 'coral', online: true, unread: 2,
    last: "See you Tuesday! I'll have everything prepped.", time: '11:42 AM' },
  { id: 'c2', providerId: 'p3', name: 'Alana K.', tone: 'blush', online: true, unread: 0,
    last: "Sent over the mood board ✦", time: '9:18 AM' },
  { id: 'c3', providerId: 'p5', name: 'Nia S.', tone: 'rose', online: false, unread: 1,
    last: "Refills are 50% off this week", time: 'Yesterday' },
  { id: 'c4', providerId: 'p7', name: 'Camille T.', tone: 'mint', online: false, unread: 0,
    last: "You: Thanks so much, skin feels amazing", time: 'Yesterday' },
  { id: 'c5', providerId: 'p2', name: 'Danielle O.', tone: 'lav', online: true, unread: 0,
    last: "Booking confirmed for Saturday", time: 'Mon' },
  { id: 'c6', providerId: 'p6', name: 'Rena W.', tone: 'peach', online: false, unread: 0,
    last: "Any updates on the color?", time: 'Apr 17' },
];

var MESSAGES_P1 = [
  { type: 'day', text: 'Yesterday' },
  { dir: 'in', text: "Hey Jasmine! Got the deposit through. Just confirming we're still on for Tuesday at 2:30?", time: '10:14 AM' },
  { dir: 'out', text: "Yes! Payment received, you're all set ✓", time: '10:32 AM' },
  { dir: 'out', text: "Here's the shade I was thinking based on your last visit. Let me know if you want something different.", time: '10:33 AM' },
  { dir: 'out', img: { tone: 'coral', label: 'shade reference' }, time: '10:33 AM' },
  { dir: 'in', text: "Love it. A touch warmer would be perfect actually", time: '10:45 AM' },
  { type: 'day', text: 'Today' },
  { dir: 'out', text: "Done. I'll have the honey tone ready. Should take about 2.5 hrs total.", time: '11:40 AM' },
  { dir: 'out', text: "See you Tuesday! I'll have everything prepped.", time: '11:42 AM' },
  { typing: true },
];

var PRODUCTS = [
  { id: 'pr1', name: 'Hibiscus Hair Oil — 120ml', seller: 'Island Apothecary', tone: 'coral',
    price: 28, compare: 38, rating: 4.9, reviews: 142, sale: '-26%', tag: 'bestseller' },
  { id: 'pr2', name: 'Sea Moss Clay Mask', seller: 'Ocean Ritual', tone: 'teal',
    price: 34, rating: 4.8, reviews: 88, tag: 'new' },
  { id: 'pr3', name: 'Vol-Up Lash Serum', seller: 'Lash Caribbean', tone: 'rose',
    price: 42, compare: 55, rating: 4.95, reviews: 211, sale: '-24%' },
  { id: 'pr4', name: 'Pressed Rose Gold Eyeshadow Trio', seller: 'Trini Bridal', tone: 'blush',
    price: 58, rating: 4.85, reviews: 67 },
  { id: 'pr5', name: 'Bamboo Boar Bristle Brush', seller: 'Studio Jasmine', tone: 'sand',
    price: 32, rating: 4.7, reviews: 54 },
  { id: 'pr6', name: 'Reef-Safe Vitamin C Serum 30ml', seller: 'Glow Skin Studio', tone: 'mint',
    price: 48, compare: 62, rating: 4.92, reviews: 173, sale: '-22%' },
  { id: 'pr7', name: 'Braiding Jam Edge Control', seller: 'Braids by Rena', tone: 'peach',
    price: 18, rating: 4.88, reviews: 305, tag: 'bestseller' },
  { id: 'pr8', name: 'Hibiscus Lip Tint — Ruby', seller: 'Island Apothecary', tone: 'rose',
    price: 22, rating: 4.82, reviews: 128 },
  { id: 'pr9', name: 'Chrome Powder Set of 6', seller: 'Montego Nails', tone: 'lav',
    price: 38, compare: 48, rating: 4.91, reviews: 94, sale: '-21%' },
  { id: 'pr10', name: 'Coconut & Castor Scalp Butter', seller: 'Island Apothecary', tone: 'sand',
    price: 26, rating: 4.79, reviews: 212, tag: 'bestseller' },
  { id: 'pr11', name: 'Silk Bonnet — Hibiscus Print', seller: 'Ocean Ritual', tone: 'coral',
    price: 32, rating: 4.94, reviews: 148 },
  { id: 'pr12', name: 'Contour Duo — Deep Warm', seller: 'Trini Bridal', tone: 'peach',
    price: 44, rating: 4.86, reviews: 71 },
];

var REVIEWS_P1 = [
  { n: 'Chloé A.', tone: 'blush', stars: 5, date: 'Apr 14',
    body: "Jasmine is a magician. My hair hasn't had this much shine in years. The silk press lasted a solid 10 days even with the humidity in Kingston. Already rebooked." },
  { n: 'Dominique B.', tone: 'mint', stars: 5, date: 'Apr 8',
    body: "Finally found my stylist. She listens, she's fast, and she gets tone right on the first pass. The studio is immaculate too." },
  { n: 'Safiya M.', tone: 'lav', stars: 4, date: 'Mar 28',
    body: "Great work overall. Only note is the appointment ran 30 min over. Wish the window had been more flexible. Results were beautiful though." },
];

const WIZARD_STEPS = [
  { n: '01', label: 'Business Info', sub: 'Name, bio, category' },
  { n: '02', label: 'Services & Pricing', sub: 'What you offer' },
  { n: '03', label: 'Portfolio', sub: 'Upload 6–12 photos' },
  { n: '04', label: 'Location', sub: 'Where you work' },
  { n: '05', label: 'Availability', sub: 'Weekly schedule' },
  { n: '06', label: 'Banking', sub: 'Get paid out' },
  { n: '07', label: 'Review & Submit', sub: 'Go live' },
];

const SERVICE_ICONS = {
  hair: { color: '#ff6b8a', glyph: '✦' },
  nails: { color: '#8b5cf6', glyph: '◈' },
  makeup: { color: '#ec4899', glyph: '❋' },
  lashes: { color: '#c25bd6', glyph: '✻' },
  skincare: { color: '#14b8a6', glyph: '◉' },
  barbering: { color: '#3b82f6', glyph: '▲' },
  braids: { color: '#f97316', glyph: '❖' },
};

Object.assign(window, {
  CATEGORIES, PROVIDERS, BOOKINGS, CONVERSATIONS, MESSAGES_P1,
  PRODUCTS, REVIEWS_P1, WIZARD_STEPS, SERVICE_ICONS,
});
