Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace
Sterling Silver Suffering Goddess Pendant Necklace

Sterling Silver Suffering Goddess Pendant Necklace

Price
$47.90
$23.95
Material
Please select a material
Quantity
EXQUISITE PACKAGING (Free Gift Box)

SUFFERING GODDESS SYMBOL

The Goddess of Suffering symbolizes the ability to endure and overcome hardships. She represents the strength and resilience needed to face and navigate through challenging circumstances.

The pendant serves as a reminder of the Goddess of Suffering, symbolizing resilience and inner strength. It can inspire you to endure hardships and challenges with courage, determination, and a positive mindset.

SPECIFICATIONS

  • Metal Type: 925 Sterling Silver
  • Style: Vintage
  • Chain Length: 600 mm (23.6 in)
  • Pendant Size: 32*15 mm (1.26*0.59 in)
  • Pendant Weight: 16.9 g

MADE WITH 925 STERLING SILVER

All of our pieces are handmade. It is the quality of our craftsmanship and the unique designs that help us to stand out from the crowd. We are proud to be different.

✅Payments Via PayPal, Debit and CreditCard.

Add to cart first, and Check out, then select Shipping method and Payment method.

✅If you checkout with a Debit / Credit Card, just enter your * Card Number, * Expiration Date, and * Secure Code.

1. Where is it produced? Where is the shipment from?

It's made in Germany. We have warehouses in Germany, Australia, the United States, the United Kingdom, and China. We will deliver the goods from the warehouse closest to you.

2. How long is shipping?

You will receive an email with your tracking # and your order will arrive in 10-15 working days.

3. Is this website safe?

Yes! Our site is SSL certified and 100% secure. We have securely processed over 150,000 orders and have an extremely high satisfaction rating. 

4. What If I am not happy with my purchase?

We offer a 100% satisfaction guarantee. We always do whatever it takes to make sure you are happy.

HOW TO PAY

With PayPal, you can send payment quickly and securely online.

Through PayPal, you can pay with a credit card, debit card, or bank account balance.

Once your order is submitted, you will be redirected to PayPal’s site where you could make the payment.

Attention: All orders are processed in USD. While the content of your cart is currently displayed on the checkout page, you will checkout using USD at the most current exchange rate.

When you place an order with Paypal you will be redirected to the PayPal payment page, where you can confirm your payment by logging in with your PayPal username and password.

You may still check out even without a PayPal account. To do so, please click on “Pay with Debit/Credit Card” and you’ll be redirected to a secure page where you can enter your credit card information or complete your payment safely via PayPal.

 

The available credit card options are listed above. The credit card companies listed above are the most commonly used credit cards on this website.
Please note that we do not collect your credit/debit card number or personal information when you make payment. For questions regarding your transactions on our site, please consult your card-issuing bank for information.

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.