Colección: Summer Collection

20 artículos
  • Aretes Pétalos de Flores
    Aretes Pétalos de Flores
    Precio habitual
    $ 290.00
    Precio de oferta
    $ 290.00
    Precio unitario
    por 
  • Choker Groovy
    Choker Groovy
    Precio habitual
    Agotado
    Precio de oferta
    $ 290.00
    Precio unitario
    por 
  • Anillos Moni
    Anillos Moni
    Precio habitual
    $ 200.00
    Precio de oferta
    $ 200.00
    Precio unitario
    por 
  • Anillos Sofía
    Anillos Sofía
    Precio habitual
    $ 200.00
    Precio de oferta
    $ 200.00
    Precio unitario
    por 
  • Collar Cuarzo Chico
    Collar Cuarzo Chico
    Precio habitual
    $ 650.00
    Precio de oferta
    $ 650.00
    Precio unitario
    por 
  • Collar Cuarzo Grande
    Collar Cuarzo Grande
    Precio habitual
    $ 850.00
    Precio de oferta
    $ 850.00
    Precio unitario
    por 
  • Arracadas Triples Plateadas
    Arracadas Triples Plateadas
    Precio habitual
    $ 350.00
    Precio de oferta
    $ 350.00
    Precio unitario
    por 
  • Pulsera Esmaltado Turquesa
    Pulsera Esmaltado Turquesa
    Precio habitual
    $ 320.00
    Precio de oferta
    $ 320.00
    Precio unitario
    por 
  • Anillos Elisa
    Anillos Elisa
    Precio habitual
    $ 200.00
    Precio de oferta
    $ 200.00
    Precio unitario
    por 
  • Aretes Tulipán
    Aretes Tulipán
    Precio habitual
    $ 300.00
    Precio de oferta
    $ 100.00
    Precio unitario
    por 
  • Choker Esmaltado Turquesa
    Choker Esmaltado Turquesa
    Precio habitual
    $ 490.00
    Precio de oferta
    $ 490.00
    Precio unitario
    por 
  • Aretes Rubí
    Aretes Rubí
    Precio habitual
    $ 390.00
    Precio de oferta
    $ 390.00
    Precio unitario
    por 
  • Aretes Arcoíris
    Aretes Arcoíris
    Precio habitual
    $ 300.00
    Precio de oferta
    $ 300.00
    Precio unitario
    por 
  • Aretes Alessandra
    Aretes Alessandra
    Precio habitual
    $ 450.00
    Precio de oferta
    $ 450.00
    Precio unitario
    por 
  • Collar Thalassa
    Collar Thalassa
    Precio habitual
    Agotado
    Precio de oferta
    $ 450.00
    Precio unitario
    por 
  • Aretes Pescado Colores
    Aretes Pescado Colores
    Precio habitual
    $ 420.00
    Precio de oferta
    $ 420.00
    Precio unitario
    por 
  • Tobillera Pandora
    Tobillera Pandora
    Precio habitual
    $ 420.00
    Precio de oferta
    $ 420.00
    Precio unitario
    por 
  • Collar Fresh Dragon Fruit
    Collar Fresh Dragon Fruit
    Precio habitual
    Agotado
    Precio de oferta
    $ 620.00
    Precio unitario
    por 
  • Collar Aquaholic
    Collar Aquaholic
    Precio habitual
    Agotado
    Precio de oferta
    $ 620.00
    Precio unitario
    por 
  • Collar White Sand
    Collar White Sand
    Precio habitual
    Agotado
    Precio de oferta
    $ 550.00
    Precio unitario
    por 
document.addEventListener('DOMContentLoaded', function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { for (let i = 0; i < productJson.length; i++) { const current = productJson[i]; const sectionId = current.id.replace('ProductJson-', ''); const section = document.querySelector('[data-section-id="' + sectionId + '"]'); const product = JSON.parse(current.text); if (product.options.length === 1) { const unavailableVariants = []; for (let j = 0; j < product.variants.length; j++) { const variant = product.variants[j]; if (!variant.available) { unavailableVariants.push(variant); } } if (unavailableVariants.length > 0) { const mutationCallback = function() { const variantOptions = section.querySelectorAll('.single-option-selector option'); if (variantOptions.length > 0) { for (let k = 0; k < unavailableVariants.length; k++) { const unavailableVariant = unavailableVariants[k]; for (let l = 0; l < variantOptions.length; l++) { const option = variantOptions[l]; if (unavailableVariant.title === option.value) { option.remove(); } } } if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } } } const observer = new MutationObserver(mutationCallback); const addToCartForm = document.querySelector('form[action*="/cart/add"]'); mutationCallback(); if (window.MutationObserver && addToCartForm.length) { const config = { childList: true, subtree: true }; if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } observer.observe(addToCartForm, config); } } } } } });