// Real Minimax Texas locations + brands data
// Source of truth: /public/uploads/Minimax Site List Detail.xlsx
window.MM_STORES = [
  // Greater Austin
  { num: 1, short: 'Austin · FM 969', region: 'Austin', addr: '10412 FM 969, Austin, TX 78724', phone: '(512) 928-0436', hours: 'Mon-Fri 6A-12A · Sat 6A-1A · Sun 7A-12A', open: true, distance: '0.8mi', lat: 30.26318, lng: -97.62134, services: ['Fuel'] },
  { num: 2, short: 'Austin · E Howard', region: 'Austin', addr: '1033 E Howard Ln, Austin, TX 78753', phone: '(512) 251-3327', hours: 'Mon-Fri 6A-12A · Sat 7A-1A · Sun 6A-12A', open: true, distance: '4.2mi', lat: 30.40866, lng: -97.64831, services: ['Fuel','KKC'] },
  { num: 3, short: 'Austin · Dessau Rd', region: 'Austin', addr: '11800 Dessau Rd Suite #100, Austin, TX 78754', phone: '(512) 832-4750', hours: 'Mon-Fri 6A-12A · Sat 6A-1A · Sun 7A-12A', open: true, distance: '5.6mi', lat: 30.37891, lng: -97.65702, services: ['Fuel','KKC'] },
  { num: 4, short: 'Austin · FM 1325', region: 'Austin', addr: '16009 FM 1325 #100, Austin, TX 78728', phone: '(512) 813-9300', hours: 'Mon-Fri 6A-12A · Sat 6A-1A · Sun 7A-12A', open: true, distance: '8.1mi', lat: 30.47142, lng: -97.69048, services: ['Fuel','KKC','Which Wich'] },
  { num: 5, short: 'Manor · Blake Manor Rd', region: 'Austin', addr: '17530 Blake Manor Rd, Manor, TX 78653', phone: '(512) 272-8388', hours: 'Mon-Fri 5A-12A · Sat 5A-1A · Sun 6A-12A', open: true, distance: '11.3mi', lat: 30.31829, lng: -97.53981, services: ['Fuel','KKC'] },
  { num: 6, short: 'Austin · Blue Bluff Rd', region: 'Austin', addr: '4701 Blue Bluff Rd, Austin, TX 78724', phone: '(512) 885-4902', hours: 'Open Daily', open: true, distance: '2.4mi', lat: 30.26249, lng: -97.62068, services: ['Fuel','Flamin','Fiery','KKC'] },
  { num: 7, short: 'Austin · ED Bluestein Blvd', region: 'Austin', addr: '6201 ED Bluestein Blvd, Austin, TX 78723', phone: 'Coming Soon', hours: 'Coming Soon', open: false, comingSoon: true, distance: '—', lat: 30.30002, lng: -97.66182, services: ['Fuel','Wash','Flamin','Fiery','KKC'] },
  { num: 8, short: 'Austin · E Howard Ln', region: 'Austin', addr: '1701 E Howard Lane, Austin, TX 78754', phone: 'Coming Soon', hours: 'Coming Soon', open: false, comingSoon: true, distance: '—', lat: 30.40250, lng: -97.63625, services: ['Fuel','Wash','Flamin','Fiery','KKC'] },
  { num: 9, short: 'Kyle · W RR 150', region: 'Austin', addr: '1805 W RR 150 Bldg A, Kyle, TX 78640', phone: '(512) 646-4035', hours: 'Mon-Fri 6A-12A · Sat 6A-1A · Sun 7A-12A', open: true, distance: '21.2mi', lat: 30.01252, lng: -97.89247, services: ['Fuel','Wash','Flamin','Fiery','KKC'] },
  { num: 10, short: 'Fresno · Trammel-Fresno Rd', region: 'Houston', addr: '2602 Trammel Fresno Rd Unit #100, Fresno, TX 77545', phone: 'Coming Soon', hours: 'Coming Soon', open: false, comingSoon: true, distance: '—', lat: 29.53615, lng: -95.45845, services: ['Fuel','Wash','Flamin','Fiery','KKC'] },
  { num: 11, short: 'Manor · US-290 Travel Center', region: 'Austin', addr: '13320 US-290 Unit 100, Manor, TX 78653', phone: '(512) 704-6926', hours: 'Open 24/7', open: true, distance: '12.0mi', lat: 30.35112, lng: -97.49129, services: ['Fuel','Trucker Fueling','Wash','Flamin','Fiery','Kona','KKC'], travelCenter: true },
];

window.MM_BRANDS_ALL = [
  { id: 'flamin', name: 'Flamin Burger', icon: '🔥', desc: 'Two patties. One inferno.' },
  { id: 'kkc', name: 'Krispy Krunchy Chicken', icon: '🍗', desc: 'Cajun crunch. Texas heat.' },
  { id: 'whichwich', name: 'Which Wich', icon: '🥪', desc: 'Build your perfect sandwich.' },
  { id: 'fiery', name: 'Fiery Grill', icon: '🌶️', desc: 'Smoke + sear. Cooked to char.' },
  { id: 'brewmax', name: 'Brew MAX', icon: '☕', desc: 'Premium coffee, brewed to MAX.' },
  { id: 'maxref', name: 'Maximum Refreshment', icon: '🥤', desc: 'Fountain soda. Maximum fizz.' },
  { id: 'chillmax', name: 'Chill To The MAX', icon: '🧊', desc: 'Frozen drinks. Iced perfection.' },
  { id: 'tapit', name: 'Tap.IT', icon: '🍺', desc: 'Tap & go beverages.' },
  { id: 'fitmax', name: 'Fit MAX', icon: '💪', desc: 'Better-for-you fuel.' },
  { id: 'minisbakery', name: 'minis Bakery', icon: '🥐', desc: 'Fresh-baked, daily.' },
  { id: 'flavormax', name: 'Flavor MAX', icon: '✨', desc: 'House-flavored extracts.' },
];

window.MM_FUEL_PARTNERS = [
  { name: 'Shell', tag: 'Branded premium', color: '#FFD500' },
  { name: 'Valero', tag: 'Branded premium', color: '#005DAA' },
  { name: 'Minimax', tag: 'Unbranded value', color: '#E2231A' },
];
