✦ Verified product
🧷 PIN BROOCH: FIRE
CAD 16.00
Mean Beadz
Verified independent store
→
body { text-align: center; } .price-per-item__container { display: flex; justify-content: center; align-items: center; } video { width: 100%; height: auto; cursor: pointer; } .vide
o-container { position: relative; display: inline-block; } .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(0, 0, 0, 0.5); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; } .play-btn:before { content: 'â–¶'; font-size: 20px; color: white; } .video-container:hover .play-btn { display: flex; } HANDCRAFTED Precision-crafted, these tough 10x11 beaded safety pins combine vibrant Czech 6/0 beads with sturdy pins. Each piece embodies one-bead-at-a-time craftsmanship and is designed to bring a touch of artistry to jackets, bags, or anything else. const video = document.getElementById('beadVideo'); const playBtn = document.getElementById('playBtn'); video.addEventListener('click', function() { if (video.paused) { video.play(); playBtn.style.display = 'none'; // Hide button when playing } else { video.pause(); playBtn.style.display = 'flex'; // Show button when paused } }); video.addEventListener('play', function() { playBtn.style.display = 'none'; // Ensure play button is hidden when playing }); video.addEventListener('pause', function() { playBtn.style.display = 'flex'; // Show play button when paused });