Collection: Hakko Toys

Hakko Toys understands how important toys are to children, both for their enjoyment and development. Their no-nonsense brand philosophy is, “Delivering perfect products to customers, bringing more fun to kids”. Hakko Toys enjoys and is proud of having a very experienced R&D team. Every member of their design team has decades of experience in the toy industry, and are well informed around Children's education. Each year, Hakko Toys launches many new products and are loved by consumers all around the world.

7 products
  • Biological Chain Toy( Life Cycle) - Hakko Toys
    Regular price
    R 215.00
    Sale price
    R 215.00
  • Button Threading - Hakko Toys
    Regular price
    R 165.00
    Sale price
    R 165.00
  • Busy Cube Montessori Intellectual Toy
    Regular price
    R 199.00
    Sale price
    R 199.00
  • Sports Figures - Hakko Toys
    Regular price
    R 140.00
    Sale price
    R 140.00
  • Cognitive Construction Vehicle Chunky Puzzle - Hakko Toys
    Regular price
    R 120.00
    Sale price
    R 120.00
  • Cognitive Tool Chunky Puzzle - Hakko Toys
    Regular price
    R 120.00
    Sale price
    R 120.00
  • Kitchen Activity Board - Hakko Toys
    Regular price
    R 688.00
    Sale price
    R 688.00
const button = event.target.closest('.custom-product-add-to-cart'); if (!button) return; event.preventDefault(); const variantId = button.dataset.variantId; if (!variantId) { console.error('No variant ID found.'); return; } if (button.disabled) return; const originalText = button.textContent; button.disabled = true; button.textContent = 'Adding...'; fetch(window.Shopify.routes.root + 'cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ items: [ { id: Number(variantId), quantity: 1 } ] }) }) .then(function(response) { return response.json().then(function(data) { if (!response.ok) { throw new Error( data.description || 'Could not add product to cart.' ); } return data; }); }) .then(function(data) { button.textContent = 'Added ✓'; return fetch(window.Shopify.routes.root + 'cart.js'); }) .then(function(response) { return response.json(); }) .then(function(cart) { const cartCount = document.querySelector('[data-cart-count]') || document.querySelector('.cart-count-bubble'); if (cartCount) { cartCount.textContent = cart.item_count; } const cartDrawer = document.querySelector('cart-drawer'); if (cartDrawer && typeof cartDrawer.open === 'function') { cartDrawer.open(); } setTimeout(function() { button.disabled = false; button.textContent = originalText; }, 1500); }) .catch(function(error) { console.error('Add to cart error:', error); button.disabled = false; button.textContent = 'Error - try again'; setTimeout(function() { button.textContent = originalText; }, 2000); }); });