Blue Sandstone Protection Crystal Cube
Blue Sandstone Protection Crystal Cube
Blue Sandstone Protection Crystal Cube
Blue Sandstone Protection Crystal Cube
the benefits of blue sandstone
Blue Sandstone Protection Crystal Cube
Blue Sandstone Protection Crystal Cube
Blue Sandstone Protection Crystal Cube
Blue Sandstone Protection Crystal Cube
the benefits of blue sandstone

Olivenorma Blue Sandstone Protection Crystal Cube

The Protection Cube from Olivenorma is a stunning crystal that is perfect for enhancing protection and promoting overall well-being. This crystal cube is made from high-quality blue sandstone, which is known for its ability to provide a sense of calmness and inner peace.
Price
$0.00
$12.59
Save  $-12.59
material
Please select a material
Quantity

MADE OF REAL NATURAL CRYSTAL  

💙Blue Sandstone

Blue Sandstone (also known as Blue Goldstone) symbolizes enterprise, success, victory, and glory, which enhance one's leadership and entrepreneurial skills. It is an excellent stone to meditate with before giving a speech or starting a new project.

HEALING PROPERTIES AND BENEFITS  

  • Blue Sandstone has the meaning and properties of attracting good luck energy. It is a gemstone filled with bright energy of light. It changes the "negative flow" to the "positive flow". It will give you a chance to get out of adversity.
  • Blue Sandstone has the meaning and properties of clearing thoughts. It is a gemstone to neatly reset negative unnecessary thoughts such as "anxiety", "fear", "sadness", and "anger". It is useful when reorganizing thoughts from scratch is necessary. It will lead a simple and clear answer.
  • Blue Sandstone is a gemstone that has the meaning and properties of improving money luck. It holds the power to lead the business of the owner to success. It is also recommended when the owner aims to expand assets. It is popular as an amulet to lead to life prosperity.
  • Blue Sandstone is an artificially created gemstone. It is created by putting metal in artificial glass. If you ask a specialized institution for appraisal, you will be told it is "glass". Despite of being artificial, it is very popular as an amulet. It will be used with various wishes. It is also called "Blue Goldstone".

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: Blue Sandstone
  • Each Stone Size: Approx 0.78''(2cm)
  • Each Set Weighs: Approx 100g 
  • Set of 5-6 Blue Sandstone 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.