Olivenorma Labradorite Witchy Sanative Moon Crystal Crown
Olivenorma Labradorite Witchy Sanative Moon Crystal Crown
Labradorite Witchy Sanative Moon Crystal Crown
Labradorite Witchy Sanative Moon Crystal Crown
meanings of labradorite
Olivenorma Labradorite Witchy Sanative Moon Crystal Crown
Olivenorma Labradorite Witchy Sanative Moon Crystal Crown
Labradorite Witchy Sanative Moon Crystal Crown
Labradorite Witchy Sanative Moon Crystal Crown
meanings of labradorite

Olivenorma Labradorite Witchy Sanative Moon Crystal Crown

Our Labradorite Witchy Sanative Moon Crystal Crown is the perfect addition to your wardrobe. This crown is adorned with shimmering labradorite crystals that reflect shades of blue and green under different lighting.
Price
$69.54
$46.59
Save  $22.95
material
Please select a material
Quantity
Elevate your mystical aura with our enchanting Labradorite Witchy Sanative Moon Crystal Crown. Crafted with intricate detail, this crown emanates ethereal beauty and divine energy. Labradorite's shimmering hues awaken your inner magic, while the moon symbolizes intuitive healing. Wear this crown and embrace your divine essence with grace and allure.
 
Goddess of the Night inspired moon crown is the perfect accessory to adorn witchy goddesses! We choose labradroite with obsidian trim for this magic headpiece which brings goddesses a strong power. It's a remarkable piece for festivals, birthdays, weddings, cosplay, manifestations and more! Crystals are placed strategically for your comfort. This piece is adjustable to your head size for a comfort fit.
 
🤎Labradorite

Connected to the Throat Chakra – the tool of communication, and the Third-Eye Chakra – that which connects us to the spiritual world, Labradorite toes that line between what we need here on earth and what can help us to leap higher. The Stone of Transformation and the Stone of Courage, if those two things call to you then Labradorite may be the healing stone you have been waiting for. Far from just a pretty face, Labradorite with its light shot color schemes seems to whisper powerful healing.  Labradorite clears out all that junk, revitalizing the spirit with a bright burst of energy and keeps you ticking rather than being weighed down by events of the world and personal responsibilities. If you ever needed a hint of motivation to rise to the challenge, Labradorite is ever ready to be your personal mascot.

BENEFITS OF WEARING CRYSTAL JEWELRY 

  • Support Renewing Your Vitality: Crystals can help to clear away “energetic debris” and negative energy, and also balance your subtle energies, and positively affect your physical health and mental well-being in pretty phenomenal ways. 
  • Balance Chakra: Healing crystal enhances your physical, emotional and mental health by affecting your chakras. Some “high vibrational” crystals also can open your awareness to higher levels of consciousness
  • Gorgeous Accessories: Every crystal and gemstone is a unique, beautiful and magical work of art by Nature. No matter what outfit you’re wearing, there is a crystal that will add the perfect finishing touch, and they never go out of style.
  • It’s meaningful: Jewelry made of different crystal materials can bring you different curative effects and surprises. If you are attracted to the color of a crystal, you are in desperate need of the healing and purification of this crystal.

SPECIFICATIONS 

  • Name: Olivenorma Labradorite Witchy Sanative Moon Crystal Crown
  • Category: Crystal Crown
  • Origin: India
  • Genuine gemstones: Labradorite
  • Size: 7.09"*7.09"*6.30"(18*18*16cm)
  • Each Set weight: Approx 100g 

CARING FOR YOUR GEMSTONE JEWELRY

  • Don't crash hard objects or fall off & Keep it away from chemicals,cosmetics,wine,acid and alkali.
  • Clean gemstone jewelry and wipe it with a soft cloth to remove any dirt. Then, store your gemstone jewelry in a soft cloth pouch or jewelry case so it does not touch other pieces in your collection.
  • Keep it from high temperature and direct sunlight, which may cause damage to gemstones.
  • Remove any gemstone jewelry before engaging in any strenuous physical activity, such as exercise or sports.

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.