Envio normal gratuito para valores superiores a 99 EUR
Search

Bem-vindo ao Customer Care (Atendimento ao Cliente)

Title:
Se está à procura de respostas úteis, então está no sítio certo. Pode pesquisar nas opções abaixo e ver as suas questões clarificadas em apenas alguns cliques.

Most asked questions

What is the status of my online order?

Enter order details
Please enter your order details, which are provided in the confirmation email and the invoice.
* Mandatory Fields
Order Number *
Last name *
$(this).closest('#orderTrackingFormConfigWrapper').find('.js-orderTrackingFormConfig') .formValidation( { autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[orderTrackingFormDefinition_orderCode]': { trigger: 'blur', validators: { callback: { callback: function(value, validator, $field) { var messages = []; var messagesEN = []; var errorOccured = false; if ($field.attr('regexCheckDisabled') === 'true') { return true; } if (!value.trim().match(new RegExp('^[a-zA-Z0-9]*$', ''))) { messages.push('The order number must only contain alphanumerical characters.'); messagesEN.push('The order number must only contain alphanumerical characters.'); errorOccured |= true; } if (errorOccured) { return { valid: false, message: messages.join('<br/>'), message_en: messagesEN } } else { return true; } } }, notEmpty: { message: 'Please enter the order number.', message_en: 'Please enter the order number.' }, } }, 'values[orderTrackingFormDefinition_lastName]': { trigger: 'blur', validators: { callback: { callback: function(value, validator, $field) { var messages = []; var messagesEN = []; var errorOccured = false; if ($field.attr('regexCheckDisabled') === 'true') { return true; } if (!value.trim().match(new RegExp('^[. \\u3000\'\\-a-zA-Z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0370-\\u03FF\\u1F00-\\u1FFF\\u0400-\\u052F\\u1C80-\\u1C8F\\u2DE0-\\u2DFF\\uA640-\\uA69F\\u4E00-\\u9FFF\\u3400-\\u4DBF\\u3040-\\u30FF\\uF900-\\uFAFF\\uFF66-\\uFF9F\\u1100-\\u11FF\\u3130-\\u318F\\uA960-\\uA97F\\uAC00-\\uD7FF\\u3005\\u3006\\u3024\\u3029\\u3031-\\u3035\\u0E00-\\u0E7F]*$', ''))) { messages.push('Please enter letters only (no full stops)'); messagesEN.push('Please enter letters only (no full stops)'); errorOccured |= true; } if (!value.trim().match(new RegExp('(?:^$)|(?:^.*[a-zA-Z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0370-\\u03FF\\u1F00-\\u1FFF\\u0400-\\u052F\\u1C80-\\u1C8F\\u2DE0-\\u2DFF\\uA640-\\uA69F]{2}.*$)|(?:^.*[^a-zA-Z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0370-\\u03FF\\u1F00-\\u1FFF\\u0400-\\u052F\\u1C80-\\u1C8F\\u2DE0-\\u2DFF\\uA640-\\uA69F. \\u3000\'\\-].*$)', ''))) { messages.push('Minimum length is 2 characters'); messagesEN.push('Minimum length is 2 characters'); errorOccured |= true; } if (errorOccured) { return { valid: false, message: messages.join('<br/>'), message_en: messagesEN } } else { return true; } } }, notEmpty: { message: 'Please enter your last name.', message_en: 'Please enter your last name.' }, stringLength: { message: 'The number of characters for this field must be between 0 and 35', message_en: 'The number of characters for this field must be between 0 and 35', min: 0 , max: 35 }, } } } } ) .on('success.field.fv', function() { /* note: we need to check if there is an error in the form, as the plugin does a validation on field level. Validating the whole form on blur of a field is no option, as the customer does not want to see error messages on all fields when entering one field. In case of an error on at least one field we disable the submit button manually */ var $form = $(this).closest('form'); if ($form.find('.form-group.has-error').length > 0) { var $button = $form.find('.js-button'); if (!$button.hasClass('disabled')) { $button.addClass('disabled'); } } }) .on('err.field.fv', function(e, data) { /* * On error field validation, enable submit button. * Source: https://old.formvalidation.io/examples/enabling-submit-button/ */ data.fv.disableSubmitButtons(false); $(data.element).attr('aria-invalid', 'true'); // Get error messages var messages = data.fv.getMessages(data.element); // ✅ Announce error to screen readers if ($(data.element).closest('.js-advent-calendar-container').length > 0 && messages.length > 0 && window.ACC && window.ACC.adventcalendar && typeof ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes === 'function') { const selectedField = data.element.attr('id'); ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes(selectedField, true); ACC.adventcalendar.announceToScreenReader('Error: ' + messages[0]); } if(data.element.closest('.form-combo-molecule').length){ /* Get the messages of field */ var messages = data.fv.getMessages(data.element); /* Get the error message content of the field */ var errorContent = data.element.closest('.form-combo-molecule').find('.errors'); /* Get the hidden error message of the field */ var errorField = errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"][style="display: none;"]'); /* Loop over the messages */ for (var i in messages) { if (errorField[1] == undefined) { var newErrorContainer = document.createElement("small"); $(newErrorContainer).attr("class", "swa-form-input__error-message swa-headline-sans--supertiny"); $(newErrorContainer).attr("data-field", data.field); $(newErrorContainer).attr("data-fv-validator", "callback"); $(newErrorContainer).attr("data-fv-for", $(data.element[0]).attr("name") ); $(newErrorContainer).attr("data-fv-result", "INVALID"); $(newErrorContainer).attr("data-tracked", "true"); $(newErrorContainer).html(messages[i]); if (errorContent.text().includes(messages[i])) { $(newErrorContainer).hide(); } errorContent.append(newErrorContainer); } } } }) .on('success.field.fv', function(e, data) { /* * On success field validation, enable submit button. * Source: https://old.formvalidation.io/examples/enabling-submit-button/ */ if ($(data.element).closest('.js-advent-calendar-container').length > 0 && window.ACC && window.ACC.adventcalendar && typeof ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes === 'function') { const selectedField = data.element.attr('id'); ACC.adventcalendar.adventcalendarUpdateErrorSpanAttributes(selectedField, false); } data.fv.disableSubmitButtons(false); // ✅ Remove aria-invalid on field $(data.element).attr('aria-invalid', 'false'); /* Remove the field messages */ $errorContent = data.element.closest('.form-combo-molecule').find('.errors'); $errorContent.find('.swa-form-input__error-message[data-field="' + data.field + '"]').remove(); $errorContent.find('.swa-form-input__error-message[data-fv-result="INVALID"]').removeAttr("style"); }) .on('success.form.fv', function() { var formId = 'orderTracking'; if (!formId || formId === 'cfRequest' || formId === 'cfResponse') { formId = 'orderTrackingFormDefinition'; } ACC.tracking.pushFormSubmit(formId); }); var replaceDatePatternWithValue = function(mandatory, fieldConfigCode, fieldConfigPattern) { var date = fieldConfigPattern.toUpperCase(); var year = $("#" + fieldConfigCode + "_year").val(); var month = $("#" + fieldConfigCode + "_month").val(); var day = $("#" + fieldConfigCode + "_day").val(); date = date.replace(/[Y]+/, year); date = date.replace(/[M]+/, month); date = date.replace(/[D]+/, day); var hiddenDateField = $('.js-' + fieldConfigCode + '_hidden'); if (mandatory) { hiddenDateField.val(date); } else { hiddenDateField.val(date == "" ? "" : date); } }; var triggerFormValidation = function(fieldId, mandatory, fieldCode, dateFormat) { replaceDatePatternWithValue(mandatory, fieldCode, dateFormat); $('.js-fieldCode').formValidation('revalidateField', 'values[fieldCode_'+ fieldId + ']'); }; var removeDateMoleculeError = function(molecule) { if(molecule.hasClass('has-error')){ molecule.removeClass('has-error'); molecule.find('.help-block').find('span').remove(); } };

Can I cancel my order?

 We work hard to process your order and get your purchases out for delivery quickly and efficiently. An order cancellation may be possible within 15 minutes (approximately) of receipt of your order confirmation.
To cancel an order, please log in to your customer account, then search the relevant order amid your order history and click the “cancel order” button. If the cancellation is still possible, you will be asked to confirm the action. 
If the cancellation button is greyed out inactive, your order can’t be changed or cancelled at this stage.

If you ordered as a guest and you are within 15 minutes of receipt of your order confirmation, please contact us immediately via phone or chat (during opening hours) and our customer service team will make every effort to process your request.

If cancellation is no longer possible, unwanted items can be returned per our returns policy. Alternatively, the parcel can also be refused upon arrival and our delivery partner will return the parcel to our warehouse, with no extra charges for you.

As soon as it reaches our warehouse, you will receive a return confirmation email and a full refund on the same payment method used to place the order.

How do I return my online order?

ความพึงพอใจของลูกค้าคือเป้าหมายสูงสุดของ Swarovski คุณสามารถส่งคืนสินค้าที่สั่งซื้อออนไลน์ได้ภายใน 14 วันหลังจากที่ได้รับสินค้า (ยกเว้นบัตรของขวัญและหน้ากาก Swarovski ที่แกะออกจากซองแล้ว เนื่องจากเหตุผลด้านสุขอนามัย) หากต้องการส่งคืนสินค้าที่สั่งซื้อ โปรดดำเนินการดังนี้

ขั้นตอนที่ 1:

หากต้องการลงทะเบียนเพื่อคืนสินค้า โปรดไปที่ returns.swarovski.com เพื่อรับฉลากการคืนสินค้า / คิวอาร์โค้ด

ขั้นตอนที่ 2:

ป้อนหมายเลขคำสั่งซื้อออนไลน์และที่อยู่อีเมลของคุณ แล้วปฏิบัติตามคำแนะนำเพื่อลงทะเบียนการคืนสินค้าให้เสร็จสิ้น และรับคิวอาร์โค้ดหรือฉลากการคืนสินค้าของคุณซึ่งจะไม่ซ้ำกับใคร

ขั้นตอนที่ 3:

บรรจุสินค้าที่จะส่งคืนลงในกล่องเดิมโดยใช้วัสดุบรรจุภัณฑ์เดิม

ขั้นตอนที่ 4:

กรอกแบบฟอร์มการคืนสินค้า และส่งคืนแบบฟอร์มพร้อมสินค้าดังกล่าว ให้ระบุจำนวนสินค้าที่ส่งคืน และเหตุผลในการส่งคืน สิ่งสำคัญอย่างยิ่งก็คือ คุณจะต้องส่งแบบฟอร์มการคืนสินค้าพร้อมกับบรรจุภัณฑ์สินค้าดังกล่าว เพื่อให้เราสามารถดำเนินการเกี่ยวกับสินค้าที่คุณส่งคืนได้ในลำดับต่อไป

ขั้นตอนที่ 5:

ส่งคืนพัสดุตามคำแนะนำของผู้ให้บริการส่งคืนสินค้าที่คุณเลือกใช้บริการ

ขั้นตอนที่ 6:

เก็บหลักฐานการส่งสินค้าคืนทางไปรษณีย์ไว้


ขั้นตอนที่ 7:

กระบวนการส่งคืนสินค้าจะใช้เวลาประมาณ 14 วันทำการ เมื่อการส่งคืนสินค้าทางออนไลน์ของคุณได้รับการดำเนินการแล้ว คุณจะได้รับอีเมลยืนยันการส่งคืนสินค้า และจะมีการดำเนินการคืนเงิน การคืนเงินจะใช้เวลาดำเนินการไม่เกิน 10 วันทำการก่อนจะมีการแสดงรายการในบัญชีของคุณ คุณสามารถติดตามพัสดุสินค้าที่ส่งคืนโดยคลิกลิงก์ที่ผู้ให้บริการจัดส่งดังกล่าวได้แจ้งให้ทราบ


Swarovski's top priority is our customer satisfaction. You may return your online order up to 14 days after receipt (except for Creators Lab products, Gift Cards, Vouchers, customized products and unpacked Swarovski Masks). 
To return your order, please proceed as follows:​


STEP 1:
To register your return, please go to returns.swarovski.com 

STEP 2:​
Follow the instructions to complete the return registration and receive your unique QR code or return label.


STEP 3:​
Pack the item(s) to be returned in the original carton using the original packaging materials.​


STEP 4:​
Return the parcel according to the instructions of your chosen return carrier.​


STEP 5:​
Keep the proof of return postage.​


STEP 6:​
Allow approximately 14 working days for the return to be processed. Once your online return has been processed, you will receive a return confirmation email and the refund will be made to the original payment method. Refunds can take up to 10 working days to show on your account. You can track your return parcel with the link provided by the return carrier.​

NOTE:
If you received the item(s) as a gift, please contact the sender to proceed with the online return, otherwise use your Gift Receipt to proceed with "Real Return". All online orders will be accepted in all participating Swarovski "Real Return" stores in the country where the order was created. Please find your nearest "Real Return" store by using our Store Finder filter online. In case of a gift order return, the refund will be made to the original payment method.

Please bear in mind it is not possible to replace or exchange products bought online. Unwanted items would need to be returned per our returns policy. Please​ place a new online order for the correct product you need.​

Can I exchange my purchase?

It is not possible to exchange online purchases returned via post. All returned products will be refunded to the original payment method. Please place a new online order for the correct product.
Or for straightforward size exchanges of the same product subject to product availability. Visit your nearest store (excluding concessions) store finder.

Is International Exchange allowed?

Por vários motivos (incluindo, mas sem caráter limitativo, a existência de diferentes coleções de joias nos EUA, Ásia, Europa e, no que respeita à nossa atividade de vendas a retalho destinadas a viajantes, a existência de diferentes impostos, estruturas de preços, requisitos jurídicos locais, bem como motivos logísticos), a Swarovski não dispõe de uma política internacional de trocas ou reembolsos. Por conseguinte, não nos é possível trocar, substituir ou reembolsar produtos comprados no estrangeiro.

Posso alterar o endereço de entrega?

Nem sempre é possível alterar o endereço de entrega ou a data de entrega quando a encomenda já está em trânsito. Pode ter a possibilidade de planear a entrega do seu pedido da maneira que lhe seja mais conveniente, utilizando o portal web dos nossos parceiros de entrega.

Como posso verificar a disponibilidade do produto?

A disponibilidade dos nossos produtos online é indicada através do botão “Adicionar ao saco de compras”. Caso o botão não esteja visível, isso significa que esse produto não está, de momento, disponível.

Se desejar saber se um produto em rutura de stock voltou a estar disponível, pode optar por receber uma notificação. Para isso, clique no botão “notificar-me”, na página de detalhes do produto, e adicione o seu endereço de e-mail

Para verificar a disponibilidade em loja, siga as seguintes instruções:

1) Selecione o produto desejado na nossa loja online
2) Na página de detalhes do produto, abaixo do botão “adicionar ao saco de compras”, selecione “Verificar a disponibilidade na loja” ou “Levantar na loja”
3) Adicione a sua localização atual ou desejada e já está. Pode agora navegar pelas opções apresentadas e verificar qual a loja que tem o produto desejado

Que tamanho devo comprar?

At Swarovski, we know that finding the correct size for your ring, necklace or bracelet is important. To help you find the correct size, we have created this handy guide.

Why did my purchase not qualify for the promotion?​

If your recent order did not qualify for the promotion, please check the promotion Terms & Conditions to ensure that the item you ordered was not excluded from the promotion.​

If you believe your item was not part of the exclusions, please check to ensure that the order was placed during the promotion validity period.​

If you need further support, please contact our customer service team.

Where can I find information on the current promotion?

Swarovski runs sale promotions throughout the year. To stay up to date, we recommend signing up to our newsletter

Is my item repairable?

Please take your item, along with a proof of purchase, to your nearest Swarovski store, where they will be happy to assist and assess the item. ​

If a fault is found and considered to be covered by the warranty, an exchange or a repair will be offered. ​

If the damage is outside the scope of the warranty, then we might be able to offer a repair at cost.​

You can find your nearest store using our online store finder: www.swarovski.com/store-finder/​

Please note, if no proof of purchase is presented, or if the item is outside of its warranty period, we may still be able to offer a repair at a charge.​

 

Not yet solved?