// Alba Cars — demo inventory data // IMPORTANT: per design brief, the live build pulls inventory from a feed. // These are illustrative records using real captured photos + clearly-labelled // DEMO prices (AED). DO NOT treat as authoritative stock. const V = (id, year, make, model, variant, body, mileage, ext, intC, engine, power, trans, drive, price, tags) => ({ id, year, make, model, variant, body, mileage, ext, intC, engine, power, trans, drive, price, tags: tags || [], photo: `media/inv/${id}.webp`, stockId: `AC-${(Math.abs(hashCode(id)) % 9000 + 1000).toString()}`, }); function hashCode(s){let h=0;for(let i=0;i