{"products":"\n    \n\n\t\t\t\t\n\t\t\t\t\n    <section class=\"max-w-[2000px] m-auto\" id=\"product-list\" aria-label=\"Produktliste\" tabindex=\"-1\">\n        \n\n                        <div class=\"products wrapper mode-grid products-grid\">\n            <ul\n                role=\"list\"\n\t\t\t\tx-data=\"gridSizer()\" x-ref=\"grid\" x-init=\"init\" @resize.window=\"update\"\n                class=\"mx-auto pt-4 pb-12 grid gap-2 lg:gap-8 grid-cols-2 xl:grid-cols-4\"\n            >\n                \n\t\t\t\t\t\t<li class=\"pb-block-fullw flex col-span-4 list-item hidden lg:list-item pb-6 routine_area_desktop\">\n\t\t\t\t\t\t<\/li>\n\t<script>\n\t\tfunction appBanner() {\n\t\t\treturn {\n\t\t\t\tvisible: false,\n\t\t\t\tcookieName: \"show_app_banner\",\n\t\t\t\tappLink: \"\",\n\t\t\t\twhere: \"cat\",\n\t\t\t\tautoHideTimer: null,\n\t\t\t\tscrollHandler: null,\n\n\t\t\t\tinit(where) {\n\t\t\t\t\tthis.where = where || \"cat\";\n\n\t\t\t\t\tconst v = this.getCookie(this.cookieName);\n\t\t\t\t\tconst cookieAllows = (v === null || v !== \"false\");\n\n\t\t\t\t\tconst ua = (navigator.userAgent || navigator.vendor || window.opera || \"\").toLowerCase();\n\t\t\t\t\tconst isAndroid = ua.includes(\"android\");\n\t\t\t\t\tconst isiOS = \/iphone|ipad|ipod\/.test(ua) || (navigator.platform === \"MacIntel\" && navigator.maxTouchPoints > 1);\n\n\t\t\t\t\tif (isAndroid) {\n\t\t\t\t\t\tthis.appLink = \"https:\/\/play.google.com\/store\/apps\/details?id=de.newsha.newshaapp\";\n\t\t\t\t\t} else if (isiOS) {\n\t\t\t\t\t\tthis.appLink = \"https:\/\/apps.apple.com\/de\/app\/newsha-haircare-styling\/id6449936073\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\t\/\/ Fallback (Desktop): iOS\n\t\t\t\t\t\tthis.appLink = \"https:\/\/apps.apple.com\/de\/app\/newsha-haircare-styling\/id6449936073\";\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!cookieAllows) {\n\t\t\t\t\t\tthis.visible = false;\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (this.where === \"homepage\") {\n\t\t\t\t\t\tthis.visible = false;\n\n\t\t\t\t\t\tconst threshold = 240; \/\/ px nach unten scrollen bis sichtbar\n\t\t\t\t\t\tthis.scrollHandler = () => {\n\t\t\t\t\t\t\tif (!this.visible && window.scrollY > threshold) {\n\t\t\t\t\t\t\t\tthis.visible = true;\n\n\t\t\t\t\t\t\t\t\/\/ Auto-hide nach 20 Sekunden ab Sichtbarkeit (OHNE Cookie)\n\t\t\t\t\t\t\t\tif (this.autoHideTimer) clearTimeout(this.autoHideTimer);\n\t\t\t\t\t\t\t\tthis.autoHideTimer = setTimeout(() => this.hide(false), 20000);\n\n\t\t\t\t\t\t\t\t\/\/ Listener entfernen (nur einmal triggern)\n\t\t\t\t\t\t\t\twindow.removeEventListener(\"scroll\", this.scrollHandler, { passive: true });\n\t\t\t\t\t\t\t\tthis.scrollHandler = null;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\twindow.addEventListener(\"scroll\", this.scrollHandler, { passive: true });\n\n\t\t\t\t\t\t\/\/ Falls Seite bereits gescrollt geladen wurde\n\t\t\t\t\t\tthis.scrollHandler();\n\t\t\t\t\t} else {\n\t\t\t\t\t\t\/\/ cat (oder default): sofort sichtbar\n\t\t\t\t\t\tthis.visible = true;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\thide(setCookie = false) {\n\t\t\t\t\tthis.visible = false;\n\n\t\t\t\t\tif (this.autoHideTimer) {\n\t\t\t\t\t\tclearTimeout(this.autoHideTimer);\n\t\t\t\t\t\tthis.autoHideTimer = null;\n\t\t\t\t\t}\n\t\t\t\t\tif (this.scrollHandler) {\n\t\t\t\t\t\twindow.removeEventListener(\"scroll\", this.scrollHandler, { passive: true });\n\t\t\t\t\t\tthis.scrollHandler = null;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (setCookie) {\n\t\t\t\t\t\t\/\/ Session-Cookie: kein expires\/max-age -> bis zur n\u00e4chsten Session\n\t\t\t\t\t\tthis.setCookie(this.cookieName, \"false\");\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tgetCookie(name) {\n\t\t\t\t\tconst m = document.cookie.match(\"(?:^|; )\" + name.replace(\/([$?*|{}()\\[\\]\\\\\\\/\\+^])\/g, \"\\\\$1\") + \"=([^;]*)\");\n\t\t\t\t\treturn m ? decodeURIComponent(m[1]) : null;\n\t\t\t\t},\n\n\t\t\t\tsetCookie(name, value) {\n\t\t\t\t\t\/\/ Session-Cookie: kein expires\/max-age -> bis zur n\u00e4chsten Session\n\t\t\t\t\tdocument.cookie = name + \"=\" + encodeURIComponent(value) + \"; path=\/; SameSite=Lax\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t<\/script>\n\t\t\t<li class=\"cat-app-banner col-span-2 lg:hidden\"\n\t\t\t\tx-data=\"appBanner()\"\n\t\t\t\tx-init=\"init('cat')\"\n\t\t\t\tx-show=\"visible\"\n\t\t\t\tx-cloak>\n\t<div class=\"w-full px-4 py-2 bg-[#f2f1f0]\/85 rounded-lg inline-flex justify-between items-center flex app_banner\">\n\t\t<div class=\"flex-1 flex justify-start items-start gap-2\">\n\t\t\t<div class=\"flex justify-start items-center gap-4\">\n\t\t\t\t<span class=\"newshaClose text-xl cursor-pointer\" @click=\"hide(true)\"><\/span>\n\n\t\t\t\t<div class=\"w-[54px] h-[54px] py-4 bg-white rounded-lg shadow-[0px_2px_2px_0px_rgba(0,0,0,0.10)] inline-flex flex-col justify-center items-center gap-2.5\">\n\t\t\t\t\t<img src=\"https:\/\/cdn.newsha.com\/static\/frontend\/Bluro\/newsha_hyva\/de_DE\/images\/logo_newsha.svg\" alt=\"NEWSHA\" class=\"w-8\">\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\n\t\t\t<div class=\"flex-1 self-stretch inline-flex flex-col justify-center items-start gap-[1.50px]\">\n\t\t\t\t<div class=\"pb-1 flex flex-col justify-start items-start\">\n\t\t\t\t\t<div class=\"text-center justify-start text-sm font-bold leading-[14px]\">NEWSHA APP<\/div>\n\n\t\t\t\t\t<div class=\"inline-flex justify-start items-center gap-1\">\n\t\t\t\t\t\t<div class=\"flex items-center\">\n\t\t\t\t\t\t\t<div class=\"rating-box sum-short\">\n\t\t\t\t\t\t\t\t<div class=\"rating\" style=\"width: 100%;\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"font-bold text-xs font-medium ml-1 hidden\">\n\t\t\t\t\t\t\t\t5\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"self-stretch h-[9px] justify-start text-[10px] font-normal leading-[10px] pt-1\">Exklusive Benefits<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\n\t\t<div class=\"flex justify-start items-center gap-[3px]\">\n\t\t\t<a :href=\"appLink\" target=\"_blank\" rel=\"noopener\"\n\t\t\t\tdata-icon=\"false\" data-state=\"Default\" data-variant=\"Primary\"\n\t\t\t\tclass=\"w-[100px] px-10 py-5 outline outline-2 outline-offset-[-2px] outline-clr-newsha-black flex justify-center items-center gap-2 whitespace-nowrap\">\n\t\t\t\t<div class=\"text-center justify-center text-sm font-bold leading-[14px]\">Zur App<\/div>\n\t\t\t<\/a>\n\t\t<\/div>\n\t<\/div>\n\t\t\t<\/li>\n\t\t\t\t\t\t<li class=\"cat-teaser col-span-2 aspect-square xl:aspect-auto\">\n\t\t\t\t\t\t\t<style>#html-body [data-pb-style=FK1K3V7],#html-body [data-pb-style=L1S3RRW]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=L1S3RRW]{justify-content:center;display:flex;flex-direction:column;background-color:#f2f1f0;text-align:center;min-height:100%}#html-body [data-pb-style=FK1K3V7]{align-self:stretch}#html-body [data-pb-style=HTFJ4LP]{display:flex;width:100%}#html-body [data-pb-style=FM04TWD],#html-body [data-pb-style=P6OS3IV],#html-body [data-pb-style=TGIU3FG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:16.6667%;align-self:stretch}#html-body [data-pb-style=P6OS3IV],#html-body [data-pb-style=TGIU3FG]{justify-content:center;width:66.6667%;align-self:center}#html-body [data-pb-style=P6OS3IV]{justify-content:flex-start;width:16.6667%;align-self:stretch}#html-body [data-pb-style=MC529BA]{padding-bottom:16px}<\/style><div data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"L1S3RRW\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"FK1K3V7\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"HTFJ4LP\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"FM04TWD\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"align-center\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"TGIU3FG\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"MC529BA\"><h1 id=\"UY6S3D9\" style=\"text-align: center;\" data-placeholder=\"Edit Heading Text\" data-appearance=\"default\" data-element=\"main\"><span id=\"JRI7FGS\" style=\"font-size: 24pt;\">Style &amp; Finish<\/span><\/h1><\/div><div class=\"px-8 text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"PGUSN7T\">Mit den Produkten aus der Finish-Kollektion kreierst du deinen pers&ouml;nlichen Look und schenkst deinem Haar zus&auml;tzliche Pflege oder optimalen Halt f&uuml;r deine Stylings. Unsere Style &amp; Finish Produkte sind vielf&auml;ltig und verleihen deinem Haar sichtbar mehr Glanz, maximale Pflege und einen einzigartigen Duft. Entdecke jetzt deine passenden Produkte.<\/p><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"P6OS3IV\"><\/div><\/div><\/div><\/div><\/div>\n\t\t\t\t\t\t<\/li>                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/312\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tBESTSELLER\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-345\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"312\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/luxe-treatment-oil\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-312\"\n     x-data=\"\"\n     @update-gallery-312.window=\"$root.src = $event.detail\"\n            loading=\"eager\"\n            fetchpriority=\"high\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXE-TREATMENT-OIL-S-345-1_v260420.jpg\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Luxe-Treatment-Oil-30ml-neu\"\n    title=\"NEWSHA-Luxe-Treatment-Oil-30ml-neu\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"312\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"312\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5447\">30 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5441\">100 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5447 hidden\" data-parentid=\"312\">32,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5441 hidden\" data-parentid=\"312\">72,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5447 hidden\" data-parentid=\"312\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5441 hidden\" data-parentid=\"312\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5447 hidden\" data-parentid=\"312\">(<span class=\"price\">1.066,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5441 hidden\" data-parentid=\"312\">(<span class=\"price\">720,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5447 hidden\" data-parentid=\"312\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXE-TREATMENT-OIL-30ml-S-28570-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5441 hidden\" data-parentid=\"312\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXE-TREATMENT-OIL-100ml-S-28571-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5447 hidden\" data-parentid=\"312\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5441 hidden\" data-parentid=\"312\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5447 hidden\" data-parentid=\"312\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tBESTSELLER\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28570\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5441 hidden\" data-parentid=\"312\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tBESTSELLER\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28571\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5447 hidden\" data-parentid=\"312\">https:\/\/www.newsha.de\/luxe-treatment-oil-30ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5441 hidden\" data-parentid=\"312\">https:\/\/www.newsha.de\/luxe-treatment-oil-100ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-312 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Luxe Treatment Oil        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Reichhaltiges Pflege\u00f6l  \u00b7 Geschmeidigkeit und Glanz  \u00b7 Brillantes Finish\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-312 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-312 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/323\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tBESTSELLER\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-356\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"323\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/no-more-frizz-cream\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-323\"\n     x-data=\"\"\n     @update-gallery-323.window=\"$root.src = $event.detail\"\n            loading=\"eager\"\n            fetchpriority=\"high\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-NO-MORE-FRIZZ-CREAM-S-356-1_v260701.jpg\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-No-More-Frizz-Cream-75ml\"\n    title=\"NEWSHA-No-More-Frizz-Cream-75ml\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"323\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"323\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5432\">75 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5432 hidden\" data-parentid=\"323\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5432 hidden\" data-parentid=\"323\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5432 hidden\" data-parentid=\"323\">(<span class=\"price\">346,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5432 hidden\" data-parentid=\"323\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-NO-MORE-FRIZZ-CREAM-75ml-S-28592-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5432 hidden\" data-parentid=\"323\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5432 hidden\" data-parentid=\"323\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tBESTSELLER\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28592\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5432 hidden\" data-parentid=\"323\">https:\/\/www.newsha.de\/no-more-frizz-cream-75ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-323 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            No More Frizz Cream        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Strukturberuhigend \u00b7 Pflegend und feuchtigkeitsspendend \u00b7 Anti-Frizz Effekt \n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-323 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-323 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                <li id=\"S-28332\" class=\"h-product flex col-span-1  \"><style>#html-body [data-pb-style=P7DM5TF],#html-body [data-pb-style=T0HSGYW]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}<\/style><div class=\"force-hidden-row-mobile\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"P7DM5TF\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-decoded=\"true\"><div style=\"position: relative; padding-top: 150%;\">\r\n  <iframe\r\n    src=\"https:\/\/customer-2so3acq3hzsb0mrj.cloudflarestream.com\/3e6d742d772fd326f69fa10f21206b26\/iframe?muted=true&preload=true&loop=true&autoplay=true&poster=https%3A%2F%2Fcustomer-2so3acq3hzsb0mrj.cloudflarestream.com%2F3e6d742d772fd326f69fa10f21206b26%2Fthumbnails%2Fthumbnail.jpg%3Ftime%3D%26height%3D600&controls=false\"\r\n    style=\"border: none; position: absolute; top: 0; left: 0; height: 100%; width: 100%;\"\r\n    allow=\"accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;\"\r\n    allowfullscreen=\"true\"\r\n  ><\/iframe>\r\n<\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"T0HSGYW\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-decoded=\"true\"><div style=\"position: relative; padding-top: 195.55555555555554%;\">\r\n  <iframe\r\n    src=\"https:\/\/customer-2so3acq3hzsb0mrj.cloudflarestream.com\/784cc9c109f69c24412f41e2060898e2\/iframe?muted=true&preload=true&loop=true&autoplay=true&poster=https%3A%2F%2Fcustomer-2so3acq3hzsb0mrj.cloudflarestream.com%2F784cc9c109f69c24412f41e2060898e2%2Fthumbnails%2Fthumbnail.jpg%3Ftime%3D%26height%3D600&controls=false\"\r\n    style=\"border: none; position: absolute; top: 0; left: 0; height: 100%; width: 100%;\"\r\n    allow=\"accelerometer; gyroscope; autoplay; encrypted-media; picture-in-picture;\"\r\n    allowfullscreen=\"true\"\r\n  ><\/iframe>\r\n<\/div><\/div><\/div><\/div><\/li>                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/1824\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tHYPED\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28332\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"1824\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/sleek-perfection-gel\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1824\"\n     x-data=\"\"\n     @update-gallery-1824.window=\"$root.src = $event.detail\"\n            loading=\"eager\"\n            fetchpriority=\"high\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SLEEK-PERFECTION-GEL-125ml-S-28332-1_v260326.jpg\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Sleek&#x20;Perfection&#x20;Gel\"\n    title=\"Sleek&#x20;Perfection&#x20;Gel\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">125 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1824\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1824\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMTgyNC8~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-1824 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">26,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Sleek Perfection Gel        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Haargel f\u00fcr Sleek-Looks \u00b7 Leicht ausk\u00e4mmbar \u00b7 Pflegendes Finish\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-1824 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1824 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">26,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                \n\t\t\t\t\t\t\t<li class=\"pb-block-fullw flex col-span-4 list-item lg:hidden py-16 routine_area_mobile\">\n\t\t\t\t\t\t\t<\/li>                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/326\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-359\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"326\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/total-control-gel\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-326\"\n     x-data=\"\"\n     @update-gallery-326.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TOTAL-CONTROL-GEL-S-359-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-total-control-gel\"\n    title=\"newsha-total-control-gel\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"326\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"326\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5445\">125 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5445 hidden\" data-parentid=\"326\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5445 hidden\" data-parentid=\"326\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5445 hidden\" data-parentid=\"326\">(<span class=\"price\">208,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5445 hidden\" data-parentid=\"326\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TOTAL-CONTROL-GEL-125ml-S-28585-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5445 hidden\" data-parentid=\"326\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5445 hidden\" data-parentid=\"326\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28585\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5445 hidden\" data-parentid=\"326\">https:\/\/www.newsha.de\/total-control-gel-125ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-326 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Total Control Gel        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Starkes Haargel  \u00b7 Maximale Kontrolle \u00b7 Geeignet f\u00fcr Wet-Looks\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-326 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-326 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/332\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tOUR FAVORITE\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-365\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"332\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/shaping-lift-foam\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-332\"\n     x-data=\"\"\n     @update-gallery-332.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SHAPING-LIFT-FOAM-S-365-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Shaping-Lift-Foam-200ml\"\n    title=\"NEWSHA-Shaping-Lift-Foam-200ml\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"332\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"332\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5440\">200 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5440 hidden\" data-parentid=\"332\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5440 hidden\" data-parentid=\"332\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5440 hidden\" data-parentid=\"332\">(<span class=\"price\">130,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5440 hidden\" data-parentid=\"332\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SHAPING-LIFT-FOAM-200ml-S-28542-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5440 hidden\" data-parentid=\"332\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5440 hidden\" data-parentid=\"332\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tOUR FAVORITE\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28542\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5440 hidden\" data-parentid=\"332\">https:\/\/www.newsha.de\/shaping-lift-foam-200ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-332 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Shaping Lift Foam        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Pflegender Stylingschaum \u00b7  F\u00fclle und Volumen \u00b7 Kein verkleben\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-332 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-332 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/1805\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tNEW\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28331\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"1805\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/4-in-1-performance-spray\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1805\"\n     x-data=\"\"\n     @update-gallery-1805.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-4-IN-1-PERFORMANCE-SPRAY-S-28331-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"4-IN-1&#x20;Performance&#x20;Spray\"\n    title=\"4-IN-1&#x20;Performance&#x20;Spray\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">75 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1805\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1805\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMTgwNS8~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-1805 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">49,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            4-IN-1 Performance Spray        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Blow-Dry Spray \u00b7 Geschmeidigkeit und Glanz \u00b7 Anti-Frizz-Effekt \n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-1805 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1805 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">49,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/333\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-366\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"333\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/flexible-control-hairspray\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-333\"\n     x-data=\"\"\n     @update-gallery-333.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-FLEXIBLE-CONTROL-HAIRSPRAY-S-366-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Flexible-Control-Hairspray-300ml\"\n    title=\"NEWSHA-Flexible-Control-Hairspray-300ml\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9268\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"333\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"333\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5432\">75 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5448\">300 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5432 hidden\" data-parentid=\"333\">9,90\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5448 hidden\" data-parentid=\"333\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5432 hidden\" data-parentid=\"333\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5448 hidden\" data-parentid=\"333\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5432 hidden\" data-parentid=\"333\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5448 hidden\" data-parentid=\"333\">(<span class=\"price\">86,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5432 hidden\" data-parentid=\"333\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-FLEXIBLE-CONTROL-HAIRSPRAY-75ml-S-28734-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5448 hidden\" data-parentid=\"333\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-FLEXIBLE-CONTROL-HAIRSPRAY-300ml-S-28541-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5432 hidden\" data-parentid=\"333\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5448 hidden\" data-parentid=\"333\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5432 hidden\" data-parentid=\"333\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28734\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5448 hidden\" data-parentid=\"333\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28541\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5432 hidden\" data-parentid=\"333\">https:\/\/www.newsha.de\/flexible-control-hairspray-75ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5448 hidden\" data-parentid=\"333\">https:\/\/www.newsha.de\/flexible-control-hairspray-300ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-333 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Flexible Control Hairspray        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Flexibler Halt \u00b7 Seidiger Glanz  \u00b7 Kein Verkleben\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-333 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-333 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/334\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-367\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"334\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/red-carpet-hairspray\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-334\"\n     x-data=\"\"\n     @update-gallery-334.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-RED-CARPET-HAIRSPRAY-S-367-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Red-Carpet-Hairspray\"\n    title=\"NEWSHA-Red-Carpet-Hairspray\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"334\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"334\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5448\">300 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5448 hidden\" data-parentid=\"334\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5448 hidden\" data-parentid=\"334\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5448 hidden\" data-parentid=\"334\">(<span class=\"price\">86,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5448 hidden\" data-parentid=\"334\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-RED-CARPET-HAIRSPRAY-300ml-S-28540-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5448 hidden\" data-parentid=\"334\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5448 hidden\" data-parentid=\"334\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28540\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5448 hidden\" data-parentid=\"334\">https:\/\/www.newsha.de\/red-carpet-hairspray-300ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-334 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Red Carpet Hairspray        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Maximaler  Halt \u00b7 Fixiert den Look  \u00b7 Starke Formulierung\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-334 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-334 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/331\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-364\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"331\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/lifting-paste\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-331\"\n     x-data=\"\"\n     @update-gallery-331.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LIFTING-PASTE-S-364-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Lifting&#x20;Paste\"\n    title=\"Lifting&#x20;Paste\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"331\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"331\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5432\">75 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5432 hidden\" data-parentid=\"331\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5432 hidden\" data-parentid=\"331\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5432 hidden\" data-parentid=\"331\">(<span class=\"price\">346,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5432 hidden\" data-parentid=\"331\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LIFTING-PASTE-75ml-S-28579-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5432 hidden\" data-parentid=\"331\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5432 hidden\" data-parentid=\"331\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28579\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5432 hidden\" data-parentid=\"331\">https:\/\/www.newsha.de\/lifting-paste-75ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-331 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Lifting Paste        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Mattes Finish  \u00b7 Definiert und Modelliert  \u00b7 Flexibles Styling\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-331 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-331 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/327\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-360\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"327\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/strong-molding-wax\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-327\"\n     x-data=\"\"\n     @update-gallery-327.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-STRONG-MOLDING-WAX-S-360-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Strong&#x20;Molding&#x20;Wax\"\n    title=\"Strong&#x20;Molding&#x20;Wax\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"327\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"327\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5432\">75 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5432 hidden\" data-parentid=\"327\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5432 hidden\" data-parentid=\"327\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5432 hidden\" data-parentid=\"327\">(<span class=\"price\">346,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5432 hidden\" data-parentid=\"327\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-STRONG-MOLDING-WAX-75ml-S-28584-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5432 hidden\" data-parentid=\"327\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5432 hidden\" data-parentid=\"327\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28584\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5432 hidden\" data-parentid=\"327\">https:\/\/www.newsha.de\/strong-molding-wax-75ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-327 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Strong Molding Wax        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Starker Halt \u00b7 Optimale Kontrolle  \u00b7 Sturktur und Textur\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-327 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-327 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/328\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-361\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"328\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/gentle-structure-wax\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-328\"\n     x-data=\"\"\n     @update-gallery-328.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GENTLE-STRUCTURE-WAX-S-361-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Gentle&#x20;Structure&#x20;Wax\"\n    title=\"Gentle&#x20;Structure&#x20;Wax\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"328\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"328\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5432\">75 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5432 hidden\" data-parentid=\"328\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5432 hidden\" data-parentid=\"328\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5432 hidden\" data-parentid=\"328\">(<span class=\"price\">346,67\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5432 hidden\" data-parentid=\"328\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GENTLE-STRUCTURE-WAX-75ml-S-28583-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5432 hidden\" data-parentid=\"328\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5432 hidden\" data-parentid=\"328\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28583\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5432 hidden\" data-parentid=\"328\">https:\/\/www.newsha.de\/gentle-structure-wax-75ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-328 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Gentle Structure Wax        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Flexibler Halt \u00b7 Textur und Volumen \u00b7 Leichte Formulierung\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-328 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-328 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/939\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28837\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"939\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/solid-matte-paste\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-939\"\n     x-data=\"\"\n     @update-gallery-939.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SOLID-MATTE-PASTE-75ml-S-28837-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Solid-Matte-Paste-75ml\"\n    title=\"NEWSHA-Solid-Matte-Paste-75ml\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">75 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"939\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"939\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvOTM5Lw~~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-939 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">24,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Solid Matte Paste        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Mattes Finish \u00b7 Flexible Stylings \u00b7 Struktur und Halt\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-939 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-939 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">24,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/955\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28838\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"955\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/elastic-styling-wax\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-955\"\n     x-data=\"\"\n     @update-gallery-955.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-ELASTIC-STYLING-WAX-75ml-S-28838-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Elastic-Styling-Wax-75ml\"\n    title=\"NEWSHA-Elastic-Styling-Wax-75ml\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">75 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"955\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"955\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvOTU1Lw~~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-955 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">24,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Elastic Styling Wax        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\"> Halt und Elastizit\u00e4t \u00b7 F\u00fclle und Definition  \u00b7 St\u00e4rkt das Haar\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-955 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-955 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">24,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/322\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-355\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"322\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/supreme-thickening-spray\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-322\"\n     x-data=\"\"\n     @update-gallery-322.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SUPREME-THICKENING-SPRAY-S-355-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Supreme&#x20;Thickening&#x20;Spray\"\n    title=\"Supreme&#x20;Thickening&#x20;Spray\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"322\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"322\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5445\">125 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5445 hidden\" data-parentid=\"322\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5445 hidden\" data-parentid=\"322\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5445 hidden\" data-parentid=\"322\">(<span class=\"price\">208,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5445 hidden\" data-parentid=\"322\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SUPREME-THICKENING-SPRAY-125ml-S-28705-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5445 hidden\" data-parentid=\"322\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5445 hidden\" data-parentid=\"322\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28705\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5445 hidden\" data-parentid=\"322\">https:\/\/www.newsha.de\/supreme-thickening-spray-125ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-322 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Supreme Thickening Spray        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Pflegendes Volumenspray  \u00b7 Kr\u00e4ftiges und f\u00fclliges Haar  \u00b7 Dichtes Haargef\u00fchl\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-322 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-322 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/321\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-354\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"321\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/premium-curl-enhancer\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-321\"\n     x-data=\"\"\n     @update-gallery-321.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-PREMIUM-CURL-ENHANCER-S-354-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Premium-Curl-Enhancer-125ml-new-design\"\n    title=\"NEWSHA-Premium-Curl-Enhancer-125ml-new-design\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"321\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"321\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5445\">125 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5445 hidden\" data-parentid=\"321\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5445 hidden\" data-parentid=\"321\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5445 hidden\" data-parentid=\"321\">(<span class=\"price\">208,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5445 hidden\" data-parentid=\"321\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-PREMIUM-CURL-ENHANCER-125ml-S-28706-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5445 hidden\" data-parentid=\"321\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5445 hidden\" data-parentid=\"321\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28706\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5445 hidden\" data-parentid=\"321\">https:\/\/www.newsha.de\/premium-curl-enhancer-125ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-321 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Premium Curl Enhancer        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">B\u00fcndelt Locken und Wellen \u00b7 Feuchtigkeitsspendend \u00b7 Definiert \n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-321 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-321 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/324\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-357\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"324\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/sweet-salty-beach-spray\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-324\"\n     x-data=\"\"\n     @update-gallery-324.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SWEET-SALTY-BEACH-SPRAY-S-357-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Sweet&#x20;&amp;&#x20;Salty&#x20;Beach&#x20;Spray\"\n    title=\"Sweet&#x20;&amp;&#x20;Salty&#x20;Beach&#x20;Spray\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9267\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"324\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"324\">\n\t\t\t\t<div class=\"cat field configurable required ms-[12px] me-[12px] w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">\n\t\t\t\t\t<div class=\"control w-full\">\n\t\t\t\t\t\t<select\n\t\t\t\t\t\t\tname=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-selector=\"super_attribute[139]\"\n\t\t\t\t\t\t\tdata-validate=\"{required:true}\"\n\t\t\t\t\t\t\tid=\"attribute139\"\n\t\t\t\t\t\t\tclass=\"super-attribute-select\"\n\t\t\t\t\t\t\tx-init=\"if (document.readyState != 'complete') { window.addEventListener('load', function() { variantenSelectToBtns(jQuery($el).parent(), 'category') }) } else { variantenSelectToBtns(jQuery($el).parent(), 'category') }\" >\n\t\t\t\t\t\t<option value=\"\">Bitte ausw\u00e4hlen...<\/option>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<option value=\"5445\">125 ml<\/option>\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t<div class=\"price_5445 hidden\" data-parentid=\"324\">26,00\u00a0\u20ac\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5445 hidden\" data-parentid=\"324\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5445 hidden\" data-parentid=\"324\">(<span class=\"price\">208,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5445 hidden\" data-parentid=\"324\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SWEET-SALTY-BEACH-SPRAY-125ml-S-28587-1_v260701.jpg\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"list-button-outer_5445 hidden\" data-parentid=\"324\">\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"badges_outer_5445 hidden\" data-parentid=\"324\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28587\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5445 hidden\" data-parentid=\"324\">https:\/\/www.newsha.de\/sweet-salty-beach-spray-125ml<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-324 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Sweet & Salty Beach Spray        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Texturierendes Stylingspray  \u00b7 Griffige Beachwaves  \u00b7 Mattes Finish\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-324 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-324 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/605\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28712\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"605\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/texturizing-volume-powder\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-605\"\n     x-data=\"\"\n     @update-gallery-605.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TEXTURIZING-VOLUME-POWDER-5g-S-28712-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Texturizing&#x20;Volume&#x20;Powder&#x20;&#x7C;&#x20;5g\"\n    title=\"Texturizing&#x20;Volume&#x20;Powder&#x20;&#x7C;&#x20;5g\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">5g<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"605\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"605\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvNjA1Lw~~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-605 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">23,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Texturizing Volume Powder | 5g        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Mattierendes Styling-Puder  \u00b7 Ansatzvolumen \u00b7 F\u00fclle und Textur\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-605 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-605 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">23,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/1613\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-2901307\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"1613\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/root-touch-up-spray-blonde\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1613\"\n     x-data=\"\"\n     @update-gallery-1613.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-ROOT-TOUCH-UP-SPRAY-BLONDE-S-2901307-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-ROOT-TOUCH-UP-SPRAY-BLONDE-75ML\"\n    title=\"NEWSHA-ROOT-TOUCH-UP-SPRAY-BLONDE-75ML\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">75 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1613\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1613\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMTYxMy8~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-1613 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">29,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Root Touch Up Spray - Blonde        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Anti-Ansatz Spray \u00b7 Kaschiert  \u00b7 F\u00fcr blondes Haar\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-1613 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1613 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">29,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/1614\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-2901308\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"1614\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/root-touch-up-spray-brown\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1614\"\n     x-data=\"\"\n     @update-gallery-1614.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-ROOT-TOUCH-UP-SPRAY-BROWN-S-2901308-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-ROOT-TOUCH-UP-SPRAY-BROWN-75ML\"\n    title=\"NEWSHA-ROOT-TOUCH-UP-SPRAY-BROWN-75ML\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">75 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1614\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1614\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMTYxNC8~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-1614 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">29,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Root Touch Up Spray - Brown        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Anti-Ansatz Spray \u00b7 Kaschiert  \u00b7 F\u00fcr braunes Haar\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-1614 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1614 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">29,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/1615\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-2901309\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"1615\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/root-touch-up-spray-black\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1615\"\n     x-data=\"\"\n     @update-gallery-1615.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-ROOT-TOUCH-UP-SPRAY-BLACK-S-2901309-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-ROOT-TOUCH-UP-SPRAY-BLACK-75ML\"\n    title=\"NEWSHA-ROOT-TOUCH-UP-SPRAY-BLACK-75ML\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">75 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1615\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1615\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMTYxNS8~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-1615 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">29,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Root Touch Up Spray - Black        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Anti-Ansatz Spray \u00b7 Kaschiert  \u00b7 F\u00fcr schwarzes Haar\n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-1615 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1615 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">29,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/869\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-30219\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"869\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/hair-perfume-gentle-cotton-scent\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-869\"\n     x-data=\"\"\n     @update-gallery-869.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-HAIR-PERFUME-GENTLE-COTTON-SCENT-10ml-S-30219-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Hair&#x20;Perfume&#x20;Gentle&#x20;Cotton&#x20;Scent\"\n    title=\"Hair&#x20;Perfume&#x20;Gentle&#x20;Cotton&#x20;Scent\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">10 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"869\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"869\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvODY5Lw~~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-869 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">12,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Hair Perfume Gentle Cotton Scent        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Frischer Duft \u00b7 Soft Cotton \u00b7 Luxuri\u00f6ses Fresh-Up \n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-869 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-869 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">12,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/293\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-white flex-col\">\n\t\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t\tBESTSELLER\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-30060\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"293\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/hair-perfume-luxury-tonka-scent\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-293\"\n     x-data=\"\"\n     @update-gallery-293.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-HAIR-PERFUME-LUXURY-TONKA-SCENT-10ml-S-30060-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-hair-perfume-luxury-tonka-scent\"\n    title=\"newsha-hair-perfume-luxury-tonka-scent\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">10 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"293\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"293\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMjkzLw~~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-293 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">12,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Hair Perfume Luxury Tonka Scent        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Eleganter Duft  \u00b7 Tonka & Vanille \u00b7  Luxuri\u00f6ses Fresh-Up \n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-293 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-293 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">12,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/1392\/\"\n    class=\"item product product-item relative product_addtocart_form flex flex-col w-full overflow-hidden \"\n    >\n    \n\t\n\t\t<div class=\"absolute left-0 badges_outer pointer-events-none z-20\">\n\t\t\t<div class=\"badge flex justify-center px-2 lg:px-4 bg-newsha-black text-white flex-col aktionsbadge hidden\" data-referSKU=\"S-28218\">\n\t\t\t\t<div class=\"badge_text font-bold leading-none\">\n\t\t\t\t\t20% RABATT\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\n\t\n\t\n\t\n\t\n\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\n\t<input name=\"form_key\" type=\"hidden\" value=\"9ZWjdNWH0fs2cFeJ\" \/>    <input type=\"hidden\" name=\"product\" value=\"1392\"\/>\n                <div class=\"product photo product-item-photo relative block mx-auto bg-newsha-grey py-8 z-0 w-full\" tabindex=\"-1\">\n        \n\t\t\t\t<a class=\"absolute w-0 h-full hidden-link-over-img z-10\" href=\"https:\/\/www.newsha.de\/hair-perfume-natural-zen-scent\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1392\"\n     x-data=\"\"\n     @update-gallery-1392.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-HAIR-PERFUME-NATURAL-ZEN-SCENT-10ml-S-28218-1_v260701.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA_HAIR_PERFUME_NATURAL_ZEN_SCENT_NEW\"\n    title=\"NEWSHA_HAIR_PERFUME_NATURAL_ZEN_SCENT_NEW\"\n\/>\n    <\/div>\n\t\n\t\n\t\n\n\t\n\t\n\t<div class=\"product-info relative flex flex-col grow z-10  \">\n\t\n\t\n\t<input type=\"hidden\" id=\"varianten_hauptprodukt\" value=\"9266\" \/>\n\t<div class=\"hidden-into-cart bg-newsha-grey flex items-center flex-wrap lg:flex-nowrap\">\n\t\t\t\t<div class=\"h-6 bg-white rounded-full selectbtn selected simple_blurounit flex items-center justify-center px-4 ms-[12px] me-[12px] text-[12px] lg:text-[14px] font-semibold whitespace-nowrap w-full lg:ms-[24px] lg:me-0 lg:w-1\/2\">10 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"9ZWjdNWH0fs2cFeJ\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1392\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1392\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjM1I1YkdVdFptbHVhWE5vL3Byb2R1Y3QvMTM5Mi8~\">\n\t\t\t\t\n\t\t\t\t<div class=\"placeholder-sizes cat field configurable required w-full h-6 lg:w-1\/2\"> <\/div>\t\t\n\t\t\n\t\t<div class=\"price-from-div price-from-div-hiddenhover whitespace-nowrap price-from-1392 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">12,00\u00a0\u20ac\n\t\t<\/div>\t\t\n\t\t\t\t<div class=\"list-button-outer flex-1 w-6 h-6 me-[12px] lg:flex-initial lg:me-[24px] text-right\">\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t<button\n\t\t\t\t\tclass=\"w-6 h-6 newshaAdd-to-cart text-2xl\"\n\t\t\t\t\ttitle=\"In den Warenkorb\"\n\t\t\t\t\taria-label=\"In den Warenkorb\"\n\t\t\t\t\tdata-addto=\"cart\"\n\t\t\t\t>\n\t\t\t\t<\/button>\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\t\t\n\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\n\t\n\t\n\t\t\t\t\n        <div class=\"list-prodname items-center justify-center text-primary font-medium text-xs lg:text-base uppercase h-7 lg:h-4 line-clamp-2 lg:line-clamp-1 leading-[14.40px] lg:leading-[17.60px] mt-3 lg:mt-4\">\n            Hair Perfume Natural Zen Scent        <\/div>\n\t\t\n\t\t\n\t\t\t<div class=\"flex outer-visible-area\">\n\t\t\t\t<div class=\"grow items-center justify-center text-primary font-normal text-[10px] lg:text-sm usps-cat h-[45px] lg:h-[42px] line-clamp-3 lg:line-clamp-2 mt-[5px] lg:mt-4\">Blumiger Duft \u00b7 Kirschbl\u00fcte und Sandelholz \u00b7 Luxuri\u00f6ses Fresh-Up \n\t\t\t\t<\/div>\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"flex flex-col justify-end items-end price-from-div text-xs lg:text-sm\">\n\t\t\t\t\t<div class=\"old-price oldprice-from-1392 line-through font-medium leading-[18px]\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1392 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">12,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\n        \n        \n    <\/div>\n<\/form>\n                    <\/li>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                \t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n            <\/ul>\n        <\/div>\n\t\t\n\t\t\t\t\t\n\t\t\t<div class=\"w-full seo-cat-block\">\n\t\t\t\t<style>#html-body [data-pb-style=U2SC747]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;margin-top:150px}#html-body [data-pb-style=SJ0VBN2]{justify-content:flex-start}#html-body [data-pb-style=AUOUSX7],#html-body [data-pb-style=BV452WV],#html-body [data-pb-style=MVWHYSF],#html-body [data-pb-style=SJ0VBN2]{display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=MVWHYSF]{justify-content:flex-start;margin-top:60px;margin-bottom:60px}#html-body [data-pb-style=AUOUSX7],#html-body [data-pb-style=BV452WV]{justify-content:center;background-color:#f2f1f0;padding-top:50px;padding-bottom:20px}#html-body [data-pb-style=BV452WV]{margin-bottom:80px;padding-top:30px;padding-bottom:40px}#html-body [data-pb-style=MDOG5G6]{margin-top:100px;margin-bottom:100px}#html-body [data-pb-style=GR8HG1S],#html-body [data-pb-style=I47AQ33],#html-body [data-pb-style=MDOG5G6],#html-body [data-pb-style=MJTSC2B]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=GR8HG1S]{background-color:#f2f1f0}#html-body [data-pb-style=I47AQ33],#html-body [data-pb-style=MJTSC2B]{margin-top:200px}#html-body [data-pb-style=I47AQ33]{margin-top:100px}#html-body [data-pb-style=CB9XQ0S]{margin-top:32px;margin-bottom:64px}#html-body [data-pb-style=CB9XQ0S],#html-body [data-pb-style=G29DDLR]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=GVRX7GV]{margin-top:32px}#html-body [data-pb-style=GVRX7GV],#html-body [data-pb-style=HW1HBCY],#html-body [data-pb-style=W2VE5R2]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=HW1HBCY]{margin-top:150px;margin-bottom:150px}#html-body [data-pb-style=W2VE5R2]{margin:200px 100px}#html-body [data-pb-style=AFTH7WK],#html-body [data-pb-style=VA6KCT9]{width:100%;border-width:.5px;border-color:#cecece;display:inline-block}#html-body [data-pb-style=L41PDBY]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=INMC45F],#html-body [data-pb-style=S8NUH07]{margin-bottom:32px}#html-body [data-pb-style=EEVUSJO],#html-body [data-pb-style=INMC45F],#html-body [data-pb-style=S8NUH07]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=CTSNLDH],#html-body [data-pb-style=GB0J7Y1],#html-body [data-pb-style=KEE9TVT]{background-color:#fff}#html-body [data-pb-style=CTSNLDH],#html-body [data-pb-style=GB0J7Y1],#html-body [data-pb-style=KEE9TVT],#html-body [data-pb-style=SJOPWK7]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=S1XFHUG]{background-color:#fff}#html-body [data-pb-style=DVISABT],#html-body [data-pb-style=K7CNUXQ],#html-body [data-pb-style=K7NFRXS],#html-body [data-pb-style=LPNUGNG],#html-body [data-pb-style=S1XFHUG]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=MB9YO6U]{margin-bottom:8px}#html-body [data-pb-style=WHYQHL4]{margin-top:40px}#html-body [data-pb-style=LTX99YB]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=IHO1I6G]{margin-top:45px}#html-body [data-pb-style=FKBSET7]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=K68FPFT]{margin-top:45px}#html-body [data-pb-style=FPQPD5M]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=A0QUHIR],#html-body [data-pb-style=A3HYOQP],#html-body [data-pb-style=DHQT6WH],#html-body [data-pb-style=G9PPQJB],#html-body [data-pb-style=GUUG922],#html-body [data-pb-style=LFG25UX],#html-body [data-pb-style=RFNPWAS],#html-body [data-pb-style=T9B0JII],#html-body [data-pb-style=TIS3TTK],#html-body [data-pb-style=WDIL4IH],#html-body [data-pb-style=X2NB6N7],#html-body [data-pb-style=YI4D5BF],#html-body [data-pb-style=YS0P2KS]{display:flex;width:100%}#html-body [data-pb-style=AVQKW40]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px;padding-bottom:32px}#html-body [data-pb-style=E3NSMX7]{background-color:transparent}#html-body [data-pb-style=ROWBEP3]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=QIONWM5]{background-color:transparent}#html-body [data-pb-style=UBXHUE0]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=XF477DL]{background-color:transparent}#html-body [data-pb-style=LE4D6WK]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=GICETKK]{background-color:transparent}#html-body [data-pb-style=YPDCMJN]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=GMH7JC9]{background-color:transparent}#html-body [data-pb-style=W0DYM6G]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px;padding-bottom:32px}#html-body [data-pb-style=XO1N9XU]{background-color:transparent}#html-body [data-pb-style=ILMDE4M]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=ALOQBPQ]{background-color:transparent}#html-body [data-pb-style=RX2SGLN]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=R06WT09]{background-color:transparent}#html-body [data-pb-style=PLUPU6C]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=G5IAJLJ]{background-color:transparent}#html-body [data-pb-style=IE8T50I]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=T6IBKBY]{background-color:transparent}#html-body [data-pb-style=T0LC8DX]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}#html-body [data-pb-style=E6WXBDO]{margin-bottom:8px}#html-body [data-pb-style=TCIMV34]{margin-bottom:32px}#html-body [data-pb-style=PW7T49H]{margin-bottom:16px}#html-body [data-pb-style=KKP90AT]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;padding-left:8px;padding-top:32px;padding-right:8px;align-self:stretch}#html-body [data-pb-style=R697VX5]{margin-bottom:8px;padding-left:85px}#html-body [data-pb-style=RPP95L9]{padding-left:85px}#html-body [data-pb-style=NFOE5J5]{justify-content:center;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;padding-left:8px;padding-top:32px;padding-right:8px;align-self:stretch}#html-body [data-pb-style=LD7KLPM]{padding-left:10px}#html-body [data-pb-style=TD47OAC]{margin-top:6px;padding-left:10px}#html-body [data-pb-style=IOLQJ9S],#html-body [data-pb-style=M6YQ48B]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=IOLQJ9S]{width:25%}#html-body [data-pb-style=M6YQ48B]{width:calc(50% - 40px);margin-left:20px;margin-right:20px}#html-body [data-pb-style=B0UC18S]{margin-top:80px;margin-bottom:45px}#html-body [data-pb-style=AY8824I]{margin-top:50px;margin-bottom:30px}#html-body [data-pb-style=A66TB3X],#html-body [data-pb-style=JO1MW6M],#html-body [data-pb-style=QNBMBUS],#html-body [data-pb-style=QUXKLFH],#html-body [data-pb-style=RV6J82W]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=A66TB3X],#html-body [data-pb-style=QNBMBUS],#html-body [data-pb-style=QUXKLFH],#html-body [data-pb-style=RV6J82W]{width:8.33333%}#html-body [data-pb-style=A66TB3X],#html-body [data-pb-style=QNBMBUS],#html-body [data-pb-style=RV6J82W]{width:41.6667%}#html-body [data-pb-style=A66TB3X],#html-body [data-pb-style=RV6J82W]{width:8.33333%}#html-body [data-pb-style=A66TB3X]{justify-content:center;width:33.3333%;padding-top:64px;padding-bottom:64px}#html-body [data-pb-style=IAWA91X]{margin-top:32px}#html-body [data-pb-style=B6HQ3V5],#html-body [data-pb-style=HM3CFMN],#html-body [data-pb-style=I9CW50H],#html-body [data-pb-style=T49RGP9]{margin-top:16px;margin-bottom:32px}#html-body [data-pb-style=C80QPN9],#html-body [data-pb-style=DHTH25R],#html-body [data-pb-style=VSWY60N]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=VSWY60N]{justify-content:center;width:33.3333%;padding-top:64px;padding-bottom:64px}#html-body [data-pb-style=E1L049Y]{margin-top:32px;margin-bottom:45px}#html-body [data-pb-style=DB5RT12]{margin-bottom:45px}#html-body [data-pb-style=DL54RM3],#html-body [data-pb-style=E002XWR],#html-body [data-pb-style=ILT5XNC],#html-body [data-pb-style=NHTL9GM],#html-body [data-pb-style=RMCRUER],#html-body [data-pb-style=UTMHVIG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=DL54RM3],#html-body [data-pb-style=E002XWR],#html-body [data-pb-style=ILT5XNC],#html-body [data-pb-style=RMCRUER],#html-body [data-pb-style=UTMHVIG]{width:41.6667%}#html-body [data-pb-style=DL54RM3],#html-body [data-pb-style=ILT5XNC],#html-body [data-pb-style=RMCRUER],#html-body [data-pb-style=UTMHVIG]{width:8.33333%}#html-body [data-pb-style=DL54RM3],#html-body [data-pb-style=RMCRUER],#html-body [data-pb-style=UTMHVIG]{width:100%}#html-body [data-pb-style=DL54RM3],#html-body [data-pb-style=RMCRUER]{width:8.33333%}#html-body [data-pb-style=RMCRUER]{width:83.3333%}#html-body [data-pb-style=ET01XY4]{margin-bottom:8px}#html-body [data-pb-style=TSRL4QQ]{margin-top:40px}#html-body [data-pb-style=FU5S37Y]{margin-top:12px}#html-body [data-pb-style=MR89QAE]{margin-top:32px}#html-body [data-pb-style=NTJ2RQI],#html-body [data-pb-style=PWNFNBQ],#html-body [data-pb-style=X87ICQ2]{margin-top:12px;margin-bottom:32px}#html-body [data-pb-style=LILKCMX],#html-body [data-pb-style=LV7PPQ8],#html-body [data-pb-style=QI0T0EL],#html-body [data-pb-style=WXV9RIG]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=LILKCMX],#html-body [data-pb-style=LV7PPQ8],#html-body [data-pb-style=QI0T0EL]{width:100%}#html-body [data-pb-style=LV7PPQ8],#html-body [data-pb-style=QI0T0EL]{width:8.33333%}#html-body [data-pb-style=QI0T0EL]{width:83.3333%}#html-body [data-pb-style=WEWWBL0]{margin-bottom:8px}#html-body [data-pb-style=QGATKKX]{margin-top:32px;margin-bottom:32px}#html-body [data-pb-style=UFGU2PY]{margin-bottom:45px}#html-body [data-pb-style=EW8MLP0],#html-body [data-pb-style=KPVG5EA],#html-body [data-pb-style=ROVCS27]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=EW8MLP0],#html-body [data-pb-style=ROVCS27]{width:16.6667%}#html-body [data-pb-style=EW8MLP0]{width:66.6667%}#html-body [data-pb-style=VNRI3S7]{margin-bottom:8px}#html-body [data-pb-style=TM6BDFB]{margin-bottom:32px}#html-body [data-pb-style=EY7UN5J]{margin-bottom:16px}#html-body [data-pb-style=F6S8RYL],#html-body [data-pb-style=V0YWC0X]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:16.6667%;align-self:stretch}#html-body [data-pb-style=V0YWC0X]{width:91.6667%}#html-body [data-pb-style=YWX08FP]{margin-bottom:45px}#html-body [data-pb-style=IPQKNGN],#html-body [data-pb-style=O5E8CST]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:8.33333%;align-self:stretch}#html-body [data-pb-style=O5E8CST]{width:50%;padding-right:80px}#html-body [data-pb-style=SIMQHOU]{margin-top:32px}#html-body [data-pb-style=H7JQ8FL]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=EVNVMBO]{margin-top:45px}#html-body [data-pb-style=RV4SXYF]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=JQ879M3]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:50%;padding-left:80px;align-self:stretch}#html-body [data-pb-style=Y5I3UXR]{margin-top:32px}#html-body [data-pb-style=LYMP4WY]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=WRQU6P7]{margin-bottom:80px}#html-body [data-pb-style=MW13MSQ],#html-body [data-pb-style=QCVA3AD],#html-body [data-pb-style=T8H17GU],#html-body [data-pb-style=TC0BIHU]{border-width:1px}#html-body [data-pb-style=QMPQMY1]{text-align:left}#html-body [data-pb-style=P19SMOC]{border-width:1px;min-height:300px}#html-body [data-pb-style=DD0AGCX]{border-style:none}#html-body [data-pb-style=D80LIUS],#html-body [data-pb-style=JSOOX5W]{max-width:100%;height:auto}#html-body [data-pb-style=ENBENWX]{border-style:none}#html-body [data-pb-style=IRG8VQ7],#html-body [data-pb-style=V4GCXTB]{max-width:100%;height:auto}#html-body [data-pb-style=KKBXUI9]{border-style:none}#html-body [data-pb-style=LXRKA8K],#html-body [data-pb-style=X25QDT8]{max-width:100%;height:auto}#html-body [data-pb-style=F008HWL]{border-style:none}#html-body [data-pb-style=PEPID5M],#html-body [data-pb-style=UYBUDKX]{max-width:100%;height:auto}#html-body [data-pb-style=DP641CI],#html-body [data-pb-style=GKM0QHO],#html-body [data-pb-style=OKE0ATF],#html-body [data-pb-style=XHOI1P3]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}@media only screen and (max-width: 768px) { #html-body [data-pb-style=A66TB3X],#html-body [data-pb-style=VSWY60N]{display:flex;flex-direction:column;align-self:stretch;min-height:400px}#html-body [data-pb-style=DD0AGCX],#html-body [data-pb-style=ENBENWX],#html-body [data-pb-style=F008HWL],#html-body [data-pb-style=KKBXUI9]{border-style:none} }<\/style><div class=\"force-hidden-row-mobile\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"U2SC747\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"VA6KCT9\"><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"SJ0VBN2\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\"><hr data-element=\"line\" data-pb-style=\"AFTH7WK\"><\/div><\/div><\/div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div class=\"force-hidden-row-mobile\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"inner\" data-pb-style=\"HW1HBCY\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"K7CNUXQ\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"RFNPWAS\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"ROVCS27\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"EW8MLP0\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"VNRI3S7\"><p style=\"text-align: center;\"><span id=\"OPG2UTX\" style=\"font-size: 14px;\">NEWSHA HAARPFLEGEROUTINE<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TM6BDFB\"><h2 id=\"BAVLPN1\" style=\"text-align: center; line-height: 0.8;\"><span style=\"font-size: 22pt;\"><strong id=\"AENE69T\"><span style=\"color: #252829; font-family: montserrat;\">STYLE &amp; FINISH: DER LETZTE SCHRITT<br>DEINER NEWSHA HAARPFLEGE-ROUTINE<\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"EY7UN5J\"><p style=\"text-align: center;\"><span style=\"font-family: montserrat;\">Styling ist mehr als nur Funktion, denn es ist der Ausdruck deiner Pers&ouml;nlichkeit. Mit den exklusiven Style &amp; Finish Produkten von NEWSHA entscheidest du dich f&uuml;r Luxus, Leistung und Leichtigkeit in einem. Unsere Formulierungen vereinen pr&auml;zise ausgew&auml;hlte Inhaltsstoffe und sind von professionellen Salonritualen inspiriert.&nbsp;<\/span><span style=\"font-family: montserrat;\">Beim Auftragen der Produkte umh&uuml;llt dich ein eleganter Duft, der deine Sinne ber&uuml;rt, w&auml;hrend federleichte Texturen deinem Haar Pflege, Schutz und Formbarkeit schenken. <\/span><\/p>\r\n<p style=\"text-align: center;\">&nbsp;<\/p>\r\n<p style=\"text-align: center;\"><span style=\"font-family: montserrat;\">Ob glatter Sleek-Look, sanfte Wellen oder volumin&ouml;se Styles: jedes Produkt unterst&uuml;tzt deine nat&uuml;rliche Haarstruktur und ist dein Must-have f&uuml;r deine individuellen Looks.&nbsp;<\/span><span style=\"font-family: montserrat;\">Dein Haar wird sichtbar gepflegt, gl&auml;nzend und gesund und transportiert so einen Ausdruck von Stil, Selbstf&uuml;rsorge und moderner Eleganz.<\/span><\/p><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"F6S8RYL\"><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"MVWHYSF\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"L41PDBY\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"X2NB6N7\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"T0LC8DX\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"E6WXBDO\"><p style=\"text-align: left;\"><span id=\"OPG2UTX\" style=\"font-size: 13px;\">NEWSHA HAARPFLEGEROUTINE<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TCIMV34\"><h2 id=\"BAVLPN1\" style=\"line-height: 0.7; text-align: left;\"><span style=\"font-size: 16pt;\"><strong id=\"AENE69T\"><span id=\"ETFNI9E\" style=\"color: #252829; font-family: montserrat;\">HITZESCHUTZ: <br>STYLE &amp; FINISH: DER LETZTE SCHRITT DEINER NEWSHA HAARPFLEGE-ROUTINE<\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"PW7T49H\"><p style=\"text-align: left;\"><span id=\"A7O3ML5\" style=\"font-size: 13px;\"><span style=\"font-family: montserrat;\">Styling ist mehr als nur Funktion, denn es ist der Ausdruck deiner Pers&ouml;nlichkeit. Mit den exklusiven Style &amp; Finish Produkten von NEWSHA entscheidest du dich f&uuml;r Luxus, Leistung und Leichtigkeit in einem. Unsere Formulierungen vereinen pr&auml;zise ausgew&auml;hlte Inhaltsstoffe und sind von professionellen Salonritualen inspiriert. Beim Auftragen der Produkte umh&uuml;llt dich ein eleganter Duft, der deine Sinne ber&uuml;rt, w&auml;hrend federleichte Texturen deinem Haar Pflege, Schutz und Formbarkeit schenken. <\/span><\/span><\/p>\r\n<p style=\"text-align: left;\">&nbsp;<\/p>\r\n<p style=\"text-align: left;\"><span id=\"A7O3ML5\" style=\"font-size: 13px;\"><span style=\"font-family: montserrat;\">Ob glatter Sleek-Look, sanfte Wellen oder volumin&ouml;se Styles: jedes Produkt unterst&uuml;tzt deine nat&uuml;rliche Haarstruktur und ist dein Must-have f&uuml;r deine individuellen Looks.&nbsp;<\/span><\/span><span id=\"A7O3ML5\" style=\"font-size: 13px;\"><span style=\"font-family: montserrat;\">Dein Haar wird sichtbar gepflegt, gl&auml;nzend und gesund und transportiert so einen Ausdruck von Stil, Selbstf&uuml;rsorge und moderner Eleganz.<\/span><\/span><\/p><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-mobile\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"AUOUSX7\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"INMC45F\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"YS0P2KS\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"KKP90AT\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"R697VX5\"><p style=\"text-align: left;\">DEINE GESAMTE HAIRCARE-ROUTINE<\/p><\/div><div class=\"fontsize-56-48\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"RPP95L9\"><h2 style=\"text-align: left; line-height: 0.8;\"><span style=\"font-size: 22pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">SCHRITT F&Uuml;R SCHRITT ZU GESUNDEM HAAR<\/span><\/strong><\/span><\/h2><\/div><\/div><\/div><\/div><div class=\"pagebuilder-slider pagebuilder-category-slider slider-center\" data-content-type=\"slider\" data-appearance=\"default\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-fade=\"false\" data-infinite-loop=\"false\" data-show-arrows=\"false\" data-show-dots=\"true\" data-element=\"main\"><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"AVQKW40\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"E3NSMX7\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/shampoo\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/daily-routine-shampoo-250-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Daily Routine Shampoo auf wei&szlig;em Hintergrund, f&uuml;r die t&auml;gliche Reinigung und ein frisches Kopfhautgef&uuml;hl.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 18px; margin: 30px 0px 0px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 1<\/strong><\/p><p style=\"height: 2.5em; line-height: 1.4em; font-size: 14px; margin: 0px 0px 0px; overflow: hidden; font-weight: 400;\">Sanfte Reinigung f&uuml;r ein gesundes Fundament<\/p><strong><span style=\"font-size: 14px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/shampoo\">Shampoo<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"ROWBEP3\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"QIONWM5\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/haarmasken-haarkuren\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/mild-care-masque-150-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Mild Care Masque im Tiegel, f&uuml;r intensive Pflege und mehr Geschmeidigkeit bei trockenem Haar.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 18px; margin: 30px 0px 0px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 2<\/strong><\/p><p style=\"height: 2.5em; line-height: 1.4em; font-size: 14px; margin: 0px 0px 0px; overflow: hidden; font-weight: 400;\">Intensivpflege mit Tiefenwirkung<\/p><strong><span style=\"font-size: 14px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/haarmasken-haarkuren\">Haarmasken &amp; -kuren<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"UBXHUE0\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"XF477DL\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/conditioner\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/soft-cotton-conditioner-150-ml-weiss-4-zu-5.webp\" alt=\"Eine wei&szlig;e Tube des NEWSHA Soft Cotton Conditioner vor hellem Hintergrund.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 18px; margin: 30px 0px 0px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 3<\/strong><\/p><p style=\"height: 2.5em; line-height: 1.4em; font-size: 14px; margin: 0px 0px 0px; overflow: hidden; font-weight: 400;\">Versiegelung &amp; Geschmeidigkeit<\/p><strong><span style=\"font-size: 14px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/conditioner\">Conditioner<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"LE4D6WK\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"GICETKK\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/hitzeschutz\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/heat-protecting-blowout-spray-200-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Heat Protecting Blowout Spray, Hitzeschutzspray zum Schutz vor F&ouml;hn und Styling Hitze und zur Reduktion von Haarbruch\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 18px; margin: 30px 0px 0px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 4<\/strong><\/p><p style=\"height: 2.5em; line-height: 1.4em; font-size: 14px; margin: 0px 0px 0px; overflow: hidden; font-weight: 400;\">Stylingvorbereitung &amp; Hitzeschutz<\/p><strong><span style=\"font-size: 14px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/hitzeschutz\">Hitzeschutz<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"YPDCMJN\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"GMH7JC9\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/style-finish\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/luxe-treatment-oil-30-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Luxe Treatment Oil als Pumpflakon vor hellem Hintergrund f&uuml;r mehr Glanz und Geschmeidigkeit bei trockenem Haar sowie zur Reduktion von Frizz in den L&auml;ngen.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 18px; margin: 30px 0px 0px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 5<\/strong><\/p><p style=\"height: 2.5em; line-height: 1.4em; font-size: 14px; margin: 0px 0px 0px; overflow: hidden; font-weight: 400;\">Perfekte Styling-Essentials f&uuml;r individuelle Looks<\/p><strong><span style=\"font-size: 14px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/style-finish\">Style &amp; Finish<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"BV452WV\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"S8NUH07\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"WDIL4IH\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"NFOE5J5\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"LD7KLPM\"><p style=\"text-align: left;\"><span style=\"font-size: 13px;\">DEINE GESAMTE HAIRCARE-ROUTINE<\/span><\/p><\/div><div class=\"fontsize-56-48\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TD47OAC\"><h2 style=\"text-align: left; line-height: 0.7;\"><span style=\"font-size: 16pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">SCHRITT F&Uuml;R SCHRITT <\/span><\/strong><\/span><span style=\"font-size: 16pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">ZU GESUNDEM HAAR<\/span><\/strong><\/span><\/h2><\/div><\/div><\/div><\/div><div class=\"pagebuilder-slider pagebuilder-category-slider slider-center\" data-content-type=\"slider\" data-appearance=\"default\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-fade=\"false\" data-infinite-loop=\"false\" data-show-arrows=\"false\" data-show-dots=\"true\" data-element=\"main\"><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"W0DYM6G\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"XO1N9XU\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/shampoo\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/daily-routine-shampoo-250-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Daily Routine Shampoo auf wei&szlig;em Hintergrund, f&uuml;r die t&auml;gliche Reinigung und ein frisches Kopfhautgef&uuml;hl.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 16px; margin: 20px 0px 3px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 1<\/strong><\/p><p style=\"height: 3em; line-height: 1.4em; font-size: 13px; margin: 0px 0px 6px; overflow: hidden; font-weight: 400;\">Sanfte Reinigung f&uuml;r ein gesundes Fundament<\/p><strong><span style=\"font-size: 13px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/shampoo\">Shampoo<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"ILMDE4M\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"ALOQBPQ\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/haarmasken-haarkuren\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/mild-care-masque-150-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Mild Care Masque im Tiegel, f&uuml;r intensive Pflege und mehr Geschmeidigkeit bei trockenem Haar.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 16px; margin: 20px 0px 3px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 2<\/strong><\/p><p style=\"height: 3em; line-height: 1.4em; font-size: 13px; margin: 0px 0px 6px; overflow: hidden; font-weight: 400;\">Intensivpflege<br>mit Tiefenwirkung<\/p><strong><span style=\"font-size: 13px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/haarmasken-haarkuren\">Haarmasken &amp; -kuren<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"RX2SGLN\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"R06WT09\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/conditioner\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/soft-cotton-conditioner-150-ml-weiss-4-zu-5.webp\" alt=\"Eine wei&szlig;e Tube des NEWSHA Soft Cotton Conditioner vor hellem Hintergrund.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 16px; margin: 20px 0px 3px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 3<\/strong><\/p><p style=\"height: 3em; line-height: 1.4em; font-size: 13px; margin: 0px 0px 6px; overflow: hidden; font-weight: 400;\">Versiegelung &amp; <br>Geschmeidigkeit<\/p><strong><span style=\"font-size: 13px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/conditioner\">Conditioner<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"PLUPU6C\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"G5IAJLJ\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/hitzeschutz\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/heat-protecting-blowout-spray-200-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Heat Protecting Blowout Spray, Hitzeschutzspray zum Schutz vor F&ouml;hn und Styling Hitze und zur Reduktion von Haarbruch\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 16px; margin: 20px 0px 3px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 4<\/strong><\/p><p style=\"height: 3em; line-height: 1.4em; font-size: 13px; margin: 0px 0px 6px; overflow: hidden; font-weight: 400;\">Stylingvorbereitung &amp; Hitzeschutz<\/p><strong><span style=\"font-size: 13px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/hitzeschutz\">Hitzeschutz<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"font-medium\" data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"collage-centered\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"wrapper\" data-pb-style=\"IE8T50I\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"T6IBKBY\"><div class=\"pagebuilder-collage-content\"><div data-element=\"content\"><p style=\"text-align: left;\"><a tabindex=\"0\" href=\"\/haarpflege-routinen\/style-finish\"><img id=\"L8SNW34\" style=\"display: block; width: auto; height: auto; margin: 16px auto 16px auto;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/luxe-treatment-oil-30-ml-weiss-4-zu-5.webp\" alt=\"NEWSHA Luxe Treatment Oil als Pumpflakon vor hellem Hintergrund f&uuml;r mehr Glanz und Geschmeidigkeit bei trockenem Haar sowie zur Reduktion von Frizz in den L&auml;ngen.\" width=\"auto\" height=\"auto\"><\/a><\/p><div class=\"content-box\"><p style=\"height: 2em; line-height: 1.4em; font-size: 16px; margin: 20px 0px 3px; overflow: hidden; font-weight: 500;\"><strong>ROUTINE STEP 5<\/strong><\/p><p style=\"height: 3em; line-height: 1.4em; font-size: 13px; margin: 0px 0px 6px; overflow: hidden; font-weight: 400;\">Perfekte Styling-Essentials f&uuml;r individuelle Looks<\/p><strong><span style=\"font-size: 13px;\"><a style=\"display: inline-block; text-decoration: underline; color: #000000; padding: 8px 0px; text-align: left; height: 1.4em; line-height: 1.4em;\" tabindex=\"0\" href=\"\/haarpflege-routinen\/style-finish\">Style &amp; Finish<\/a><\/span><\/strong><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div class=\"force-hidden-row-mobile\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"inner\" data-pb-style=\"W2VE5R2\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"K7NFRXS\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"TIS3TTK\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"V0YWC0X\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center;\"><span id=\"OPG2UTX\" style=\"font-size: 13px;\">DREI MYTHEN &Uuml;BER <\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"YWX08FP\"><h2 id=\"BAVLPN1\" style=\"text-align: center; line-height: 0.8;\"><span style=\"font-size: 22pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">STYLE &amp; FINISH<\/span><\/strong><\/span><\/h2><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"IPQKNGN\"><\/div><\/div><\/div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"DVISABT\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"G9PPQJB\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"O5E8CST\"><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"SIMQHOU\"><p><img id=\"G9WFYUW\" style=\"float: left; width: 80px; height: 46px;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Startseite\/01-d.jpg\" alt=\"\" width=\"79\" height=\"48\"><strong>MYTHOS:&nbsp;<br>STYLINGPRODUKTE SCH&Auml;DIGEN DAS HAAR<\/strong><\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"H7JQ8FL\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Die NEWSHA Formeln unterst&uuml;tzen je Styling dabei, dein Haar zu sch&uuml;tzen, Feuchtigkeit zu bewahren und sorgen somit f&uuml;r gesund aussehendes Haar.&nbsp;<\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"EVNVMBO\"><p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase;\"><img id=\"G9WFYUW\" style=\"float: left; width: 80px; height: 46px;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Startseite\/02-d.jpg\" alt=\"\" width=\"79\" height=\"48\"><strong>mythos: <br>STYLINGPRODUKTE SIND NUR F&Uuml;R SPEZIELLE ANL&Auml;SSE<\/strong><\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"RV4SXYF\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Die NEWSHA Style &amp; Finish Produkte sind f&uuml;r den Alltag konzipiert und machen aus jedem Look ein Statement.<\/p><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"JQ879M3\"><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"Y5I3UXR\"><p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase;\"><img id=\"G9WFYUW\" style=\"float: left; width: 79px; height: 46px;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Startseite\/03-d.jpg\" alt=\"\" width=\"79\" height=\"48\"><strong>MYTHOS:&nbsp;<br>HAARSPRAY MACHT DAS HAAR HART UND STARR<\/strong><\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"LYMP4WY\"><p id=\"RUFOTJD\" style=\"text-align: left; padding-left: 80px;\">Fakt: Nicht unbedingt. Es kommt auf den Halt an, den du dir f&uuml;r deinen Look w&uuml;nschst und auf das Haarspray, welches du f&uuml;r deinen Look verwendest. Das richtige Haarspray und die richtige Dosierungen schenken deinem Haar flexiblen Halt.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"MDOG5G6\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"MB9YO6U\"><p style=\"text-align: left; line-height: 1;\"><span id=\"RV453TN\" style=\"font-size: 13px;\">DREI MHYTEN &Uuml;BER<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 style=\"text-align: left; line-height: 0.6;\"><span style=\"font-size: 16pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">STYLE &amp; FINISH<\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"WHYQHL4\"><p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase;\"><img id=\"G9WFYUW\" style=\"float: left; width: 79px; height: 46px;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Startseite\/01-d.jpg\" alt=\"\" width=\"79\" height=\"48\"><span style=\"font-size: 13px;\"><strong><strong>MYTHOS: STYLINGPRODUKTE SCH&Auml;DIGEN DAS HAAR<\/strong><\/strong><\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"LTX99YB\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"font-size: 13px;\">Fakt: Die NEWSHA Formeln unterst&uuml;tzen je Styling dabei, dein Haar zu sch&uuml;tzen, Feuchtigkeit zu bewahren und sorgen somit f&uuml;r gesund aussehendes Haar.&nbsp;<\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"IHO1I6G\"><p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase;\"><img id=\"G9WFYUW\" style=\"float: left; width: 80px; height: 46px;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Startseite\/02-d.jpg\" alt=\"\" width=\"79\" height=\"48\"><span style=\"font-size: 13px;\"><strong><strong>MYTHOS:&nbsp;STYLINGPRODUKTE SIND NUR F&Uuml;R SPEZIELLE ANL&Auml;SSE<\/strong><\/strong><\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FKBSET7\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"font-size: 13px;\">Fakt: Die NEWSHA Style &amp; Finish Produkte sind f&uuml;r den Alltag konzipiert und machen aus jedem Look ein Statement.<\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"K68FPFT\"><p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase;\"><img id=\"G9WFYUW\" style=\"float: left; width: 80px; height: 46px;\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Startseite\/03-d.jpg\" alt=\"\" width=\"79\" height=\"48\"><strong>mythos: HAARSPRAY MACHT DAS HAAR HART UND STARR<\/strong><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FPQPD5M\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"font-size: 13px;\">Fakt: Nicht unbedingt. Es kommt auf den Halt an, den du dir f&uuml;r deinen Look w&uuml;nschst und auf das Haarspray, welches du f&uuml;r deinen Look verwendest. Das richtige Haarspray und die richtige Dosierungen schenken deinem Haar flexiblen Halt.<\/span><\/p><\/div><\/div><\/div><div data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"GR8HG1S\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"EEVUSJO\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"GUUG922\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"IOLQJ9S\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"M6YQ48B\"><div class=\"force-hidden-row-mobile\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"B0UC18S\"><p style=\"line-height: 0.8;\"><span style=\"font-size: 25px;\"><strong>H&Auml;UFIG GEFRAGT, VON EXPERTEN BEANTWORTET<\/strong><\/span><\/p><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"AY8824I\"><h2 style=\"text-align: left; line-height: 0.7;\"><span style=\"font-size: 16pt;\"><strong><span id=\"VRNCBBC\" style=\"color: #252829; font-family: montserrat;\">H&Auml;UFIG GEFRAGT,&nbsp;VON EXPERTEN BEANTWORTET&nbsp;<br><\/span><\/strong><\/span><\/h2><\/div><div class=\"pagebuilder-accordeon tab-align-left\" data-content-type=\"tabs\" data-appearance=\"default\" data-active-tab=\"0\" data-element=\"main\" data-pb-style=\"WRQU6P7\"><ul role=\"tablist\" class=\"tabs-navigation\" data-element=\"navigation\" data-pb-style=\"QMPQMY1\"><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"TC0BIHU\"><a href=\"#V3IAS41\" class=\"tab-title\"><span class=\"tab-title\">Was ist der Unterschied zwischen Styling- und Finish-Produkten?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"T8H17GU\"><a href=\"#R5FD4M0\" class=\"tab-title\"><span class=\"tab-title\">Wie kann ich Frizz beim Styling nachhaltig vorbeugen?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"QCVA3AD\"><a href=\"#G461HLG\" class=\"tab-title\"><span class=\"tab-title\">Wie kann ich mit Stylingprodukten sichtbar mehr Volumen ins Haar bringen?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"MW13MSQ\"><a href=\"#GDEOS7W\" class=\"tab-title\"><span class=\"tab-title\">Wie kann ich beim Styling strahlenden Glanz ins Haar bringen?<\/span><\/a><\/li><\/ul><div class=\"tabs-content\" data-element=\"content\" data-pb-style=\"P19SMOC\"><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Was ist der Unterschied zwischen Styling- und Finish-Produkten?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"V3IAS41\" data-pb-style=\"XHOI1P3\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"VTQP4WQ\">Stylingprodukte formen und definieren deinen Look, w&auml;hrend Finish-Produkte ihn fixieren und ihm zus&auml;tzlichen Glanz, Geschmeidigkeit und Kontrolle schenken. NEWSHA vereint beides und sorgt so f&uuml;r Looks , die nicht nur halten, sondern auch begeistern.<\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Wie kann ich Frizz beim Styling nachhaltig vorbeugen?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"R5FD4M0\" data-pb-style=\"GKM0QHO\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"YLF03RM\">Frizz entsteht durch trockene Haarstrukturen und hohe Luftfeuchtigkeit. Die No More Frizz Cream beruhigt das Haar, verhindert fliegende H&auml;rchen und sch&uuml;tzt die L&auml;ngen vor dem Austrocknen. So schenkt sie dir ein glattes, gepflegtes Finish mit seidigem Glanz.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p><span style=\"color: #000000; text-decoration: underline;\"><a style=\"color: #000000; text-decoration: underline;\" href=\"\/no-more-frizz-cream\">Zur No More Frizz Cream<\/a><\/span><\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Wie kann ich mit Stylingprodukten sichtbar mehr Volumen ins Haar bringen?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"G461HLG\" data-pb-style=\"OKE0ATF\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Das Supreme Thickening Spray wirkt wie ein Volumen-Booster, der das Haar st&auml;rkt: Es verbessert die Elastizit&auml;t, verleiht dem Haar mehr F&uuml;lle und ist somit ideal f&uuml;r volumin&ouml;se Blowouts mit sp&uuml;rbar mehr Griff und leichtem Schwung.<\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Wie kann ich beim Styling strahlenden Glanz ins Haar bringen?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"GDEOS7W\" data-pb-style=\"DP641CI\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"LYA97EQ\">Das Luxe Treatment Oil eredelt die Haaroberfl&auml;che, gl&auml;ttet die Struktur und sorgt f&uuml;r eine gleichm&auml;&szlig;ige, nat&uuml;rliche Reflexion. Das Ergebnis ist seidiger Glanz, ein geschmeidiges Haargef&uuml;hl und ein luxuri&ouml;s gepflegtes Finish.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p><a href=\"\/luxe-treatment-oil\"><span style=\"color: #000000;\"><u>Zum Luxe Treatment Oil<\/u><\/span><\/a><\/p><\/div><\/div><\/div><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"JO1MW6M\"><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-mobile\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"MJTSC2B\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"GB0J7Y1\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"A0QUHIR\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"QUXKLFH\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"QNBMBUS\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"DD0AGCX\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/luxe-treatment-oil-mit-textur_1.webp\" alt=\"Ein NEWSHA Pflegeprodukt mit goldener &Ouml;ltextur am Pumpspender steht f&uuml;r intensive Pflege und gl&auml;nzendes Haar.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"D80LIUS\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/luxe-treatment-oil-mit-textur_1.webp\" alt=\"Ein NEWSHA Pflegeprodukt mit goldener &Ouml;ltextur am Pumpspender steht f&uuml;r intensive Pflege und gl&auml;nzendes Haar.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"JSOOX5W\"><\/figure><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"RV6J82W\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"A66TB3X\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left;\"><span style=\"font-size: 14px;\">HOW TO USE<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 style=\"line-height: 0.8; text-align: left;\"><span style=\"font-size: 22px;\"><strong><span id=\"UT8DINL\" style=\"font-family: montserrat;\">SO VERWENDEST DU DIE STLYE &amp; FINISH PRODUKTE RICHTIG<\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"IAWA91X\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 1<\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"B6HQ3V5\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Style dein Haar nach der Pflege-Routine mit Shampoo, Treatment und Conditioner.<\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 2<\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"T49RGP9\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">W&auml;hle das passende Produkt f&uuml;r dein Ziel: Volumen, Glanz, Kontrolle oder Schutz.<\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 3<\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"HM3CFMN\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 14px;\">Trage es gezielt auf Ansatz, L&auml;ngen oder Spitzen auf.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 4<\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"I9CW50H\"><p>Fixiere oder veredle deinen Look mit einem Finishing-Produkt f&uuml;r ein langanhaltend perfektes Styling.<\/p><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"DHTH25R\"><\/div><\/div><\/div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"CTSNLDH\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"T9B0JII\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"C80QPN9\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"VSWY60N\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: right;\"><span style=\"font-size: 14px;\">INDIVIDUELLE BERATUNG<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 style=\"line-height: 0.8; text-align: right;\"><span style=\"font-size: 22px;\"><strong><span id=\"B2FN7H4\" style=\"font-family: montserrat;\">FINDE DEIN PERFEKTES STYLINGPRODUKT<\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"E1L049Y\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: right;\"><span id=\"PTETPV2\" class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Beantworte ein paar Fragen zu deinem Haartyp, deinem gew&uuml;nschten Look. In k&uuml;rzester Zeit erh&auml;ltst du deine pers&ouml;nliche NEWSHA Empfehlung - von Schaumfestiger bis hinzu Glanzsprays und SOS-Produkten gegen Frizz.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"DB5RT12\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: right;\"><span style=\"text-decoration: underline;\"><strong><a href=\"\/finde-deine-haircare-routine\">Zur Haardiagnose<\/a><\/strong><\/span><\/div><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"NHTL9GM\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"E002XWR\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"ENBENWX\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-mit-glaenzendem-dunklem-haar.webp\" alt=\"Eine Frau mit gl&auml;nzendem dunklem Haar pr&auml;sentiert geschmeidige L&auml;ngen und sanfte Wellen mit elegantem Finish.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"V4GCXTB\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-mit-glaenzendem-dunklem-haar.webp\" alt=\"Eine Frau mit gl&auml;nzendem dunklem Haar pr&auml;sentiert geschmeidige L&auml;ngen und sanfte Wellen mit elegantem Finish.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"IRG8VQ7\"><\/figure><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"ILT5XNC\"><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"I47AQ33\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"KEE9TVT\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"YI4D5BF\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"UTMHVIG\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"KKBXUI9\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/luxe-treatment-oil-mit-textur_1.webp\" alt=\"Ein NEWSHA Pflegeprodukt mit goldener &Ouml;ltextur am Pumpspender steht f&uuml;r intensive Pflege und gl&auml;nzendes Haar.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"LXRKA8K\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/luxe-treatment-oil-mit-textur_1.webp\" alt=\"Ein NEWSHA Pflegeprodukt mit goldener &Ouml;ltextur am Pumpspender steht f&uuml;r intensive Pflege und gl&auml;nzendes Haar.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"X25QDT8\"><\/figure><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"CB9XQ0S\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"SJOPWK7\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"LFG25UX\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"DL54RM3\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"RMCRUER\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"ET01XY4\"><p style=\"text-align: left;\"><span style=\"font-size: 14px;\">HOW TO USE<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 style=\"text-align: left; line-height: 0.7;\"><span style=\"font-size: 16pt;\"><strong><span id=\"YOVVA1T\" style=\"color: #252829; font-family: montserrat;\">SO VERWENDEST DU DIE STYLE &amp; FINISH PRODUKTE RICHTIG<\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TSRL4QQ\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 1<\/span><\/strong><\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FU5S37Y\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span id=\"BQDPH8I\" style=\"font-size: 13px;\">Style dein Haar nach der Pflege-Routine mit Shampoo, Treatment und Conditioner.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"MR89QAE\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\"><span style=\"font-size: 13px;\">STEP 2<\/span><\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"PWNFNBQ\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\">W&auml;hle das passende Produkt f&uuml;r dein Ziel: Volumen, Glanz, Kontrolle oder Schutz.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><div id=\"K1KY31F\" style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 3<\/span><\/strong><\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"NTJ2RQI\"><div id=\"AGTIBK4\" style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\">Trage es gezielt auf Ansatz, L&auml;ngen oder Spitzen auf.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><div id=\"K1KY31F\" style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">STEP 4<\/span><\/strong><\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"X87ICQ2\"><div id=\"AGTIBK4\" style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\">Fixiere oder veredle deinen Look mit einem Finishing-Produkt f&uuml;r ein langanhaltend perfektes Styling.<\/span><\/div><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"WXV9RIG\"><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"G29DDLR\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"S1XFHUG\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"DHQT6WH\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"LILKCMX\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"F008HWL\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-mit-glaenzendem-dunklem-haar.webp\" alt=\"Eine Frau mit gl&auml;nzendem dunklem Haar pr&auml;sentiert geschmeidige L&auml;ngen und sanfte Wellen mit elegantem Finish.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"UYBUDKX\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-mit-glaenzendem-dunklem-haar.webp\" alt=\"Eine Frau mit gl&auml;nzendem dunklem Haar pr&auml;sentiert geschmeidige L&auml;ngen und sanfte Wellen mit elegantem Finish.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"PEPID5M\"><\/figure><\/div><\/div><\/div><\/div><\/div><div class=\"force-hidden-row-dektop\" data-content-type=\"row\" data-appearance=\"full-width\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"GVRX7GV\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"LPNUGNG\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"A3HYOQP\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"LV7PPQ8\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"QI0T0EL\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"WEWWBL0\"><p style=\"text-align: left;\"><span style=\"font-size: 14px;\">INDIVIDUELLE BERATUNG<\/span><\/p><\/div><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><h2 style=\"text-align: left; line-height: 0.7;\"><span style=\"font-size: 18pt;\"><strong><span id=\"CSR6XHI\" style=\"color: #252829; font-family: montserrat;\"><span style=\"font-size: 16pt;\">FINDE DEIN PERFEKTES STYLINGPRODUKT<\/span><br><\/span><\/strong><\/span><\/h2><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"QGATKKX\"><div id=\"YKLBQ3R\" style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Beantworte ein paar Fragen zu deinem Haartyp, deinem gew&uuml;nschten Look. In k&uuml;rzester Zeit erh&auml;ltst du deine pers&ouml;nliche NEWSHA Empfehlung - von Schaumfestiger bis hinzu Glanzsprays und SOS-Produkten gegen Frizz.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"UFGU2PY\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"text-decoration: underline;\"><strong><a href=\"\/finde-deine-haircare-routine\">Zur Haardiagnose<\/a><\/strong><\/span><\/div><\/div><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" data-pb-style=\"KPVG5EA\"><\/div><\/div><\/div><\/div><\/div>\t\t\t<\/div>\n\t\t        \n    <\/section>\n\n\n<script>\n\t\tfunction gridSizer() {\n\t\treturn {\n\t\t\tinit() { \n\t\t\t\tthis.update(); \n\t\t\t\tnew ResizeObserver(() => this.update()).observe(this.$refs.grid); \n\t\t\t},\n\t\t\tupdate() {\n\t\t\t\tconst grid = this.$refs.grid;\n\t\t\t\tconst cs   = getComputedStyle(grid);\n\t\t\t\tconst cols = window.innerWidth >= 1280 ? 4 : 2; \/\/ Tailwind xl breakpoint\n\t\t\t\tconst gap  = parseFloat(cs.columnGap || cs.gap) || 0;\n\t\t\t\tconst width = grid.clientWidth;\n\t\t\t\tconst colW = (width - gap * (cols - 1)) \/ cols;\n\t\t\t\tconst itemH = Math.round(colW + 154); \/\/ H\u00f6he berechnen\n\t\t\t\tgrid.style.setProperty('--prodH', itemH + 'px');\n\t\t\t}\n\t\t}\n\t}\n<\/script>\n\n\n<script async src=\"https:\/\/cdn.newsha.com\/static\/frontend\/Bluro\/newsha_hyva\/de_DE\/js\/cat.js\"><\/script>\n\n\n","navigation":"    \n        <div\n        x-data=\"initLayeredNavigation()\"\n        x-init=\"checkIsMobileResolution()\"\n        @resize.window.debounce=\"checkIsMobileResolution()\"\n        @visibilitychange.window.debounce=\"checkIsMobileResolution()\"\n        class=\"block layered-navigation-hyva\"\n        role=\"region\"\n        aria-label=\"Produktfilter\"\n        id=\"layered-navigation-hyva\"\n    >\n\t\t        <div id=\"ln_overlay\" class=\"ln_overlay hidden\">\n            <div class=\"loader\">\n                <img src=\"https:\/\/cdn.newsha.com\/static\/frontend\/Bluro\/newsha_hyva\/de_DE\/images\/loader-1.gif\" alt=\"Loading...\">\n            <\/div>\n        <\/div>\n\n        <div\n            id=\"filters-content\"\n            class=\"grid grid-cols-1 lg:grid-cols-5 block-content filter-content lg:gap-x-8 lg:gap-y-20 p-6 lg:p-12\"\n        >\n            <script>\n\n\n<\/script>\n            \n\t\t\t\t\t\t\n                                                        \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'price','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"price\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats1'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Preis                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats1\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats1\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'price')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items\">\n    <li class=\"item\">\n        <div id=\"ln_slider_container_price\">\n                            <input type=\"text\" id=\"ln_slider_price\" value=\"\"\n                       name=\"ln_slider_price\"\/>\n                    <\/div>\n    <\/li>\n<\/ol>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                                                                                    \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'haartyp','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"haartyp\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats2'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Haartyp                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats2\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats2\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'haartyp')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-haartyp flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"haartyp\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_haartyp\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/haartyp_fein')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/haartyp_fein\">\n                    Fein                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_haartyp\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/haartyp_normal')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/haartyp_normal\">\n                    Normal                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_haartyp\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/haartyp_kraftig')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/haartyp_kraftig\">\n                    Kr\u00e4ftig                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-haartyp flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-haartyp flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                            \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'haarproblem','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"haarproblem\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats3'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Haarproblem                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats3\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'haarproblem')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-haarproblem flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"haarproblem\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_haarproblem\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/haarproblem_frizzy')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/haarproblem_frizzy\">\n                    Frizzy                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_haarproblem\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/haarproblem_platt')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/haarproblem_platt\">\n                    Platt                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_haarproblem\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/haarproblem_locken')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/haarproblem_locken\">\n                    Locken                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-haarproblem flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-haarproblem flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                            \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'kopfhaut','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"kopfhaut\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats4'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Kopfhaut                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats4\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats4\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'kopfhaut')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-kopfhaut flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"kopfhaut\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_kopfhaut\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_empfindlich')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_empfindlich\">\n                    Empfindlich                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_kopfhaut\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_gereizt')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_gereizt\">\n                    Gereizt                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_kopfhaut\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_trocken')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_trocken\">\n                    Trocken                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_kopfhaut\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_fettig')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_fettig\">\n                    Fettig                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_kopfhaut\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_normal1')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/kopfhaut_normal1\">\n                    Normal                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-kopfhaut flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-kopfhaut flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                            \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'wirkung','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"wirkung\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats5'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Wirkung                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats5\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats5\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'wirkung')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-wirkung flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"wirkung\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_wirkung\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_starkungderhaarstruktur')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_starkungderhaarstruktur\">\n                    St\u00e4rkung der Haarstruktur                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_wirkung\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_reduzierungvonspliss')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_reduzierungvonspliss\">\n                    Reduzierung von Spliss                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_wirkung\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_reduziertfrizz')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_reduziertfrizz\">\n                    Reduziert Frizz                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_wirkung\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_feuchtigkeitsspendend')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_feuchtigkeitsspendend\">\n                    Feuchtigkeitsspendend                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_wirkung\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_formend')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_formend\">\n                    Formend                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_wirkung\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_definierend')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/wirkung_definierend\">\n                    Definierend                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-wirkung flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-wirkung flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                            \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'effekt','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"effekt\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats6'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Effekt                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats6\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats6\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'effekt')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-effekt flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"effekt\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_volumen')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_volumen\">\n                    Volumen                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_glanz')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_glanz\">\n                    Glanz                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_geschmeidigkeit')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_geschmeidigkeit\">\n                    Geschmeidigkeit                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_leichterekammbarkeit')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_leichterekammbarkeit\">\n                    Leichtere K\u00e4mmbarkeit                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_definition')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_definition\">\n                    Definition                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_halt')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_halt\">\n                    Halt                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_flexibilitat')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_flexibilitat\">\n                    Flexibilit\u00e4t                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_griffigkeit')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_griffigkeit\">\n                    Griffigkeit                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_effekt\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/effekt_dynamischelocken')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/effekt_dynamischelocken\">\n                    Dynamische Locken                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-effekt flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-effekt flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                            \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'duft','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"duft\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats7'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Duft                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats7\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats7\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'duft')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-duft flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"duft\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_duft\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/duft_pudrigcotton')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/duft_pudrigcotton\">\n                    Pudrig\/ Cotton                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_duft\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/duft_sussfruchtig')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/duft_sussfruchtig\">\n                    S\u00fc\u00df \/ Fruchtig                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_duft\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/duft_blumigfloral')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/duft_blumigfloral\">\n                    Blumig \/ Floral                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_duft\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/duft_frischzitrisch')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/duft_frischzitrisch\">\n                    Frisch \/ Zitrisch                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-duft flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-duft flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                            \t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n                                        <div\n                        x-data=\"checkOpenTab($id('filter-option'),'men','')\"\n                        class=\"filter-option border-b border-[#dddddc] lg:border-0\"\n                        attribute=\"men\"\n                    >\n                        <span :id=\"`${id}-title`\">\n                            <button\n                                type=\"button\"\n                                onclick=\"toggleArea('filter-cats8'); adjustMaxHeight(jQuery('#layered-horizontal-container'));\"\n                                class=\"filter-options-title flex justify-between items-center cursor-pointer text-start border-container w-full py-6 lg:py-0\"\n                                :class=\"{ 'border-b pb-4': open }\"\n                                :aria-controls=\"`${id}-content`\"\n                                :aria-expanded=\"open\"\n                            >\n                                \n\t\t\t\t\t\t\t\t<span class=\"text-sm font-bold uppercase leading-[14px] tracking-wider\">\n\t\t\t\t\t\t\t\t\t Men                                    <span class=\"sr-only\"> Filter<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span id=\"icon-filter-cats8\" class=\"text-slate-800 transition-transform duration-300 block lg:hidden\">\n\t\t\t\t\t\t\t\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t\t\t\t\t\t\t\t<\/span>\n                            <\/button>\n                        <\/span>\n                        \n\t\t\t\t\t\t<div id=\"filter-cats8\" class=\"max-h-0 overflow-hidden transition-all duration-300 ease-in-out filter-cats-hidden-content\">\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t:id=\"`${id}-content`\"\n\t\t\t\t\t\t\t\tclass=\"filter-options-content lg:pt-8\"\n\t\t\t\t\t\t\t\tx-init=\"initOpenFilter($el,'men')\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ol class=\"items ln-items-men flex flex-col gap-y-8 pb-6 lg:pb-0\" data-truncatebtn=\"men\">\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_men\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/men_ja')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/men_ja\">\n                    Ja                                    <\/button>\n\t\t\t\t\n                    <\/li>\n                    <li class=\"item whitespace-nowrap\" >\n                            <input @click=\"clickCheckBox($event)\" type=\"checkbox\"                        class=\"layer-input-filter\" name=\"filter_men\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/style-finish\/filterurl\/men_nein')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/style-finish\/filterurl\/men_nein\">\n                    Nein                                    <\/button>\n\t\t\t\t\n                    <\/li>\n    <\/ol>\n\n<button type=\"button\" class=\"hidden ln-clampopen-btn-men flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weitere anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaDown flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\n<button type=\"button\" class=\"hidden ln-clampclose-btn-men flex items-center cursor-pointer mt-6 w-full\">\n                                \n\t<span class=\"text-sm font-medium leading-[14px]\">\n\t\t Weniger anzeigen\t<\/span>\n\t<span id=\"icon-filter-cats3\" class=\"text-slate-800 transition-transform duration-300 ml-2\">\n\t\t<span class=\"newshaUp flex text-base\"><\/span>\n\t<\/span>\n<\/button>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n                       \n                    <\/div>\n                                                                                                                            \n<div class=\"col-span-full flex justify-end lg:px-12 py-6 border-b lg:border-t border-[#dddddc]\">\n\t<button id=\"ln_button_submit\" type=\"button\" class=\"btn btn-primary w-full lg:w-auto\" name=\"apply_filter\" x-init=\"initApplyFilterButton($el)\">\n\t\tFilter anwenden\t<\/button>\n<\/div>\n\n        <\/div>\n            <\/div>\n    <script>\n        function initLayeredNavigation() {\n            return {\n                isMobile: false,\n                blockOpen: false,\n                layerConfig: {\"active\":[\"id\"],\"params\":{\"id\":\"672\"},\"isCustomerLoggedIn\":false,\"isAjax\":true,\"slider\":{\"price\":{\"selectedFrom\":9.9,\"selectedTo\":49,\"minValue\":9.9,\"maxValue\":49,\"priceFormat\":\"{\\\"pattern\\\":\\\"%s\\\\u00a0\\\\u20ac\\\",\\\"precision\\\":2,\\\"requiredPrecision\\\":2,\\\"decimalSymbol\\\":\\\",\\\",\\\"groupSymbol\\\":\\\".\\\",\\\"groupLength\\\":3,\\\"integerRequired\\\":false}\",\"ajaxUrl\":\"https:\\\/\\\/www.newsha.de\\\/haarpflege-routinen\\\/style-finish?price=from-to\"}},\"scroll\":false,\"activeDesktop\":[\"id\"],\"activeMobile\":[\"id\"],\"buttonSubmit\":{\"enable\":true,\"seoUrlEnable\":true,\"baseUrl\":\"https:\\\/\\\/www.newsha.de\\\/haarpflege-routinen\\\/style-finish\",\"urlSuffix\":null,\"singleAttrs\":{\"disable_auto_group_change\":[\"disable_auto_group_change_no\",\"disable_auto_group_change_yes\"],\"bluro_custom_attr_newsha_newsletter\":[\"bluro_custom_attr_newsha_newsletter_no\",\"bluro_custom_attr_newsha_newsletter_yes\"],\"show_more_function_on_seo_text\":[\"show_more_function_on_seo_text_no\",\"show_more_function_on_seo_text_yes\"],\"sync_to_facebook_catalog\":[\"sync_to_facebook_catalog_no\",\"sync_to_facebook_catalog_yes\"],\"price_type\":[\"price_type_no\",\"price_type_yes\"],\"sku_type\":[\"sku_type_no\",\"sku_type_yes\"],\"weight_type\":[\"weight_type_no\",\"weight_type_yes\"],\"repertus_packstation_article\":[\"repertus_packstation_article_no\",\"repertus_packstation_article_yes\"],\"am_allow_open_amount\":[\"am_allow_open_amount_no\",\"am_allow_open_amount_yes\"],\"am_giftcard_fee_enable\":[\"am_giftcard_fee_enable_no\",\"am_giftcard_fee_enable_yes\"],\"pl_is_bulky\":[\"pl_is_bulky_no\",\"pl_is_bulky_yes\"],\"sw_featured\":[\"sw_featured_no\",\"sw_featured_yes\"],\"featured\":[\"featured_no\",\"featured_yes\"],\"ausverkauft\":[\"ausverkauft_no\",\"ausverkauft_yes\"],\"tierversuchsfrei\":[\"tierversuchsfrei_no\",\"tierversuchsfrei_yes\"],\"vegan\":[\"vegan_no\",\"vegan_yes\"],\"googleshopping_exclude\":[\"googleshopping_exclude_no\",\"googleshopping_exclude_yes\"],\"nachhaltig\":[\"nachhaltig_no\",\"nachhaltig_yes\"],\"exklusiv\":[\"exklusiv_no\",\"exklusiv_yes\"],\"salonqualitaet\":[\"salonqualitaet_no\",\"salonqualitaet_yes\"],\"unverwechselbarer_markenauftritt\":[\"unverwechselbarer_markenauftritt_no\",\"unverwechselbarer_markenauftritt_yes\"],\"lovebrand\":[\"lovebrand_no\",\"lovebrand_yes\"],\"silikonfrei\":[\"silikonfrei_no\",\"silikonfrei_yes\"],\"parabenfrei\":[\"parabenfrei_no\",\"parabenfrei_yes\"],\"namensfilterdeaktivieren\":[\"namensfilterdeaktivieren_no\",\"namensfilterdeaktivieren_yes\"],\"bundle\":[\"bundle_no\",\"bundle_yes\"],\"pre_order_status\":[\"pre_order_status_no\",\"pre_order_status_yes\"],\"pre_order_wiederverfuegbarkeitserinnerung\":[\"pre_order_wiederverfuegbarkeitserinnerung_no\",\"pre_order_wiederverfuegbarkeitserinnerung_yes\"],\"bluro_show_bought_last_month\":[\"bluro_show_bought_last_month_no\",\"bluro_show_bought_last_month_yes\"],\"bluro_routine_step1\":[\"bluro_routine_step1_no\",\"bluro_routine_step1_yes\"],\"bluro_routine_step2\":[\"bluro_routine_step2_no\",\"bluro_routine_step2_yes\"],\"bluro_routine_step3\":[\"bluro_routine_step3_no\",\"bluro_routine_step3_yes\"],\"bluro_routine_step4\":[\"bluro_routine_step4_no\",\"bluro_routine_step4_yes\"],\"bluro_routine_step5\":[\"bluro_routine_step5_no\",\"bluro_routine_step5_yes\"]}},\"multipleAttrs\":[\"cat\",\"manufacturer\",\"color\",\"haartyp\",\"haarproblem\",\"kopfhaut\",\"wirkung\",\"effekt\",\"duft\",\"men\",\"bluro_color\",\"bluro_concentration\",\"q\"],\"swatchOptionText\":[],\"isHideFilter\":\"1\",\"isMultiFilter\":\"1\",\"infiniteScroll\":true,\"ionRange\":true,\"displayType\":{\"haartyp\":[],\"haarproblem\":[],\"kopfhaut\":[],\"wirkung\":[],\"effekt\":[],\"duft\":[],\"men\":[]},\"ratingSlider\":false,\"stickySidebar\":false,\"collapseTheNavigationBar\":false,\"optionsShowInHorizontal\":[\"\"],\"lnType\":\"1\"},\n                filterParams: {},\n                baseFilterParams: {},\n                baseSeoFilterParams: {},\n                seoFilterParams: {},\n                checkIsMobileResolution () {\n                    let self = this;\n                    const mobileElement = this.$refs.LayeredNavigationMobileToggleIcon;\n                    this.isMobile       = mobileElement\n                        ? getComputedStyle(mobileElement).display !== \"none\"\n                        : window.matchMedia('(max-width: 767px)').matches;\n                    if(this.layerConfig.stickySidebar) {\n                       let sidebarEl = document.querySelector('.sidebar.sidebar-main');\n                        sidebarEl.classList.add('mp-stickey');\n                    }\n                    function showOnHorizontal() {\n                        if (!(\/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini\/i.test(navigator.userAgent))) {\n                            var optionsShowInHorizontal = self.layerConfig.optionsShowInHorizontal;\n                            var filterOptions = document.querySelectorAll('.sidebar-main .filter-option');\n                            var filterOptionsHorizontal = document.querySelectorAll('#layered-horizontal-container .filter-option');\n\n                            if (optionsShowInHorizontal && optionsShowInHorizontal.length > 0) {\n                                filterOptionsHorizontal.forEach(function (item) {\n                                    if (optionsShowInHorizontal.indexOf(item.getAttribute('attribute')) === -1 && optionsShowInHorizontal[0] !== 'mp_horizontal_select_all') {\n                                        item.style.display = 'none'; \/\/ Hiding the item\n                                    }\n                                });\n\n                                filterOptions.forEach(function (item) {\n                                    if (optionsShowInHorizontal.indexOf(item.getAttribute('attribute')) !== -1 || optionsShowInHorizontal[0] === 'mp_horizontal_select_all') {\n                                        item.style.display = 'none'; \/\/ Hiding the item\n                                    }\n                                });\n                            }\n                        }\n                    }\n                    if (this.layerConfig.lnType === '2') {\n                        showOnHorizontal();\n                    }\n\n                },\n\n                checkOpenTab(id, attrCode, isHori) {\n                    if(isHori)\n                        return {\n                            open: false,\n                            id: id\n                        };\n                    let isExpand = 4;\n                    if(isExpand === 4) {\n                        let tabActive = this.getUrlParams();\n                        for (const [key, value] of Object.entries(tabActive)) {\n                            if(key === attrCode) {\n                                return {\n                                    open: true,\n                                    id: id\n                                }\n                            }\n                        }\n                    } else {\n                        if(!this.isMobile) {\n                            if(this.layerConfig.activeDesktop.includes(attrCode)) {\n                                return {\n                                    open: true,\n                                    id: id\n                                }\n                            }\n                        } else {\n                            if(this.layerConfig.activeMobile.includes(attrCode)) {\n                                return {\n                                    open: true,\n                                    id: id\n                                }\n                            }\n                        }\n                    }\n                    return {\n                        open: false,\n                        id: id\n                    }\n                },\n                addTimestampToURL: function (originalURL) {\n                    var timestamp = new Date().getTime();\n                    var separator = originalURL.includes('?') ? '&' : '?';\n                    var modifiedURL = originalURL + separator + '_=' + timestamp;\n                    return modifiedURL;\n                },\n                ajaxSubmit: function (submitUrl, btnClicked) {\n                    if (this.layerConfig.buttonSubmit.enable && (typeof btnClicked === 'undefined')) {\n                        if (this.layerConfig.buttonSubmit.seoUrlEnable) {\n                            this.initButtonSeoParams(submitUrl);\n                        }\n                        this.initButtonParams(submitUrl);\n\n                        return;\n                    }\n                    if (this.layerConfig.scroll) {\n                        var element = document.querySelector('#layer-product-list');\n                        if (element) {\n                            var offsetTop = element.offsetTop;\n                            window.scrollTo({\n                                top: offsetTop,\n                                behavior: 'smooth'\n                            });\n                        }\n                    }\n                    var isAjax = this.layerConfig?.isAjax;\n                    if (isAjax) {\n                        this.appendLoading();\n                        let newLink = this.addTimestampToURL(submitUrl);\n                        window.history.pushState({url: submitUrl}, '', submitUrl);\n                        fetch(newLink, {\n                                method: 'POST',\n                                headers: {\n                                    'Content-Type': 'application\/json',\n                                    'X-Requested-With': 'XMLHttpRequest',\n                                },\n                            }\n                        ).then(response => {\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tconst contentType = response.headers.get(\"content-type\");\n                            let productContainer = document.querySelector('#layer-product-list');\n                            let layerContainer   = document.querySelector('#layered-filter-block-container');\n                            let horizonalContainer = document.querySelector('#layered-horizontal-container');\n                            if (contentType && contentType.indexOf(\"application\/json\") !== -1) {\n                                return response.json().then(data => {\n                                    if (productContainer) {\n                                        productContainer.innerHTML = data.products;\n                                        hyva.activateScripts(productContainer);\n                                    }\n                                    if (layerContainer) {\n                                        layerContainer.innerHTML = data.navigation;\n                                        hyva.activateScripts(layerContainer);\n                                    }\n\n                                    if(horizonalContainer) {\n                                        horizonalContainer.innerHTML = data.navigation;\n                                        hyva.activateScripts(horizonalContainer);\n                                    }\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\twindow.dispatchEvent(new Event(\"load\"));\n\t\t\t\t\t\t\t\t\tadjustMaxHeight(jQuery('#layered-horizontal-container'));\n                                });\n                            } else {\n                                return response.text().then(text => {\n                                    const fragment = document.createElement('div');\n                                    fragment.innerHTML = text;\n                                    if (productContainer) {\n                                        productContainer.innerHTML = fragment.querySelector('#layer-product-list').innerHTML;\n                                        hyva.activateScripts(productContainer);\n                                    }\n                                    if (layerContainer) {\n                                        layerContainer.innerHTML = fragment.querySelector('#layered-filter-block-container').innerHTML;\n                                        hyva.activateScripts(layerContainer);\n                                    }\n                                    if(horizonalContainer) {\n                                        horizonalContainer.innerHTML = fragment.querySelector('#layered-filter-block-container').innerHTML;\n                                        hyva.activateScripts(horizonalContainer);\n                                    }\n                                    fragment.remove();\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\twindow.dispatchEvent(new Event(\"load\"));\n\t\t\t\t\t\t\t\t\tadjustMaxHeight(jQuery('#layered-horizontal-container'));\n\n                                });\n                            }\n                                return response.json();\n                            }\n                        ).catch(error => {\n                        }).finally(()=> {\n                            this.removeLoading();\n                        });\n                    } else {\n                        window.location.href = submitUrl;\n\n                    }\n                },\n\n                initButtonSeoParams: function (submitUrl) {\n                    function difference(arr1, arr2) {\n                        return arr1.filter(function(item) {\n                            return arr2.indexOf(item) === -1;\n                        });\n                    }\n\n                    var paramsInit = this.getSeoUrlParams(submitUrl);\n                    var singleAttrs = this.layerConfig.buttonSubmit.singleAttrs;\n                    var params =  (this.baseSeoFilterParams.length > paramsInit.length) ?\n                        difference(this.baseSeoFilterParams, paramsInit) :\n                        difference(paramsInit, this.baseSeoFilterParams);\n                    if (params.length === 0) {\n                        return this;\n                    }\n                    var param = params[0];\n                    if (this.seoFilterParams.includes(param)) {\n                        this.seoFilterParams = difference(this.seoFilterParams, param);\n                    } else {\n                        if (Object.keys(singleAttrs).length > 0) {\n                            for (var key in singleAttrs) {\n                                if (singleAttrs.hasOwnProperty(key)) {\n                                    if (singleAttrs[key].includes(param)) {\n                                        this.seoFilterParams = difference(this.seoFilterParams, singleAttrs[key]);\n                                    }\n                                }\n                            }\n                        }\n                        this.seoFilterParams.push(param);\n                    }\n                },\n                initButtonParams: function (submitUrl) {\n                    var params = this.getUrlParams(submitUrl),\n                        multipleAttrs = this.layerConfig.multipleAttrs;\n                    for (var fkey in this.baseFilterParams) {\n                        if (this.baseFilterParams.hasOwnProperty(fkey) && !params.hasOwnProperty(fkey)) {\n                            var baseParamFilter = this.baseFilterParams[fkey][0];\n                            var baseCurrentFilter = (this.filterParams.hasOwnProperty(fkey)) ? this.filterParams[fkey] : [];\n\n                            if (baseParamFilter) {\n                                var baseParamPosition = baseCurrentFilter.indexOf(baseParamFilter);\n                                if (baseParamPosition >= 0) {\n                                    baseCurrentFilter.splice(baseParamPosition, 1);\n                                } else {\n                                    if (multipleAttrs && multipleAttrs.indexOf(fkey) >= 0) {\n                                        baseCurrentFilter.push(baseParamFilter);\n                                    } else {\n                                        baseCurrentFilter = [baseParamFilter];\n                                    }\n                                }\n\n                                if (baseCurrentFilter.length > 0) {\n                                    this.filterParams[fkey] = baseCurrentFilter;\n                                } else {\n                                    delete this.filterParams[fkey];\n                                }\n                            }\n                        }\n                    }\n                    for (var key in params) {\n                        if (!params.hasOwnProperty(key)) {\n                            continue;\n                        }\n                        var newFilter = params[key],\n                            baseFilter = (this.baseFilterParams.hasOwnProperty(key)) ? this.baseFilterParams[key] : [],\n                            currentFilter = (this.filterParams.hasOwnProperty(key)) ? this.filterParams[key] : [],\n                            paramFilter = params[key];\n\n                        if (this.isEqual(newFilter, baseFilter)) {\n                            continue;\n                        }\n                        if (newFilter.length < baseFilter.length) {\n                            for (var i = 0, len = baseFilter.length; i < len; i++) {\n                                if (newFilter.indexOf(baseFilter[i]) < 0) {\n                                    paramFilter = baseFilter[i];\n                                }\n                            }\n                        }\n\n                        \/\/ Add\/remove new filter\n                        if (newFilter.length > baseFilter.length) {\n                            for (var j = 0, lenj = newFilter.length; j < lenj; j++) {\n                                if (baseFilter.indexOf(newFilter[j]) < 0) {\n                                    paramFilter = newFilter[j];\n                                }\n                            }\n                        }\n\n                        if (paramFilter) {\n                            var paramPosition = currentFilter.indexOf(paramFilter);\n                            if (paramPosition >= 0) {\n                                currentFilter.splice(paramPosition, 1);\n                            } else {\n                                if (this.layerConfig.multipleAttrs && this.layerConfig.multipleAttrs.indexOf(key) >= 0) {\n                                    currentFilter.push(paramFilter);\n                                } else {\n                                    currentFilter = [paramFilter];\n                                }\n                            }\n                        }\n\n                        \/\/ Update HTML elements based on currentFilter\n                        if (currentFilter.length > 0) {\n                            var filterValue = (this.layerConfig.slider && this.layerConfig.slider.hasOwnProperty(key)) ?\n                                currentFilter[currentFilter.length - 1] :\n                                currentFilter.join(',');\n                            this.filterParams[key] = currentFilter;\n                        } else {\n                            delete this.filterParams[key];\n                        }\n                    }\n                },\n                initApplyFilterButton: function (e) {\n                    var self = this,\n                        buttonSubmit = this.layerConfig.buttonSubmit,\n                        seoUrlEnable = buttonSubmit.seoUrlEnable,\n                        urlSuffix = buttonSubmit.urlSuffix;\n                    if(!urlSuffix) {\n                        urlSuffix= ''\n                    }\n                    if (seoUrlEnable) {\n                        this.baseSeoFilterParams = this.getSeoUrlParams();\n                        this.seoFilterParams = this.getSeoUrlParams();\n                    }\n                    this.baseFilterParams = this.getUrlParams();\n                    this.filterParams = this.getUrlParams();\n                    e.addEventListener('click', () => {\n                        var baseUrl = buttonSubmit.baseUrl,\n                            params = {};\n                        for (var elm in self.filterParams) {\n                            if (self.filterParams.hasOwnProperty(elm)) {\n                                params[elm] = self.filterParams[elm].join(',');\n                            }\n                        }\n\n                        var paramsJson = params;\n                        params = new URLSearchParams(params).toString(); \/\/ Convert params object to URL query string\n\n                        if (seoUrlEnable) {\n                            if (self.seoFilterParams.length) {\n                                baseUrl = baseUrl.replace(new RegExp(urlSuffix + '$'), '');\n                                baseUrl += '\/' + self.seoFilterParams.join('-') + urlSuffix;\n                            }\n                            self.ajaxSubmit(baseUrl + (params.length ? '?' + params : ''), true);\n                        } else {\n                            let baseParam = window.location.href;\n                            let baseParamUrl = new URL(baseParam);\n                            let baseParamSearch = baseParamUrl.search;\n\n                            var baseParamJson;\n                            if (baseParamSearch) {\n                                baseParamJson = Object.fromEntries(new URLSearchParams(baseParamSearch));\n                            } else {\n                                baseParamJson = {};\n                            }\n\n                            delete baseParamJson['_'];\n                            delete paramsJson['_'];\n                            if (params !== '' && !self.isEqual(paramsJson, baseParamJson)) {\n                                self.ajaxSubmit(baseUrl + (params.length ? '?' + params : ''), true);\n                            }\n                        }\n                    });\n                },\n\n\t\t\t\tclickCheckBox (e) {\n\t\t\t\t\tlet targetEl = e.target.parentNode.querySelector('[data-url]');\n\t\t\t\t\tif (targetEl) {\n\t\t\t\t\t\tthis.ajaxSubmit(targetEl.dataset.url);\n\t\t\t\t\t}\n\t\t\t\t},\n                clickLink(e, link, attrCode) {\n                    e.preventDefault();\n                    let inputCheckEl = e.currentTarget.parentNode.querySelector('input');\n                    if(inputCheckEl) {\n                        inputCheckEl.checked = !inputCheckEl.checked\n                    }\n                    if(attrCode === 'rating') {\n                        if(!e.currentTarget.classList.contains('ring')) {\n                            e.currentTarget.classList.add('ring')\n                        } else {\n                            e.currentTarget.classList.remove('ring')\n                        }\n                    }\n                    if (link) {\n                        this.ajaxSubmit(link);\n                    }\n                },\n\n                clickLinkClearFilter(e, link) {\n                    e.preventDefault();\n                    if (link) {\n                        this.ajaxSubmit(link, true);\n                    }\n                },\n                selectSwatch(e,link) {\n                    e.preventDefault();\n                    let classNameEl = e.currentTarget.getAttribute('class');\n                    let newClassEl = '';\n                    if (classNameEl.includes('ring ring-primary\/50')) {\n                        newClassEl = classNameEl.replace('ring ring-primary\/50', '');\n                    } else {\n                        newClassEl = classNameEl + ' ring ring-primary\/50'\n                    }\n                    e.currentTarget.setAttribute('class', newClassEl);\n                    if (link) {\n                        this.ajaxSubmit(link);\n                    }\n                },\n                getSliderUrl: function (url, from, to) {\n                    return url.replace('from-to', from + '-' + to);\n                },\n                initOpenFilter (e, attrCode) {\n                    let code = attrCode;\n                    let self = this;\n                    function initSlider () {\n                        \n\t\t\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\n\t\t\t\t\t\tlet slider = self.layerConfig.slider;\n                        if (slider.hasOwnProperty(code) && slider[code].ajaxUrl !== '') {\n                                var sliderConfig = slider[code];\n                                var fromInputs = e.querySelectorAll('input.ln_slider_input_from');\n                                var toInputs = e.querySelectorAll('input.ln_slider_input_to');\n                                if(\"3\" !== '2') {\n                                    let sliderElement = e.querySelector('#ln_slider_' + code),\n                                        rangeElement = e.querySelector('#ln_slider_range_' + code),\n                                        priceFormat = sliderConfig.hasOwnProperty('priceFormat') ? JSON.parse(sliderConfig.priceFormat) : null;\n                                    let containerSlider = sliderElement.closest('#ln_slider_container_' + code);\n                                    let sliderTsIonRange = new TsIonRangeSlider.Slider(sliderElement, {\n                                        type: \"double\",\n                                        min: sliderConfig.minValue,\n                                        max: sliderConfig.maxValue,\n                                        from: sliderConfig.selectedFrom,\n                                        to: sliderConfig.selectedTo,\n                                        priceFormat: priceFormat,\n                                        ajaxUrl: sliderConfig.hasOwnProperty('ajaxUrl') ? sliderConfig.ajaxUrl : null,\n                                        fromElement: rangeElement?.length ? e.querySelector('#ln_slider_from_' + code) : null,\n                                        toElement: rangeElement?.length ? e.querySelector('#ln_slider_to_' + code) : null,\n                                        prettify: function (value) {\n                                            if (this.priceFormat !== null) {\n                                                value =  hyva.formatPrice(value)\n                                            }\n                                            return value;\n                                        },\n                                        onChange: function (data) {\n                                        },\n                                        onFinish: function (data) {\n                                            if (typeof this.ajaxUrl !== null) {\n                                                self.ajaxSubmit(self.getSliderUrl(this.ajaxUrl, data.from, data.to));\n                                            }\n                                            return this;\n                                        }\n                                    });\n                                    function displayRenderHandle() {\n                                        if(sliderTsIonRange) {\n                                            containerSlider.querySelectorAll('.irs-handle').forEach(ele => {\n                                                ele.classList.add('irs-slider');\n                                            });\n                                        }\n                                    }\n                                    displayRenderHandle();\n                                    if (fromInputs && toInputs) {\n                                        fromInputs.forEach(function(fromInput) {\n                                            var code = self.getSliderCode(fromInput.id),\n                                                sliderMax = parseFloat(e.querySelector('#ln_slider_to_' + code).value),\n                                                sliderMin = sliderConfig.minValue;\n\n                                            fromInput.addEventListener('change', function() {\n                                                var value = parseFloat(fromInput.value);\n\n                                                value = (value > sliderMax) ? sliderMax : ((value < sliderMin) ? sliderMin : value);\n                                                fromInput.value = value;\n\n                                                if (sliderTsIonRange) {\n                                                    sliderTsIonRange.update({\n                                                        from: value\n                                                    });\n                                                    displayRenderHandle();\n                                                }\n                                                self.ajaxSubmit(self.getSliderUrl(sliderConfig.ajaxUrl, value, sliderMax));\n\n                                            });\n                                        });\n\n                                        toInputs.forEach(function(toInput) {\n                                            var code = self.getSliderCode(toInput.id),\n                                                sliderMax = sliderConfig.maxValue,\n                                                sliderMin = parseFloat(e.querySelector('#ln_slider_from_' + code).value);\n\n                                            toInput.addEventListener('change', function() {\n                                                var value = parseFloat(toInput.value);\n\n                                                value = (value > sliderMax) ? sliderMax : ((value < sliderMin) ? sliderMin : value);\n                                                toInput.value = value;\n\n                                                if (sliderTsIonRange) {\n                                                    sliderTsIonRange.update({\n                                                        to: value\n                                                    });\n                                                    displayRenderHandle();\n                                                }\n                                                self.ajaxSubmit(self.getSliderUrl(sliderConfig.ajaxUrl, sliderMin, value));\n                                            });\n                                        });\n                                    }\n                                } else {\n                                    let sliderElement = e.querySelector('.ln_slider_container_range');\n                                    if (fromInputs && toInputs) {\n                                        fromInputs.forEach(function(fromInput) {\n                                            var code = self.getSliderCode(fromInput.id),\n                                                sliderMax = parseFloat(e.querySelector('#ln_slider_to_' + code).value),\n                                                sliderMin = sliderConfig.minValue;\n\n                                            fromInput.addEventListener('change', function() {\n                                                var value = parseFloat(fromInput.value);\n\n                                                value = (value > sliderMax) ? sliderMax : ((value < sliderMin) ? sliderMin : value);\n                                                fromInput.value = value;\n\n                                                if (sliderElement) {\n                                                    sliderElement.value1 = value;\n                                                } else {\n                                                    self.ajaxSubmit(self.getSliderUrl(sliderConfig.ajaxUrl, value, sliderMax));\n                                                }\n                                            });\n                                        });\n\n                                        toInputs.forEach(function(toInput) {\n                                            var code = self.getSliderCode(toInput.id),\n                                                sliderMax = sliderConfig.maxValue,\n                                                sliderMin = parseFloat(e.querySelector('#ln_slider_from_' + code).value);\n\n                                            toInput.addEventListener('change', function() {\n                                                var value = parseFloat(toInput.value);\n\n                                                value = (value > sliderMax) ? sliderMax : ((value < sliderMin) ? sliderMin : value);\n                                                toInput.value = value;\n\n                                                if (sliderElement) {\n                                                    sliderElement.value2 = value;\n                                                } else {\n                                                    self.ajaxSubmit(self.getSliderUrl(sliderConfig.ajaxUrl, sliderMin, value));\n                                                }\n                                            });\n                                        });\n                                    }\n                                    if (sliderElement) {\n                                        let code       = sliderElement.getAttribute('dataAttr');\n                                        let text       = e.querySelector('#ln_slider_text_price');\n                                        if(text) {\n                                            text.innerHTML = hyva.formatPrice(sliderElement.value1) + ' - ' + hyva.formatPrice(sliderElement.value2);\n                                        }\n                                        sliderElement.addEventListener('change', (evt) => {\n                                            if(text) {\n                                                text.innerHTML = hyva.formatPrice(evt.detail.value1) + ' - ' + hyva.formatPrice(evt.detail.value2);\n                                            }\n                                            self.ajaxSubmit(self.getSliderUrl(self.layerConfig?.slider[code].ajaxUrl, evt.detail.value1, evt.detail.value2));\n                                        });\n                                    }\n                                }\n                            }\n                    }\n                    initSlider();\n\n                    function renderCategoryTree() {\n                        var iconExpandList = e.querySelectorAll('.icon-expand');\n                        iconExpandList.forEach(function (iconExpand) {\n                            iconExpand.addEventListener('click', function (e) {\n                                let olEl = iconExpand.parentNode.querySelector('ol');\n                                if (iconExpand.classList.contains('active')) {\n                                    iconExpand.classList.remove('active');\n                                    olEl.style.display = 'none';\n                                } else {\n                                    iconExpand.classList.add('active');\n                                    olEl.style.display = 'block';\n                                }\n\n                            });\n                        });\n\n                    }\n                    renderCategoryTree();\n\n                    function initSearchBox () {\n                        let inputSearchBox = e.querySelector('.layer-search-box');\n                        if(inputSearchBox) {\n                            inputSearchBox.addEventListener('keyup', (event) => {\n                                var attributeCode = inputSearchBox.getAttribute('code');\n                                var searchTerm = event.target.value.toLowerCase();\n                                var listItems = document.querySelectorAll('.layer-search-list-' + attributeCode + ' li');\n                                listItems.forEach(function (item) {\n                                    if (searchTerm.length < 1 || item.getAttribute('data-search-term').toLowerCase().includes(searchTerm)) {\n                                        item.style.display = 'block';\n                                    } else {\n                                        item.style.display = 'none';\n                                    }\n                                });\n                            });\n                        }\n                    }\n                    initSearchBox();\n\n                    function initFilterContent() {\n                        if(self.layerConfig.isHideFilter === '1') {\n                            var el = e.closest('.filter-option');\n                            if (el.querySelectorAll('li').length === 1) {\n                                if (el.querySelector('ol li input')?.checked) {\n                                    el.style.display = 'none';\n                                }\n                            }\n                            if (el.querySelectorAll('option').length === 2) {\n                                if (el.querySelector('option:nth-child(2)').selected) {\n                                    el.style.display = 'none';\n                                }\n                            }\n                            if (el.querySelectorAll('.swatch-attribute-options a').length === 1) {\n                                if (el.querySelector('.swatch-option').classList.contains('selected')) {\n                                    el.style.display = 'none';\n                                }\n                            }\n                        }\n                    }\n                    initFilterContent();\n\n\n                    function initDisplayType() {\n                        for (const [key, type] of Object.entries(self.layerConfig.displayType)) {\n                            if(attrCode === key) {\n                                let wrapList = e.querySelector(`.ln-items-${attrCode}`);\n                                if(type.type === 'scroll') {\n                                    wrapList.style.maxHeight = type.value + 'px';\n                                    wrapList.style.overflowY = 'scroll';\n                                } else if( wrapList.querySelectorAll('li')?.length > type.value ) {\n                                    var showMoreDiv = document.createElement('div');\n                                    showMoreDiv.classList.add('ln-show-more', 'ln-show-more-' + attrCode, 'text-center', 'font-semibold', 'cursor-pointer');\n                                    showMoreDiv.innerHTML = 'Show more';\n\n                                    wrapList.parentNode.insertBefore(showMoreDiv, wrapList.nextSibling);\n\n                                    var showLessDiv = document.createElement('div');\n                                    showLessDiv.classList.add('ln-show-less', 'ln-show-less-' + attrCode,'text-center', 'font-semibold', 'cursor-pointer');\n                                    showLessDiv.style.display = 'none';\n                                    showLessDiv.setAttribute('size', type.value);\n                                    showLessDiv.innerHTML = 'Show less';\n\n                                    wrapList.parentNode.insertBefore(showLessDiv, showMoreDiv.nextSibling);\n\n\n                                    showMoreDiv.addEventListener('click',()=> {\n                                        self.showMoreClick(wrapList, showMoreDiv, showLessDiv, null);\n                                    });\n                                    showLessDiv.addEventListener('click',() =>{\n                                        self.showLessClick(wrapList,showMoreDiv,showLessDiv, type.value);\n\n                                    });\n                                    self.displayHiddenItem(wrapList,type.value);\n                                }\n                            }\n                        }\n                    }\n                    initDisplayType();\n\n                    function initRating() {\n                        let listRateEl = e.querySelectorAll('.rating-summary');\n                        if(listRateEl) {\n                            listRateEl.forEach(rateEl => {\n                                if (rateEl.getAttribute('href') && rateEl.getAttribute('href').indexOf(\"rating\") === -1) {\n                                    rateEl.classList.add('ring');\n                                }\n                            })\n                        }\n                    }\n\n                    initRating();\n\n                    if(self.layerConfig.ratingSlider) {\n                        function initRatingSlider() {\n                            let configRatingSlider = self.layerConfig.ratingSlider;\n                            let sliderElement = e.querySelector('.ln_slider_range_rating');\n                            if (sliderElement) {\n                                sliderElement.addEventListener('change', (evt) => {\n                                    self.ajaxSubmit(self.getSliderUrl(configRatingSlider.ajaxUrl, evt.detail.value1, evt.detail.value2));\n                                });\n                            }\n                        }\n                        initRatingSlider();\n                    }\n                },\n                showMoreClick: function(wrapList,showMoreDiv, showLessDiv, limit) {\n                    let lengthLi = wrapList.querySelectorAll('li')?.length;\n                    showMoreDiv.style.display = 'none';\n                    showLessDiv.style.display = 'block';\n                    this.displayHiddenItem(wrapList,lengthLi);\n                },\n                showLessClick: function (wrapList,showMoreDiv, showLessDiv, limit) {\n                    showMoreDiv.style.display = 'block';\n                    showLessDiv.style.display = 'none';\n                    this.displayHiddenItem(wrapList, limit);\n                },\n                displayHiddenItem: function (el, size) {\n                var options = el.querySelectorAll('li');\n\n                \/\/ Hide all options initially\n                options.forEach(function(option) {\n                    option.style.display = 'none';\n                });\n\n                \/\/ Show options up to the specified size\n                for (var i = 0; i < options.length; i++) {\n                    options[i].style.display = 'block'; \/\/ or 'list-item', depending on your CSS\n                    if (--size === 0) {\n                        break;\n                    }\n                }\n            },\n                getSliderCode: function (id) {\n                    return id.replace('ln_slider_from_', '').replace('ln_slider_to_', '').replace('ln_slider_', '');\n                },\n                appendLoading: function () {\n                    var block = document.querySelectorAll(\".ln_overlay\");\n\n                    if (block) {\n                        block.forEach((item) =>{\n                            item.style.display = 'block';\n                        });\n                    }\n                },\n\n                removeLoading: function () {\n                    var block = document.querySelectorAll(\".ln_overlay\");\n                    if (block) {\n                        block.forEach((item) =>{\n                            item.style.display = 'none';\n                        });\n                    }\n                },\n                getSeoUrlParams: function (url) {\n                    var urlSuffix = this.layerConfig.buttonSubmit.urlSuffix || '';\n                    var baseUrl = this.layerConfig.buttonSubmit.baseUrl || '';\n\n                    var currentUrl;\n                    if (typeof url !== 'undefined') {\n                        currentUrl = url.split('?')[0];\n                    } else {\n                        currentUrl = window.location.origin + window.location.pathname;\n                    }\n\n                    if (baseUrl.length === currentUrl.length) {\n                        return [];\n                    }\n\n                    var paramUrl = currentUrl.replace(new RegExp(urlSuffix + '$'), '').split('\/').pop();\n\n                    return paramUrl.split('-');\n                },\n                getUrlParams: function (url) {\n                    var params = {};\n                    var queryString;\n\n                    \/\/ Check if url is provided, otherwise use current window location\n                    if (typeof url !== 'undefined') {\n                        var urlParts = url.split('?');\n                        if (urlParts.length > 1) {\n                            queryString = urlParts[1].split('#')[0];\n                        }\n                    } else {\n                        queryString = window.location.search.slice(1).split('#')[0];\n                    }\n\n                    if (queryString) {\n                        var pairs = queryString.split('&');\n\n                        pairs.forEach(function(pair) {\n                            var keyValue = pair.split('=');\n                            if (keyValue.length === 2) {\n                                var key = decodeURIComponent(keyValue[0]);\n                                var value = decodeURIComponent(keyValue[1]).split(',');\n                                params[key] = value;\n                            }\n                        });\n                    }\n\n                    return params;\n                },\n\n                 isEqual: function(obj1, obj2) {\n                if (typeof obj1 !== typeof obj2 || obj1 === null || obj2 === null) {\n                    return obj1 === obj2;\n                }\n                var type = typeof obj1;\n                if (type !== 'object' || obj1 instanceof Date) {\n                    return obj1 === obj2;\n                }\n                     var keys1 = Object.keys(obj1);\n                var keys2 = Object.keys(obj2);\n                     if (keys1.length !== keys2.length) {\n                    return false;\n                }\n                     for (var key of keys1) {\n                    if (!this.isEqual(obj1[key], obj2[key])) {\n                        return false;\n                    }\n                }\n                     return true;\n            },\n            }\n\n        }\n    <\/script>\n\n"}