{"id":110,"date":"2019-11-26T12:22:54","date_gmt":"2019-11-26T12:22:54","guid":{"rendered":"https:\/\/demosites.io\/blogger-gb\/?page_id=5"},"modified":"2025-05-25T01:18:42","modified_gmt":"2025-05-24T23:18:42","slug":"582c1-blogger-gb-home","status":"publish","type":"page","link":"https:\/\/liquidmaster.pl\/en\/","title":{"rendered":"home"},"content":{"rendered":"\n<style>\nbody#neve_body {\n    background-color: #00060F;\n}\n\/*logo na dole*\/\n.logoAnimated figure img {\n    -webkit-filter: drop-shadow(0px 0 8px #6B18B2);\n    filter: drop-shadow(0px 0 8px #6B18B2);\n    opacity: 0.8;\n}\n@media screen and (max-width: 428px){\n  .logoAnimated figure img {\n      -webkit-filter: none !important;\n      filter: none !important;\n}\n}\n.mainLogo{\n   animation-name: jackInTheBoxReverse;\n   animation-delay: 3.2s;\n   -webkit-animation-duration: 1s;\n    -webkit-animation-duration: var(--animate-duration);\n    animation-duration: 1s;\n    animation-duration: var(--animate-duration);\n    -webkit-animation-fill-mode: both;\n    animation-fill-mode: both;\n    position: absolute;\n    height: 50vh;\n    width: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n}\n.sp-lc-logo:before {\n    box-shadow: inset #000 0 0 7px;\n    content: ' ';\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    z-index: 2;\n    display: block;\n    width: 100px;\n    height: 100px;\n    left: 50%;\n    transform: translateX(-50%);\n    border-radius: 50px;\n    margin: 20px 0;\n}\n@keyframes jackInTheBoxReverse{\n0% {\n    opacity: 1;\n    -webkit-transform: scale(1);\n    transform: scale(1);\n}\n50% {\n    -webkit-transform: rotate(3deg);\n    transform: rotate(3deg);\n}  \n70% {\n    -webkit-transform: rotate(-10deg);\n    transform: rotate(-10deg);\n}\n100% {\n    opacity: 0;\n    -webkit-transform: scale(.1) rotate(30deg);\n    transform: scale(.1) rotate(30deg);\n    -webkit-transform-origin: center bottom;\n    transform-origin: center bottom;\n}\n}\n@keyframes fadeInLittleScaleUp{\n0% {\n    opacity: 0;\n    -webkit-transform: scale(0.8);\n    transform: scale(0.8);\n}\n100% {\n    opacity: 1;\n    -webkit-transform: scale(1);\n    transform: scale(1);\n    -webkit-transform-origin: center bottom;\n    transform-origin: center bottom;\n}\n}\n.hScroll{\n   animation-name: fadeInLittleScaleUp;\n   animation-delay: 4.9s;\n   -webkit-animation-duration: 1s;\n    -webkit-animation-duration: var(--animate-duration);\n    animation-duration: 1s;\n    animation-duration: var(--animate-duration);\n    -webkit-animation-fill-mode: both;\n    animation-fill-mode: both;\n    font-size: 2em;\n    text-shadow: #6B18B2 0 0 8px;\n}\nspan.liquidmaster{\n   animation-name: fadeInLittleScaleUp;\n   animation-delay: 4.3s;\n   -webkit-animation-duration: 1s;\n    -webkit-animation-duration: var(--animate-duration);\n    animation-duration: 1s;\n    animation-duration: var(--animate-duration);\n    -webkit-animation-fill-mode: both;\n    animation-fill-mode: both;\n}\n\/*tlo*\/\ncanvas {\n    position: absolute;\n    top: 0;\n    right: 0;\n    width: 100%;\n    height: 98vh;\n    z-index: -5;\n}\n.bgRest {\n    background-color: #00060F;\n    z-index: -6;\n    top: 0;\n    bottom: 0;\n    position: absolute;\n    left: 0;\n    right: 0;\n}\n<\/style>\n<script>\n\/\/ Init Context\nlet c = document.createElement('canvas').getContext('2d')\nlet postctx = document.body.appendChild(document.createElement('canvas')).getContext('2d')\nlet canvas = c.canvas\nlet vertices = []\n\n\/\/ Effect Properties\nlet vertexCount = 7000;\nlet vertexSize = 3;\nlet oceanWidth = 204;\nlet oceanHeight = -50;\nlet gridSize = 32;\nlet waveSize = 18;\nlet perspective = 140;\n\n\/\/ Common variables\nlet depth = (vertexCount \/ oceanWidth * gridSize)\nlet frame = 0\nlet { sin, cos, tan, PI } = Math\n\n\/\/ Render loop\nlet oldTimeStamp = performance.now();\nlet loop = (timeStamp) => {\n\tlet rad = sin(frame \/ 100) * PI \/ 20\n  let rad2 = sin(frame \/ 50) * PI \/ 10\n  const dt = (timeStamp - oldTimeStamp) \/ 1000;\n  oldTimeStamp = timeStamp;\n  \n\tframe += dt * 50;\n\tif (postctx.canvas.width !== postctx.canvas.offsetWidth || postctx.canvas.height !== postctx.canvas.offsetHeight) { \n  \tpostctx.canvas.width = canvas.width = postctx.canvas.offsetWidth\n    postctx.canvas.height = canvas.height = postctx.canvas.offsetHeight\n  }\n\n  \n\tc.fillStyle = `hsl(215deg, 100%, 2%)`\n  c.fillRect(0, 0, canvas.width, canvas.height)\n  c.save()\n  c.translate(canvas.width \/ 2, canvas.height \/ 2)\n  \n  c.beginPath()\n  vertices.forEach((vertex, i) => {\n  \tlet ni = i + oceanWidth\n  \tlet x = vertex[0] - frame % (gridSize * 2)\n    let z = vertex[2] - frame * 2 % gridSize + (i % 2 === 0 ? gridSize \/ 2 : 0)\n  \tlet wave = (cos(frame \/ 45 + x \/ 50) - sin(frame \/ 20 + z \/ 50) + sin(frame \/ 30 + z*x \/ 10000))\n    let y = vertex[1] + wave * waveSize\n    let a = Math.max(0, 1 - (Math.sqrt(x ** 2 + z ** 2)) \/ depth)\n    let tx, ty, tz\n    \n    y -= oceanHeight\n    \n    \/\/ Transformation variables\n    tx = x\n    ty = y\n    tz = z\n\n    \/\/ Rotation Y\n    tx = x * cos(rad) + z * sin(rad)\n    tz = -x * sin(rad) + z * cos(rad)\n    \n    x = tx\n    y = ty\n    z = tz\n    \n    \/\/ Rotation Z\n    tx = x * cos(rad) - y * sin(rad)\n    ty = x * sin(rad) + y * cos(rad) \n    \n    x = tx;\n    y = ty;\n    z = tz;\n    \n    \/\/ Rotation X\n    \n    ty = y * cos(rad2) - z * sin(rad2)\n    tz = y * sin(rad2) + z * cos(rad2)\n    \n    x = tx;\n    y = ty;\n    z = tz;\n\n    x \/= z \/ perspective\n    y \/= z \/ perspective\n    \n    \n        \n    if (a < 0.01) return\n    if (z < 0) return\n   \n    \n    c.globalAlpha = a\n    c.fillStyle = `hsl(${265 + wave * 20}deg, 100%, 50%)`\n    c.fillRect(x - a * vertexSize \/ 2, y - a * vertexSize \/ 2, a * vertexSize, a * vertexSize)\n    c.globalAlpha = 1\n  })\n  c.restore()\n  \n  \/\/ Post-processing\n  postctx.drawImage(canvas, 0, 0)\n  \n  postctx.globalCompositeOperation = \"screen\"\n  postctx.filter = 'blur(16px)'\n  postctx.drawImage(canvas, 0, 0)\n  postctx.filter = 'blur(0)'\n  postctx.globalCompositeOperation = \"source-over\"\n  \n  requestAnimationFrame(loop)\n}\n\n\/\/ Generating dots\nfor (let i = 0; i < vertexCount; i++) {\n\tlet x = i % oceanWidth\n  let y = 0\n  let z = i \/ oceanWidth >> 0\n\tlet offset = oceanWidth \/ 2\n\tvertices.push([(-offset + x) * gridSize, y * gridSize, z * gridSize])\n}\n\nloop(performance.now())\n<\/script>\n<div class='bgRest'><br><\/div>\n\n\n<div class=\"mainLogo\">\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized animated jackInTheBox delay-500ms logoAnimated\"><img decoding=\"async\" width=\"1000\" height=\"1000\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k.png\" alt=\"\" class=\"wp-image-1846995\" style=\"width:auto;height:333px\" title=\"Liquid Master\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k.png 1000w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-300x300.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-768x768.png 768w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-600x600.png 600w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/liquid_ikona1kx1k-64x64.png 64w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n<\/div>\n\n\n\n<div class=\"sectionscroll\">\n  <h1><span class=\"liquidmaster taro\" style=\"font-family: 'taro'\">LIQUID MASTER<\/span><\/h1>\n  <h2 class=\"hScroll\" style=\"color: #FFF\">Tw\u00f3j niezawodny dostawca chemii i akcesori\u00f3w do detailingu<\/h2>\n<\/div>\n\n\n\n<div class='specialButtonParent' style=\"display: flex; justify-content: center; width: 100%; margin: 35px 0;\"><a class='specialButton' href=\"https:\/\/liquidmaster.pl\/sklep\/\">\n        <span><\/span>\n        <span><\/span>\n        <span><\/span>\n        <span><\/span>\n        Poka\u017c mi swoje towary\n    <\/a><\/div>\n<style>\n@media (min-width: 1024px){\n.specialButtonParent{\n    margin-bottom: 270px !important;\n}\n}\n@media (max-width: 1023px){\n.specialButtonParent{\n    margin-bottom: 200px !important;\n}\n}\ndiv.specialButtonParent{\n   animation-name: fadeInLittleScaleUp;\n   animation-delay: 6s;\n   -webkit-animation-duration: 1s;\n    -webkit-animation-duration: var(--animate-duration);\n    animation-duration: 1s;\n    animation-duration: var(--animate-duration);\n    -webkit-animation-fill-mode: both;\n    animation-fill-mode: both;\n}\na.specialButton{\n    position: relative;\n    display: inline-block;\n    padding: 25px 30px;\n    color: #fff !important;\n    text-shadow: #D00B12 0 0 8px;\n    text-decoration: none;\n    text-transform: uppercase;\n    transition: 0.5s;\n    letter-spacing: 4px;\n    overflow: hidden;\n    font-family: 'Poppins';\n}\na.specialButton:hover{\n    background: #D00B12;\n    color: #fff;\n    box-shadow: 0 0 5px #D00B12,\n                0 0 25px #D00B12,\n                0 0 50px #D00B12,\n                0 0 200px #D00B12;\n     -webkit-box-reflect:below 1px linear-gradient(transparent, #0005);\n}\na.specialButton:nth-child(1){\n    filter: hue-rotate(270deg);\n}\na.specialButton:nth-child(2){\n    filter: hue-rotate(110deg);\n}\na.specialButton span{\n    position: absolute;\n    display: block;\n}\na.specialButton span:nth-child(1){\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 2px;\n    background: linear-gradient(90deg,transparent,#D00B12);\n    animation: animate1 2s linear infinite;\n}\n@keyframes animate1{\n    0%{\n        left: -100%;\n    }\n    50%,100%{\n        left: 100%;\n    }\n}\na.specialButton span:nth-child(2){\n    top: -100%;\n    right: 0;\n    width: 2px;\n    height: 100%;\n    background: linear-gradient(180deg,transparent,#D00B12);\n    animation: animate2 2s linear infinite;\n    animation-delay: 0.5s;\n}\n@keyframes animate2{\n    0%{\n        top: -100%;\n    }\n    50%,100%{\n        top: 100%;\n    }\n}\na.specialButton span:nth-child(3){\n    bottom: 0;\n    right: 0;\n    width: 100%;\n    height: 2px;\n    background: linear-gradient(270deg,transparent,#D00B12);\n    animation: animate3 2s linear infinite;\n    animation-delay: 1s;\n}\n@keyframes animate3{\n    0%{\n        right: -100%;\n    }\n    50%,100%{\n        right: 100%;\n    }\n}\n\n\na.specialButton span:nth-child(4){\n    bottom: -100%;\n    left: 0;\n    width: 2px;\n    height: 100%;\n    background: linear-gradient(360deg,transparent,#D00B12);\n    animation: animate4 2s linear infinite;\n    animation-delay: 1.5s;\n}\n@keyframes animate4{\n    0%{\n        bottom: -100%;\n    }\n    50%,100%{\n        bottom: 100%;\n    }\n}\n<\/style>\n\n\n\n<section class=\"scroll-down\" id=\"scroll-down\">\n  <a href=\"#animate\"><div class=\"scroll-down-arrow\" id=\"animate\"><\/div><\/a>\n<\/section>\n<style>\n.scroll-down-arrow {\n  border: 4px solid #f4f4f4;\n  border-radius: 50%;\n  margin: 45px auto;\n  width: 65px;\n  color: #FFF;\n  position: relative;\n  height: 65px;\n  -webkit-animation: bounce 2400ms ease infinite;\n\t-moz-animation: bounce 2400ms ease ;\n\t-o-animation: bounce 2400ms ease;\n\tanimation: bounce 2400ms ease infinite;\n  box-shadow: 0px 0px 8px #6B18B2;\n}\n.scroll-down-arrow:after {\n  content: \"\";\n  position: absolute;\n  top: 50%;\n  left:50%;\n  transform: translate(-50%,-37%);\n  border-left: 10px solid transparent;\n\tborder-right: 10px solid transparent;\n\tborder-top: 15px solid #f2f2f2;\n  filter: drop-shadow(0px 2px 10px #6B18B2);\n}\n\n@keyframes bounce {\n  0% {\n    transform:translateY(0);\n  }\n  12,5% {\n    transform:translateY(100%);\n  }\n  25% {\n    transform:translateY(0%);\n  }\n  37.5% {\n    transform:translateY(50%);\n  }\n  50% {\n    transform:translateY(0%);\n  }\n  100% {\n    transform:translateY(0%);\n  }\n}\n<\/style>\n\n<script>\n$('#col-container').waypoint(function() {\n  $(\".col-3\").css({ \n        opacity: \"1\",\n        marginTop: \"0\"\n      });\n}, { offset: 150 });\n<\/script>\n\n\n<div class=\"universal-slider-section default-style has-animated-background\" data-slider-id=\"1842217\" data-autoplay=\"true\" data-autoplay-speed=\"6000\" style=\"--accent-color: rgba(157, 102, 174, 1); --accent-text-color: rgb(45, 45, 45); --button-font-weight: 400; --button-font-size: 14px; --button-border-radius: 14px; --font-family: &quot;Poppins&quot;, Open Sans; --hover-background-color: rgb(255,255,255); --hover-text-color: rgb(157,102,174);\" data-animation-color=\"rgb(142, 39, 173)\" data-animation-type=\"particles\" >\n    \n    <h2 class=\"universal-slider-header\">Promocje<\/h2>\n    <div class=\"universal-slider-container swiper\">\n        <div class=\"universal-slider swiper-wrapper\">\n                            <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/cleantle-interior-pro-cleaner-500ml-wszechstronny-produkt-do-czyszczenia-wnetrza\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/interior-pro-cleaner-500ml-1000_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Cleantle Interior Pro Cleaner 500ml - wszechstronny produkt do czyszczenia wn\u0119trza<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>26,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>24,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1851519\" data-product_id=\"1851519\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/zvizzer-thermo-pad-grey-80mm-gabka-polerska-mocno-tnaca\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/3-14kp-ps_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>ZviZZer Thermo Pad Grey 80mm - g\u0105bka polerska mocno tn\u0105ca<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>32,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>30,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1805197\" data-product_id=\"1805197\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/funky-witch-skin-clinic-leather-cleaner-soft-1l-srodek-do-czyszczenia-skor\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/funky-witch-skin-clinic-leather-cleaner-soft-1l_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Funky Witch Skin Clinic Leather Cleaner Soft 1L - \u015brodek do czyszczenia sk\u00f3r<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>109,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>104,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1916481\" data-product_id=\"1916481\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/koch-chemie-mehrzweckreiniger-1l-zasadowy-srodek-do-czyszczenia-wnetrz\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/koch-chemie-mehrzweckreiniger-1l_big-254x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Koch Chemie Mehrzweckreiniger 1L - zasadowy \u015brodek do czyszczenia wn\u0119trz<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>64,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>62,50&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1799881\" data-product_id=\"1799881\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/adbl-interior-qd-unlimited-5l-quick-detailer-do-wszystkich-elementow-wewnetrznych\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/adbl-interior-qd-unlimited-5l_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>ADBL Interior QD Unlimited 5L - quick detailer do wszystkich element\u00f3w wewn\u0119trznych<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>139,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>135,90&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1801190\" data-product_id=\"1801190\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/deturner-interior-qd-250ml-quick-detailer-do-wnetrza-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/deturner-interior-qd-250ml_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Deturner Interior QD 250ml - quick detailer do wn\u0119trza samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>26,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>25,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1914262\" data-product_id=\"1914262\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/funky-witch-yellow-broom-interior-cleaner-5l-preparat-do-czyszczenia-wnetrza-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/funky-witch-yellow-broom-interior-cleaner-5l_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Funky Witch Yellow Broom Interior Cleaner 5L - preparat do czyszczenia wn\u0119trza samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>271,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>259,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1807233\" data-product_id=\"1807233\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/dodo-juice-fibre-reviver-500ml-srodek-do-czyszczenia-tkanin-tapicerki-zamszu-i-dywanow\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/dodo-juice-fibre-reviver-500ml_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Dodo Juice Fibre Reviver 500ml - \u015brodek do czyszczenia tkanin, tapicerki, zamszu i dywan\u00f3w<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>51,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>56,90&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1806679\" data-product_id=\"1806679\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/kiurlab-pretext-500ml-prespray-do-prania-tapicerki\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/06\/kiurlab-pretext-500ml_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Kiurlab Pretext 500ml - prespray do prania tapicerki<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>30,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>29,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1898810\" data-product_id=\"1898810\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                        <\/div>\n                <button class=\"slider-nav prev\" aria-label=\"Poprzedni\" style=\"background: rgba(255,255,255,0) !important;height: 90px !important; width: 45px !important; \">\n            <i class=\"fas fa-chevron-left\" style=\"color: rgba(255, 255, 255, 1) !important; font-size: 22.5px !important;\"><\/i>\n        <\/button>\n        <button class=\"slider-nav next\" aria-label=\"Nast\u0119pny\" style=\"background: rgba(255,255,255,0) !important;height: 90px !important; width: 45px !important; \">\n            <i class=\"fas fa-chevron-right\" style=\"color: rgba(255, 255, 255, 1) !important; font-size: 22.5px !important;\"><\/i>\n        <\/button>\n            <\/div>\n            <div class=\"universal-slider-cta\">\n            <a href=\"https:\/\/liquidmaster.pl\/promocja\/promocje\/\" class=\"button\">\n                Zobacz wszystkie            <\/a>\n        <\/div>\n    <\/div>\n \n\n\n\n<!DOCTYPE html>\n<html lang=\"pl\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Dlaczego LiquidMaster.pl<\/title>\n    <link rel=\"stylesheet\" href=\"style.css\">\n<\/head>\n<body>\n    <section class=\"why-us-section\">\n        <div class=\"containerSec\">\n            <div class=\"section-header\">\n                <h2 class=\"section-title\">Dlaczego Liquid Master?<\/h2>\n                <p class=\"section-subtitle\">Innowacyjna piel\u0119gnacja, przygotowanie i konserwacja dla entuzjast\u00f3w i profesjonalist\u00f3w<\/p>\n            <\/div>\n            \n            <div class=\"features-grid\">\n                <div class=\"feature-card\" data-aos=\"fade-up\" data-aos-delay=\"100\">\n                    <div class=\"feature-icon\">\n                        <svg width=\"60\" height=\"60\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <path d=\"M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"\/>\n                        <\/svg>\n                    <\/div>\n                    <h3 class=\"feature-title\">Produkty Premium<\/h3>\n                    <p class=\"feature-description\">Oferujemy wy\u0142\u0105cznie oryginalne produkty GYEON i innych renomowanych marek, opracowane z uwzgl\u0119dnieniem najwy\u017cszych standard\u00f3w jako\u015bci.<\/p>\n                <\/div>\n\n                <div class=\"feature-card\" data-aos=\"fade-up\" data-aos-delay=\"200\">\n                    <div class=\"feature-icon\">\n                        <svg width=\"60\" height=\"60\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <path d=\"M13 2L3 14H12L11 22L21 10H12L13 2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"\/>\n                        <\/svg>\n                    <\/div>\n                    <h3 class=\"feature-title\">Szybka Wysy\u0142ka<\/h3>\n                    <p class=\"feature-description\">Realizujemy zam\u00f3wienia w ci\u0105gu 24h. Darmowa dostawa ju\u017c od 199 z\u0142. Bezpieczne pakowanie gwarantuje nieuszkodzony towar.<\/p>\n                <\/div>\n\n                <div class=\"feature-card\" data-aos=\"fade-up\" data-aos-delay=\"300\">\n                    <div class=\"feature-icon\">\n                        <svg width=\"60\" height=\"60\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <path d=\"M9 12L11 14L15 10M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"\/>\n                        <\/svg>\n                    <\/div>\n                    <h3 class=\"feature-title\">Gwarancja Jako\u015bci<\/h3>\n                    <p class=\"feature-description\">100% oryginalne produkty z gwarancj\u0105 producenta. Mo\u017cliwo\u015b\u0107 zwrotu w ci\u0105gu 14 dni bez podania przyczyny.<\/p>\n                <\/div>\n\n                <div class=\"feature-card\" data-aos=\"fade-up\" data-aos-delay=\"400\">\n                    <div class=\"feature-icon\">\n                        <svg width=\"60\" height=\"60\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <path d=\"M16 7C16 9.20914 14.2091 11 12 11C9.79086 11 8 9.20914 8 7C8 4.79086 9.79086 3 12 3C14.2091 3 16 4.79086 16 7Z\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n                            <path d=\"M12 14C8.13401 14 5 17.134 5 21H19C19 17.134 15.866 14 12 14Z\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n                        <\/svg>\n                    <\/div>\n                    <h3 class=\"feature-title\">Wsparcie Ekspert\u00f3w<\/h3>\n                    <p class=\"feature-description\">Nasz zesp\u00f3\u0142 to pasjonaci detailingu z wieloletnim do\u015bwiadczeniem. Pomo\u017cemy wybra\u0107 odpowiednie produkty do Twoich potrzeb.<\/p>\n                <\/div>\n\n                <div class=\"feature-card\" data-aos=\"fade-up\" data-aos-delay=\"500\">\n                    <div class=\"feature-icon\">\n                        <svg width=\"60\" height=\"60\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <path d=\"M12 6V12L16 14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"\/>\n                            <circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n                        <\/svg>\n                    <\/div>\n                    <h3 class=\"feature-title\">Do\u015bwiadczenie<\/h3>\n                    <p class=\"feature-description\">Lata do\u015bwiadczenia w bran\u017cy detailingowej. Zaufa\u0142o nam ju\u017c tysi\u0105ce klient\u00f3w &#8211; od hobbyst\u00f3w po profesjonalne detailingi.<\/p>\n                <\/div>\n\n                <div class=\"feature-card\" data-aos=\"fade-up\" data-aos-delay=\"600\">\n                    <div class=\"feature-icon\">\n                        <svg width=\"60\" height=\"60\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <path d=\"M3.85 8.62C4.59 6.84 6.28 5.58 8.28 5.58C10.66 5.58 12.58 7.5 12.58 9.88C12.58 12.26 10.66 14.18 8.28 14.18C6.28 14.18 4.59 12.92 3.85 11.14\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n                            <path d=\"M20.15 8.62C19.41 6.84 17.72 5.58 15.72 5.58C13.34 5.58 11.42 7.5 11.42 9.88C11.42 12.26 13.34 14.18 15.72 14.18C17.72 14.18 19.41 12.92 20.15 11.14\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n                            <path d=\"M12 18.42V21.58\" stroke=\"currentColor\" stroke-width=\"2\"\/>\n                        <\/svg>\n                    <\/div>\n                    <h3 class=\"feature-title\">Konkurencyjne Ceny<\/h3>\n                    <p class=\"feature-description\">Najlepsze ceny na rynku bez kompromis\u00f3w w jako\u015bci. Regularne promocje i programy lojalno\u015bciowe dla sta\u0142ych klient\u00f3w.<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"cta-section\">\n                <h3 class=\"cta-title\">Gotowy na profesjonalny detailing?<\/h3>\n                <p class=\"cta-description\">Do\u0142\u0105cz do tysi\u0119cy zadowolonych klient\u00f3w i odkryj r\u00f3\u017cnic\u0119, jak\u0105 robi\u0105 produkty premium<\/p>\n                <button class=\"cta-button\">\n                    <span>Sprawd\u017a nasze produkty<\/span>\n                    <svg width=\"20\" height=\"20\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                        <path d=\"M5 12H19M19 12L12 5M19 12L12 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n                    <\/svg>\n                <\/button>\n            <\/div>\n        <\/div>\n    <\/section>\n<\/body>\n<\/html>\n\n<style>\n* {\n    margin: 0;\n    padding: 0;\n    box-sizing: border-box;\n}\n\n.why-us-section {\n    padding: 80px 0;\n    background: #00060F;\n    position: relative;\n    overflow: hidden;\n}\n\n.why-us-section::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    bottom: 0;\n    background: url('data:image\/svg+xml,<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grid\" width=\"10\" height=\"10\" patternUnits=\"userSpaceOnUse\"><path d=\"M 10 0 L 0 0 0 10\" fill=\"none\" stroke=\"%239D66AE\" stroke-width=\"0.5\"\/><\/pattern><\/defs><rect width=\"100\" height=\"100\" fill=\"url(%23grid)\"\/><\/svg>');\n    opacity: 0.3;\n    z-index: 1;\n}\n\n.containerSec {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 0 20px;\n    position: relative;\n    z-index: 2;\n}\n\n.section-header {\n    text-align: center;\n    margin-bottom: 60px;\n}\n\n.section-title {\n    font-size: 3rem;\n    font-weight: 800;\n    background: linear-gradient(90deg, rgb(75 109 178 \/ 90%) 0%, rgb(111 47 133 \/ 90%) 100%);\n    background-clip: text;\n    -webkit-background-clip: text;\n    -webkit-text-fill-color: transparent;\n    margin-bottom: 16px;\n    letter-spacing: -0.02em;\n}\n\n.section-subtitle {\n    font-size: 1.25rem;\n    color: #FFF;\n    max-width: 600px;\n    margin: 0 auto;\n    font-weight: 400;\n}\n\n.features-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));\n    gap: 30px;\n    margin-bottom: 60px;\n}\n\n.feature-card {\n    background: rgba(255, 255, 255, 0.1);\n    backdrop-filter: blur(10px);\n    border-radius: 20px;\n    padding: 40px 30px;\n    text-align: center;\n    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);\n    border: 1px solid rgba(157, 102, 174, 0.2);\n    box-shadow: 0 4px 6px -1px rgba(157, 102, 174, 0.1), 0 2px 4px -1px rgba(157, 102, 174, 0.06);\n    position: relative;\n    overflow: hidden;\n}\n\n.feature-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: -100%;\n    width: 100%;\n    height: 100%;\n    background: linear-gradient(90deg, transparent, rgba(157, 102, 174, 0.1), transparent);\n    transition: left 0.6s;\n}\n\n.feature-card:hover::before {\n    left: 100%;\n}\n\n.feature-card:hover {\n    transform: translateY(-10px);\n    box-shadow: 0 20px 25px -5px rgba(157, 102, 174, 0.1), 0 10px 10px -5px rgba(157, 102, 174, 0.04);\n    border-color: rgba(157, 102, 174, 0.3);\n}\n\n.feature-icon {\n    width: 80px;\n    height: 80px;\n    margin: 0 auto 24px;\n    background: #9D66AE;\n    border-radius: 20px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: white;\n    transition: all 0.3s ease;\n}\n\n.feature-card:hover .feature-icon {\n    transform: scale(1.1) rotate(5deg);\n    box-shadow: 0 10px 20px rgba(157, 102, 174, 0.3);\n}\n\n.feature-title {\n    font-size: 1.5rem;\n    font-weight: 700;\n    color: #FFF;\n    margin-bottom: 16px;\n    letter-spacing: -0.01em;\n}\n\n.feature-description {\n    color: #FFF;\n    line-height: 1.7;\n    font-size: 1rem;\n}\n\n.cta-section {\n    text-align: center;\n    background: #9D66AE;\n    border-radius: 24px;\n    padding: 50px 40px;\n    color: #FFF;\n    position: relative;\n    overflow: hidden;\n}\n\n.cta-section::before {\n    content: '';\n    position: absolute;\n    top: -50%;\n    left: -50%;\n    width: 200%;\n    height: 200%;\n    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);\n    animation: rotate 20s linear infinite;\n}\n\n@keyframes rotate {\n    0% { transform: rotate(0deg); }\n    100% { transform: rotate(360deg); }\n}\n\n.cta-title {\n    font-size: 2rem;\n    font-weight: 700;\n    margin-bottom: 12px;\n    position: relative;\n    z-index: 2;\n}\n\n.cta-description {\n    font-size: 1.125rem;\n    margin-bottom: 32px;\n    opacity: 0.9;\n    position: relative;\n    z-index: 2;\n}\n\n.cta-button {\n    background: transparent;\n    border: 2px solid #9D66AE;\n    color: #FFF;\n    padding: 16px 32px;\n    border-radius: 12px;\n    font-size: 1.125rem;\n    font-weight: 600;\n    cursor: pointer;\n    transition: all 0.3s ease;\n    display: inline-flex;\n    align-items: center;\n    gap: 12px;\n    position: relative;\n    z-index: 2;\n    backdrop-filter: blur(10px);\n}\n\n.cta-button:hover {\n    background: #FFF;\n    border-color: #FFF;\n    color: #9D66AE;\n    transform: translateY(-2px);\n    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);\n}\n\n.cta-button svg {\n    transition: transform 0.3s ease;\n}\n\n.cta-button:hover svg {\n    transform: translateX(4px);\n}\n\n\/* Responsive Design *\/\n@media (max-width: 768px) {\n    .why-us-section {\n        padding: 60px 0;\n    }\n    \n    .section-title {\n        font-size: 2.5rem;\n    }\n    \n    .features-grid {\n        grid-template-columns: 1fr;\n        gap: 20px;\n    }\n    \n    .feature-card {\n        padding: 30px 20px;\n    }\n    \n    .cta-section {\n        padding: 40px 20px;\n    }\n    \n    .cta-title {\n        font-size: 1.75rem;\n    }\n}\n\n@media (max-width: 480px) {\n    .section-title {\n        font-size: 2rem;\n    }\n    \n    .section-subtitle {\n        font-size: 1.125rem;\n    }\n    \n    .feature-title {\n        font-size: 1.25rem;\n    }\n    \n    .cta-title {\n        font-size: 1.5rem;\n    }\n}\n\n\/* Animation on scroll *\/\n[data-aos=\"fade-up\"] {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: all 0.6s ease;\n}\n\n[data-aos=\"fade-up\"].aos-animate {\n    opacity: 1;\n    transform: translateY(0);\n}\n<\/style>\n<script>\n\/\/ Animacje przy przewijaniu (AOS - Animate On Scroll)\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Prosty AOS implementation\n    const observerOptions = {\n        threshold: 0.1,\n        rootMargin: '0px 0px -50px 0px'\n    };\n\n    const observer = new IntersectionObserver(function(entries) {\n        entries.forEach(entry => {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('aos-animate');\n            }\n        });\n    }, observerOptions);\n\n    \/\/ Obserwuj wszystkie elementy z data-aos\n    document.querySelectorAll('[data-aos]').forEach(el => {\n        observer.observe(el);\n    });\n\n    \/\/ Smooth scroll dla przycisku CTA\n    document.querySelector('.cta-button').addEventListener('click', function(e) {\n        e.preventDefault();\n        \/\/ Tutaj mo\u017cesz doda\u0107 kod do przewini\u0119cia do sekcji produkt\u00f3w\n        \/\/ lub przekierowania na stron\u0119 sklepu\n        window.location.href = '\/sklep\/';\n    });\n\n    \/\/ Hover effect dla kart\n    document.querySelectorAll('.feature-card').forEach(card => {\n        card.addEventListener('mouseenter', function() {\n            this.style.transform = 'translateY(-10px) scale(1.02)';\n        });\n        \n        card.addEventListener('mouseleave', function() {\n            this.style.transform = 'translateY(0) scale(1)';\n        });\n    });\n});\n\n\/\/ Counter animation dla liczb (opcjonalne)\nfunction animateCounters() {\n    const counters = document.querySelectorAll('.counter');\n    \n    counters.forEach(counter => {\n        const target = parseInt(counter.getAttribute('data-target'));\n        const count = +counter.innerText;\n        const increment = target \/ 200;\n        \n        if (count < target) {\n            counter.innerText = Math.ceil(count + increment);\n            setTimeout(animateCounters, 1);\n        } else {\n            counter.innerText = target;\n        }\n    });\n}\n<\/script>\n\n\n<div class=\"belowSlider\" id=\"second\">\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/liquidmaster.pl\/na-zewnatrz\/\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/naZewnatrz_new.png\" alt=\"\" class=\"wp-image-1851357\" title=\"Kategoria NA ZEWN\u0104TRZ\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/naZewnatrz_new.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/naZewnatrz_new-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/naZewnatrz_new-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/naZewnatrz_new-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/naZewnatrz_new-64x64.png 64w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/liquidmaster.pl\/wnetrze-auta\/\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/wnetrze_new.png\" alt=\"\" class=\"wp-image-1851356\" title=\"Kategoria WN\u0118TRZE\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/wnetrze_new.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/wnetrze_new-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/wnetrze_new-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/wnetrze_new-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/wnetrze_new-64x64.png 64w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/liquidmaster.pl\/582c1-blogger-gb-home\/polerowanie_new\/\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/polerowanie_new.png\" alt=\"\" class=\"wp-image-1851355\" title=\"Kategoria POLEROWANIE\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/polerowanie_new.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/polerowanie_new-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/polerowanie_new-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/polerowanie_new-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/polerowanie_new-64x64.png 64w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/liquidmaster.pl\/582c1-blogger-gb-home\/oklejanie_new\/\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/oklejanie_new.png\" alt=\"\" class=\"wp-image-1851354\" title=\"Kategoria OKLEJANIE\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/oklejanie_new.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/oklejanie_new-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/oklejanie_new-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/oklejanie_new-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/oklejanie_new-64x64.png 64w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/liquidmaster.pl\/582c1-blogger-gb-home\/akcesoria_new\/\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/akcesoria_new.png\" alt=\"\" class=\"wp-image-1851353\" title=\"Kategoria AKCESORIA\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/akcesoria_new.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/akcesoria_new-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/akcesoria_new-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/akcesoria_new-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/akcesoria_new-64x64.png 64w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full promocjeKategoria\"><a href=\"https:\/\/liquidmaster.pl\/promocja\/promocje\/\"><img decoding=\"async\" width=\"340\" height=\"340\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty.png\" alt=\"\" class=\"wp-image-1851338\" title=\"Kategoria AKCESORIA\" srcset=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty.png 340w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty-300x300.png 300w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty-150x150.png 150w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty-12x12.png 12w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty-100x100.png 100w, https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/promocjeRabaty-64x64.png 64w\" sizes=\"(max-width: 340px) 100vw, 340px\" \/><\/a><\/figure>\n\n\n<\/div>\n\n\n<div class=\"belowSlider\" id=\"third\">\n\n\n<\/div>\n\n\n\n<div class=\"wp-block-columns kontaktv is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\"><div class=\"universal-slider-section default-style has-animated-background\" data-slider-id=\"1851332\" data-autoplay=\"true\" data-autoplay-speed=\"6000\" style=\"--accent-color: rgba(157, 102, 174, 1); --accent-text-color: rgb(45, 45, 45); --button-font-weight: 400; --button-font-size: 14px; --button-border-radius: 14px; --font-family: &quot;Poppins&quot;, Open Sans; --hover-background-color: rgb(255,255,255); --hover-text-color: rgb(157,102,174);\" data-animation-color=\"rgb(142, 39, 173)\" data-animation-type=\"particles\" >\n    \n    <h2 class=\"universal-slider-header\">Wrapping<\/h2>\n    <div class=\"universal-slider-container swiper\">\n        <div class=\"universal-slider swiper-wrapper\">\n                            <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/carbins-accessories-15cm-green-ppf-scraper-miekka-rakla-silikonowa-do-aplikacji-folii-ochronnych\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/carbins-accessories-15cm-green-ppf-scraper_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Carbins Accessories 15cm Green PPF Scraper - mi\u0119kka rakla silikonowa do aplikacji folii ochronnych<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>56,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1806376\" data-product_id=\"1806376\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/ulty-nano-ppf-pro-200m-1m2-folia-ochronna\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/ulty-nano-ppf-pro-big_big-300x188.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Ulty Nano PPF PRO+ 200\u00b5m 1m2 - folia ochronna<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>378,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1807109\" data-product_id=\"1807109\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/carbins-s-m6-02-ultra-matte-aluminium-silver-folia-do-zmiany-koloru-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/s-m6-02-ultra-matte-aluminium-silver-mercedes-2_big-214x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Carbins S M6-02 Ultra-Matte Aluminium Silver - folia do zmiany koloru samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>4515,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>4300,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1806350\" data-product_id=\"1806350\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/carbins-s-m605r-ghost-metallic-romanee-red-1mb-folia-do-zmiany-koloru-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/s-m605r-ghost-metallic-romanee-red_big-1-300x150.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Carbins S M6\/05R Ghost Metallic Romanee Red 1MB - folia do zmiany koloru samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>299,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>285,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1808161\" data-product_id=\"1808161\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/carbins-c3-m2112-pet-matte-metallic-emerald-folia-do-zmiany-koloru-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/c3-m2112-matte-metallic-emerald-pet_big-300x150.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Carbins C3 M2112 PET Matte Metallic Emerald - folia do zmiany koloru samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>4515,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>4300,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1806324\" data-product_id=\"1806324\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/carbins-c3-sp-05-pet-metallic-pearl-red-1mb-folia-do-zmiany-koloru-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/c3-sp-05-metallic-pearl-red-pet_big-1-300x150.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Carbins C3 SP-05 PET Metallic Pearl Red 1MB - folia do zmiany koloru samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>299,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>285,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1809998\" data-product_id=\"1809998\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/carbins-cbs-mbs01c-satin-brushed-charcoal-1mb-folia-do-zmiany-koloru-samochodu\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/cbs-mbs-01c-satin-brushed-charcoal_big-1-300x150.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Carbins CBS MBS\/01C Satin Brushed Charcoal 1MB - folia do zmiany koloru samochodu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>246,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>235,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1808083\" data-product_id=\"1808083\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/shiny-garage-foil-fixer-5l-produkt-do-aplikacji-folii-ochronnych\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/1-big_big-300x300.png\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Shiny Garage Foil Fixer 5L -produkt do aplikacji folii ochronnych<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>138,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1799151\" data-product_id=\"1799151\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/gyeon-q2-ppf-evo-50ml-powloka-ceramiczna-do-foli-ochronnych-i-winylowych\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/petbox-q2ppf-evo-set50ml-2021-840-840x840_big-300x300.png\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Gyeon Q2 PPF Evo 50ml - pow\u0142oka ceramiczna do foli ochronnych i winylowych<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>350,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1805202\" data-product_id=\"1805202\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                        <\/div>\n                <button class=\"slider-nav prev\" aria-label=\"Poprzedni\" style=\"background: rgba(255, 255, 255, 0) !important;height: 90px !important; width: 45px !important; \">\n            <i class=\"fas fa-chevron-left\" style=\"color: rgba(255, 255, 255, 1) !important; font-size: 22.5px !important;\"><\/i>\n        <\/button>\n        <button class=\"slider-nav next\" aria-label=\"Nast\u0119pny\" style=\"background: rgba(255, 255, 255, 0) !important;height: 90px !important; width: 45px !important; \">\n            <i class=\"fas fa-chevron-right\" style=\"color: rgba(255, 255, 255, 1) !important; font-size: 22.5px !important;\"><\/i>\n        <\/button>\n            <\/div>\n            <div class=\"universal-slider-cta\">\n            <a href=\"https:\/\/liquidmaster.pl\/oklejanie\/\" class=\"button\">\n                Zobacz wszystkie            <\/a>\n        <\/div>\n    <\/div>\n \n<\/div>\n<\/div>\n\n\n\n<div class=\"sectionscroll budda\"><h1><span class=\"liquidmaster taro\" style=\"font-family: 'taro'\">Budda &amp; Han<\/span><\/h1><\/div>\n\n\n\n\n\n<div class=\"universal-slider-section default-style has-animated-background\" data-slider-id=\"1851400\" data-autoplay=\"true\" data-autoplay-speed=\"6000\" style=\"--accent-color: rgba(157, 102, 174, 1); --accent-text-color: rgb(45, 45, 45); --button-font-weight: 400; --button-font-size: 14px; --button-border-radius: 14px; --font-family: &quot;Poppins&quot;, Open Sans; --hover-background-color: rgb(255,255,255); --hover-text-color: rgb(157,102,174);\" data-animation-color=\"rgb(142, 39, 173)\" data-animation-type=\"particles\" >\n    \n    <h2 class=\"universal-slider-header\">Wn\u0119trze Auta<\/h2>\n    <div class=\"universal-slider-container swiper\">\n        <div class=\"universal-slider swiper-wrapper\">\n                            <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/kiurlab-soft-cleaner-5l-delikatny-srodek-czyszczacy-do-skory\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/kiurlab-soft-cleaner-5l_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Kiurlab Soft Cleaner 5L - delikatny \u015brodek czyszcz\u0105cy do sk\u00f3ry<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>195,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1809644\" data-product_id=\"1809644\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/koch-chemie-leather-star-1l-produkt-do-pielegnacji-materialow-skorzanych\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/koch-chemie-leather-star-1l_big-300x300.png\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Koch Chemie Leather Star 1l - produkt do piel\u0119gnacji materia\u0142\u00f3w sk\u00f3rzanych<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>86,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1819475\" data-product_id=\"1819475\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/fx-protect-leather-brush-strong-szczotka-do-czyszczenia-skory\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/fx5_big-300x300.webp\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>FX Protect Leather Brush Strong - Szczotka do czyszczenia sk\u00f3ry<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>14,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1804939\" data-product_id=\"1804939\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/foen-no-smoking-large-perfumy-samochodowe-450ml\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/foen-no-smoking-500ml_big-207x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Foen No Smoking Large - perfumy samochodowe 450ml<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>61,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1800991\" data-product_id=\"1800991\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/foen-vanilla-large-perfumy-samochodowe-450ml\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/foen-vanilla-500ml_big-207x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Foen Vanilla Large - perfumy samochodowe 450ml<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>61,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1802852\" data-product_id=\"1802852\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/funky-witch-skin-clinic-leather-cleaner-soft-1l-srodek-do-czyszczenia-skor\/\">\n                                <div class=\"universal-product-image\">\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/funky-witch-skin-clinic-leather-cleaner-soft-1l_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Funky Witch Skin Clinic Leather Cleaner Soft 1L - \u015brodek do czyszczenia sk\u00f3r<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>109,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>104,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1916481\" data-product_id=\"1916481\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/funky-witch-banana-shadow-satin-dressing-215ml-ochrona-gumy-i-plastikow-wewnetrznych\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/funky-witch-banana-shadow-satin-dressing-215ml_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Funky Witch Banana Shadow Satin Dressing 215ml - ochrona gumy i plastik\u00f3w wewn\u0119trznych<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>33,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>33,00&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1807455\" data-product_id=\"1807455\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/deturner-interior-matt-500ml-matowy-dressing-do-kokpitu\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/05\/bez-tytulu_big-46-270x300.png\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Deturner Interior Matt 500ml - matowy dressing do kokpitu<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>49,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>47,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1811240\" data-product_id=\"1811240\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                                <div class=\"swiper-slide\">\n                    <div class=\"universal-product-card\">\n                        <div class=\"product-image\">\n                            <a href=\"https:\/\/liquidmaster.pl\/en\/malco-spray-upholstery-473ml-srodek-czyszczacy-do-dywanow-i-tapicerki\/\">\n                                <div class=\"universal-product-image\">\n                                                                            <span class=\"universal-sale-icon\"><i class=\"fas fa-percent\"><\/i><\/span>\n                                                                        \n                                    <img decoding=\"async\" src=\"https:\/\/liquidmaster.pl\/wp-content\/uploads\/2025\/08\/malco-automotive-90-16-oz-spray-upholstery-carpet-101716-1148934836_big-300x300.jpg\" class=\"universal-product-img\" alt=\"\" title=\"\">                                <\/div>\n                            <\/a>\n                        <\/div>\n                        <div class=\"product-details\">\n                            <h3>Malco Spray Upholstery 473ml - \u015brodek czyszcz\u0105cy do dywan\u00f3w i tapicerki<\/h3>\n                            <div class=\"product-details-bottom\">\n                                                                    <div class=\"price-container\">\n                                        <span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><bdi>51,99&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/span> <del><span class=\"woocommerce-Price-amount amount\"><bdi>49,90&nbsp;<span class=\"woocommerce-Price-currencySymbol\">&#122;&#322;<\/span><\/bdi><\/span><\/del>                                    <\/div>\n                                                                \n                                                                    <a href=\"?add-to-cart=1910042\" data-product_id=\"1910042\" data-quantity=\"1\" class=\"add-to-cart-button button product_type_simple add_to_cart_button ajax_add_to_cart\">\n                                        Do koszyka                                    <\/a>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                        <\/div>\n                <button class=\"slider-nav prev\" aria-label=\"Poprzedni\" style=\"background: rgba(255, 255, 255, 0) !important;height: 90px !important; width: 45px !important; \">\n            <i class=\"fas fa-chevron-left\" style=\"color: rgba(255, 255, 255, 1) !important; font-size: 22.5px !important;\"><\/i>\n        <\/button>\n        <button class=\"slider-nav next\" aria-label=\"Nast\u0119pny\" style=\"background: rgba(255, 255, 255, 0) !important;height: 90px !important; width: 45px !important; \">\n            <i class=\"fas fa-chevron-right\" style=\"color: rgba(255, 255, 255, 1) !important; font-size: 22.5px !important;\"><\/i>\n        <\/button>\n            <\/div>\n            <div class=\"universal-slider-cta\">\n            <a href=\"https:\/\/liquidmaster.pl\/wnetrze-auta\/\" class=\"button\">\n                Zobacz wszystkie            <\/a>\n        <\/div>\n    <\/div>\n \n","protected":false},"excerpt":{"rendered":"<p>LIQUID MASTER Tw\u00f3j niezawodny dostawca chemii i akcesori\u00f3w do detailingu Poka\u017c mi swoje towary Dlaczego LiquidMaster.pl Dlaczego Liquid Master? Innowacyjna piel\u0119gnacja, przygotowanie i konserwacja dla entuzjast\u00f3w i profesjonalist\u00f3w Produkty Premium Oferujemy wy\u0142\u0105cznie oryginalne produkty GYEON i innych renomowanych marek, opracowane z uwzgl\u0119dnieniem najwy\u017cszych standard\u00f3w jako\u015bci. Szybka Wysy\u0142ka Realizujemy zam\u00f3wienia w ci\u0105gu 24h. Darmowa dostawa ju\u017c&hellip;&nbsp;<a href=\"https:\/\/liquidmaster.pl\/en\/malco-spray-upholstery-473ml-srodek-czyszczacy-do-dywanow-i-tapicerki\/\" rel=\"bookmark\">Read More \u00bb<span class=\"screen-reader-text\">Malco Spray Upholstery 473ml \u2013 carpet and upholstery cleaner<\/span><\/a><\/p>","protected":false},"author":1,"featured_media":768,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/template-pagebuilder-full-width.php","meta":{"neve_meta_sidebar":"full-width","neve_meta_container":"","neve_meta_enable_content_width":"on","neve_meta_content_width":100,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"on","_themeisle_gutenberg_block_has_review":false,"footnotes":""},"class_list":["post-110","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/pages\/110","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/comments?post=110"}],"version-history":[{"count":0,"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/pages\/110\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/liquidmaster.pl\/en\/wp-json\/wp\/v2\/media?parent=110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}