draakjesenboefjes.nlOp werkdagen voor 15:00 besteld is morgen in huis!
0
I.v.m. een storing in het systeem, is het alleen mogelijk om via onze APP te bestellen! Download onze App in de App Store of Google Play Store!
€24,95
Toevoegen aan winkelwagen

Glitter Vlinder Jurkje - Roze (Verzenddatum 11 Aug)

Glitter Vlinder Jurkje - Roze (Verzenddatum 11 Aug)
€24,95Incl. btw
Op voorraad (1)

Feestelijk roze kerstjurkje met pailletten, tule rok met vlinders. Perfect voor de feestdagen! Verkrijgbaar van maat 86/92 t/m 146/152. Lees meer..

Dit prachtige rozekleurige kerstjurkje voor meisjes is een echte eyecatcher tijdens de feestdagen. Het bovenstuk en de mouwen zijn versierd met kleurrijke pailletten die prachtig schitteren in het licht, terwijl de zachte tule rok met vlinders zorgt voor een elegante uitstraling.

De taille is afgewerkt met glinsterendesteentjes, wat het jurkje een luxe uitstraling geeft. Dankzij de comfortabele voering draagt het jurkje heerlijk tijdens lange feestdagen.

Dit jurkje is perfect voor kerstvieringen, fotoshoots, bruiloften en andere speciale gelegenheden. Verkrijgbaar in maat 86/92 t/m 146/152.

 

Stijlen met:

