const COLORS_DATA = [
  { name: 'Crimson', dry: '#8B1A3A', wet: '#D63055', source: 'Hibiscus + lemon', dryDesc: 'Dark, almost burgundy', wetDesc: 'Vivid red: hibiscus at full strength' },
  { name: 'Golden', dry: '#C47C15', wet: '#F2C000', source: 'Turmeric', dryDesc: 'Deep orange, almost rust', wetDesc: 'Vivid yellow: turmeric at full brightness' },
  { name: 'Indigo', dry: '#5A7060', wet: '#6699CC', source: 'Hibiscus + baking soda', dryDesc: 'Grey-green. Almost mossy.', wetDesc: 'Blue. Every single time.' },
  { name: 'Coral', dry: '#B84020', wet: '#E8753A', source: 'Achiote seeds', dryDesc: 'Deep red-orange, intense', wetDesc: 'Warm orange: achiote clean and bright' },
  { name: 'Jungle', dry: '#2E5230', wet: '#5A9A50', source: 'Spinach extract', dryDesc: 'Dark forest green, murky', wetDesc: 'Fresh, clear medium green' },
  { name: 'Twilight', dry: '#6B1A35', wet: '#9B4F96', source: 'Beetroot', dryDesc: 'Deep burgundy, almost maroon', wetDesc: 'Purple-magenta: beetroot blooming' },
];

const INGREDIENTS_DATA = [
  { name: 'Jamaica hibiscus', colorProduced: 'Crimson + Indigo', source: 'Local markets, Puebla', color: '#D63055' },
  { name: 'Turmeric (cúrcuma)', colorProduced: 'Golden', source: 'Local markets, Puebla', color: '#F2C000' },
  { name: 'Achiote seeds', colorProduced: 'Coral', source: 'Local markets, Puebla', color: '#E8753A' },
  { name: 'Spinach extract', colorProduced: 'Jungle', source: 'Local markets, Puebla', color: '#5A9A50' },
  { name: 'Beetroot (betabel)', colorProduced: 'Twilight', source: 'Local markets, Puebla', color: '#9B4F96' },
  { name: 'Gum arabic', colorProduced: 'Binder (all colors)', source: 'Sourced sustainably', color: '#D6A13D' },
];

const TESTIMONIALS_DATA = [
  { quote: 'I have never seen a color that looks so wrong in the cap and so right on paper. The Indigo alone is worth it.', author: 'Valentina M.', context: 'Illustrator, Puebla' },
  { quote: 'My kids use it. I know every ingredient on the label. That is everything.', author: 'Carlos R.', context: 'Parent and hobbyist' },
  { quote: 'It is not just paint. It feels like a story about this city every time I use it.', author: 'Andrea L.', context: 'Art student, UPAEP' },
];

const FAQ_DATA = [
  { q: 'Do the colors fade over time?', a: 'Yes, to some degree. Botanical pigments are inherently less lightfast than synthetic ones. Xochiatl colors are designed for creative use, journaling, and practice, not for archival fine art that will hang in direct sunlight for decades. That is the honest answer.' },
  { q: 'Are they safe for children?', a: 'Every ingredient in Xochiatl is food-grade and sourced from the same markets where we buy our groceries. That said, as with any art supply, supervised use for young children is recommended.' },
  { q: 'How long does each godet last?', a: 'Approximately 15 to 20 full washes per godet, depending on how heavily you paint. One godet is enough for several sessions of casual watercolor practice.' },
  { q: 'How do I order?', a: 'Through WhatsApp. Send us your color selection, format (Starter or Full), and delivery address in Puebla. We respond within 24 hours and deliver or arrange pickup. No platform fees, no waiting.' },
  { q: 'Can I choose my own colors for the Starter Palette?', a: 'Yes. The Starter Palette is fully customizable: choose any 3 of the 6 colors. Use the builder above to compose your palette before ordering.' },
  { q: 'Where are you located?', a: 'We are based in Puebla de Zaragoza, México. We deliver within the city and ship nationally upon request.' },
];

window.COLORS_DATA = COLORS_DATA;
window.INGREDIENTS_DATA = INGREDIENTS_DATA;
window.TESTIMONIALS_DATA = TESTIMONIALS_DATA;
window.FAQ_DATA = FAQ_DATA;
