Production

Come to Studio 5 for all your production with needs controlled lighting multiple rooms along with studio lights and microphones whether having a photoshoot, shooting a podcast for any photography and production needs. Book with Studio 5.

/* © 2026 Silhouette SystemsTM Licensed Shopify Theme Components & Features All rights reserved. */ const Wishlist = { init() { this.items = JSON.parse(localStorage.getItem('wishlist')) || []; this.updateHeaderCount(); this.bindEvents(); }, save() { localStorage.setItem('wishlist', JSON.stringify(this.items)); this.updateHeaderCount(); }, toggle(item) { const exists = this.items.find(i => i.id === item.id); if (exists) { this.items = this.items.filter(i => i.id !== item.id); } else { this.items.push(item); } this.save(); return !exists; }, updateHeaderCount() { const el = document.querySelector('.wishlist-count'); if (!el) return; el.textContent = this.items.length; el.style.display = this.items.length ? 'block' : 'none'; }, bindEvents() { document.addEventListener('click', e => { const btn = e.target.closest('.wishlist-btn'); if (!btn) return; e.preventDefault(); const active = this.toggle({ id: btn.dataset.productId, title: btn.dataset.productTitle, url: btn.dataset.productUrl, image: btn.dataset.productImage, price: btn.dataset.productPrice }); btn.classList.toggle('active', active); }); } }; document.addEventListener('DOMContentLoaded', () => Wishlist.init());