// data.js — Demo catalog for a Shopaholic Approved–style collectibles store // Static-only (no backend). Replace with your real inventory feed later. window.SHOP_COLLECTIONS = [ { id: 'labubu', label: 'Labubu' }, { id: 'blind-box', label: 'Blind Boxes' }, { id: 'plush', label: 'Plush' }, { id: 'keychains', label: 'Keychains' }, { id: 'stationery', label: 'Stationery' }, { id: 'accessories', label: 'Accessories' }, { id: 'preorder', label: 'Preorders' }, { id: 'sale', label: 'Sale' } ]; window.SHOP_COLLECTION_BY_ID = window.SHOP_COLLECTIONS.reduce((acc, c) => { acc[c.id] = c; return acc; }, {}); window.collectionLabel = function collectionLabel(id) { const key = String(id || '').trim(); return (window.SHOP_COLLECTION_BY_ID[key] ? window.SHOP_COLLECTION_BY_ID[key].label : (key || 'Other')); }; // ---------------------------- // Products (prices in AUD cents) // ---------------------------- // Images are placeholders. Swap to your own product photos. window.SHOP_PRODUCTS = [ { id: 'labubu-forest-guardian', title: 'Labubu: Forest Guardian Figure', collections: ['labubu'], price: 12900, compareAt: 14900, rating: 4.9, reviews: 214, stock: 9, image: 'https://static.photos/animals/640x640/101', description: 'Premium display figure with detailed paintwork. Perfect for shelves, desks, and collectors.' }, { id: 'labubu-night-market', title: 'Labubu: Night Market Vinyl', collections: ['labubu','preorder'], price: 11900, rating: 4.8, reviews: 88, stock: 25, image: 'https://static.photos/animals/640x640/102', description: 'Preorder drop. Cute, glossy vinyl with a soft pastel palette.' }, { id: 'blindbox-mystery-friends', title: 'Mystery Friends Blind Box (Series 1)', collections: ['blind-box'], price: 2490, compareAt: 2990, rating: 4.6, reviews: 451, stock: 120, image: 'https://static.photos/animals/640x640/103', description: 'Randomized blind box. Collect the full set—dupes happen, that’s part of the fun.' }, { id: 'plush-cloud-bunny', title: 'Cloud Bunny Plush (25cm)', collections: ['plush'], price: 3490, rating: 4.7, reviews: 132, stock: 34, image: 'https://static.photos/animals/640x640/104', description: 'Super soft plush with a squishy fill. Giftable and display-friendly.' }, { id: 'keychain-star-charm', title: 'Star Charm Keychain (Mint)', collections: ['keychains','accessories'], price: 1490, rating: 4.5, reviews: 59, stock: 60, image: 'https://static.photos/animals/640x640/105', description: 'A cute everyday charm for bags, keys, and backpacks.' }, { id: 'stationery-sticker-pack', title: 'Pastel Sticker Pack (50pcs)', collections: ['stationery','sale'], price: 990, compareAt: 1590, rating: 4.4, reviews: 77, stock: 80, image: 'https://static.photos/animals/640x640/106', description: 'Perfect for journals, planners, and decorating your workspace.' }, { id: 'accessory-display-case', title: 'Acrylic Display Case (Mini)', collections: ['accessories'], price: 3990, rating: 4.6, reviews: 31, stock: 18, image: 'https://static.photos/animals/640x640/107', description: 'Keep your favorites dust-free. Fits small figures and keychains.' }, { id: 'preorder-sakura-shop', title: 'Sakura Street Shop Diorama (Preorder)', collections: ['preorder','accessories'], price: 6990, rating: 4.8, reviews: 12, stock: 40, image: 'https://static.photos/animals/640x640/108', description: 'Preorder item. A cozy little display scene for your shelf collection.' }, { id: 'blindbox-mystery-friends-s2', title: 'Mystery Friends Blind Box (Series 2)', collections: ['blind-box','preorder'], price: 2690, rating: 4.7, reviews: 24, stock: 75, image: 'https://static.photos/animals/640x640/109', description: 'Preorder drop for Series 2—new characters, same chaos.' }, { id: 'plush-pocket-cat', title: 'Pocket Cat Plush Keychain', collections: ['plush','keychains'], price: 2190, rating: 4.6, reviews: 41, stock: 0, image: 'https://static.photos/animals/640x640/110', description: 'Tiny plush, big personality. (Currently sold out.)' }, { id: 'accessory-phone-grip', title: 'Cute Phone Grip (Heart Leaf)', collections: ['accessories'], price: 1690, rating: 4.3, reviews: 19, stock: 22, image: 'https://static.photos/animals/640x640/111', description: 'Comfortable grip + adorable look. Matches the site vibe.' }, { id: 'stationery-mini-notebook', title: 'Mini Notebook (Pastel Set)', collections: ['stationery'], price: 1290, rating: 4.5, reviews: 27, stock: 48, image: 'https://static.photos/animals/640x640/112', description: 'Little notebooks for lists, doodles, and tiny plans.' } ]; window.SHOP_PRODUCT_BY_ID = window.SHOP_PRODUCTS.reduce((acc, p) => { acc[p.id] = p; return acc; }, {});