Tiger Eye Protection Crystal Cube
Olivenorma Tiger Eye Protection Crystal Cube
Tiger Eye Protection Crystal Cube
Tiger Eye Protection Crystal Cube
the benefits of tiger eye
Tiger Eye Protection Crystal Cube
Olivenorma Tiger Eye Protection Crystal Cube
Tiger Eye Protection Crystal Cube
Tiger Eye Protection Crystal Cube
the benefits of tiger eye

Olivenorma Tiger Eye Protection Crystal Cube

Introducing the Olivenorma Tiger Eye Protection Crystal Cube - a powerful tool for enhancing personal protection and grounding energy. The cube is handcrafted from premium tiger eye stone, known for its ability to protect and strengthen the mind and body. Carry this cube with you for a boost of confidence and protection throughout the day.
Price
$0.00
$11.59
Save  $-11.59
material
Please select a material
Quantity

MADE OF REAL NATURAL CRYSTAL  

🤎Tiger Eye

Tigers Eye Tumbled Stones provide protection, enhance integrity, and inspire prosperity and abundance. These polished tumbled stones give you the power to look at any situation in a positive light. They inspire mental clarity, help you achieve a path of truth, and encourage optimisim and stability of the mind and soul. Since they are solar stones, Tigers Eye Tumbled Stones resonate with the Solar Plexus Chakra and stimulate the Sacral and Root Chakras.

HEALING PROPERTIES AND BENEFITS  

  • Protection From the Evil Eye. Tiger Eye Gemstone has been the guardian of the wearer. The stone keeps the ill wishes of enemies and jealousy from the close ones away.
  • Better Stability. Tiger Eye gemstone is known to bring stability to one’s head and soul. A cooler mind, clear decision-making, and staying grounded give the wearer better stability in different aspects of life.
  • Healing. Tiger Eye is a great companion to heal chronic pain, detoxify the body and improve the strength of the spine.
  • Overcoming Addiction. Addiction is usually a sign of instability. If you are trying to quit something addictive and falling, again and again, Tiger Eye Stone can be the best healing stone for you.
  • Monetary Gain. This protection stone might not be a key to gaining all the wealth in the world, but it surely can help you find the best possible way to do it.

HOW TO USE CRYSTAL CUBE

  • For Meditationg: If you need some grounding vibes in your life, a cube-shaped crystal might be the perfect gemstone companion for you. Meditating with cubic crystals in your hands can help you connect to the energy of the Earth.
  • Help Manifest: The cube can collect a lot of energy and is very stable. Like the computational nature of their shape, these crystals are easy to program and are known to preserve intent well.
  • Balancing Chakras: The cube shape is associated with the root chakra. Meditating with cubic crystals will help to ground your energy and reconnect you with the powerful energy of the Earth.
  • Home Decor: By placing cubic formations in each of the four corners of a room, you will seal, protect, and ground the energy of your space

SPECIFICATIONS

  • Category: Crystal Cube
  • Origin: India
  • Genuine gemstones: Tiger Eye
  • Each Stone Size: Approx 0.78''(2cm)
  • Each Set Weighs: Approx 100g 
  • Set of 5-6 Tiger Eye Cube
  • Each crystal is a unique creation of our mother nature. It is normal to find natural form of crack lines, holes, inclusions, and other minerals inside or on

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.