Ingyenes standard kiszállítás 39 960 Ft felett

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.

    Még nem oldódott meg?

    Gyakran ismételt kérdések

    Mi az online rendelésem állapota?

    Adja meg a megrendelés adatait
    Kérjük, adja meg a megrendelés adatait, amelyeket a visszaigazoló e-mailben és a számlán talál.
    Kötelezően kitöltendő mező
    Megrendelés száma *
    Vezetéknév *
    $(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('A megrendelés száma csak alfanumerikus karaktereket tartalmazhat.'); messagesEN.push('A megrendelés száma csak alfanumerikus karaktereket tartalmazhat.'); errorOccured |= true; } if (errorOccured) { return { valid: false, message: messages.join('<br/>'), message_en: messagesEN } } else { return true; } } }, notEmpty: { message: 'Adja meg a megrendelés számát.', message_en: 'Adja meg a megrendelés számát.' }, } }, '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('Csak betűk használhatók'); messagesEN.push('Csak betűk használhatók'); 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('A minimális hosszúság 2 karakter'); messagesEN.push('A minimális hosszúság 2 karakter'); errorOccured |= true; } if (errorOccured) { return { valid: false, message: messages.join('<br/>'), message_en: messagesEN } } else { return true; } } }, notEmpty: { message: 'Kérjük, adja meg vezetéknevét.', message_en: 'Kérjük, adja meg vezetéknevét.' }, stringLength: { message: 'Ebbe a mezőbe 0 - 35 közötti karakterszám írható be', 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(); } };

    How do I return my online order?

    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.​

    When will I receive my refund?

    Online Purchases 

    Return via Courier:
    Your return will be processed within 10 business days after we receive the item at our warehouse. You’ll receive a confirmation email once it's processed. Refunds may take 5–10 business days to appear in your account, depending on your payment provider.

    Returns to Store:
    Returns are processed on the same day in-store. However, refunds may take 5–10 business days to appear in your account, depending on your payment provider.

    In-Store Purchases 

    Return to Store:
    Returns are processed on the same day. Refunds may take 5–10 business days to appear in your account, depending on your payment provider.

    Where can I find my Invoice?

    As part of our commitment to sustainability, we no longer send physical invoices with orders. Instead, you will receive your invoice via email along with your shipping confirmation. This helps to reduce paper waste and lowers our environmental footprint, while also providing a faster and more efficient service. Please check your email inbox or spam folder once your order has shipped.
    For orders placed while logged into your account, you can also download a digital copy of the invoice as soon as the order is shipped by visiting My Account > Order History. Simply select the relevant order to access your invoice.

    Can I change my delivery address?

    It is not always possible to change the delivery address or delivery date once the parcel is in transit. You might have the possibility to organize the delivery of your parcel in the most suitable way for you, by utilizing our delivery partners’ web portal.

    Posso trocar um produto?

    Compra online
    Não é possível efetuar a troca de compras efetuadas online devolvidas por correio. Todos os produtos devolvidos serão reembolsados através do método de pagamento original. Efetue uma nova encomenda online do produto correto.
    No caso de trocas diretas de tamanhos do mesmo produto, estas estão sujeitas à disponibilidade do produto. Visite a loja que se encontrar mais perto de si (exceto descontos) hiperligação do localizador de lojas

    Compra na loja
    As trocas por um tamanho ou cor diferentes ou um produto alternativo podem ser processadas na loja mais próxima de si, dependendo da disponibilidade do produto. 
    Para mais informações sobre os casos em que é possível beneficiar de uma troca, consulte a nossa Política de devoluções

    Posso cancelar a minha encomenda?

    Trabalhamos arduamente para processar a sua encomenda e fazer com que as suas compras sejam entregues de forma rápida e eficiente. É possível cancelar uma encomenda no espaço de 15 minutos (aproximadamente) após a receção da sua confirmação de encomenda.
    Para cancelar uma encomenda, inicie sessão na sua conta de cliente, depois procure a encomenda em questão no seu histórico de encomendas e clique no botão ""cancelar encomenda"". Se o cancelamento ainda for possível, ser-lhe-á pedido que confirme a ação. 
    Se o botão de cancelamento estiver desativado, a sua encomenda não pode ser alterada ou cancelada nesta fase.

    Caso encomende como convidado e estiver dentro do período de 15 minutos após a receção da sua confirmação de encomenda, contacte-nos imediatamente por telefone ou chat (durante o horário de abertura) e a nossa equipa de serviço ao cliente empreenderá todos os esforços para processar o seu pedido.

    Se o cancelamento já não for possível, os artigos indesejados terão de ser devolvidos de acordo com a nossa política de devoluções. Em alternativa, o pacote também pode ser recusado à chegada e o nosso parceiro de entrega devolverá o pacote ao nosso armazém, sem custos extra para si.

    Assim que chegar ao nosso armazém, receberá um e‑mail de confirmação de devolução e um reembolso total, através do mesmo método de pagamento utilizado para fazer o pedido.

    Por que motivo a minha compra não ficou abrangida pela promoção?

    Se a sua encomenda recente não ficou abrangida pela promoção, verifique os Termos e Condições da mesma para se certificar de que o artigo que encomendou está ou não incluído na promoção.

    Se achar que o seu artigo não está na lista de exclusões, verifique se realmente a sua encomenda foi efetuada durante o período em que a promoção esteve em vigor.

    Se necessitar de mais assistência, entre em contacto com a nossa equipa de atendimento ao cliente.

    Como posso verificar a disponibilidade do produto?

    O dostępności online naszych produktów świadczy obecność przycisku „Dodaj do koszyka”. Jeśli przycisk nie wyświetla się, oznacza to, że w danej chwili produkt nie jest dostępny.​

    W przypadku produktów niedostępnych możesz zdecydować się na otrzymywanie powiadomień, gdy produkt pojawi się ponownie w sprzedaży — w tym celu kliknij przycisk „Powiadom mnie” na stronie z informacjami o produkcie, a następnie dodaj swój adres e-mail​

    Aby sprawdzić dostępność produktu w sklepie stacjonarnym, postępuj zgodnie z poniższą instrukcją:​

    1) Znajdź wybrany przez siebie produkt w naszym sklepie internetowym​
    2) Na stronie z informacjami o produkcie wybierz opcję „Sprawdź dostępność w sklepie” (pod przyciskiem „Dodaj do koszyka”) 
    3) Dodaj swoją obecną lub żądaną lokalizację i… gotowe. Możesz poruszać się po wyświetlonych opcjach.