Specificaties

    Artikelcode: 795

    Door het gebruiken van onze website, ga je akkoord met het gebruik van cookies om onze website te verbeteren. Dit bericht verbergenMeer over cookies »

    SIGN UP TO STAY UP-TO-DATE

    Altijd als eerste op de hoogte zijn van de nieuwe collectie? Of misschien wel van een unieke kortingscode?
    Abonneer

    Account aanmaken

    Door een account aan te maken in deze winkel kunt u het betalingsproces sneller doorlopen, meerdere adressen opslaan, bestellingen bekijken en volgen en meer.

    Registreren

    Recent toegevoegd

    U heeft geen artikelen in uw winkelwagen

    Totaal incl. btw:€0,00
    Bestel nog voor €50,00 en de verzending is gratis
    $(document).ready(function () { $("a.youtube").YouTubePopUp(); // Sticky Add-to-Cart mobiele versie if ($(window).width() < 768) { var stickyVisible = false; var elem = $('.addtocart-sticky'); var observer = new IntersectionObserver(function (entries) { if (entries[0].isIntersecting === true) { if (stickyVisible) { elem.removeClass('mobile-visible'); stickyVisible = false; } } else { if (!stickyVisible) { elem.addClass('mobile-visible'); stickyVisible = true; } } }, { threshold: [0] }); if (document.querySelector(".addtocart") !== null) { observer.observe(document.querySelector(".addtocart")); } } else { var stickyVisible = false; function checkStickyAddToCart() { if ($('.addtocart-holder').length > 1) { var distance = $('.addtocart-holder').offset().top; var elem = $('.addtocart-sticky'); if ($(window).scrollTop() >= distance) { if (!stickyVisible) { elem.addClass('visible'); elem.fadeIn(100); stickyVisible = true; } } else { if (stickyVisible) { elem.removeClass('visible'); elem.fadeOut(100); stickyVisible = false; } } setTimeout(checkStickyAddToCart, 50); } } checkStickyAddToCart(); } if ($(window).width() > 767 && theme.settings.product_mouseover_zoom) { $('.zoom').zoom({ touch: false }); } // Swipers voor productafbeeldingen var swiperProdImage = new Swiper('.swiper-productimage', { lazy: true, pagination: { el: '.swiper-pagination-image', clickable: true }, on: { lazyImageReady: function () { $('.productpage .swiper-lazy.swiper-lazy-loaded').animate({ opacity: 1 }, 300); }, } }); var swiperThumbs = new Swiper('.swiper-productthumbs', { direction: 'vertical', navigation: { nextEl: '.thumb-arrow-bottom', prevEl: '.thumb-arrow-top', }, spaceBetween: 10, slidesPerView: 5 }); $('.swiper-productthumbs img').on('click', function () { var itemIndex = $(this).parent().index(); $('.swiper-productthumbs .swiper-slide').removeClass('active'); $(this).parent().addClass('active'); swiperProdImage.slideTo(itemIndex); swiperProdImage.update(true); }); // Swiper voor kleurafbeeldingen var swiperColorImage = new Swiper('.swiper-colorimage', { slidesPerView: 5, spaceBetween: 10, navigation: { nextEl: '.swiper-color-next', prevEl: '.swiper-color-prev', }, pagination: { el: '.swiper-pagination-color', clickable: true }, breakpoints: { 640: { slidesPerView: 2 }, 768: { slidesPerView: 4 }, 1024: { slidesPerView: 5 } } }); $('.swiper-colorimage img').on('click', function () { var itemIndex = $(this).parent().index(); $('.swiper-colorimage .swiper-slide').removeClass('active'); $(this).parent().addClass('active'); swiperColorImage.slideTo(itemIndex); swiperColorImage.update(true); }); }); // === Variantwissel + voorraadupdate === document.addEventListener('DOMContentLoaded', function () { const form = document.querySelector('.productform'); if (!form) return; function updateVariantStock(variantId) { if (!window.productJSON || !window.productJSON.variants) return; const variantData = window.productJSON.variants.find(v => v.id == variantId); if (!variantData) return; const stockElement = document.querySelector('.product-stock-status'); if (stockElement) { if (variantData.stock > 0) { stockElement.textContent = `Op voorraad: ${variantData.stock} stuks`; stockElement.classList.remove('out-of-stock'); } else { stockElement.textContent = `Uitverkocht`; stockElement.classList.add('out-of-stock'); } } const addBtn = document.querySelector('.add-to-cart, .addtocart'); if (addBtn) { if (variantData.stock > 0) { addBtn.disabled = false; addBtn.textContent = "In winkelmand"; } else { addBtn.disabled = true; addBtn.textContent = "Niet op voorraad"; } } } const variantLinks = document.querySelectorAll('.variant-block'); variantLinks.forEach(function (link) { link.addEventListener('click', function (e) { const isOutOfStock = this.classList.contains('out-of-stock'); const href = this.getAttribute('href'); if (!href) return; const url = new URL(href, window.location.origin); const variantId = url.searchParams.get('id'); if (!variantId) return; if (isOutOfStock) { window.location.href = `${window.location.pathname}?id=${variantId}`; return; } e.preventDefault(); if (window.Theme?.Product?.switchVariant) { Theme.Product.switchVariant(variantId); history.replaceState(null, '', `${window.location.pathname}?variant=${variantId}`); } const hiddenInput = form.querySelector('input[type="hidden"][name="product-variant"]'); if (hiddenInput) hiddenInput.value = variantId; updateVariantStock(variantId); }); }); form.addEventListener('submit', function (e) { const selected = form.querySelector('input[name="product-variant"]:checked') || form.querySelector('input[type="hidden"][name="product-variant"]'); if (!selected || !selected.value) { e.preventDefault(); alert("Kies een maat voordat je verdergaat."); } }); }); // === Maattabel modal === document.addEventListener("DOMContentLoaded", function () { const modal = document.querySelector("#maattabel-modal"); const closeBtn = modal?.querySelector(".close-modal"); if (modal && closeBtn) { closeBtn.addEventListener("click", function () { modal.style.display = "none"; document.body.style.overflow = "auto"; }); window.addEventListener("click", function (e) { if (e.target === modal) { modal.style.display = "none"; document.body.style.overflow = "auto"; } }); } }); // === Fancybox uitschakelen === $(document).ready(function () { if ($.fancybox) { $(document).off('click.fb-start'); $.fancybox.open = function () { console.log('Fancybox is uitgeschakeld'); }; } }); // === Drawer fix (cart/wishlist/account) === $(document).ready(function () { $('.js-toggle-cart, .js-toggle-wishlist, .js-toggle-account').on('click', function (e) { e.preventDefault(); e.stopImmediatePropagation(); const drawerTarget = $(this).data('drawer-target'); if (drawerTarget && typeof Nova !== 'undefined' && Nova.Drawer) { Nova.Drawer.open(drawerTarget); } }); }); document.addEventListener("DOMContentLoaded", function () { const variantButtons = document.querySelectorAll(".variant-btn"); const voorraadEl = document.querySelector(".stock"); const form = document.getElementById("product_configure_form"); const addToCartBtn = document.querySelector(".btn-addtocart"); variantButtons.forEach(function (button) { button.addEventListener("click", function () { var stock = parseInt(this.getAttribute("data-stock") || "0"); var vid = this.getAttribute("data-variant-id"); // ✅ Update voorraadtekst boven de prijs if (voorraadEl) { if (stock > 0) { voorraadEl.innerHTML = '
    Op voorraad (' + stock + ')
    '; } else { voorraadEl.innerHTML = '
    Niet op voorraad
    '; } } // ✅ Update formulier hidden input + actie if (form) { form.action = "/cart/add/" + vid; var hiddenInput = document.getElementById("variant_id"); if (hiddenInput) hiddenInput.value = vid; } // ✅ Update winkelwagenknop (voor DMWS) if (addToCartBtn) { addToCartBtn.setAttribute("data-vid", vid); } }); }); });