Back
Back
Accesskeys list
  • 0 - Header
  • 1 - Main content
  • 2 - Footer
Partner Products with Crystals from Swarovski
World of Swarovski
| Poland
Stores
Logo
FREE STANDARD SHIPPING OVER PLN 270.00
Login

Please log in

Log in

or register

Register
Wish list
0 Shopping Bag

Logo
Login

Please log in

Log in

or register

Register
Please enter search term
Suggestions
New in
New in
Jewelry
Jewelry
Necklaces
Pendants
Earrings
Bracelets
Sets
Rings
Brooches
Swarovski Remix Collection
Men's collection
Atelier Swarovski
MOST POPULAR JEWELRY
Watches
Watches
New In
Rose Gold Tone
Silver Tone
Gold Tone
Black Tone
Metal bracelet
Leather strap
Fabric and crystal strap
Automatic Men's Watches
Accessories
Accessories
Pens
Smartphone cases
USB Accessories
Key Rings
Sunglasses
Handbags
Cardholders
Fashion books
Decorations
Decorations
Happy holidays
Disney
Kris Bears
Characters
Home Décor
Asian symbols
SCS Exclusive Products
Special Editions
Celebrations
Nature Inspired
GIFTS
GIFTS
Bestsellers
Nicely priced gifts
Gifts for the home
Birthday gifts
Versatile gifts
Gift sets
Gifts for him
Exclusive Crystal Gifts
Timeless Gifts
Glamorous gifts
Romantic Gifts
GIFT CARD
Collections
Collections
The Iconic Collection
THE NATURE COLLECTION
VALENTINE'S DAY COLLECTION
THE DISNEY COLLECTION
Style Edit
Style Edit
Stories
#FOLLOWTHELIGHT
Crystal Society
Crystal Society
Country
| Poland
Partner Products with Crystals from Swarovski
World of Swarovski
More
New in
Jewelry
Watches
Accessories
Decorations
GIFTS
Collections
Style Edit
Crystal Society
More
Please enter search term
Suggestions
Please enter search term
Suggestions
Jewelry
Necklaces
Pendants
Earrings
Bracelets
Sets
Rings
Brooches
Swarovski Remix Collection
Men's collection
Atelier Swarovski
MOST POPULAR JEWELRY
DAZZLING SWAN
DISCOVER MORE
Close
Fine Jewelry
Necklaces
Pendants
Earrings
Bracelets
Rings
Close
Watches
New In
Rose Gold Tone
Silver Tone
Gold Tone
Black Tone
Metal bracelet
Leather strap
Fabric and crystal strap
Automatic Men's Watches
GOLD TONE WATCHES
SHOP NOW
Close
Accessories
Pens
Smartphone cases
USB Accessories
Key Rings
Sunglasses
Handbags
Cardholders
Fashion books
Close
Decorations
Happy holidays
Disney
Kris Bears
Characters
Home Décor
Asian symbols
SCS Exclusive Products
Special Editions
Celebrations
Nature Inspired
Statue of Liberty
Preselling exclusively online: one of New York’s most famous landmarks, the Statue of Liberty. *Products are not intended for food contact.
SHOP NOW
Close
GIFTS
Bestsellers
Nicely priced gifts
Gifts for the home
Birthday gifts
Versatile gifts
Gift sets
Gifts for him
Exclusive Crystal Gifts
Timeless Gifts
Glamorous gifts
Romantic Gifts
GIFT CARD
BESTSELLERS
Find out our best selection of gifts to celebrate the moments that matter
SHOP NOW
Close
Collections
The Iconic Collection
THE NATURE COLLECTION
VALENTINE'S DAY COLLECTION
THE DISNEY COLLECTION
Close
Style Edit
Stories
#FOLLOWTHELIGHT
Close
SHIMMERING STYLE
Discover a bright new expression of the most iconic collection, with its much-loved symbol of modern femininity.
DISCOVER MORE
ETERNALLY RADIANT
Swarovski's Snow White is a brilliantly colorful tribute to one of Disney's most loved fairy tales.
SHOP NOW
FOR ALL TIME
Iconic, contemporary or dazzlingly glamourous, these timepieces combine practicality with eye-catching design.
SHOP NOW
COLLECTION HIGHLIGHTS
NECKLACES

DISCOVER MORE
EARRINGS

DISCOVER MORE
NECKLACES

DISCOVER MORE
EARRINGS

DISCOVER MORE
BRACELETS
NEW IN
BRILLANT IDEAS
If you’re looking for inspiration, it’s right here. Browse these stories for the latest looks to ignite your imagination and brighten your style.
WOMEN OF THE WORLD
Join us in celebrating International Women’s Day on March 8, and in continuing to work for gender equality all year round. We’re paying tribute to women everywhere, whose efforts big and small help make a better tomorrow for us all.
DISCOVER MORE

Follow us:

$(this).siblings('.js-pl-shortNewsletterFormConfig') .formValidation({ autoFocus: false, framework: 'bootstrap', icon: { valid: null, invalid: null, validating: null }, fields: { 'values[shortNewsletterFormDefinition_email]': { trigger: 'blur', validators: { regexp: { regexp: /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+$/, message: 'Please enter your email address.', message_en: 'Please enter your email address.' }, notEmpty: { message: 'Please enter your email address.', message_en: 'Please enter your email address.' }, stringLength: { message: 'The number of characters for this field must be between 0 and 70', message_en: 'The number of characters for this field must be between 0 and 70', min: 0 , max: 70 }, } } } }) .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) { 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('small[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", "help-block"); $(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) { // Remove the field messages $errorContent = data.element.closest('.form-combo-molecule').find('.errors'); $errorContent.find('small[data-field="' + data.field + '"]').remove(); $errorContent.find('small[data-fv-result="INVALID"]').removeAttr("style"); }) .on('success.form.fv', function() { var formId = 'shortNewsletter'; if (!formId || formId === 'cfRequest' || formId === 'cfResponse') { formId = 'shortNewsletterFormDefinition'; } 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(); } }

dispatcher-check


Contact
CUSTOMER CARE
Stores
Live Chat

Brand
Since 1895, founder Daniel Swarovski’s mastery of crystal cutting has defined the company. His enduring passion for innovation and design has made it the world’s premier jewelry and accessory brand.
Discover more
SWAROVSKI CRYSTAL SOCIETY
Join the exclusive world of brilliance and live your crystal passion to the fullest.
BECOME A MEMBER
FREE STANDARD SHIPPING OVER PLN 270.00
About Us
Newsletter
FAQ
Other Swarovski Sites
Legal
Terms Of Use
Terms & Conditions
Privacy Policy
Imprint
Sitemap
Anti Modern Slavery
Cookie Consent
Corporate
Crystal For Professionals
Zirconia & Gemstones For Professionals
Corporate Gifts
Careers
Swarovskigroup.com
© Swarovski Crystal Online AG
About Us
Newsletter
FAQ
Other Swarovski Sites
Legal
Terms Of Use
Terms & Conditions
Privacy Policy
Imprint
Sitemap
Anti Modern Slavery
Cookie Consent
Corporate
Crystal For Professionals
Zirconia & Gemstones For Professionals
Corporate Gifts
Careers
Swarovskigroup.com
© Swarovski Crystal Online AG

dispatcher-check

COOKIES BLOCKED

Your browser blocks cookies, please enable cookies and reload to continue using the website.