Strawberry Quartz Love And Healing Crystal Cube
Strawberry Quartz Love And Healing Crystal Cube
Strawberry Quartz Love And Healing Crystal Cube
Strawberry Quartz Love And Healing Crystal Cube
the benefits of strawberry quartz
Strawberry Quartz Love And Healing Crystal Cube
Strawberry Quartz Love And Healing Crystal Cube
Strawberry Quartz Love And Healing Crystal Cube
Strawberry Quartz Love And Healing Crystal Cube
the benefits of strawberry quartz

Olivenorma Strawberry Quartz Love And Healing Crystal Cube

This Love and Healing Crystal cube from Olivenorma is a beautiful and unique crystal that offers a range of benefits for those who use it. This cube is made from natural strawberry quartz, which is known for its soothing energy and ability to promote healing and love.
Price
$0.00
$11.59
Save  $-11.59
material
Please select a material
Quantity

MADE OF REAL NATURAL CRYSTAL  

💗Strawberry Quartz

Do you know strawberry quartz is a talismanic stone? It can protect you from dangers and pain or mistakes. Holding the strawberry quartz in your left hand will fill your heart with love. It is a sacred stone of joy that emanates happiness and exhilaration in your life. Being an aura cleansing stone, it can help you find luck and prosperity if that’s what you’re searching for.

HEALING PROPERTIES AND BENEFITS  

  • Love and Inner Healing Using Strawberry Quartz. The stone of warmth and compassion, strawberry quartz fills you with empathy and love. It is a stone for attract true love towards you. Keeping a strawberry quartz in your pocket will also attract new friends towards you.
  • Dream Recall, Astral Travel and Projection. It is a beautiful dream recall stone that works when you keep it under the pillow before sleep. If your mind if filled with energy, it can take you to new parts of the universe you’ve never been to. It can also help you attain out-of-body experiences to view your reality from other dimensions.
  • Sleep Crystal Strawberry Quartz. Finding it hard to fall asleep? Keep a strawberry quartz by your bedside and you will have a deep slumber like you’ve never had. The pink strawberry variety of quartz is known to regulate the blood pressure and balance your body as well as hormones.
  • Find Luck and Good Fortune. Another little known effect of keeping strawberry quartz in your wallet or safe is the financial success. Try it yourself today!

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