Maat: 80/86
Maat: 86/92
Maat: 92/98
Maat: 98/104
Maat: 110/116
Deze complete velvet meisjes set is een echte musthave voor jouw kleine fashionista! De set bestaat uit een lange mouwen top , een trendy flared broek én een bijpassende haarband . Gemaakt van heerlijk zacht en stretchy velvet voor ultiem draagcomfort. Perfect voor een dagje uit, een feestje of gewoon lekker thuis.
Details:
Inclusief bijpassende haarband Verkrijgbaar in oudroze, grijs & khaki Maat 18 maanden t/m 6 jaar Comfortabele pasvorm met stretch Flared broek voor een trendy look Wasbaar op 30°C Met deze set ziet jouw meisje er niet alleen superhip uit, maar voelt ze zich ook heerlijk comfortabel. Combineer met sneakers of laarsjes voor de perfecte look!
Specificaties Artikelcode: Niet beschikbaar
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?
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();
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 on hover image */
$('.zoom').zoom({touch:false});
}
//====================================================
// Product page images
//====================================================
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',
},
mousewheelControl:true,
mousewheelSensitivity:2,
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);
});
//new swiper for colorimages
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,
spaceBetween: 10,
},
768: {
slidesPerView: 4,
spaceBetween: 10,
},
1024: {
slidesPerView: 5,
spaceBetween: 10,
},
},
});
$('.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);
});
//====================================================
// End product page images
//====================================================
if( $('.related-product-look .related-variants').length > 0 )
{
$('.related-product-look .related-variants').each( function()
{
var variantsBlock = $(this);
$.get( $(this).attr('data-json'), function(data)
{
var product = data.product;
if( product.variants == false )
{
$(this).remove();
}
else
{
variantsBlock.append('
');
console.log(product.variants);
$.each( product.variants, function(key, val)
{
console.log(val);
$('#variants-'+product.id).append('
'+val.title+' - '+parsePrice(val.price.price)+' ');
});
$('#variants-'+product.id).on('change', function()
{
variantsBlock.parent().attr('action', theme.url.addToCart+$(this).val()+'/');
//alert( $(this).val() );
});
}
variantsBlock.parent().attr('action', theme.url.addToCart+product.vid+'/');
});
});
}
//============================================================
//
//============================================================
var swiperRelatedProducts = new Swiper('.swiper-related-products', {
slidesPerView: 2.2,
observeParents: true,
observer: true,
breakpoints: {
1400: {
slidesPerView: 2,
spaceBetween: 15,
},
850: {
slidesPerView: 2,
spaceBetween: 15,
}
},
spaceBetween: 15,
navigation: {
nextEl: '.swiper-related-next',
prevEl: '.swiper-related-prev',
},
slidesPerGroup: 2,
});
if( theme.settings.enable_auto_related_products )
{
function getDynamicRelatedProducts(jsonUrl, retry)
{
$.get(jsonUrl, function( data )
{
console.log(data.products.length);
if( data.products.length <= 1 && retry <= 1 )
{
var changeUrl = jsonUrl.split('/');
changeUrl.pop();
changeUrl.pop();
var newUrl = changeUrl.join('/');
console.log(newUrl+'/page1.ajax?format=json');
getDynamicRelatedProducts(newUrl+'/page1.ajax?format=json', retry++);
console.log('retrying');
return true;
}
var relatedLimit = 5;
for (var i = 0; i < data.products.length; i++) {
if (data.products[i].id != 159026553) {
var productBlock = new productBlockParser(data.products[i]);
productBlock.setInSlider(true);
$('.swiper-related-products .swiper-wrapper').append(productBlock.render());
} else {
relatedLimit++;
}
if (i >= relatedLimit) {
break;
}
}
parseCountdownProducts();
swiperRelatedProducts.update();
});
}
if( $('[data-related-json]').length > 0 )
{
getDynamicRelatedProducts($('[data-related-json]').attr('data-related-json'), 0);
}
}
$('.bundle-product [data-bundle-pid]').on('click', function(e)
{
e.preventDefault();
var pid = $(this).attr('data-bundle-pid');
var bid = $(this).attr('data-bundle-id');
$('.bundle-configure[data-bundle-id="'+bid+'"][data-bundle-pid="'+pid+'"]').fadeIn();
});
$('.bundle-configure button, .bundle-configure .close').on('click', function(e)
{
e.preventDefault();
$(this).closest('.bundle-configure').fadeOut();
});
$('h4.block-title').on('click', function()
{
if( $(window).width() < 788 )
{
$(this).parent().toggleClass('active');
$(this).parent().find('.block-content').slideToggle();
}
});
});
var Yellowlab = (function ($, window, undefined) {
function getDefaultUrl(){return window.location.origin + window.location.pathname;}
function getReloadOptions(form){return form.serialize();}
function setArguments(){return {};}
function bind(){
var response = arguments[0];
$.each(arguments, function(index, item){
if( index >= 1){
var newHtml = response.find(item).html();
$(item).html(newHtml);
}
});
}
function replaceOptionsAndVariants() {
//====================================================
// Product options
//====================================================
var variantBlockHtml = '
';
console.log('Matrix: \'Maat\' check')
variantBlockHtml += '
80/86 ';
console.log('Matrix variant: \'Maat: 80/86\' check')
variantBlockHtml += '
86/92 ';
console.log('Matrix variant: \'Maat: 86/92\' check')
variantBlockHtml += '
92/98 ';
console.log('Matrix variant: \'Maat: 92/98\' check')
variantBlockHtml += '
98/104 ';
console.log('Matrix variant: \'Maat: 98/104\' check')
variantBlockHtml += '
110/116 ';
console.log('Matrix variant: \'Maat: 110/116\' check')
variantBlockHtml += '
';
$('.productform .product-configure-options').append('
Maat:
');
$('.productform .product-configure-options').append(variantBlockHtml);
$('.productform .product-configure-options select').remove();
$('.productform .product-configure-options-option').remove();
//====================================================
// Product variants
//====================================================
console.log('replaceOptionsAndVariants: variants');
var variantBlockHtml = '
';
$('.productform .product-configure-variants').append(variantBlockHtml);
$('.productform .product-configure-variants select').remove();
$('.productform .product-configure-variants .nice-select').remove();
$('.bundle-buy-individual').on('click', function(e)
{
var button = $(this);
var buttonHtml = button.html();
var bid = $(this).attr('data-bid');
var pid = $(this).attr('data-pid');
var vid = $('input[name="bundle_products['+bid+']['+pid+']"]').val();
var addToCartUrl = theme.url.addToCart;
if( !theme.settings.live_add_to_cart )
{
console.log('Live add to cart disabled, goto URL');
document.location = addToCartUrl+vid+'/';
return false;
}
else if( !theme.shop.ssl && theme.shop.cart_redirect_back )
{
console.log('ssl disabled, cart redirects back to prev page - URL protocol changed to http');
addToCartUrl = addToCartUrl.replace('https:', 'http:');
}
else if( !theme.shop.ssl && !theme.shop.cart_redirect_back )
{
console.log('ssl disabled, cart DOES NOT redirect back to prev page - bail and goto URL');
document.location = addToCartUrl+vid+'/';
return false;
}
if( button[0].hasAttribute('data-vid'))
{
vid = button.attr('data-vid');
}
$(this).html('
');
$.get( addToCartUrl+vid+'/', function()
{
}).done( function(data)
{
console.log(data);
var $data = $(data);
button.html( buttonHtml );
var messages = $data.find('div[class*="messages"] ul');
var message = messages.first('li').text();
var messageHtml = messages.first('li').html();
var themeMessage = new themeMessageParser(data);
themeMessage.render();
});
e.preventDefault();
});
$('body').on('click', '.live-message .success', function()
{
$(this).slideUp(300, function()
{
$(this).remove();
});
});
} /* end function replaceOptionsAndVariants */
return {
Init: function () {
replaceOptionsAndVariants();
}, Reinit: function () {
replaceOptionsAndVariants();
}
};
}(jQuery, window));
$(document).ready(function () {Yellowlab.Init();});
document.addEventListener('DOMContentLoaded', function () {
const form = document.querySelector('.productform');
if (!form) return;
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) {
// ⛔ Reload met ID zodat DMWS 'Geef seintje' werkt
window.location.href = `${window.location.pathname}?id=${variantId}`;
return;
}
// ✅ Normale variant, voorkom reload
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;
});
});
// ❌ Voorkom submit zonder maat
form.addEventListener('submit', function (e) {
const selected = form.querySelector('input[name="product-variant"]:checked');
if (!selected) {
e.preventDefault();
alert("Kies een maat voordat je verdergaat.");
}
});
});