





57 €
\n' + '
\n' + '
- \n' + '
- ‹ \n' + '
- \n' + '
- › \n' + '
\n' + '
\n' + '
\n' + '
\n' + ' \n' + '
- \n' + '
- \n' + '
- \n' + '
- \n' + '
\n' + '
\n' + '
\n' + '
\n' + '
' }); document.addEventListener('click', function(e) { if (!document.getElementById('couponDateWrp').contains(e.target)){ $('.coupon-datepicker-container').hide(); } }) coupon_picker.on('pick.datepicker', function(e) { var date = formatDate(e.date); $('input[name="coupon-date"]').val(date).trigger('change'); $('.coupon-time-group input').attr('disabled', false); $('.coupon-datepicker-container').hide(); }); $('.coupon-datepicker').on('focus', function () { $('.coupon-datepicker-container').show(); }); $('.act-coupon-now').on('click', function(e) { $('.coupon-datepicker').datepicker('setDate', new Date()); $('input[name="coupon-date"]').val(1).trigger('change'); $('input[name="coupon-time"]').parents('.form-group').removeClass('has-error'); $('.coupon-time-group input').attr('disabled', true); }); // timepicker $('.coupon-timepicker-container li').on('click', function() { $('.coupon-timepicker-container li').removeClass('active'); $(this).addClass('active'); var time = $(this).data('time'); var time_str = String(time); var prefix = $('.coupon-timepicker').data('prefix'); if (time_str.length == 1) { time = '0' + time_str; } time_str = time_str + ':00 ' + prefix; $('.coupon-timepicker').val(time_str).trigger('change'); $('input[name="coupon-time"]').val(time).trigger('change'); $('.coupon-timepicker-container').hide(); }); document.addEventListener('click', function(e) { if (!document.getElementById('couponTimeWrp').contains(e.target)){ $('.coupon-timepicker-container').hide(); } }) $('.coupon-timepicker').on('focus', function () { $('.coupon-timepicker-container').show(); }); } $('.coupon-text-button').click(function() { $('textarea[name="coupon-text"]').val(''); update_coupon_info('coupon-text', ''); }); $('#coupon-text-field,input[name="coupon-rec-name"],input[name="coupon-snd-name"]').on('keyup blur', function() { let t = $(this).val(); $(this).val(cleanEmoji(t)); }); let check_admin_edit = function() { if (typeof $.cookie === 'undefined') { setTimeout(check_admin_edit, 500); } else { if($.cookie('admin_logged_in')) { ajaxnav({ url: '/res/admin_edit_panel', data: { product_id: '7270', modification_id: '7902', item_id: '10059' }, method: 'POST', container: '#admin_edit_panel', template: 'content_types/products/admin_edit_panel', update_address: false, append_history: false }); } } } check_admin_edit(); }); function cleanEmoji (string) { var regex = /(?:[\u2700-\u27bf]|(?:\ud83c[\udde6-\uddff])2|[\ud800-\udbff][\udc00-\udfff]|[\u0023-\u0039]\ufe0f?\u20e3|\u3299|\u3297|\u303d|\u3030|\u24c2|\ud83c[\udd70-\udd71]|\ud83c[\udd7e-\udd7f]|\ud83c\udd8e|\ud83c[\udd91-\udd9a]|\ud83c[\udde6-\uddff]|\ud83c[\ude01-\ude02]|\ud83c\ude1a|\ud83c\ude2f|\ud83c[\ude32-\ude3a]|\ud83c[\ude50-\ude51]|\u203c|\u2049|[\u25aa-\u25ab]|\u25b6|\u25c0|[\u25fb-\u25fe]|\u00a9|\u00ae|\u2122|\u2139|\ud83c\udc04|[\u2600-\u26FF]|\u2b05|\u2b06|\u2b07|\u2b1b|\u2b1c|\u2b50|\u2b55|\u231a|\u231b|\u2328|\u23cf|[\u23e9-\u23f3]|[\u23f8-\u23fa]|\ud83c\udccf|\u2934|\u2935|[\u2190-\u21ff])/g; return string.replace(regex, ''); } function update_coupon_info(input_name, val) { var product_id = $('#products_add2cart input[name="product_id"]').val(); if (typeof product_id != 'undefined' && product_id != '') { let name = product_id + '-' + input_name + '-' + ''; //setCookie(name, val, '1'); update_coupon_preview(); } } function update_coupon_preview() { let no_greeting = $('input[name="coupon-no-greeting"]').is(':checked'); let reciever = $('input[name="coupon-rec-name"]').val(); let text = $('textarea[name="coupon-text"]').val(); let sender = $('input[name="coupon-snd-name"]').val(); if (typeof reciever != 'undefined' && reciever.length != 0) { $('.with-greeting .coupon-preview-reciever').each(function() { var last_char = reciever.slice(-1); if (last_char == ',') { $(this).html(reciever); } else { $(this).html(reciever + ','); } }); } else { $('.with-greeting .coupon-preview-reciever').html(''); } if (typeof text != 'undefined' && text.length != 0) { $('.with-greeting .coupon-preview-text .main-text').each(function() { $(this).html(text); }); } else { $('.with-greeting .coupon-preview-text .main-text').html(''); } if (typeof sender != 'undefined' && sender.length != 0) { $('.with-greeting .coupon-preview-sender').each(function() { $(this).html(sender); }); } else { $('.with-greeting .coupon-preview-sender').html(''); } } function reset_coupon_data() { var coupon_fields = [ 'coupon-snd-name', 'coupon-rec-name', 'coupon-date', 'coupon-rec-date', 'coupon-time', 'coupon-rec-time', 'coupon-rec-email', ]; coupon_fields.forEach(function(value, index) { $('.coupon-fields input[name="' + value + '"]').val('').trigger('change'); }); $('.coupon-fields textarea[name="coupon-text"]').val('').trigger('change'); } function setCookie(cname, cvalue, exdays) { let d = new Date(); d.setTime(d.getTime()+(exdays*24*60*60*1000)); let expires = "expires="+d.toGMTString(); document.cookie = cname + "=" + encodeURIComponent(cvalue) + ";domain=cremedelacreme.shop;path=/;" + expires; } function validateEmail(email) { var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/; return regex.test(email); }
An indulgent liquid hand soap and lotion gift set designed to comfort and care for hands.
Featuring our bestselling Hand Soap and new Hand Lotion, infused with a delicate, green floral scent, this duo works in harmony to leave hands feeling velvety soft and supple.
Hand Soap instantly refreshes the skin and gently yet effectively removes impurities. Enriched with silk protein, the non-drying formula helps protect against moisture loss, while wheat germ oil strengthens the skin barrier. Lending a moisturising effect, Hand Lotion features sunflower oil, rich in vitamin E, to hydrate and soften dry skin and marigold oil to soothe and support the skin, leaving rough and stressed hands soft and supple.
- Work Hand Soap into a luxurious lather using warm water, gently massage into the skin and rinse clean. Follow by massaging Hand Lotion into the skin.
- Due to the use of active, natural ingredients, these products may appear cloudy.
Manufacturer's Information
Manufacturer's Information:
Susanne Kaufmann Kosmetik GmbH, Brugg 35, 6870 Bezau, Austria, +43 664 4673638, office@susannekaufmann.com