



- Διαθεσιμότητα: Άμεσα διαθέσιμο
- Κωδικός Προϊόντος: 20.01.09.954
Ιριδίζουσα πούδρα για όλο το πρόσωπο και το σώμα, από την σειρά προϊόντων baked σε συμπαγή μορφή.
- Με μεταξένια υφή που προσφέρει ιδιαίτερη λάμψη στο δέρμα.
- Μπορεί να γίνει εφαρμογή με στεγνό πινέλο ή με νωπό για μεγαλύτερη διάρκεια και εντυπωσικό αποτέλεσμα.
- Ομοιόμορφη κάλυψη.
- Χωρίς parabens.
Κωδικός Προϊόντος:
Brilliant Powder
img').each(function () {
$(this).attr('srcset', $(this).data('srcset')).addClass('lazyloaded').attr('data-loaded', 'true');
});
$thumbs.on('mouseover', function () {
if ($main.data('swiper').params.loop) {
$main.data('swiper').slideToLoop($(this).data('index'), 0);
} else {
$main.data('swiper').slideTo($(this).data('index'), 0);
}
if (Journal[Journal['isPopup'] ? 'quickviewPageStyleOpenThumbInGallery' : 'productPageStyleOpenThumbInGallery']) {
$('.main-image [data-index="' + $(this).data('index') + '"]').trigger('click');
}
});
// image zoom
if (Journal['isDesktop'] && Journal[Journal['isPopup'] ? 'quickviewPageStyleCloudZoomStatus' : 'productPageStyleCloudZoomStatus']) {
$(document).one('mousemove', function () {
Journal.load(Journal['assets']['imagezoom'], 'imagezoom', function () {
$('.main-image img').each(function () {
const $this = $(this);
$this.ImageZoom({
type: Journal[Journal['isPopup'] ? 'quickviewPageStyleCloudZoomPosition' : 'productPageStyleCloudZoomPosition'],
showDescription: false,
offset: [0, 0],
zoomSize: [$this.width(), $this.height()],
bigImageSrc: $this.data('largeimg'),
onShow: function (target) {
target.$viewer.css('opacity', 1);
},
onHide: function (target) {
target.$viewer.css('opacity', 0);
}
});
})
});
});
}
// Auto Update Price
if (Journal['isPopup'] ? Journal['quickviewPageStylePriceUpdate'] : Journal['productPageStylePriceUpdate']) {
function autoUpdatePrice() {
$.ajax({
url: 'index.php?route=journal3/price&popup=' + (Journal['isPopup'] ? 1 : 0),
type: 'post',
data: $('#product-id, #product-quantity, #product input[type="radio"]:checked, #product input[type="checkbox"]:checked, #product select'),
dataType: 'json',
beforeSend: function () {
// $('#button-cart').button('loading');
},
complete: function () {
// $('#button-cart').button('reset');
},
success: function (json) {
if (json['response']['status'] === 'error') {
show_message({
message: json.response.message
});
} else {
if (Journal['isPopup'] ? Journal['quickviewPageStyleProductStockUpdate'] : Journal['productPageStyleProductStockUpdate']) {
if (json['response']['stock']) {
$('.product-stock span').html(json['response']['stock']);
}
if (json['response']['in_stock']) {
$('.product-stock').removeClass('out-of-stock').addClass('in-stock');
} else {
$('.product-stock').removeClass('in-stock').addClass('out-of-stock');
}
}
if (json['response']['tax']) {
$('.product-tax').html(json['response']['tax']);
}
if (json['response']['price']) {
if (json['response']['special']) {
$('.product-price-group .product-price-old').html(json['response']['price']);
$('.product-price-group .product-price-new').html(json['response']['special']);
} else {
$('.product-price-group .product-price').html(json['response']['price']);
}
}
if (json['response']['discounts']) {
$('.product-discount').each(function (index) {
$(this).html(json['response']['discounts'][index]);
});
}
if (json['response']['points']) {
$('.product-points').html(json['response']['points']);
}
if (json['response']['weight']) {
$('.product-stats .product-weight span').html(json['response']['weight']);
}
}
}
});
}
$('.product-options input[type="radio"], .product-options input[type="checkbox"], .product-options select, #product-quantity').on('change', autoUpdatePrice);
autoUpdatePrice();
}
checkQuantity();
});
}
// Initial content loading on link click
$(document).on('click', 'a.product-color, .product-color-additional a', function (e) {
e.preventDefault();
//if (!$(this).hasClass('no-stock')) {
let href = $(this).attr('href');
loadColorContent(href);
//}
});
// Handle browser back and forward buttons
window.addEventListener('popstate', function (event) {
if (event.state && event.state.path) {
loadColorContent(event.state.path, false);
}
});