{"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=PLRE5ML],#html-body [data-pb-style=SR2QESK]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=SR2QESK]{justify-content:center;display:flex;flex-direction:column;background-color:#f2f1f0;text-align:center;min-height:100%}#html-body [data-pb-style=PLRE5ML]{align-self:stretch}#html-body [data-pb-style=BJVTL4O]{display:flex;width:100%}#html-body [data-pb-style=BI6AQBQ],#html-body [data-pb-style=WUE4HFN]{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=BI6AQBQ]{justify-content:center;width:66.6667%;align-self:center}#html-body [data-pb-style=MIBK3R7]{padding-bottom:16px}#html-body [data-pb-style=A8M7WJ8]{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}<\/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=\"SR2QESK\"><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=\"PLRE5ML\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"BJVTL4O\"><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=\"WUE4HFN\"><\/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=\"BI6AQBQ\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"MIBK3R7\"><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;\">Shampoo<\/span><\/h1><\/div><div class=\"px-8 text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"SS6G7HK\">Unsere Shampoos bilden die ideale Basis f&uuml;r deine Haarpflege. Sie sorgen f&uuml;r eine sanfte aber gr&uuml;ndliche Reinigung und versorgen Haar und Kopfhaut mit milder Pflege. Abgestimmt auf die Bed&uuml;rfnisse jeden Haartyps f&ouml;rdern sie individuell gesundes und geschmeidiges Haar - ob feines, dickes, lockiges oder glattes Haar. Entdecke jetzt das passende Shampoo f&uuml;r deinen Haartyp.<\/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=\"A8M7WJ8\"><\/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\/318\/\"\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-351\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"318\"\/>\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\/daily-routine-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-318\"\n     x-data=\"\"\n     @update-gallery-318.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-DAILY-ROUTINE-SHAMPOO-S-351-1_v260420.jpg\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Daily&#x20;Routine&#x20;Shampoo\"\n    title=\"Daily&#x20;Routine&#x20;Shampoo\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"318\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"318\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"318\">14,50\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_5431 hidden\" data-parentid=\"318\">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=\"price_5437 hidden\" data-parentid=\"318\">78,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_9415 hidden\" data-parentid=\"318\">83,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_5452 hidden\" data-parentid=\"318\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"318\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"318\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"318\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"318\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"318\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"318\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"318\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"318\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DAILY-ROUTINE-SHAMPOO-80ml-S-28549-1_v260420.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_5431 hidden\" data-parentid=\"318\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DAILY-ROUTINE-SHAMPOO-250ml-S-28550-1_v260420.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_5437 hidden\" data-parentid=\"318\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DAILY-ROUTINE-SHAMPOO-1000ml-S-28551-1_v260420.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_9415 hidden\" data-parentid=\"318\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-DAILY-ROUTINE-P-10360-1_v260420.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_5452 hidden\" data-parentid=\"318\">\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_5431 hidden\" data-parentid=\"318\">\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_5437 hidden\" data-parentid=\"318\">\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_9415 hidden\" data-parentid=\"318\">\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_5452 hidden\" data-parentid=\"318\">\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-28549\">\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_5431 hidden\" data-parentid=\"318\">\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-28550\">\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_5437 hidden\" data-parentid=\"318\">\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-28551\">\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_9415 hidden\" data-parentid=\"318\">\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=\"P-10360\">\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_5452 hidden\" data-parentid=\"318\">https:\/\/www.newsha.de\/daily-routine-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"318\">https:\/\/www.newsha.de\/daily-routine-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"318\">https:\/\/www.newsha.de\/daily-routine-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"318\">https:\/\/www.newsha.de\/daily-routine-shampoo-1000ml-refill<\/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-318 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            Daily Routine Shampoo        <\/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\">F\u00fcr die t\u00e4gliche Haarw\u00e4sche \u00b7 Vitalisierend & Beruhigend \u00b7 Sanfte Reinigung\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-318 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-318 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\/307\/\"\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-340\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"307\"\/>\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-care-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-307\"\n     x-data=\"\"\n     @update-gallery-307.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-GENTLE-CARE-SHAMPOO-S-340-1_v260420.jpg\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-gentle-care-shampoo\"\n    title=\"newsha-gentle-care-shampoo\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"307\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"307\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"307\">14,50\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_5431 hidden\" data-parentid=\"307\">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=\"price_5437 hidden\" data-parentid=\"307\">78,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_9415 hidden\" data-parentid=\"307\">83,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_5452 hidden\" data-parentid=\"307\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"307\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"307\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"307\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"307\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"307\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"307\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"307\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"307\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GENTLE-CARE-SHAMPOO-80ml-S-28593-1_v260420.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_5431 hidden\" data-parentid=\"307\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GENTLE-CARE-SHAMPOO-250ml-S-28594-1_v260420.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_5437 hidden\" data-parentid=\"307\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GENTLE-CARE-SHAMPOO-1000ml-S-28595-1_v260420.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_9415 hidden\" data-parentid=\"307\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-GENTLE-CARE-P-10359-1_v260420.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_5452 hidden\" data-parentid=\"307\">\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_5431 hidden\" data-parentid=\"307\">\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_5437 hidden\" data-parentid=\"307\">\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_9415 hidden\" data-parentid=\"307\">\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_5452 hidden\" data-parentid=\"307\">\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-28593\">\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_5431 hidden\" data-parentid=\"307\">\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-28594\">\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_5437 hidden\" data-parentid=\"307\">\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-28595\">\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_9415 hidden\" data-parentid=\"307\">\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=\"P-10359\">\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_5452 hidden\" data-parentid=\"307\">https:\/\/www.newsha.de\/gentle-care-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"307\">https:\/\/www.newsha.de\/gentle-care-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"307\">https:\/\/www.newsha.de\/gentle-care-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"307\">https:\/\/www.newsha.de\/gentle-care-shampoo-1000ml-refill<\/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-307 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 Care Shampoo        <\/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\"> Milde Reinigung \u00b7 Intensive Feuchtigkeit \u00b7 Glanz und Geschmeidigkeit\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-307 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-307 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\/1240\/\"\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-407\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1240\"\/>\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-silk-smooth-shampoo-by-mrs-bella\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1240\"\n     x-data=\"\"\n     @update-gallery-1240.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-SILK-SMOOTH-SHAMPOO-BY-MRS-BELLA-S-407-1_v260326.jpg\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-luxe-silk-smooth-shampoo\"\n    title=\"newsha-luxe-silk-smooth-shampoo\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1240\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1240\">\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=\"5452\">80 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=\"5431\">250 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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"1240\">15,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_5431 hidden\" data-parentid=\"1240\">28,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_5437 hidden\" data-parentid=\"1240\">84,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_9415 hidden\" data-parentid=\"1240\">88,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_5452 hidden\" data-parentid=\"1240\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"1240\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"1240\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"1240\">110,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"1240\">(<span class=\"price\">187,50\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"1240\">(<span class=\"price\">112,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"1240\">(<span class=\"price\">84,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"1240\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"1240\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXE-SILK-SMOOTH-SHAMPOO-BY-MRS-BELLA-80ml-S-28328-1_v260326.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_5431 hidden\" data-parentid=\"1240\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXE-SILK-SMOOTH-SHAMPOO-BY-MRS-BELLA-250ml-S-28317-1_v260326.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_5437 hidden\" data-parentid=\"1240\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXE-SILK-SMOOTH-SHAMPOO-BY-MRS-BELLA-1000ml-S-28318-1_v260326.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_9415 hidden\" data-parentid=\"1240\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-LUXE-SILK-SMOOTH-P-10361-1.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_5452 hidden\" data-parentid=\"1240\">\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_5431 hidden\" data-parentid=\"1240\">\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_5437 hidden\" data-parentid=\"1240\">\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_9415 hidden\" data-parentid=\"1240\">\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_5452 hidden\" data-parentid=\"1240\">\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-28328\">\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_5431 hidden\" data-parentid=\"1240\">\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-28317\">\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_5437 hidden\" data-parentid=\"1240\">\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-28318\">\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_9415 hidden\" data-parentid=\"1240\">\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=\"P-10361\">\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_5452 hidden\" data-parentid=\"1240\">https:\/\/www.newsha.de\/luxe-silk-smooth-shampoo-by-mrs-bella-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"1240\">https:\/\/www.newsha.de\/luxe-silk-smooth-shampoo-by-mrs-bella-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"1240\">https:\/\/www.newsha.de\/luxe-silk-smooth-shampoo-by-mrs-bella-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"1240\">https:\/\/www.newsha.de\/luxe-silk-smooth-shampoo-by-mrs-bella-1000ml-refill<\/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-1240 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 Silk & Smooth Shampoo by Mrs. Bella        <\/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\">Sanfte Reinigung \u00b7 Beruhigt die Haarstuktur  \u00b7 Seidige Geschmeidigkeit \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-1240 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-1240 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\/317\/\"\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-350\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"317\"\/>\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\/deep-cleansing-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-317\"\n     x-data=\"\"\n     @update-gallery-317.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DEEP-CLEANSING-SHAMPOO-S-350-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Deep-Cleansing-Shampoo-new\"\n    title=\"NEWSHA-Deep-Cleansing-Shampoo-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=\"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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"317\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"317\">\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=\"5452\">80 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=\"5431\">250 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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"317\">14,50\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_5431 hidden\" data-parentid=\"317\">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=\"price_5437 hidden\" data-parentid=\"317\">78,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_9415 hidden\" data-parentid=\"317\">83,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_5452 hidden\" data-parentid=\"317\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"317\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"317\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"317\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"317\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"317\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"317\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"317\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"317\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DEEP-CLEANSING-SHAMPOO-80ml-S-28553-1_v260326.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_5431 hidden\" data-parentid=\"317\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DEEP-CLEANSING-SHAMPOO-250ml-S-28554-1_v260326.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_5437 hidden\" data-parentid=\"317\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DEEP-CLEANSING-SHAMPOO-1000ml-S-28555-1_v260326.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_9415 hidden\" data-parentid=\"317\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-DEEP-CLEANSING-P-10366-1.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_5452 hidden\" data-parentid=\"317\">\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_5431 hidden\" data-parentid=\"317\">\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_5437 hidden\" data-parentid=\"317\">\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_9415 hidden\" data-parentid=\"317\">\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_5452 hidden\" data-parentid=\"317\">\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-28553\">\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_5431 hidden\" data-parentid=\"317\">\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-28554\">\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_5437 hidden\" data-parentid=\"317\">\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-28555\">\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_9415 hidden\" data-parentid=\"317\">\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=\"P-10366\">\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_5452 hidden\" data-parentid=\"317\">https:\/\/www.newsha.de\/deep-cleansing-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"317\">https:\/\/www.newsha.de\/deep-cleansing-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"317\">https:\/\/www.newsha.de\/deep-cleansing-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"317\">https:\/\/www.newsha.de\/deep-cleansing-shampoo-1000ml-refill<\/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-317 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            Deep Cleansing Shampoo        <\/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\"> Intensive Reinigung  \u00b7 Verleiht Griffigkeit \u00b7 Verhindert Nachfetten \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-317 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-317 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                \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\/308\/\"\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-341\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"308\"\/>\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\/gorgeous-volume-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-308\"\n     x-data=\"\"\n     @update-gallery-308.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GORGEOUS-VOLUME-SHAMPOO-S-341-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-classic-gorgeous-volume-shampoo-250ml\"\n    title=\"newsha-classic-gorgeous-volume-shampoo-250ml\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"308\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"308\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"308\">14,50\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_5431 hidden\" data-parentid=\"308\">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=\"price_5437 hidden\" data-parentid=\"308\">78,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_9415 hidden\" data-parentid=\"308\">83,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_5452 hidden\" data-parentid=\"308\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"308\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"308\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"308\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"308\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"308\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"308\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"308\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"308\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GORGEOUS-VOLUME-SHAMPOO-80ml-S-28588-1_v260326.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_5431 hidden\" data-parentid=\"308\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GORGEOUS-VOLUME-SHAMPOO-250ml-S-28589-1_v260326.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_5437 hidden\" data-parentid=\"308\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-GORGEOUS-VOLUME-SHAMPOO-1000ml-S-28590-1_v260326.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_9415 hidden\" data-parentid=\"308\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-GORGEOUS-VOLUME-P-10365-1.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_5452 hidden\" data-parentid=\"308\">\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_5431 hidden\" data-parentid=\"308\">\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_5437 hidden\" data-parentid=\"308\">\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_9415 hidden\" data-parentid=\"308\">\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_5452 hidden\" data-parentid=\"308\">\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-28588\">\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_5431 hidden\" data-parentid=\"308\">\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-28589\">\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_5437 hidden\" data-parentid=\"308\">\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-28590\">\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_9415 hidden\" data-parentid=\"308\">\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=\"P-10365\">\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_5452 hidden\" data-parentid=\"308\">https:\/\/www.newsha.de\/gorgeous-volume-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"308\">https:\/\/www.newsha.de\/gorgeous-volume-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"308\">https:\/\/www.newsha.de\/gorgeous-volume-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"308\">https:\/\/www.newsha.de\/gorgeous-volume-shampoo-1000ml-refill<\/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-308 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            Gorgeous Volume Shampoo        <\/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\">Volumen-Booster \u00b7  Elastizit\u00e4t und Spannkraft  \u00b7 St\u00e4rkend und kr\u00e4ftigend\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-308 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-308 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\/1471\/\"\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-418\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1471\"\/>\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\/deluxe-dry-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1471\"\n     x-data=\"\"\n     @update-gallery-1471.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DELUXE-DRY-SHAMPOO-S-418-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-deluxe-dry-shampoo\"\n    title=\"newsha-deluxe-dry-shampoo\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1471\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1471\">\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=\"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_5432 hidden\" data-parentid=\"1471\">16,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_5440 hidden\" data-parentid=\"1471\">28,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=\"1471\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5440 hidden\" data-parentid=\"1471\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5432 hidden\" data-parentid=\"1471\">(<span class=\"price\">213,33\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5440 hidden\" data-parentid=\"1471\">(<span class=\"price\">140,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5432 hidden\" data-parentid=\"1471\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DELUXE-DRY-SHAMPOO-75ml-S-28434-1_v260506.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_5440 hidden\" data-parentid=\"1471\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-DELUXE-DRY-SHAMPOO-200ml-S-28417-1_v260326.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=\"1471\">\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_5440 hidden\" data-parentid=\"1471\">\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=\"1471\">\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-28434\">\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_5440 hidden\" data-parentid=\"1471\">\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-28417\">\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=\"1471\">https:\/\/www.newsha.de\/deluxe-dry-shampoo-75ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5440 hidden\" data-parentid=\"1471\">https:\/\/www.newsha.de\/deluxe-dry-shampoo-250ml<\/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-1471 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            Deluxe Dry Shampoo        <\/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\">Frisches Haargef\u00fchl \u00b7 Entfernt Talg und Ablagerungen \u00b7 Volumen und F\u00fclle\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-1471 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-1471 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\/1693\/\"\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-50207\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1693\"\/>\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\/head-spa-effective-anti-dandruff-shampoo-for-dry-scalp-250ml\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1693\"\n     x-data=\"\"\n     @update-gallery-1693.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-HEAD-SPA-EFFECTIVE-ANTI-DANDRUFF-SHAMPOO-FOR-DRY-SCALP-SENSITIVE-SCALP-250ml-S-50207-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Effective&#x20;Anti-Dandruff&#x20;Shampoo&#x20;for&#x20;dry&#x20;scalp&#x20;&#x7C;&#x20;250ml\"\n    title=\"Effective&#x20;Anti-Dandruff&#x20;Shampoo&#x20;for&#x20;dry&#x20;scalp&#x20;&#x7C;&#x20;250ml\"\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\">250 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1693\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1693\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjMmhoYlhCdmJ3fn4vcHJvZHVjdC8xNjkzLw~~\">\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-1693 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            Effective Anti-Dandruff Shampoo for dry scalp | 250ml        <\/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-Schuppen-Shampoo \u00b7 Beugt gegen trockene Schuppen vor \u00b7 Lindert R\u00f6tungen & Juckreiz\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-1693 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-1693 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\/1694\/\"\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-50216\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1694\"\/>\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\/head-spa-effective-anti-dandruff-shampoo-for-oily-scalp-250ml\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1694\"\n     x-data=\"\"\n     @update-gallery-1694.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-HEAD-SPA-EFFECTIVE-ANTI-DANDRUFF-SHAMPOO-FOR-OILY-SCALP-OILY-SCALP-250ml-S-50216-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Effective&#x20;Anti-Dandruff&#x20;Shampoo&#x20;for&#x20;oily&#x20;scalp&#x20;&#x7C;&#x20;250ml\"\n    title=\"Effective&#x20;Anti-Dandruff&#x20;Shampoo&#x20;for&#x20;oily&#x20;scalp&#x20;&#x7C;&#x20;250ml\"\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\">250 ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1694\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1694\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjMmhoYlhCdmJ3fn4vcHJvZHVjdC8xNjk0Lw~~\">\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-1694 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            Effective Anti-Dandruff Shampoo for oily scalp | 250ml        <\/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-Schuppen-Shampoo \u00b7 Beugt fettigen Schuppen vor \u00b7 F\u00fcr eine ausbalancierte Kopfhaut\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-1694 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-1694 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\/319\/\"\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-352\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"319\"\/>\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\/color-protect-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-319\"\n     x-data=\"\"\n     @update-gallery-319.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-COLOR-PROTECT-SHAMPOO-S-352-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Color-Protect-Shampoo-new\"\n    title=\"NEWSHA-Color-Protect-Shampoo-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=\"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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"319\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"319\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"319\">14,50\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_5431 hidden\" data-parentid=\"319\">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=\"price_5437 hidden\" data-parentid=\"319\">78,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_9415 hidden\" data-parentid=\"319\">83,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_5452 hidden\" data-parentid=\"319\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"319\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"319\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"319\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"319\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"319\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"319\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"319\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"319\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-COLOR-PROTECT-SHAMPOO-80ml-S-28545-1_v260326.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_5431 hidden\" data-parentid=\"319\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-COLOR-PROTECT-SHAMPOO-250ml-S-28546-1_v260326.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_5437 hidden\" data-parentid=\"319\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-COLOR-PROTECT-SHAMPOO-1000ml-S-28547-1_v260326.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_9415 hidden\" data-parentid=\"319\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-COLOR-PROTECT-P-10362-1.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_5452 hidden\" data-parentid=\"319\">\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_5431 hidden\" data-parentid=\"319\">\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_5437 hidden\" data-parentid=\"319\">\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_9415 hidden\" data-parentid=\"319\">\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_5452 hidden\" data-parentid=\"319\">\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-28545\">\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_5431 hidden\" data-parentid=\"319\">\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-28546\">\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_5437 hidden\" data-parentid=\"319\">\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-28547\">\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_9415 hidden\" data-parentid=\"319\">\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=\"P-10362\">\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_5452 hidden\" data-parentid=\"319\">https:\/\/www.newsha.de\/color-protect-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"319\">https:\/\/www.newsha.de\/color-protect-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"319\">https:\/\/www.newsha.de\/color-protect-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"319\">https:\/\/www.newsha.de\/color-protect-shampoo-1000ml-refill<\/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-319 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            Color Protect Shampoo        <\/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\">Langanhaltender Farbschutz \u00b7 Glanz & Brillanz \u00b7 Intensive Feuchtigkeit\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-319 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-319 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\/567\/\"\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-369\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"567\"\/>\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\/true-blonde-silver-shampoo-type-2\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-567\"\n     x-data=\"\"\n     @update-gallery-567.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-2-S-369-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-True-Blonde-Silver-Shampoo-Type&#x23;2-250ml\"\n    title=\"NEWSHA-True-Blonde-Silver-Shampoo-Type&#x23;2-250ml\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"567\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"567\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"567\">15,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_5431 hidden\" data-parentid=\"567\">29,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_5437 hidden\" data-parentid=\"567\">87,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_9415 hidden\" data-parentid=\"567\">89,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_5452 hidden\" data-parentid=\"567\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"567\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"567\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"567\">111,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"567\">(<span class=\"price\">187,50\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"567\">(<span class=\"price\">116,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"567\">(<span class=\"price\">87,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"567\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"567\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-2-80ml-S-28209-1_v260326.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_5431 hidden\" data-parentid=\"567\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-2-250ml-S-28210-1_v260326.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_5437 hidden\" data-parentid=\"567\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-2-1000ml-S-28211-1_v260326.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_9415 hidden\" data-parentid=\"567\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-SILVER-SHAMPOO-TYPE-2-P-10364-1.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_5452 hidden\" data-parentid=\"567\">\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_5431 hidden\" data-parentid=\"567\">\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_5437 hidden\" data-parentid=\"567\">\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_9415 hidden\" data-parentid=\"567\">\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_5452 hidden\" data-parentid=\"567\">\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-28209\">\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_5431 hidden\" data-parentid=\"567\">\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-28210\">\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_5437 hidden\" data-parentid=\"567\">\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-28211\">\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_9415 hidden\" data-parentid=\"567\">\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=\"P-10364\">\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_5452 hidden\" data-parentid=\"567\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-2-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"567\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-2-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"567\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-2-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"567\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-2-1000ml-refill<\/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-567 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            True Blonde Silver Shampoo Type 2        <\/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-Gelbstich  \u00b7 f\u00fcr hell- bis helllichtblondes Haar \u00b7 K\u00fchles 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-567 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-567 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-346\" class=\"h-product flex col-span-4  \"><style>#html-body [data-pb-style=EACWSWY],#html-body [data-pb-style=Q0NWP3E]{background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=Q0NWP3E]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top}#html-body [data-pb-style=EACWSWY]{background-position:center top;align-self:stretch}#html-body [data-pb-style=SNL2NW9]{display:flex;width:100%}#html-body [data-pb-style=BPQVHBL],#html-body [data-pb-style=G9Q4CSQ]{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=G9Q4CSQ]{justify-content:center;width:41.6667%;align-self:center}#html-body [data-pb-style=ELYCTGA]{margin-top:32px}#html-body [data-pb-style=YGRK2E7]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;width:50%;align-self:stretch}#html-body [data-pb-style=GKQEW0O],#html-body [data-pb-style=V9VFTKD],#html-body [data-pb-style=YGRK2E7]{background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=V9VFTKD]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top}#html-body [data-pb-style=GKQEW0O]{background-position:center top;align-self:stretch}#html-body [data-pb-style=KDRH2QE]{display:flex;width:100%}#html-body [data-pb-style=NHD3PSD],#html-body [data-pb-style=OOXT4DD]{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=OOXT4DD]{justify-content:flex-end;width:83.3333%;padding-bottom:16px;align-self:flex-end}#html-body [data-pb-style=TRNSF3X]{margin-bottom:0}#html-body [data-pb-style=HOSEISJ]{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}<\/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=\"Q0NWP3E\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group background-image-6a429a4e01402\" data-background-images='{\\\"desktop_image\\\":\\\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/4erSTO_RER_Weitere_Seiten4_optimized.webp\\\",\\\"mobile_image\\\":\\\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/4erSTO_RER_Weitere_Seiten4_optimized.webp\\\"}' data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"EACWSWY\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"SNL2NW9\"><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=\"BPQVHBL\"><\/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=\"G9Q4CSQ\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center; line-height: 1.3;\"><span style=\"color: #ffffff; font-family: editorsnote;\"><span style=\"font-size: 50px; font-weight: 100;\">F&uuml;r langanhaltenden Farbglanz im Sommer<\/span><\/span><\/p><\/div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"ELYCTGA\"><p style=\"text-align: center; line-height: 1.5;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"\/themenwelten\/holiday-hair-club#S-352\"><span style=\"font-family: montserrat;\"><span style=\"font-size: 20px;\"><u>Jetzt Farbschutz entdecken<\/u><\/span><\/span><\/a><\/strong><\/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=\"YGRK2E7\"><\/div><\/div><\/div><style type=\"text\/css\">.background-image-6a429a4e01402 {background-image: url(https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/4erSTO_RER_Weitere_Seiten4_optimized.webp);}@media only screen and (max-width: 768px) and (min-width: 640px) {.background-image-6a429a4e01402 {background-image: url(https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/4erSTO_RER_Weitere_Seiten4_optimized.webp);}}@media only screen and (max-width: 640px) {.background-image-6a429a4e01402 {background-image: url(https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/4erSTO_RER_Weitere_Seiten4_optimized.webp);}}<\/style><\/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=\"V9VFTKD\"><div class=\"row-full-width-inner\" data-element=\"inner\"><div class=\"pagebuilder-column-group background-image-6a429a4e01432\" data-background-images='{\\\"desktop_image\\\":\\\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/2erSTO_RER_Weitere_Seiten4_optimized.webp\\\",\\\"mobile_image\\\":\\\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/2erSTO_RER_Weitere_Seiten4_optimized.webp\\\"}' data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"GKQEW0O\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"KDRH2QE\"><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=\"NHD3PSD\"><\/div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"align-bottom\" data-background-images=\"{}\" data-background-lazy-load=\"false\" data-element=\"main\" data-pb-style=\"OOXT4DD\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TRNSF3X\"><p style=\"text-align: center; line-height: 1;\">&nbsp;<\/p>\r\n<p style=\"text-align: center; line-height: 1;\"><span style=\"color: #ffffff; font-family: editorsnote; font-size: 28px;\"><span style=\"font-weight: 100;\">F&uuml;r langanhaltenden <br>Farbglanz im Sommer<\/span><\/span><\/p>\r\n<p style=\"text-align: center; line-height: 1;\">&nbsp;<\/p>\r\n<p style=\"text-align: center; line-height: 1;\"><a tabindex=\"-1\" href=\"\/themenwelten\/holiday-hair-club#S-352\"><span style=\"color: #ffffff;\"><strong><span style=\"font-family: montserrat;\"><span style=\"font-size: 13px;\"><u>Jetzt Farbschutz entdecken<\/u><\/span><\/span><\/strong><\/span><\/a><\/p>\r\n<p style=\"text-align: center; line-height: 1;\"><span style=\"color: #ffffff;\">&nbsp;<\/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=\"HOSEISJ\"><\/div><\/div><\/div><style type=\"text\/css\">.background-image-6a429a4e01432 {background-image: url(https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/2erSTO_RER_Weitere_Seiten4_optimized.webp);}@media only screen and (max-width: 768px) and (min-width: 640px) {.background-image-6a429a4e01432 {background-image: url(https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/2erSTO_RER_Weitere_Seiten4_optimized.webp);}}@media only screen and (max-width: 640px) {.background-image-6a429a4e01432 {background-image: url(https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/Stoerer\/2erSTO_RER_Weitere_Seiten4_optimized.webp);}}<\/style><\/div><\/div><\/li>                    <li>\n                        \n\n\n<form method=\"post\"\n    action=\"https:\/\/www.newsha.de\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/313\/\"\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-346\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"313\"\/>\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\/true-blonde-silver-shampoo-type-1\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-313\"\n     x-data=\"\"\n     @update-gallery-313.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-1-S-346-1_v260326.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-True-Blonde-Silver-Shampoo-Type&#x23;1-250ml-new\"\n    title=\"NEWSHA-True-Blonde-Silver-Shampoo-Type&#x23;1-250ml-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=\"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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"313\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"313\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"313\">15,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_5431 hidden\" data-parentid=\"313\">29,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_5437 hidden\" data-parentid=\"313\">87,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_9415 hidden\" data-parentid=\"313\">89,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_5452 hidden\" data-parentid=\"313\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"313\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"313\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"313\">111,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"313\">(<span class=\"price\">187,50\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"313\">(<span class=\"price\">116,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"313\">(<span class=\"price\">87,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"313\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"313\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-1-80ml-S-28208-1_v260326.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_5431 hidden\" data-parentid=\"313\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-1-250ml-S-28567-1_v260326.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_5437 hidden\" data-parentid=\"313\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-TRUE-BLONDE-SILVER-SHAMPOO-TYPE-1-1000ml-S-28568-1_v260326.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_9415 hidden\" data-parentid=\"313\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-SILVER-SHAMPOO-TYPE-1-P-10363-1.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_5452 hidden\" data-parentid=\"313\">\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_5431 hidden\" data-parentid=\"313\">\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_5437 hidden\" data-parentid=\"313\">\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_9415 hidden\" data-parentid=\"313\">\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_5452 hidden\" data-parentid=\"313\">\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-28208\">\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_5431 hidden\" data-parentid=\"313\">\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-28567\">\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_5437 hidden\" data-parentid=\"313\">\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-28568\">\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_9415 hidden\" data-parentid=\"313\">\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=\"P-10363\">\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_5452 hidden\" data-parentid=\"313\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-1-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"313\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-1-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"313\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-1-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"313\">https:\/\/www.newsha.de\/true-blonde-silver-shampoo-type-1-1000ml-refill<\/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-313 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            True Blonde Silver Shampoo Type 1        <\/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-Orangestich \u00b7 F\u00fcr dunkel- bis hellblondes Haar \u00b7 K\u00fchles 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-313 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-313 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\/953\/\"\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-403\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"953\"\/>\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\/severe-thickening-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-953\"\n     x-data=\"\"\n     @update-gallery-953.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SEVERE-THICKENING-SHAMPOO-S-403-1.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-severe-thickening-shampoo-250ml\"\n    title=\"newsha-severe-thickening-shampoo-250ml\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"953\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"953\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"953\">14,50\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_5431 hidden\" data-parentid=\"953\">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=\"price_5437 hidden\" data-parentid=\"953\">78,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_9415 hidden\" data-parentid=\"953\">83,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_5452 hidden\" data-parentid=\"953\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"953\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"953\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"953\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"953\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"953\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"953\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"953\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"953\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SEVERE-THICKENING-SHAMPOO-80ml-S-28833-1_v260326.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_5431 hidden\" data-parentid=\"953\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SEVERE-THICKENING-SHAMPOO-250ml-S-28834-1_v260506.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_5437 hidden\" data-parentid=\"953\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SEVERE-THICKENING-SHAMPOO-1000ml-S-28835-1.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_9415 hidden\" data-parentid=\"953\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-SEVERE-THICKENING-SHAMPOO-FOR-MEN-P-10367-1.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_5452 hidden\" data-parentid=\"953\">\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_5431 hidden\" data-parentid=\"953\">\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_5437 hidden\" data-parentid=\"953\">\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_9415 hidden\" data-parentid=\"953\">\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_5452 hidden\" data-parentid=\"953\">\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-28833\">\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_5431 hidden\" data-parentid=\"953\">\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-28834\">\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_5437 hidden\" data-parentid=\"953\">\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-28835\">\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_9415 hidden\" data-parentid=\"953\">\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=\"P-10367\">\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_5452 hidden\" data-parentid=\"953\">https:\/\/www.newsha.de\/severe-thickening-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"953\">https:\/\/www.newsha.de\/severe-thickening-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"953\">https:\/\/www.newsha.de\/severe-thickening-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"953\">https:\/\/www.newsha.de\/severe-thickening-shampoo-1000ml-refill<\/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-953 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            Severe Thickening Shampoo        <\/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\">Reinigt und st\u00e4rkt  \u00b7 F\u00fclle und Widerstandskraft \u00b7 Regt das Haarwachstum an\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-953 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-953 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\/952\/\"\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-402\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"952\"\/>\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\/charcoal-energizing-shampoo\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-952\"\n     x-data=\"\"\n     @update-gallery-952.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-CHARCOAL-ENERGIZING-SHAMPOO-S-402-1.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"newsha-charcoal-energizing-shampoo-250ml\"\n    title=\"newsha-charcoal-energizing-shampoo-250ml\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"952\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"952\">\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=\"5452\">80 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=\"5431\">250 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\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=\"5437\">1000 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=\"9415\">1000 ml + Refill<\/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_5452 hidden\" data-parentid=\"952\">14,50\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_5431 hidden\" data-parentid=\"952\">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=\"price_5437 hidden\" data-parentid=\"952\">78,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_9415 hidden\" data-parentid=\"952\">83,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_5452 hidden\" data-parentid=\"952\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5431 hidden\" data-parentid=\"952\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_5437 hidden\" data-parentid=\"952\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9415 hidden\" data-parentid=\"952\">104,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5452 hidden\" data-parentid=\"952\">(<span class=\"price\">181,25\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5431 hidden\" data-parentid=\"952\">(<span class=\"price\">104,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_5437 hidden\" data-parentid=\"952\">(<span class=\"price\">78,00\u00a0\u20ac<\/span> \/ 1 L)<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9415 hidden\" data-parentid=\"952\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_5452 hidden\" data-parentid=\"952\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-CHARCOAL-ENERGIZING-SHAMPOO-80ml-S-28830-1_v260326.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_5431 hidden\" data-parentid=\"952\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-CHARCOAL-ENERGIZING-SHAMPOO-250ml-S-28831-1_v260506.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_5437 hidden\" data-parentid=\"952\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-CHARCOAL-ENERGIZING-SHAMPOO-1000ml-S-28832-1.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_9415 hidden\" data-parentid=\"952\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-LUXUS-REFILL-CHARCOAL-ENERGIZING-SHAMPOO-FOR-MEN-P-10368-1.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_5452 hidden\" data-parentid=\"952\">\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_5431 hidden\" data-parentid=\"952\">\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_5437 hidden\" data-parentid=\"952\">\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_9415 hidden\" data-parentid=\"952\">\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_5452 hidden\" data-parentid=\"952\">\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-28830\">\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_5431 hidden\" data-parentid=\"952\">\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-28831\">\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_5437 hidden\" data-parentid=\"952\">\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-28832\">\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_9415 hidden\" data-parentid=\"952\">\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=\"P-10368\">\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_5452 hidden\" data-parentid=\"952\">https:\/\/www.newsha.de\/charcoal-energizing-shampoo-80ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5431 hidden\" data-parentid=\"952\">https:\/\/www.newsha.de\/charcoal-energizing-shampoo-250ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_5437 hidden\" data-parentid=\"952\">https:\/\/www.newsha.de\/charcoal-energizing-shampoo-1000ml<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9415 hidden\" data-parentid=\"952\">https:\/\/www.newsha.de\/charcoal-energizing-shampoo-1000ml-refill<\/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-952 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            Charcoal Energizing Shampoo        <\/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\">Vitalisierend und erfrischend \u00b7 tiefenwirksame Reinigung \u00b7  K\u00fchlender 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-952 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-952 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\/1573\/\"\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=\"P-10320\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1573\"\/>\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\/deep-cleansing-meets-severe-thickening-set\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1573\"\n     x-data=\"\"\n     @update-gallery-1573.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SHAMPOO-COUPLE-DEEP-CLEANSING-MEETS-SEVERE-THICKENING-P-10320-1_v260506.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-SHAMPOO-COUPLE-DEEP-CLEANSING-MEETS-SEVERE-THICKENING\"\n    title=\"NEWSHA-SHAMPOO-COUPLE-DEEP-CLEANSING-MEETS-SEVERE-THICKENING\"\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\">Je 250ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1573\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1573\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjMmhoYlhCdmJ3fn4vcHJvZHVjdC8xNTczLw~~\">\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-1573 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">46,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            Shampoo Couple: Deep Cleansing meets Severe Thickening        <\/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\">Shampoo-Set f\u00fcr sie und ihn \u00b7 Jetzt zum Vorteilspreis \u00b7 Nur f\u00fcr kurze Zeit\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-1573 line-through font-medium leading-[18px]\">52,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1573 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">46,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\/1574\/\"\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=\"P-10321\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1574\"\/>\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\/gorgeous-volume-meets-severe-thickening\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1574\"\n     x-data=\"\"\n     @update-gallery-1574.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SHAMPOO-COUPLE-GORGEOUS-VOLUMNE-MEETS-SEVERE-THICKENING-P-10321-1_v260506.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-Shampoo-Couple-Gorgeous-Volume-meets-Severe-Thickening\"\n    title=\"NEWSHA-Shampoo-Couple-Gorgeous-Volume-meets-Severe-Thickening\"\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\">Je 250ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1574\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1574\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjMmhoYlhCdmJ3fn4vcHJvZHVjdC8xNTc0Lw~~\">\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-1574 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">46,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            Shampoo Couple: Gorgeous Volume meets Severe Thickening        <\/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\">Shampoo-Set f\u00fcr sie und ihn \u00b7 Jetzt zum Vorteilspreis \u00b7 Nur f\u00fcr kurze Zeit\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-1574 line-through font-medium leading-[18px]\">52,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1574 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">46,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\/1571\/\"\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=\"P-10318\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1571\"\/>\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\/daily-routine-meets-charcoal-energizing\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1571\"\n     x-data=\"\"\n     @update-gallery-1571.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SHAMPOO-COUPLE-DAILY-ROUTINE-MEETS-CHARCOAL-ENERGYZING-P-10318-1_v260506.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"NEWSHA-SHAMPOO-COUPLE-DAILY-ROUTINE-MEETS-CHARCOAL-ENERGIZING\"\n    title=\"NEWSHA-SHAMPOO-COUPLE-DAILY-ROUTINE-MEETS-CHARCOAL-ENERGIZING\"\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\">Je 250ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1571\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1571\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjMmhoYlhCdmJ3fn4vcHJvZHVjdC8xNTcxLw~~\">\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-1571 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">46,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            Shampoo Couple: Daily Routine meets Charcoal Energizing        <\/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\">Shampoo-Set f\u00fcr sie und ihn \u00b7 Jetzt zum Vorteilspreis \u00b7 Nur f\u00fcr kurze Zeit\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-1571 line-through font-medium leading-[18px]\">52,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1571 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">46,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\/1572\/\"\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=\"P-10319\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1572\"\/>\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-care-meets-charcoal-energizing\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1572\"\n     x-data=\"\"\n     @update-gallery-1572.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-SHAMPOO-COUPLE-GENTLE-CARE-MEETS-CHARCOAL-ENERGIZING-P-10319-1_v260506.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Shampoo&#x20;Couple&#x3A;&#x20;Gentle&#x20;Care&#x20;meets&#x20;Charcoal&#x20;Energizing\"\n    title=\"Shampoo&#x20;Couple&#x3A;&#x20;Gentle&#x20;Care&#x20;meets&#x20;Charcoal&#x20;Energizing\"\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\">Je 250ml<\/div>\n\t\t\t\t<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1572\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1572\">\n\t\t\t\t<input type=\"hidden\" name=\"uenc\" value=\"aHR0cHM6Ly93d3cubmV3c2hhLmRlL2NoZWNrb3V0L2NhcnQvYWRkL3VlbmMvYUhSMGNITTZMeTkzZDNjdWJtVjNjMmhoTG1SbEwyaGhZWEp3Wm14bFoyVXRjbTkxZEdsdVpXNHZjMmhoYlhCdmJ3fn4vcHJvZHVjdC8xNTcyLw~~\">\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-1572 text-xs lg:text-sm font-bold flex-1 ms-[12px] lg:text-right lg:ms-0 lg:me-[16px]\" data-role=\"priceBox\">46,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            Shampoo Couple: Gentle Care meets Charcoal Energizing        <\/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\">Shampoo-Set f\u00fcr sie und ihn \u00b7 Jetzt zum Vorteilspreis \u00b7 Nur f\u00fcr kurze Zeit\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-1572 line-through font-medium leading-[18px]\">52,00\u00a0\u20ac\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"price-from-div price-from-div-visible price-from-1572 font-bold whitespace-nowrap pt-1 lg:pt-2 leading-[13.20px]\" data-role=\"priceBox\">46,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\/1620\/\"\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=\"P-20001\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1620\"\/>\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\/haircare-bestseller-set\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1620\"\n     x-data=\"\"\n     @update-gallery-1620.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-BESTSELLER-SET-P-20001-1_v260331.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Haircare&#x20;Bestseller&#x20;Set\"\n    title=\"Haircare&#x20;Bestseller&#x20;Set\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1620\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1620\">\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=\"9402\">Starter<\/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=\"9403\">Full Routine<\/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=\"9404\">Professional<\/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_9402 hidden\" data-parentid=\"1620\">57,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_9403 hidden\" data-parentid=\"1620\">132,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_9404 hidden\" data-parentid=\"1620\">166,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_9402 hidden\" data-parentid=\"1620\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9403 hidden\" data-parentid=\"1620\">155,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9404 hidden\" data-parentid=\"1620\">207,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9402 hidden\" data-parentid=\"1620\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9403 hidden\" data-parentid=\"1620\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9404 hidden\" data-parentid=\"1620\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_9402 hidden\" data-parentid=\"1620\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-BESTSELLER-SET-STARTER-P-20002-1_v260331.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_9403 hidden\" data-parentid=\"1620\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-BESTSELLER-SET-FULL-ROUTINE-P-20003-1_v260331.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_9404 hidden\" data-parentid=\"1620\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-BESTSELLER-SET-PROFESSIONAL-ROUTINE-P-20004-1_v260331.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_9402 hidden\" data-parentid=\"1620\">\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_9403 hidden\" data-parentid=\"1620\">\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_9404 hidden\" data-parentid=\"1620\">\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_9402 hidden\" data-parentid=\"1620\">\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=\"P-20002\">\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_9403 hidden\" data-parentid=\"1620\">\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=\"P-20003\">\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_9404 hidden\" data-parentid=\"1620\">\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=\"P-20004\">\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_9402 hidden\" data-parentid=\"1620\">https:\/\/www.newsha.de\/haircare-bestseller-starter-set<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9403 hidden\" data-parentid=\"1620\">https:\/\/www.newsha.de\/haircare-bestseller-full-routine-set<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9404 hidden\" data-parentid=\"1620\">https:\/\/www.newsha.de\/haircare-bestseller-professional-routine-set<\/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-1620 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            Haircare Bestseller Set        <\/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\">Feuchtigkeit & Glanz \u00b7 Geschmeidigkeit \u00b7 Leichte K\u00e4mmbarkeit\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-1620 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-1620 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\/1624\/\"\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=\"P-20005\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1624\"\/>\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\/maximum-health-set\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1624\"\n     x-data=\"\"\n     @update-gallery-1624.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-MAXIMUM-HEALTH-SET-P-20005-1_v260522.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Maximum&#x20;Health&#x20;Set\"\n    title=\"Maximum&#x20;Health&#x20;Set\"\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=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1624\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1624\">\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=\"9402\">Starter<\/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=\"9403\">Full Routine<\/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=\"9404\">Professional<\/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_9402 hidden\" data-parentid=\"1624\">90,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_9403 hidden\" data-parentid=\"1624\">148,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_9404 hidden\" data-parentid=\"1624\">202,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_9402 hidden\" data-parentid=\"1624\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9403 hidden\" data-parentid=\"1624\">174,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9404 hidden\" data-parentid=\"1624\">252,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9402 hidden\" data-parentid=\"1624\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9403 hidden\" data-parentid=\"1624\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9404 hidden\" data-parentid=\"1624\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_9402 hidden\" data-parentid=\"1624\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-MAXIMUM-HEALTH-SET-STARTER-P-20006-1_v260522.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_9403 hidden\" data-parentid=\"1624\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-MAXIMUM-HEALTH-SET-FULL-ROUTINE-P-20007-1_v260522.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_9404 hidden\" data-parentid=\"1624\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-MAXIMUM-HEALTH-SET-PROFESSIONAL-ROUTINE-P-20008-1_v260522.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_9402 hidden\" data-parentid=\"1624\">\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_9403 hidden\" data-parentid=\"1624\">\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_9404 hidden\" data-parentid=\"1624\">\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_9402 hidden\" data-parentid=\"1624\">\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=\"P-20006\">\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_9403 hidden\" data-parentid=\"1624\">\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=\"P-20007\">\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_9404 hidden\" data-parentid=\"1624\">\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=\"P-20008\">\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_9402 hidden\" data-parentid=\"1624\">https:\/\/www.newsha.de\/maximum-health-starter-set<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9403 hidden\" data-parentid=\"1624\">https:\/\/www.newsha.de\/maximum-health-full-routine-set<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9404 hidden\" data-parentid=\"1624\">https:\/\/www.newsha.de\/maximum-health-professional-routine-set<\/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-1624 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            Maximum Health Set        <\/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\">Sanfte Reinigung \u00b7 Feuchtigkeitsspendend \u00b7 Regenerierend\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-1624 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-1624 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\/1843\/\"\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=\"P-10431\">\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=\"UAWayV9A2GkWnSYN\" \/>    <input type=\"hidden\" name=\"product\" value=\"1843\"\/>\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\/experience-set\"><\/a>\n\t\t\n\t\t<img class=\"w-full product-image-photo gallery-image-1843\"\n     x-data=\"\"\n     @update-gallery-1843.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-EXPERIENCE-SET-DICKES-HAAR-P-10431-1_v260401.jpg\"\n        loading=\"lazy\"\n        width=\"600\"\n    height=\"600\"\n    alt=\"Experience&#x20;Set\"\n    title=\"Experience&#x20;Set\"\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<input type=\"hidden\" name=\"form_key\" value=\"UAWayV9A2GkWnSYN\" \/>\n\t\t\t\t\n\t\t\t\t<input type=\"hidden\" name=\"product\" value=\"1843\">\n\t\t\t\t<input type=\"hidden\" name=\"item\" value=\"1843\">\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=\"9449\">F\u00fcr dickes Haar<\/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=\"9426\">F\u00fcr feines Haar<\/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_9449 hidden\" data-parentid=\"1843\">46,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_9426 hidden\" data-parentid=\"1843\">48,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_9449 hidden\" data-parentid=\"1843\">58,00\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"oldprice_9426 hidden\" data-parentid=\"1843\">60,50\u00a0\u20ac<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9449 hidden\" data-parentid=\"1843\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"baseprice_9426 hidden\" data-parentid=\"1843\"><\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"image_9449 hidden\" data-parentid=\"1843\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-EXPERIENCE-SET-DICKES-HAAR-P-10433-1_v260401.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_9426 hidden\" data-parentid=\"1843\">https:\/\/cdn.newsha.com\/media\/catalog\/product\/cache\/56b261db9a61041646bca377d426ae6b\/N\/E\/NEWSHA-EXPERIENCE-SET-FEINES-BIS-NORMALES-HAAR-P-10432-1_v260401.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_9449 hidden\" data-parentid=\"1843\">\n\t\t\t<span class=\"preorder-outer \">\n\t\t\t\t<button onclick=\"jQuery('#remindme_prodID_input').val('1845'); openRemindMeModal()\" type=\"button\" title=\"WIEDERVERF\u00dcGBARKEITS ERINNERUNG EINRICHTEN\" class=\"w-auto\" aria-haspopup=\"dialog\">\n\t\t\t\t\t<span class=\"newshaMail text-2xl\"><\/span>\n\t\t\t\t<\/button>\n\t\t\t\t\n\t\t\t\t<div id=\"remindme_success_1845\" class=\"alert-success mt-4 p-3 text-center hidden\">\n\t\t\t\t\tErinnerung wurde erfolgreich eingerichtet.\n\t\t\t\t<\/div>\n\t\t\t<\/span>\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_9426 hidden\" data-parentid=\"1843\">\n\t\t\t<span class=\"preorder-outer \">\n\t\t\t\t<button onclick=\"jQuery('#remindme_prodID_input').val('1844'); openRemindMeModal()\" type=\"button\" title=\"WIEDERVERF\u00dcGBARKEITS ERINNERUNG EINRICHTEN\" class=\"w-auto\" aria-haspopup=\"dialog\">\n\t\t\t\t\t<span class=\"newshaMail text-2xl\"><\/span>\n\t\t\t\t<\/button>\n\t\t\t\t\n\t\t\t\t<div id=\"remindme_success_1844\" class=\"alert-success mt-4 p-3 text-center hidden\">\n\t\t\t\t\tErinnerung wurde erfolgreich eingerichtet.\n\t\t\t\t<\/div>\n\t\t\t<\/span>\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_9449 hidden\" data-parentid=\"1843\">\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\tBACK SOON\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=\"P-10433\">\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_9426 hidden\" data-parentid=\"1843\">\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\tBACK SOON\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=\"P-10432\">\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_9449 hidden\" data-parentid=\"1843\">https:\/\/www.newsha.de\/experience-set-dickes-haar<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"childurl_9426 hidden\" data-parentid=\"1843\">https:\/\/www.newsha.de\/experience-set-feines-bis-normales-haar<\/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-1843 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            Experience Set        <\/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\">\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-1843 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-1843 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                \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=WFAGGDD]{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=L3048W7]{justify-content:flex-start}#html-body [data-pb-style=KEUYG9E],#html-body [data-pb-style=L3048W7],#html-body [data-pb-style=RT09GB3],#html-body [data-pb-style=VIEX0KC]{display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=KEUYG9E]{justify-content:flex-start;margin-top:60px;margin-bottom:60px}#html-body [data-pb-style=RT09GB3],#html-body [data-pb-style=VIEX0KC]{justify-content:center;background-color:#f2f1f0;padding-top:50px;padding-bottom:20px}#html-body [data-pb-style=RT09GB3]{margin-bottom:80px;padding-top:30px;padding-bottom:40px}#html-body [data-pb-style=L26N3B3]{margin-top:100px;margin-bottom:100px}#html-body [data-pb-style=EFEO3HW],#html-body [data-pb-style=GC5KRO6],#html-body [data-pb-style=L26N3B3],#html-body [data-pb-style=N9SJM4F]{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=N9SJM4F]{background-color:#f2f1f0}#html-body [data-pb-style=EFEO3HW],#html-body [data-pb-style=GC5KRO6]{margin-top:200px}#html-body [data-pb-style=GC5KRO6]{margin-top:100px}#html-body [data-pb-style=Y0YIG3U]{margin-top:32px;margin-bottom:64px}#html-body [data-pb-style=L3K7AB7],#html-body [data-pb-style=Y0YIG3U]{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=VI7AM6E]{margin-top:32px}#html-body [data-pb-style=CDBTW9J],#html-body [data-pb-style=IVO6CCM],#html-body [data-pb-style=VI7AM6E]{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=CDBTW9J]{margin-top:150px;margin-bottom:150px}#html-body [data-pb-style=IVO6CCM]{margin:200px 100px}#html-body [data-pb-style=SIFTBXT],#html-body [data-pb-style=YMA88I2]{width:100%;border-width:.5px;border-color:#cecece;display:inline-block}#html-body [data-pb-style=NLB625C]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=K8U26UO],#html-body [data-pb-style=MWVF3VD]{margin-bottom:32px}#html-body [data-pb-style=K8U26UO],#html-body [data-pb-style=MWVF3VD],#html-body [data-pb-style=QWH6MOF]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=LH9EHCV],#html-body [data-pb-style=OHXDPRR],#html-body [data-pb-style=QXIUWX1]{background-color:#fff}#html-body [data-pb-style=LH9EHCV],#html-body [data-pb-style=LJYH1JP],#html-body [data-pb-style=OHXDPRR],#html-body [data-pb-style=QXIUWX1]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=X2M9LTY]{background-color:#fff}#html-body [data-pb-style=JT8CG5I],#html-body [data-pb-style=NW9FSX9],#html-body [data-pb-style=RA1RMYO],#html-body [data-pb-style=WRV1L7W],#html-body [data-pb-style=X2M9LTY]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;align-self:stretch}#html-body [data-pb-style=A6DH2YT]{margin-bottom:8px}#html-body [data-pb-style=WMROQ9A]{margin-top:40px}#html-body [data-pb-style=TOGX5NA]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=OBPP4CI]{margin-top:45px}#html-body [data-pb-style=Q8GH4F0]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=M5WS25M]{margin-top:45px}#html-body [data-pb-style=COL5RRQ]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=A51DV16],#html-body [data-pb-style=CJ818KO],#html-body [data-pb-style=EAJ8QF5],#html-body [data-pb-style=F5N6OS6],#html-body [data-pb-style=FGNNJ27],#html-body [data-pb-style=GKGC7TK],#html-body [data-pb-style=HI2GSYR],#html-body [data-pb-style=I8PDEW0],#html-body [data-pb-style=J4R96U7],#html-body [data-pb-style=J6UASUB],#html-body [data-pb-style=JNW2MMU],#html-body [data-pb-style=PQNJEW9],#html-body [data-pb-style=YALGOYE]{display:flex;width:100%}#html-body [data-pb-style=O489SOA]{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=NM6VWAL]{background-color:transparent}#html-body [data-pb-style=YLYKADX]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=EJ09Y4R]{background-color:transparent}#html-body [data-pb-style=F22KNYC]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=O0LT5BS]{background-color:transparent}#html-body [data-pb-style=RWPDX8G]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=VG0E8MC]{background-color:transparent}#html-body [data-pb-style=LKJKG5S]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=FI8DW0L]{background-color:transparent}#html-body [data-pb-style=XD1KR2K]{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=QVNQGNJ]{background-color:transparent}#html-body [data-pb-style=XAQFPLR]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=XCM56BI]{background-color:transparent}#html-body [data-pb-style=U7HKWO8]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=NN2XED5]{background-color:transparent}#html-body [data-pb-style=MX7VEKR]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=X5GKX69]{background-color:transparent}#html-body [data-pb-style=HTQS3DA]{background-position:left top;background-size:cover;background-repeat:no-repeat;padding-left:4px;padding-right:4px}#html-body [data-pb-style=F9MXQXB]{background-color:transparent}#html-body [data-pb-style=CLI0PU4]{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=TQP7FWV]{margin-bottom:8px}#html-body [data-pb-style=HO7J1JA]{margin-bottom:32px}#html-body [data-pb-style=Q1VFL56]{margin-bottom:16px}#html-body [data-pb-style=SI0DR60]{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=OVAK36K]{margin-bottom:8px;padding-left:85px}#html-body [data-pb-style=HXHBD4L]{padding-left:85px}#html-body [data-pb-style=X0CPBHH]{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=M8M5NJ9]{padding-left:10px}#html-body [data-pb-style=IT918AJ]{margin-top:6px;padding-left:10px}#html-body [data-pb-style=N1D6B15],#html-body [data-pb-style=XKJFTNY]{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=XKJFTNY]{width:25%}#html-body [data-pb-style=N1D6B15]{width:calc(50% - 40px);margin-left:20px;margin-right:20px}#html-body [data-pb-style=Y31JBXP]{margin-top:80px;margin-bottom:45px}#html-body [data-pb-style=BR9PTOJ]{margin-top:50px;margin-bottom:30px}#html-body [data-pb-style=FX6NTGX],#html-body [data-pb-style=KW5VESW],#html-body [data-pb-style=MVWVJDK],#html-body [data-pb-style=VKW1EE4],#html-body [data-pb-style=W84G0SE]{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=FX6NTGX],#html-body [data-pb-style=KW5VESW],#html-body [data-pb-style=MVWVJDK],#html-body [data-pb-style=W84G0SE]{width:8.33333%}#html-body [data-pb-style=FX6NTGX],#html-body [data-pb-style=KW5VESW],#html-body [data-pb-style=MVWVJDK]{width:41.6667%}#html-body [data-pb-style=FX6NTGX],#html-body [data-pb-style=MVWVJDK]{width:8.33333%}#html-body [data-pb-style=FX6NTGX]{justify-content:center;width:33.3333%;padding-top:64px;padding-bottom:64px}#html-body [data-pb-style=EGHNK9R]{margin-top:32px}#html-body [data-pb-style=K11UXDF],#html-body [data-pb-style=MF06TCL],#html-body [data-pb-style=NGPL9JE],#html-body [data-pb-style=PEOTJMH]{margin-top:16px;margin-bottom:32px}#html-body [data-pb-style=CIY7EN5],#html-body [data-pb-style=EWQMQMP],#html-body [data-pb-style=UA30KHE]{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=EWQMQMP]{justify-content:center;width:33.3333%;padding-top:64px;padding-bottom:64px}#html-body [data-pb-style=KX66QIE]{margin-top:32px;margin-bottom:45px}#html-body [data-pb-style=JIBQ9V4]{margin-bottom:45px}#html-body [data-pb-style=KIH7T2E],#html-body [data-pb-style=MC14ROJ],#html-body [data-pb-style=NEM3KHL],#html-body [data-pb-style=Q41J8DQ],#html-body [data-pb-style=QGKVS2W],#html-body [data-pb-style=TWTK97W]{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=KIH7T2E],#html-body [data-pb-style=NEM3KHL],#html-body [data-pb-style=Q41J8DQ],#html-body [data-pb-style=QGKVS2W],#html-body [data-pb-style=TWTK97W]{width:41.6667%}#html-body [data-pb-style=KIH7T2E],#html-body [data-pb-style=NEM3KHL],#html-body [data-pb-style=Q41J8DQ],#html-body [data-pb-style=QGKVS2W]{width:8.33333%}#html-body [data-pb-style=KIH7T2E],#html-body [data-pb-style=NEM3KHL],#html-body [data-pb-style=QGKVS2W]{width:100%}#html-body [data-pb-style=KIH7T2E],#html-body [data-pb-style=NEM3KHL]{width:8.33333%}#html-body [data-pb-style=KIH7T2E]{width:83.3333%}#html-body [data-pb-style=RGCYMNO]{margin-bottom:8px}#html-body [data-pb-style=WKG767L]{margin-top:40px}#html-body [data-pb-style=XOVPPBE]{margin-top:12px}#html-body [data-pb-style=ADYL2OS]{margin-top:32px}#html-body [data-pb-style=ET8EB40],#html-body [data-pb-style=JBVQRME]{margin-top:12px;margin-bottom:32px}#html-body [data-pb-style=SKQAG0G]{margin-top:12px}#html-body [data-pb-style=BXHXTQ6],#html-body [data-pb-style=IJO25KR],#html-body [data-pb-style=OD0BRR7],#html-body [data-pb-style=SEX7TKB]{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=BXHXTQ6],#html-body [data-pb-style=IJO25KR],#html-body [data-pb-style=SEX7TKB]{width:100%}#html-body [data-pb-style=BXHXTQ6],#html-body [data-pb-style=IJO25KR]{width:8.33333%}#html-body [data-pb-style=BXHXTQ6]{width:83.3333%}#html-body [data-pb-style=F021CKL]{margin-bottom:8px}#html-body [data-pb-style=G8IL7RU]{margin-top:32px;margin-bottom:32px}#html-body [data-pb-style=YABXV9V]{margin-bottom:45px}#html-body [data-pb-style=LG9677M],#html-body [data-pb-style=RUJ471P],#html-body [data-pb-style=T49BOM2]{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=RUJ471P],#html-body [data-pb-style=T49BOM2]{width:16.6667%}#html-body [data-pb-style=RUJ471P]{width:66.6667%}#html-body [data-pb-style=NE9A511]{margin-bottom:8px}#html-body [data-pb-style=DP4OH8J]{margin-bottom:32px}#html-body [data-pb-style=ML65XTG]{margin-bottom:16px}#html-body [data-pb-style=FLST0X7],#html-body [data-pb-style=YBXRV8M]{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=YBXRV8M]{width:91.6667%}#html-body [data-pb-style=GI2SIIL]{margin-bottom:45px}#html-body [data-pb-style=A76VQI2],#html-body [data-pb-style=UTW6BKX]{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=UTW6BKX]{width:50%;padding-right:80px}#html-body [data-pb-style=S6XKYJR]{margin-top:32px}#html-body [data-pb-style=QQWDF8I]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=YUJ9PXT]{margin-top:45px}#html-body [data-pb-style=QHN1UUD]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=S0GWH1W]{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=FTADYK7]{margin-top:32px}#html-body [data-pb-style=HUBDX2S]{margin-top:16px;margin-bottom:16px}#html-body [data-pb-style=SK7BOQE]{margin-bottom:80px}#html-body [data-pb-style=E51AD78],#html-body [data-pb-style=GFEIH5D],#html-body [data-pb-style=HN1WHQ1],#html-body [data-pb-style=MRYWTKV],#html-body [data-pb-style=WRQOCB5],#html-body [data-pb-style=YD6DFOL]{border-width:1px}#html-body [data-pb-style=SNGTM5H]{text-align:left}#html-body [data-pb-style=V4YJH4W]{border-width:1px;min-height:300px}#html-body [data-pb-style=NLON248]{border-style:none}#html-body [data-pb-style=PU2SNHS],#html-body [data-pb-style=XDBWQFM]{max-width:100%;height:auto}#html-body [data-pb-style=H7MLKWB]{border-style:none}#html-body [data-pb-style=M6LP5V4],#html-body [data-pb-style=QWKXT05]{max-width:100%;height:auto}#html-body [data-pb-style=DSWLS81]{border-style:none}#html-body [data-pb-style=D10WVON],#html-body [data-pb-style=PJ8CQK5]{max-width:100%;height:auto}#html-body [data-pb-style=C4G75WX]{border-style:none}#html-body [data-pb-style=J7K0BKK],#html-body [data-pb-style=P1S8E0L]{max-width:100%;height:auto}#html-body [data-pb-style=GWAFJMW],#html-body [data-pb-style=LM89RI5],#html-body [data-pb-style=NNEGQ77],#html-body [data-pb-style=Q22KBGK],#html-body [data-pb-style=SAAJS4W],#html-body [data-pb-style=T5IDF1X]{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=EWQMQMP],#html-body [data-pb-style=FX6NTGX]{display:flex;flex-direction:column;align-self:stretch;min-height:400px}#html-body [data-pb-style=C4G75WX],#html-body [data-pb-style=DSWLS81],#html-body [data-pb-style=H7MLKWB],#html-body [data-pb-style=NLON248]{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=\"WFAGGDD\"><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=\"YMA88I2\"><\/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=\"L3048W7\"><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=\"SIFTBXT\"><\/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=\"CDBTW9J\"><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=\"RA1RMYO\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"GKGC7TK\"><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=\"T49BOM2\"><\/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=\"RUJ471P\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"NE9A511\"><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=\"DP4OH8J\"><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;\">SHAMPOO: DER ERSTE SCHRITT&nbsp;<br>ZU 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=\"ML65XTG\"><p style=\"text-align: center;\"><span style=\"font-family: montserrat;\">Dein Haar verdient mehr als nur eine Reinigung. Mit den NEWSHA Shampoos entscheidest du dich f&uuml;r eine luxuri&ouml;se Pflegeerfahrung, die von professionellen Salonritualen inspiriert und von unseren Hair Experts entwickelt wurde. Schon beim Auftragen umh&uuml;llt dich ein eleganter Duft, w&auml;hrend die seidige Texur das Haar und die Kopfhaut sanft reinigt. <\/span><span style=\"font-family: montserrat;\">Jede Formel ist sorgf&auml;ltig komponiert, um die individellen Bed&uuml;rfnisse deines Haartyps zu erf&uuml;llen. Feuchtigkeit f&uuml;r trockenes Haar, Schutz f&uuml;r coloriertes Haar und Balance f&uuml;r eine empfindliche Kopfhaut. So bewahren die NEWSHA Shampoos die nat&uuml;rliche Vitalit&auml;t deines Haares, st&auml;rken die Struktur und verleihen ihm Glanz und Geschmeidigkeit.&nbsp;<\/span><\/p>\r\n<p style=\"text-align: center;\">&nbsp;<\/p>\r\n<p style=\"text-align: center;\"><span style=\"font-family: montserrat;\">Als erster Schritt der NEWSHA 5-Step-Haarpflege-Routine schaffen sie die perfekte Grundlage, damit Conditioner, Maske und Styling ihre volle Wirkung entfalten k&ouml;nnen. Aus t&auml;glicher Pflege wird eine Routine der Selbstf&uuml;rsorge - und dein Haar wird zum Ausdruck von Sch&ouml;nheit, St&auml;rke und 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=\"FLST0X7\"><\/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=\"KEUYG9E\"><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=\"NLB625C\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"J4R96U7\"><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=\"CLI0PU4\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TQP7FWV\"><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=\"HO7J1JA\"><h2 id=\"BAVLPN1\" style=\"line-height: 0.6; text-align: left;\"><span style=\"font-size: 16pt;\"><strong id=\"AENE69T\"><span style=\"color: #252829; font-family: montserrat;\">SHAMPOO:&nbsp;<br>DER ERSTE SCHRITT ZU DEINER NEWSHA<br>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=\"Q1VFL56\"><p style=\"text-align: left;\"><span style=\"font-size: 13px;\"><span style=\"font-family: montserrat;\">Dein Haar verdient mehr als nur eine Reinigung. Mit den NEWSHA Shampoos entscheidest du dich f&uuml;r eine luxuri&ouml;se Pflegeerfahrung, die von professionellen Salonritualen inspiriert und von unseren Hair Experts entwickelt wurde. Schon beim Auftragen umh&uuml;llt dich ein eleganter Duft, w&auml;hrend die seidige Texur das Haar und die Kopfhaut sanft reinigt. <\/span><span style=\"font-family: montserrat;\">Jede Formel ist sorgf&auml;ltig komponiert, um die individellen Bed&uuml;rfnisse deines Haartyps zu erf&uuml;llen. Feuchtigkeit f&uuml;r trockenes Haar, Schutz f&uuml;r coloriertes Haar und Balance f&uuml;r eine empfindliche Kopfhaut. So bewahren die NEWSHA Shampoos die nat&uuml;rliche Vitalit&auml;t deines Haares, st&auml;rken die Struktur und verleihen ihm Glanz und Geschmeidigkeit.&nbsp;<\/span><\/span><\/p>\r\n<p style=\"text-align: left;\">&nbsp;<\/p>\r\n<p style=\"text-align: left;\"><span style=\"font-family: montserrat; font-size: 13px;\">Als erster Schritt der NEWSHA 5-Step-Haarpflege-Routine schaffen sie die perfekte Grundlage, damit Conditioner, Maske und Styling ihre volle Wirkung entfalten k&ouml;nnen. Aus t&auml;glicher Pflege wird eine Routine der Selbstf&uuml;rsorge - und dein Haar wird zum Ausdruck von Sch&ouml;nheit, St&auml;rke und Eleganz<\/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=\"VIEX0KC\"><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=\"MWVF3VD\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"I8PDEW0\"><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=\"SI0DR60\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"OVAK36K\"><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=\"HXHBD4L\"><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=\"O489SOA\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"NM6VWAL\"><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=\"YLYKADX\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"EJ09Y4R\"><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=\"F22KNYC\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"O0LT5BS\"><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=\"RWPDX8G\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"VG0E8MC\"><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=\"LKJKG5S\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"FI8DW0L\"><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=\"RT09GB3\"><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=\"K8U26UO\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"CJ818KO\"><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=\"X0CPBHH\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"M8M5NJ9\"><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=\"IT918AJ\"><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=\"XD1KR2K\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"QVNQGNJ\"><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=\"XAQFPLR\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"XCM56BI\"><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=\"U7HKWO8\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"NN2XED5\"><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=\"MX7VEKR\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"X5GKX69\"><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=\"HTQS3DA\"><div class=\"pagebuilder-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"F9MXQXB\"><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=\"IVO6CCM\"><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=\"JT8CG5I\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"J6UASUB\"><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=\"YBXRV8M\"><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=\"GI2SIIL\"><h2 id=\"BAVLPN1\" style=\"text-align: center; line-height: 0.8;\"><span style=\"font-size: 22pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">SHAMPOOS<\/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=\"A76VQI2\"><\/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=\"NW9FSX9\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"PQNJEW9\"><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=\"UTW6BKX\"><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"S6XKYJR\"><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\"><\/p>\r\n<p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase; margin-top: 3px;\"><span style=\"font-size: 14px;\"><strong>MYTHOS: <br>&ouml;l im shampoo macht das haar fettig<\/strong><\/span><\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"QQWDF8I\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Leichte &Ouml;le in ausgewogener Dosierung pflegen das Haar und verleihen ihm Glanz, ohne es zu beschweren.<\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/luxe-silk-smooth-shampoo-by-mrs-bella\"><span style=\"text-decoration: underline;\">Shampoo f&uuml;r geschmeidiges, seidiges Haar mit nat&uuml;rlichem Glanz<\/span><\/a><\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"YUJ9PXT\"><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>JE MEHR SCHAUM, DESTO SAUBERER DAS HAAR&nbsp;<\/strong><\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"QHN1UUD\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Die Schaummenge sagt nichts &uuml;ber die Reinigungsleistung aus - entscheidend ist die Qualit&auml;t der Tenside. NEWSHA setzt auf eine hochwirksame und zugleich schonende Reinigung. Diese s&auml;ubert das Haar gr&uuml;ndlich und sch&uuml;tzt gleichzeitig die Kopfhaut.<\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><a style=\"color: #000000; text-decoration: underline;\" href=\"\/gentle-care-shampoo\">Shampoo f&uuml;r trockenes oder empfindliches Haar<\/a><\/span><\/span><\/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=\"S0GWH1W\"><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FTADYK7\"><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: <br>T&Auml;GLICHES WASCHEN SCHADET DEM HAAR<\/strong><\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"HUBDX2S\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Mit sanften Fomulierungen kannst du dein Haar auch t&auml;glich waschen, ohne es auszutrocken. Die NEWSHA Shampoos sind so konzipiert, dass sie Kopfhaut und Haarstruktur sch&uuml;tzen und gleichzeitig f&uuml;r Frische und Leichtigkeit sorgen.<\/p><\/div><div class=\"montserrat\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/daily-routine-shampoo\"><span style=\"text-decoration: underline;\">Mildes Shampoo f&uuml;r die t&auml;gliche Haarw&auml;sche<\/span><\/a><\/span><\/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=\"L26N3B3\"><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=\"A6DH2YT\"><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.7;\"><span style=\"font-size: 16pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">SHAMPOOS<\/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=\"WMROQ9A\"><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\"><\/p>\r\n<p class=\"flex items-top\" style=\"text-align: left; text-transform: uppercase; margin-top: 3px;\"><span style=\"font-size: 14px;\"><strong>MYTHOS:&nbsp;&ouml;l im shampoo macht das haar fettig<\/strong><\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"TOGX5NA\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Leichte &Ouml;le in ausgewogener Dosierung pflegen das Haar und verleihen ihm Glanz, ohne es zu beschweren.<\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/luxe-silk-smooth-shampoo-by-mrs-bella\"><span style=\"text-decoration: underline;\">Shampoo f&uuml;r geschmeidiges, seidiges Haar mit nat&uuml;rlichem Glanz<\/span><\/a><\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"OBPP4CI\"><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><strong>MYTHOS:&nbsp;JE MEHR SCHAUM, DESTO SAUBERER DAS HAAR&nbsp;<\/strong><\/strong><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"Q8GH4F0\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Die Schaummenge sagt nichts &uuml;ber die Reinigungsleistung aus - entscheidend ist die Qualit&auml;t der Tenside. NEWSHA setzt auf eine hochwirksame und zugleich schonende Reinigung. Diese s&auml;ubert das Haar gr&uuml;ndlich und sch&uuml;tzt gleichzeitig die Kopfhaut.<\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"color: #000000; text-decoration: underline;\"><a style=\"color: #000000; text-decoration: underline;\" href=\"\/gentle-care-shampoo\">Shampoo f&uuml;r trockenes oder empfindliches Haar<\/a><\/span><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"M5WS25M\"><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><strong>MYTHOS:&nbsp;T&Auml;GLICHES WASCHEN SCHADET DEM HAAR<\/strong><\/strong><\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"COL5RRQ\"><p style=\"text-align: left; padding-left: 80px;\">Fakt: Mit sanften Fomulierungen kannst du dein Haar auch t&auml;glich waschen, ohne es auszutrocken. Die NEWSHA Shampoos sind so konzipiert, dass sie Kopfhaut und Haarstruktur sch&uuml;tzen und gleichzeitig f&uuml;r Frische und Leichtigkeit sorgen.<\/p><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: left; padding-left: 80px;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/daily-routine-shampoo\"><span style=\"text-decoration: underline;\">Mildes Shampoo f&uuml;r die t&auml;gliche Haarw&auml;sche<\/span><\/a><\/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=\"N9SJM4F\"><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=\"QWH6MOF\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"FGNNJ27\"><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=\"XKJFTNY\"><\/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=\"N1D6B15\"><div class=\"force-hidden-row-mobile\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"Y31JBXP\"><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=\"BR9PTOJ\"><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;<\/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=\"SK7BOQE\"><ul role=\"tablist\" class=\"tabs-navigation\" data-element=\"navigation\" data-pb-style=\"SNGTM5H\"><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"MRYWTKV\"><a href=\"#GKYLWY8\" class=\"tab-title\"><span class=\"tab-title\">Welches Shampoo ist das Richtige f&uuml;r meinen Haartyp?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"E51AD78\"><a href=\"#TO31343\" class=\"tab-title\"><span class=\"tab-title\">Kann ich meine Haare t&auml;glich mit dem NEWSHA Shampoo waschen?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"HN1WHQ1\"><a href=\"#VTYEQ5N\" class=\"tab-title\"><span class=\"tab-title\">Hilft ein NEWSHA Shampoo auch bei coloriertem Haar?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"YD6DFOL\"><a href=\"#XP6QN7G\" class=\"tab-title\"><span class=\"tab-title\">Welches Shampoo hilft bei schnell fettendem Haar?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"WRQOCB5\"><a href=\"#KEVFVY1\" class=\"tab-title\"><span class=\"tab-title\">Welches Shampoo ist am besten bei Frizz?<\/span><\/a><\/li><li role=\"tab\" class=\"tab-header\" data-element=\"headers\" data-pb-style=\"GFEIH5D\"><a href=\"#EYF6I57\" class=\"tab-title\"><span class=\"tab-title\">Wie unterscheidet sich ein NEWSHA Shampoo von herk&ouml;mmlichen Shampoos?<\/span><\/a><\/li><\/ul><div class=\"tabs-content\" data-element=\"content\" data-pb-style=\"V4YJH4W\"><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Welches Shampoo ist das Richtige f&uuml;r meinen Haartyp?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"GKYLWY8\" data-pb-style=\"GWAFJMW\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Bei feinem Haar eignen sich leichte, volumengebende Shampoos. F&uuml;r lockiges oder dickes Haar sind n&auml;hrende Formulierungen ideal, w&auml;hrend strapaziertes oder trockenes Haar von feuchtigkeitsspendenden Inhaltsstoffen profitiert.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p id=\"IH240O6\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/magazin\/shampoo-guide\"><span style=\"text-decoration: underline;\">Der NEWSHA Shampoo Guide - Finde das passende Shampoo zu deinem Haartyp<\/span><\/a><\/span><\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Kann ich meine Haare t&auml;glich mit dem NEWSHA Shampoo waschen?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"TO31343\" data-pb-style=\"LM89RI5\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Ja, das ist m&ouml;glich, denn einige unserer Shampoos sind so formuliert, dass sie auch bei t&auml;glicher Anwendung schonend reinigen, ohne die Kopfhaut zu reizen oder auszutrocknen.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p id=\"IH240O6\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/daily-routine-shampo\"><span style=\"text-decoration: underline;\">Shampoo f&uuml;r die t&auml;gliche Haarw&auml;sche<\/span><\/a><\/span><\/p>\r\n<div class=\"border-b border-[#dddddc] \">&nbsp;<\/div><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Hilft ein NEWSHA Shampoo auch bei coloriertem Haar?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"VTYEQ5N\" data-pb-style=\"NNEGQ77\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Absolut. Unsere speziell entwickeltes Shampoo sch&uuml;tzen die Farbbrillanz, bewahren die Haarstruktur und verleihen deinem Haar langanhaltenden Glanz.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p id=\"DHXY1FV\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/color-protect-shampoo\"><span style=\"text-decoration: underline;\">Shampoo f&uuml;r coloriertes Haar<\/span><\/a><\/span><\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Welches Shampoo hilft bei schnell fettendem Haar?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"XP6QN7G\" data-pb-style=\"SAAJS4W\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Bei schnell fettendem Haar ist eine milde Reinigung wichtig, die die Kopfhaut ins Gleichgewicht bringt, ohne sie auszutrocknen. Das Deep Cleansing Shampoo ist sollte jede 3.-4. Haarw&auml;sche zus&auml;tzlich zu dem &uuml;blichen Shampoo angewandt werden. Es wirkt tiefenreinigend f&uuml;r die Kopfhaut, entfernt effektiv &uuml;bersch&uuml;ssigen Talg und Stylingr&uuml;ckst&auml;nde und tr&auml;gt zu einem gesunden Kopfhautgef&uuml;hl bei.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/deep-cleansing-shampoo\"><span id=\"JVAGHD2\" style=\"text-decoration: underline;\">Tiefenreinigungsshampoo<\/span><\/a><\/span><\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Welches Shampoo ist am besten bei Frizz?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"KEVFVY1\" data-pb-style=\"Q22KBGK\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Frizz entsteht durch Trockenheit oder durch eine aufgeraute Haarstruktur. Ein feuchtigkeitsspendendes Shampoo, wie das Gentle Care Shampoo b&auml;ndigt Frizz und pflegt die Haarstruktur schon bei der Haarw&auml;sche, gl&auml;ttet die Haaroberfl&auml;che und verleiht deinem Haar seidigen Glanz.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"\/gentle-care-shampoo\"><span style=\"text-decoration: underline;\">Gentle Care Shampoo<\/span><\/a><\/span><\/p><\/div><\/div><div data-content-type=\"tab-item\" data-appearance=\"default\" data-tab-name=\"Wie unterscheidet sich ein NEWSHA Shampoo von herk&ouml;mmlichen Shampoos?\" data-background-images=\"{}\" data-background-lazy-load=\"\" data-element=\"main\" id=\"EYF6I57\" data-pb-style=\"T5IDF1X\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"VILLA8U\">Unsere Shampoos sind von professionellen Salon Ritualen inspiriert, basieren auf ausgew&auml;hlten Inhaltsstoffen, die speziell f&uuml;r den richtigen Haartyp entwickelt wurden und vereinen luxuri&ouml;sen Duft, Wirksamkeit und nachhaltige Pflege in einem Produkt.<\/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=\"VKW1EE4\"><\/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=\"EFEO3HW\"><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=\"LH9EHCV\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"YALGOYE\"><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=\"W84G0SE\"><\/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=\"KW5VESW\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"NLON248\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-schaeumt-shampoo-fuer-haarwaesche-auf.webp\" alt=\"Eine Person sch&auml;umt Shampoo in den H&auml;nden auf, um das Haar sanft und gr&uuml;ndlich zu reinigen.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"XDBWQFM\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-schaeumt-shampoo-fuer-haarwaesche-auf.webp\" alt=\"Eine Person sch&auml;umt Shampoo in den H&auml;nden auf, um das Haar sanft und gr&uuml;ndlich zu reinigen.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"PU2SNHS\"><\/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=\"MVWVJDK\"><\/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=\"FX6NTGX\"><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 style=\"font-family: montserrat;\">SO WENDEST DU DEIN SHAMPOO RICHTIG AN<\/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=\"EGHNK9R\"><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&nbsp;<\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"NGPL9JE\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Befeuchte dein Haar gr&uuml;ndlich mit lauwarmem Wasser.<\/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=\"MF06TCL\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Verreibe nun eine haselnussgro&szlig;e Menge deines Shampoos in den Handfl&auml;chen und massiere es sanft in die Kopfhaut ein.<\/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=\"PEOTJMH\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Beim Aussp&uuml;len werden die Haarl&auml;ngen automatisch mitgereinigt.<\/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&nbsp;<\/span><\/strong><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"K11UXDF\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Wiederhole den Vorgang bei Bedarf.<\/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=\"CIY7EN5\"><\/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=\"OHXDPRR\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"JNW2MMU\"><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=\"UA30KHE\"><\/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=\"EWQMQMP\"><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 style=\"font-family: montserrat;\">FINDE DEIN PERFEKTES SHAMPOO<\/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=\"KX66QIE\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: right;\"><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Unsere von Experten entwickelte Haardiagnose zeigt dir innerhalb weniger Minuten, welches Shampoo zu deinem Haartyp passt. Egal, ob dein Haar fein, lockig oder strapaziert ist. Beantworte in kurzer Zeit ein paar Fragen und erhalte sofort deine pers&ouml;nliche Empehlung, die perfekt auf die NEWSHA 5-Step-Routine abgestimmt ist.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"JIBQ9V4\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: right;\"><a href=\"\/finde-deine-haircare-routine\"><span style=\"text-decoration: underline;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Jetzt entdecken<\/span><\/strong><\/span><\/a><\/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=\"MC14ROJ\"><\/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=\"TWTK97W\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"H7MLKWB\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-waescht-haare-mit-shampoo.webp\" alt=\"Eine Frau massiert Shampoo in die Kopfhaut ein und reinigt ihr Haar gr&uuml;ndlich w&auml;hrend der Haarw&auml;sche.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"M6LP5V4\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-waescht-haare-mit-shampoo.webp\" alt=\"Eine Frau massiert Shampoo in die Kopfhaut ein und reinigt ihr Haar gr&uuml;ndlich w&auml;hrend der Haarw&auml;sche.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"QWKXT05\"><\/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=\"Q41J8DQ\"><\/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=\"GC5KRO6\"><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=\"QXIUWX1\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"HI2GSYR\"><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=\"QGKVS2W\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"DSWLS81\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-schaeumt-shampoo-fuer-haarwaesche-auf.webp\" alt=\"Eine Person sch&auml;umt Shampoo in den H&auml;nden auf, um das Haar sanft und gr&uuml;ndlich zu reinigen.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"PJ8CQK5\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-schaeumt-shampoo-fuer-haarwaesche-auf.webp\" alt=\"Eine Person sch&auml;umt Shampoo in den H&auml;nden auf, um das Haar sanft und gr&uuml;ndlich zu reinigen.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"D10WVON\"><\/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=\"Y0YIG3U\"><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=\"LJYH1JP\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"A51DV16\"><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=\"NEM3KHL\"><\/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=\"KIH7T2E\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"RGCYMNO\"><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=\"MAFO27Q\" style=\"color: #252829; font-family: montserrat;\">SO WENDEST DU DEIN SHAMPOO RICHTIG AN<\/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=\"WKG767L\"><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=\"XOVPPBE\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><span style=\"font-size: 13px;\">Befeuchte dein Haar gr&uuml;ndlich mit lauwarmem Wasser.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"ADYL2OS\"><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=\"ET8EB40\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Verreibe nun eine haselnussgro&szlig;e Menge deines Shampoos in den Handfl&auml;chen und massiere es sanft in die Kopfhaut ein.<\/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=\"JBVQRME\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Beim Aussp&uuml;len werden die Haarl&auml;ngen automatisch mitgereinigt.<\/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=\"SKQAG0G\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\">Wiederhole den Vorgang bei Bedarf.<\/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=\"OD0BRR7\"><\/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=\"L3K7AB7\"><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=\"X2M9LTY\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"F5N6OS6\"><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=\"SEX7TKB\"><figure data-content-type=\"image\" data-appearance=\"full-width\" data-element=\"main\" data-pb-style=\"C4G75WX\"><img class=\"pagebuilder-mobile-hidden\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-waescht-haare-mit-shampoo.webp\" alt=\"Eine Frau massiert Shampoo in die Kopfhaut ein und reinigt ihr Haar gr&uuml;ndlich w&auml;hrend der Haarw&auml;sche.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"desktop_image\" data-pb-style=\"J7K0BKK\"><img class=\"pagebuilder-mobile-only\" src=\"https:\/\/cdn.newsha.com\/media\/wysiwyg\/BrandUp_2025\/SEO-TEXTE_KATEGORIEN\/frau-waescht-haare-mit-shampoo.webp\" alt=\"Eine Frau massiert Shampoo in die Kopfhaut ein und reinigt ihr Haar gr&uuml;ndlich w&auml;hrend der Haarw&auml;sche.\" title=\"\" loading=\"\" data-use-native-image-dimensions=\"\" width=\"\" height=\"\" data-element=\"mobile_image\" data-pb-style=\"P1S8E0L\"><\/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=\"VI7AM6E\"><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=\"WRV1L7W\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"EAJ8QF5\"><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=\"IJO25KR\"><\/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=\"BXHXTQ6\"><div class=\"pb-head-title\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"F021CKL\"><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: 16pt;\"><strong><span style=\"color: #252829; font-family: montserrat;\">FINDE DEIN<br>PERFEKTES SHAMPOO<\/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=\"G8IL7RU\"><div 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\">Unsere von Experten entwickelte Haardiagnose zeigt dir innerhalb weniger Minuten, welches Shampoo zu deinem Haartyp passt. Egal, ob dein Haar fein, lockig oder strapaziert ist. Beantworte in kurzer Zeit ein paar Fragen und erhalte sofort deine pers&ouml;nliche Empehlung, die perfekt auf die NEWSHA 5-Step-Routine abgestimmt ist.<\/span><\/div><\/div><div class=\"text-[13px] lg:text-sm\" data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"YABXV9V\"><div style=\"max-width: 800px; width: 100%; box-sizing: border-box; line-height: 1.5; text-align: left;\"><a href=\"\/finde-deine-haircare-routine\"><span style=\"text-decoration: underline;\"><strong><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Jetzt entdecken<\/span><\/strong><\/span><\/a><\/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=\"LG9677M\"><\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/haarproblem_blondiertcoloriert')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_blondiertcoloriert\">\n                    Blondiert | Coloriert                                    <\/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\/shampoo\/filterurl\/haarproblem_unbehandelt')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_unbehandelt\">\n                    Unbehandelt                                    <\/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\/shampoo\/filterurl\/haarproblem_bruchig')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_bruchig\">\n                    Br\u00fcchig                                    <\/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\/shampoo\/filterurl\/haarproblem_schnellfettend')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_schnellfettend\">\n                    Schnell fettend                                    <\/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\/shampoo\/filterurl\/haarproblem_trocken1')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_trocken1\">\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_haarproblem\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/haarproblem_locken\">\n                    Locken                                    <\/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\/shampoo\/filterurl\/haarproblem_empfindlich1')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_empfindlich1\">\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_haarproblem\">\n                <button @click=\"clickLink($event,'\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_strapaziert')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/haarproblem_strapaziert\">\n                    Strapaziert                                    <\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/wirkung_farbverlangerung')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/wirkung_farbverlangerung\">\n                    Farbverl\u00e4ngerung                                    <\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/wirkung_definierend\">\n                    Definierend                                    <\/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\/shampoo\/filterurl\/wirkung_haarwachstumsfordernd')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/wirkung_haarwachstumsfordernd\">\n                    Haarwachstumsf\u00f6rdernd                                    <\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/effekt_maximalehaargesundheit')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_maximalehaargesundheit\">\n                    Maximale Haargesundheit                                    <\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/effekt_glatte')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_glatte\">\n                    Gl\u00e4tte                                    <\/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\/shampoo\/filterurl\/effekt_farbintensitat')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_farbintensitat\">\n                    Farbintensit\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\/shampoo\/filterurl\/effekt_tiefenreinigung')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_tiefenreinigung\">\n                    Tiefenreinigung                                    <\/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\/shampoo\/filterurl\/effekt_reduzierungorangestich')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_reduzierungorangestich\">\n                    Reduzierung Orangestich                                    <\/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\/shampoo\/filterurl\/effekt_reduzierunggelbstich')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_reduzierunggelbstich\">\n                    Reduzierung Gelbstich                                    <\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/filterurl\/effekt_dynamischelocken\">\n                    Dynamische Locken                                    <\/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\/shampoo\/filterurl\/effekt_ausbalanciertekopfhaut')\"\n                    class=\"h-6 text-sm font-medium ml-4 inline-block cursor-pointer\"\n\t\t\t\t\tdata-url=\"\/haarpflege-routinen\/shampoo\/filterurl\/effekt_ausbalanciertekopfhaut\">\n                    Ausbalancierte Kopfhaut                                    <\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\/shampoo\/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\":\"668\"},\"isCustomerLoggedIn\":false,\"isAjax\":true,\"slider\":{\"price\":{\"selectedFrom\":14.5,\"selectedTo\":90,\"minValue\":14.5,\"maxValue\":90,\"priceFormat\":\"{\\\"pattern\\\":\\\"%s\\\\u00a0\\\\u20ac\\\",\\\"precision\\\":2,\\\"requiredPrecision\\\":2,\\\"decimalSymbol\\\":\\\",\\\",\\\"groupSymbol\\\":\\\".\\\",\\\"groupLength\\\":3,\\\"integerRequired\\\":false}\",\"ajaxUrl\":\"https:\\\/\\\/www.newsha.de\\\/haarpflege-routinen\\\/shampoo?price=from-to\"}},\"scroll\":false,\"activeDesktop\":[\"id\"],\"activeMobile\":[\"id\"],\"buttonSubmit\":{\"enable\":true,\"seoUrlEnable\":true,\"baseUrl\":\"https:\\\/\\\/www.newsha.de\\\/haarpflege-routinen\\\/shampoo\",\"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"}