drogerienatura.pl Open in urlscan Pro
34.149.90.199  Public Scan

Submitted URL: http://drogerienatura.pl/
Effective URL: https://drogerienatura.pl/
Submission Tags: tranco_l324
Submission: On March 29 via api from DE — Scanned from PL

Form analysis 89 forms found in the DOM

GET https://drogerienatura.pl/catalogsearch/result/

<form class="form minisearch" id="search_mini_form" :class="show ? 'filter drop-shadow-1' : ''" action="https://drogerienatura.pl/catalogsearch/result/" method="get">
  <div class="relative">
    <label class="sr-only" for="search"> Przeszukaj cały sklep tutaj... </label>
    <input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" type="search" class="form-search w-full" autocapitalize="off" autocomplete="off" autocorrect="off" name="q" value="" placeholder="Przeszukaj cały sklep tutaj..."
      maxlength="128">
    <template x-if="!isLoading &amp;&amp; !term.length">
      <button type="submit" class="absolute right-2 top-1/2 transform -translate-y-1/2">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6" role="img">
          <path d="M16 16L23 23" stroke="#333333" stroke-width="1.5" stroke-linejoin="bevel"></path>
          <circle cx="10" cy="10" r="8.25" stroke="#333333" stroke-width="1.5"></circle>
          <title>search</title>
        </svg>
      </button>
    </template><button type="submit" class="absolute right-2 top-1/2 transform -translate-y-1/2">
      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6" role="img">
        <path d="M16 16L23 23" stroke="#333333" stroke-width="1.5" stroke-linejoin="bevel"></path>
        <circle cx="10" cy="10" r="8.25" stroke="#333333" stroke-width="1.5"></circle>
        <title>search</title>
      </svg>
    </button>
    <template x-if="!isLoading &amp;&amp; term.length">
      <button type="button" class="absolute right-4 top-1/2 transform -translate-y-1/2" @click="closeSearch()">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-4 h-4" role="img">
          <path d="M18.9995 5L11.9995 12L4.9995 19" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"></path>
          <path d="M5.00098 5L12.001 12L19.001 19" stroke="currentColor" stroke-width="1.5" stroke-linejoin="round"></path>
          <title>close</title>
        </svg>
      </button>
    </template>
    <template x-if="isLoading">
      <div class="absolute h-5 w-5 right-3 top-1/2 transform -translate-y-1/2">
        <template x-if="isLoading">
          <div class="absolute bg-white/60 z-10 h-full w-full flex items-center justify-center">
            <div class="flex items-center">
              <!-- loading icon -->
              <svg class="animate-spin h-5 w-5 text-gray-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
                <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
                <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z">
                </path>
              </svg>
              <!-- end loading icon -->
            </div>
          </div>
        </template>
      </div>
    </template>
  </div>
  <div id="search_autocomplete" class="search-autocomplete relative w-full">
    <div class="absolute bg-white left-0 right-0 h-auto overflow-auto" :style="'max-height:' + maxHeight + 'px'" x-show="term.length >= minSearchLength" style="max-height: 0px; display: none;">
      <div class="relative p-2">
        <div class="w-full mb-6"> Wyniki wyszukiwania dla "<span class="font-bold" x-text="term"></span>" </div>
        <div class=" lg:flex">
          <template x-for="searchResultByType in Object.values(searchResultsByType)">
            <div class="border-b last:border-b-0 lg:border-b-0
                                    lg:border-r lg:last:border-r-0 lg:pr-6 lg:mr-6 flex-1 lg:last:mr-0" :class="searchResultByType.type === 'category' ? 'autocomplete-categories' : ''">
              <div x-text="searchResultByType.title" class="text-base font-semibold mb-2"></div>
              <template x-for="searchResult in searchResultByType.list">
                <div>
                  <template x-if="searchResult.type == 'term'">
                    <a class="w-full block p-2" x-bind:href="'https://drogerienatura.pl/catalogsearch/result/?q=' + searchResult.title" :title="searchResult.title">
        <span class="text-sm" x-text="searchResult.title"></span>
        <span class="text-sm" x-text="'(' + searchResult.num_results + ')'"></span>
    </a>
                  </template>
                  <template x-if="searchResult.type == 'product'">
                    <a class="w-full block product-item" :href="searchResult.url" :title="searchResult.title">
        <div class="flex items-center">
            <div class="p-2 mr-2">
                <img :src="searchResult.image" class="inline-block">
            </div>
            <div class="py-2 flex-1">
                <div class="text-sm mb-2 product-item-link" x-html="highlight(searchResult.title)"></div>
                <div class="xl:flex">
                    <div x-html="searchResult.price"></div>
                </div>
            </div>
        </div>
    </a>
                  </template>
                  <template x-if="searchResult.type == 'category'">
                    <a class="w-full block mb-4" :href="searchResult.url" :title="searchResult.title">
        <span class="text-sm" x-html="highlight(searchResult.title)"></span>
    </a>
                  </template>
                  <template x-if="searchResult.type == 'product_attribute'">
                    <a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
        <span class="text-sm" x-text="searchResult.title"></span>
        <span class="text-xs uppercase text-gray-500" x-text="searchResult.attribute_label" style="vertical-align: super;"></span>
    </a>
                  </template>
                  <script>
                    function renderEsAutocompleteTitleAttribute(data) {
                      data = data.filter(function(item) {
                        return item.type === 'product_attribute';
                      }).map(function(item) {
                        return item['attribute_label']
                      }).reduce(function(prev, item) {
                        if (item in prev) {
                          prev[item]++;
                        } else {
                          prev[item] = 1;
                        }
                        return prev;
                      }, {});
                      data = Object.entries(data).sort(function(item1, item2) {
                        return item2[1] - item1[1]
                      }).map(function(item) {
                        return item[0]
                      });
                      if (data.length > 2) {
                        data = data.slice(0, 2);
                        data.push('...');
                      }
                      return data.join(', ');
                    }
                  </script>
                  <template x-if="searchResult.type == 'cms_page'">
                    <a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
        <span class="text-sm" x-text="searchResult.title"></span>
    </a>
                  </template>
                  <template x-if="searchResult.type == 'article'">
                    <a class="w-full block product-item mb-1" :href="searchResult.url" :title="searchResult.title">
        <div class="flex items-center">
            <div class="p-2 h-[88px] w-[88px] flex items-center justify-center">
                <template x-if="searchResult.image">
                    <img :src="searchResult.image" class="inline-block">
                </template>
            </div>
            <div class="p-2 ml-2 flex justify-center">
                <div class="text-sm" x-html="highlight(searchResult.title)"></div>
            </div>
        </div>
    </a>
                  </template>
                </div>
              </template>
              <button type="submit" class="btn mx-auto" :class="searchResultByType.type === 'product' ? '' : 'hidden'"> Odkryj więcej </button>
            </div>
          </template>
        </div>
      </div>
    </div>
  </div>
</form>

POST /checkout/cart/add

<form action="/checkout/cart/add" method="post" :class="`product_addtocart_form-${index}`">
  <input type="hidden" name="form_key" :value="hyva.getFormKey()">
  <input type="hidden" id="product_id" name="product" :value="item.product_id">
  <button type="submit" class="btn btn-primary w-full btn-cart mb-0 w-[162px] max-h-[40px]" @click="initForms(`.product_addtocart_form-${index}`)">
    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
      <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
      <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
      <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
      <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
      <title>cart</title>
    </svg>
    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
      <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
      <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
      <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
      <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
      <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
      <title>cart_hover</title>
    </svg>
  </button>
</form>

POST

<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form">
  <div class="fieldset login">
    <div class="field email required">
      <label class="label" for="form-login-username" form="login-form">
        <span>Adres e-mail</span>
      </label>
      <div class="control">
        <input name="username" id="form-login-username" x-ref="customer-email" @change="errors = 0" type="email" required="" class="form-input input-text">
      </div>
    </div>
    <div class="field password required">
      <label for="form-login-password" class="label" form="login-form">
        <span>Hasło</span>
      </label>
      <div class="control">
        <input name="password" id="form-login-password" type="password" class="form-input input-text" required="" x-ref="customer-password" @change="errors = 0">
      </div>
    </div>
    <input name="context" type="hidden" value="checkout">
    <div class="actions-toolbar flex justify-between pt-6 pb-2 items-center">
      <button type="submit" class="inline-flex btn btn-primary disabled:opacity-75"> Zaloguj się </button>
      <a href="https://drogerienatura.pl/customer/account/forgotpassword/">
                                        Zapomniałeś hasła?                                    </a>
    </div>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/32761/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/32761/"
  class="relative item product product-item product_addtocart_form flex flex-col border border-primary promo-product w-full pt-1 glider-slide active visible" data-gslide="0" style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="32761">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/anwen-grow-us-tender-wcierka-do-wlosow-150-ml-ziolowa-rozgrzewajaca-5907222404669" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-32761.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/A/n/Anwen_Wcierka_v2__3__5907222404669_893c.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Anwen Grow Us Tender wcierka do włosów 150 ml - ziołowa, rozgrzewająca " title="Anwen Grow Us Tender wcierka do włosów 150 ml - ziołowa, rozgrzewająca ">

    <div class="amasty-label-container
            amasty-label-container-20-32761-cat            amasty-label-for-32761            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-32761-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;32761&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;32761&quot;,
                selector: &quot;.amasty-label-container-20-32761-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-32761-cat            amasty-label-for-32761            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-32761-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;32761&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;32761&quot;,
                selector: &quot;.amasty-label-container-2-32761-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(32761)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/anwen-grow-us-tender-wcierka-do-wlosow-150-ml-ziolowa-rozgrzewajaca-5907222404669">
                    Anwen Grow Us Tender wcierka do włosów 150 ml - ziołowa, rozgrzewająca                 </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa68af4d() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa68af4d()" @update-prices-32761.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="32761" data-price-box="product-id-32761"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-32761" data-price-amount="24.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">24,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.17 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/anwen-grow-us-tender-wcierka-do-wlosow-150-ml-ziolowa-rozgrzewajaca-5907222404669" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4329168/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4329168/"
  class="relative item product product-item product_addtocart_form flex flex-col border border-primary promo-product w-full pt-1 glider-slide visible" data-gslide="1" style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4329168">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/holika-holika-aloe-waterproof-sun-gel-spf50-zel-przeciwsloneczny-100ml-8806334388850" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4329168.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/0/2/02luty_HolikaHolika_AloeSPF_1_adea.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Holika Holika Aloe Waterproof Sun Gel SPF50+ - żel przeciwsłoneczny 100ml " title="Holika Holika Aloe Waterproof Sun Gel SPF50+ - żel przeciwsłoneczny 100ml ">

    <div class="amasty-label-container amasty-label-container-20-4329168-cat amasty-label-for-4329168 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4329168-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4329168&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4329168&quot;,
                selector: &quot;.amasty-label-container-20-4329168-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4329168-cat amasty-label-for-4329168 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4329168-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4329168&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4329168&quot;,
                selector: &quot;.amasty-label-container-2-4329168-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4329168)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Holika Holika </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/holika-holika-aloe-waterproof-sun-gel-spf50-zel-przeciwsloneczny-100ml-8806334388850">
                    Holika Holika Aloe Waterproof Sun Gel SPF50+ - żel przeciwsłoneczny 100ml                 </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9d1f0a1() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9d1f0a1()" @update-prices-4329168.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4329168" data-price-box="product-id-4329168"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4329168" data-price-amount="54.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">54,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4329168" data-price-amount="69.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">69,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 56,79&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.55 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/holika-holika-aloe-waterproof-sun-gel-spf50-zel-przeciwsloneczny-100ml-8806334388850" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4006/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4006/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="2"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4006">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/batiste-wildflower-suchy-szampon-do-wlosow-200-ml-5010724533635" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4006.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/0/5010724533635_T1_91f2.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Batiste Wildflower Suchy szampon do włosów 200 ml" title="Batiste Wildflower Suchy szampon do włosów 200 ml">

    <div class="amasty-label-container
            amasty-label-container-20-4006-cat            amasty-label-for-4006            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4006-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4006&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4006&quot;,
                selector: &quot;.amasty-label-container-20-4006-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-4006-cat            amasty-label-for-4006            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4006-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4006&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4006&quot;,
                selector: &quot;.amasty-label-container-2-4006-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4006)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/batiste-wildflower-suchy-szampon-do-wlosow-200-ml-5010724533635">
                    Batiste Wildflower Suchy szampon do włosów 200 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa69a49a() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa69a49a()" @update-prices-4006.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4006" data-price-box="product-id-4006"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4006" data-price-amount="13.69" data-price-type="finalPrice" class="price-wrapper "><span class="price">13,69&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.07 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/batiste-wildflower-suchy-szampon-do-wlosow-200-ml-5010724533635" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331209/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331209/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="3"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4331209">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/retinobaza-1700-krem-z-witamina-a-30g-5907573300245" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4331209.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907573300245_77bd.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="RETINOBAZA 1700 krem z witaminą A 30g" title="RETINOBAZA 1700 krem z witaminą A 30g">

    <div class="amasty-label-container amasty-label-container-19-4331209-cat amasty-label-for-4331209 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4331209-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331209&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331209&quot;,
                selector: &quot;.amasty-label-container-19-4331209-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4331209-cat amasty-label-for-4331209 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4331209-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331209&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331209&quot;,
                selector: &quot;.amasty-label-container-2-4331209-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4331209)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Balsamy, kremy i masła </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/retinobaza-1700-krem-z-witamina-a-30g-5907573300245">
                    RETINOBAZA 1700 krem z witaminą A 30g                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a8f870df() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8f870df()" @update-prices-4331209.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4331209" data-price-box="product-id-4331209"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4331209" data-price-amount="10.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">10,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4331209" data-price-amount="16.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">16,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 16,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.37 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/retinobaza-1700-krem-z-witamina-a-30g-5907573300245" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/23756/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/23756/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="4"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="23756">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/ascorvita-max-witamina-c-1000mg-30-szt-5906204019655" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-23756.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5906204019655_T1_01b7.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Ascorvita Max Witamina C 1000mg 30 szt." title="Ascorvita Max Witamina C 1000mg 30 szt.">

    <div class="amasty-label-container
            amasty-label-container-20-23756-cat            amasty-label-for-23756            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-23756-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;23756&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;23756&quot;,
                selector: &quot;.amasty-label-container-20-23756-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-23756-cat            amasty-label-for-23756            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-23756-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;23756&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;23756&quot;,
                selector: &quot;.amasty-label-container-2-23756-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(23756)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/Icon_map-health.svg">
      </div>
      <span class="font-light font-sm mb-1"> Zdrowie i żywność </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/ascorvita-max-witamina-c-1000mg-30-szt-5906204019655">
                    Ascorvita Max Witamina C 1000mg 30 szt.                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6a0985() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6a0985()" @update-prices-23756.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="23756" data-price-box="product-id-23756"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-23756" data-price-amount="16.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">16,49&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 16.49 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/ascorvita-max-witamina-c-1000mg-30-szt-5906204019655" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/7207/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/7207/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="5"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="7207">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/skinimal-krem-seboregulujacy-z-kwasem-azelainowym-10-5907747317130" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-7207.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747317130_T1_914a.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SKINIMAL KREM SEBOREGULUJĄCY Z KWASEM AZELAINOWYM 10%" title="SKINIMAL KREM SEBOREGULUJĄCY Z KWASEM AZELAINOWYM 10%">

    <div class="amasty-label-container
            amasty-label-container-15-7207-cat            amasty-label-for-7207            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-7207-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;7207&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;7207&quot;,
                selector: &quot;.amasty-label-container-15-7207-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-7207-cat            amasty-label-for-7207            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-7207-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;7207&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;7207&quot;,
                selector: &quot;.amasty-label-container-20-7207-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-32-7207-cat            amasty-label-for-7207            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;32-7207-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;7207&quot;,&quot;label&quot;:32,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Drugi%20produkt%20za%2050%25%20ceny&quot;}},
                productId: &quot;7207&quot;,
                selector: &quot;.amasty-label-container-32-7207-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            1+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(7207)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/dermokosmetyki_2.svg">
      </div>
      <span class="font-light font-sm mb-1"> Dermo </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/skinimal-krem-seboregulujacy-z-kwasem-azelainowym-10-5907747317130">
                    SKINIMAL KREM SEBOREGULUJĄCY Z KWASEM AZELAINOWYM 10%                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9b11c26() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9b11c26()" @update-prices-7207.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="7207" data-price-box="product-id-7207"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-7207" data-price-amount="34.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">34,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.70 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/skinimal-krem-seboregulujacy-z-kwasem-azelainowym-10-5907747317130" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/37670/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/37670/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="6"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="37670">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-37670.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/0/4009903011119_T1_0fb4.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Ajona Medyczny koncentrat pasty do zębów dziąseł i języka 25 ml" title="Ajona Medyczny koncentrat pasty do zębów dziąseł i języka 25 ml">

    <div class="amasty-label-container
            amasty-label-container-20-37670-cat            amasty-label-for-37670            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-37670-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;37670&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;37670&quot;,
                selector: &quot;.amasty-label-container-20-37670-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-37670-cat            amasty-label-for-37670            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-37670-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;37670&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;37670&quot;,
                selector: &quot;.amasty-label-container-2-37670-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(37670)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119">
                    Ajona Medyczny koncentrat pasty do zębów dziąseł i języka 25 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6a84e6() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6a84e6()" @update-prices-37670.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="37670" data-price-box="product-id-37670"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-37670" data-price-amount="7.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,99&nbsp;zł</span></span>
          </span>
        </span>
        <a href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119" class="minimal-price-link">

<span class="price-container ">
    <span id="37670" data-price-amount="7.19" data-price-type="" class="price-wrapper ">7,19&nbsp;zł</span>
            <span class="price-label">As low as</span>
            </span>
        </a>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.32 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/256/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/256/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="7"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="256">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-intense-black-3600531230906" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-256.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/6/3600531230906_T1_9683.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MAYBELLINE MB LASH SENSATIONAL INTENSE  BLACK" title="MAYBELLINE MB LASH SENSATIONAL INTENSE  BLACK">

    <div class="amasty-label-container
            amasty-label-container-20-256-cat            amasty-label-for-256            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-256-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;256&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;256&quot;,
                selector: &quot;.amasty-label-container-20-256-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-256-cat            amasty-label-for-256            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-256-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;256&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;256&quot;,
                selector: &quot;.amasty-label-container-2-256-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(256)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-intense-black-3600531230906">
                    MAYBELLINE MB LASH SENSATIONAL INTENSE  BLACK                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9196520() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9196520()" @update-prices-256.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="256" data-price-box="product-id-256"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-256" data-price-amount="27.59" data-price-type="finalPrice" class="price-wrapper "><span class="price">27,59&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 2.76 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-intense-black-3600531230906" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13163/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13163/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="8"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="13163">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-13163.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/0/8017331020074_T1_dab5.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Biorepair Night Pasta do zębów 75 ml" title="Biorepair Night Pasta do zębów 75 ml">

    <div class="amasty-label-container
            amasty-label-container-20-13163-cat            amasty-label-for-13163            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-13163-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13163&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13163&quot;,
                selector: &quot;.amasty-label-container-20-13163-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-13163-cat            amasty-label-for-13163            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-13163-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13163&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13163&quot;,
                selector: &quot;.amasty-label-container-2-13163-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(13163)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074">
                    Biorepair Night Pasta do zębów 75 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6afbfd() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6afbfd()" @update-prices-13163.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="13163" data-price-box="product-id-13163"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-13163" data-price-amount="18.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">18,99&nbsp;zł</span></span>
          </span>
        </span>
        <a href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074" class="minimal-price-link">

<span class="price-container ">
    <span id="13163" data-price-amount="17.1" data-price-type="" class="price-wrapper ">17,10&nbsp;zł</span>
            <span class="price-label">As low as</span>
            </span>
        </a>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.25 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15580/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15580/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="9"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="15580">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/physiogel-krem-intensywny-cery-sucha-100ml-4251575904217" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-15580.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/2/4251575904217_T1_4ef3.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="PHYSIOGEL KREM INTENSYWNY CERY SUCHA 100ML" title="PHYSIOGEL KREM INTENSYWNY CERY SUCHA 100ML">

    <div class="amasty-label-container
            amasty-label-container-20-15580-cat            amasty-label-for-15580            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-15580-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15580&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15580&quot;,
                selector: &quot;.amasty-label-container-20-15580-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-15580-cat            amasty-label-for-15580            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-15580-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15580&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15580&quot;,
                selector: &quot;.amasty-label-container-2-15580-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(15580)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/dermokosmetyki_2.svg">
      </div>
      <span class="font-light font-sm mb-1"> Dermo </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/physiogel-krem-intensywny-cery-sucha-100ml-4251575904217">
                    PHYSIOGEL KREM INTENSYWNY CERY SUCHA 100ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6b53d3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6b53d3()" @update-prices-15580.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="15580" data-price-box="product-id-15580"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-15580" data-price-amount="54.97" data-price-type="finalPrice" class="price-wrapper "><span class="price">54,97&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.55 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/physiogel-krem-intensywny-cery-sucha-100ml-4251575904217" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/47521/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/47521/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="10"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="47521">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/holika-holika-zel-aloesowy-99-250-ml-kojacy-wielofunkcyjny-8806334355302" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-47521.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/8/8806334355302_T1_d346.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="HOLIKA HOLIKA żel aloesowy 99% 250 ml - kojący, wielofunkcyjny " title="HOLIKA HOLIKA żel aloesowy 99% 250 ml - kojący, wielofunkcyjny ">

    <div class="amasty-label-container
            amasty-label-container-20-47521-cat            amasty-label-for-47521            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-47521-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47521&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;47521&quot;,
                selector: &quot;.amasty-label-container-20-47521-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-47521-cat            amasty-label-for-47521            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-47521-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47521&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;47521&quot;,
                selector: &quot;.amasty-label-container-2-47521-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(47521)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/holika-holika-zel-aloesowy-99-250-ml-kojacy-wielofunkcyjny-8806334355302">
                    HOLIKA HOLIKA żel aloesowy 99% 250 ml - kojący, wielofunkcyjny                 </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a8f61e11() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8f61e11()" @update-prices-47521.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="47521" data-price-box="product-id-47521"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-47521" data-price-amount="25.38" data-price-type="finalPrice" class="price-wrapper "><span class="price">25,38&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.10 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/holika-holika-zel-aloesowy-99-250-ml-kojacy-wielofunkcyjny-8806334355302" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/9022/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/9022/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="11"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="9022">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/biorepair-plyn-do-plukania-jamy-ustnej-500-ml-8017331029725" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-9022.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/0/8017331029725_T1_9bcb.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Biorepair Płyn do płukania jamy ustnej 500 ml" title="Biorepair Płyn do płukania jamy ustnej 500 ml">

    <div class="amasty-label-container
            amasty-label-container-20-9022-cat            amasty-label-for-9022            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-9022-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;9022&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;9022&quot;,
                selector: &quot;.amasty-label-container-20-9022-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-9022-cat            amasty-label-for-9022            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-9022-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;9022&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;9022&quot;,
                selector: &quot;.amasty-label-container-2-9022-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(9022)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/biorepair-plyn-do-plukania-jamy-ustnej-500-ml-8017331029725">
                    Biorepair Płyn do płukania jamy ustnej 500 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6bbc3a() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6bbc3a()" @update-prices-9022.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="9022" data-price-box="product-id-9022"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-9022" data-price-amount="16.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">16,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.03 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/biorepair-plyn-do-plukania-jamy-ustnej-500-ml-8017331029725" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/28407/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/28407/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="12"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="28407">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/mollers-tran-norweski-gold-250ml-7070866024383" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-28407.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/7/0/7070866024383_T1_19b0.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MÖLLER'S TRAN NORWESKI GOLD 250ML." title="MÖLLER'S TRAN NORWESKI GOLD 250ML.">

    <div class="amasty-label-container
            amasty-label-container-20-28407-cat            amasty-label-for-28407            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-28407-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;28407&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;28407&quot;,
                selector: &quot;.amasty-label-container-20-28407-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-28407-cat            amasty-label-for-28407            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-28407-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;28407&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;28407&quot;,
                selector: &quot;.amasty-label-container-2-28407-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(28407)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/mollers-tran-norweski-gold-250ml-7070866024383">
                    MÖLLER'S TRAN NORWESKI GOLD 250ML.                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6c1687() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6c1687()" @update-prices-28407.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="28407" data-price-box="product-id-28407"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-28407" data-price-amount="30.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">30,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.12 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/mollers-tran-norweski-gold-250ml-7070866024383" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/79/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/79/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="13"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="79">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-very-black-3600531143459" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-79.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/6/3600531143459_T1_9455.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MAYBELLINE MB LASH SENSATIONAL VERY BLACK" title="MAYBELLINE MB LASH SENSATIONAL VERY BLACK">

    <div class="amasty-label-container
            amasty-label-container-20-79-cat            amasty-label-for-79            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-79-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;79&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;79&quot;,
                selector: &quot;.amasty-label-container-20-79-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-79-cat            amasty-label-for-79            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-79-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;79&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;79&quot;,
                selector: &quot;.amasty-label-container-2-79-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(79)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-very-black-3600531143459">
                    MAYBELLINE MB LASH SENSATIONAL VERY BLACK                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a919ed38() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a919ed38()" @update-prices-79.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="79" data-price-box="product-id-79"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-79" data-price-amount="32.09" data-price-type="finalPrice" class="price-wrapper "><span class="price">32,09&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 3.21 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-very-black-3600531143459" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/57956/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/57956/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="14"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="57956">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/kategoria/makijaz-1299/my-secret-mocny-zel-do-brwi-wow-5907747301290" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-57956.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747301290_T1_a0ef.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MY SECRET MOCNY ZEL DO BRWI WOW" title="MY SECRET MOCNY ZEL DO BRWI WOW">

    <div class="amasty-label-container
            amasty-label-container-15-57956-cat            amasty-label-for-57956            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-57956-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;57956&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;57956&quot;,
                selector: &quot;.amasty-label-container-15-57956-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-57956-cat            amasty-label-for-57956            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-57956-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;57956&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;57956&quot;,
                selector: &quot;.amasty-label-container-20-57956-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-35-57956-cat            amasty-label-for-57956            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;35-57956-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;57956&quot;,&quot;label&quot;:35,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;57956&quot;,
                selector: &quot;.amasty-label-container-35-57956-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            1+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(57956)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/kategoria/makijaz-1299/my-secret-mocny-zel-do-brwi-wow-5907747301290">
                    MY SECRET MOCNY ZEL DO BRWI WOW                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6ca0c3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6ca0c3()" @update-prices-57956.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="57956" data-price-box="product-id-57956"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-57956" data-price-amount="16.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">16,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 1.70 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/kategoria/makijaz-1299/my-secret-mocny-zel-do-brwi-wow-5907747301290" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16148/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16148/" class="relative item product product-item product_addtocart_form flex flex-col border border-primary promo-product w-full pt-1 glider-slide"
  data-gslide="15" style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="16148">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/long4lashes-serum-przyspieszajace-wzrost-rzes-3-ml-5900116020419" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-16148.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900116020419_Long4Lashes_serum_przyspieszaj__ce_wzrost_rz__s_3_ml_T2_kopia_a239.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Long4Lashes serum przyspieszające wzrost rzęs 3 ml" title="Long4Lashes serum przyspieszające wzrost rzęs 3 ml">

    <div class="amasty-label-container amasty-label-container-20-16148-cat amasty-label-for-16148 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-16148-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16148&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16148&quot;,
                selector: &quot;.amasty-label-container-20-16148-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-16148-cat amasty-label-for-16148 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-16148-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16148&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16148&quot;,
                selector: &quot;.amasty-label-container-2-16148-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(16148)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/long4lashes-serum-przyspieszajace-wzrost-rzes-3-ml-5900116020419">
                    Long4Lashes serum przyspieszające wzrost rzęs 3 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065add89980() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065add89980()" @update-prices-16148.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="16148" data-price-box="product-id-16148"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-16148" data-price-amount="39.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">39,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-16148" data-price-amount="84.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">84,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 49,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 13.33 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/long4lashes-serum-przyspieszajace-wzrost-rzes-3-ml-5900116020419" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/29/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/29/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="16"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="29">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/loreal-paris-lp-true-match-podklad-n2-3600522862390" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-29.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/6/3600522862390_T1_2815.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="L'OREAL PARIS LP TRUE MATCH PODKŁAD&nbsp; N2" title="L'OREAL PARIS LP TRUE MATCH PODKŁAD&nbsp; N2">

    <div class="amasty-label-container
            amasty-label-container-20-29-cat            amasty-label-for-29            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-29-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;29&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;29&quot;,
                selector: &quot;.amasty-label-container-20-29-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-29-cat            amasty-label-for-29            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-29-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;29&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;29&quot;,
                selector: &quot;.amasty-label-container-2-29-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(29)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/makijaz_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Makijaż </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/loreal-paris-lp-true-match-podklad-n2-3600522862390">
                    L'OREAL PARIS LP TRUE MATCH PODKŁAD&nbsp; N2                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a8f61b8e() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8f61b8e()" @update-prices-29.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="29" data-price-box="product-id-29"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-29" data-price-amount="42.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">42,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 1.43 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/loreal-paris-lp-true-match-podklad-n2-3600522862390" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4201/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4201/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="17"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4201">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/cremobaza-50-krem-zlusz-elzrogow-30g-5907573300153" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4201.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907573300153_T1_75d9.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="CREMOBAZA 50% KREM ZŁUSZ. EL.ZROGOW. 30G" title="CREMOBAZA 50% KREM ZŁUSZ. EL.ZROGOW. 30G">

    <div class="amasty-label-container amasty-label-container-20-4201-cat amasty-label-for-4201 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4201-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4201&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4201&quot;,
                selector: &quot;.amasty-label-container-20-4201-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4201-cat amasty-label-for-4201 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4201-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4201&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4201&quot;,
                selector: &quot;.amasty-label-container-2-4201-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4201)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/cremobaza-50-krem-zlusz-elzrogow-30g-5907573300153">
                    CREMOBAZA 50% KREM ZŁUSZ. EL.ZROGOW. 30G                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6d9f44() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6d9f44()" @update-prices-4201.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4201" data-price-box="product-id-4201"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4201" data-price-amount="15.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">15,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4201" data-price-amount="21.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">21,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 17,89&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 0.53 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/cremobaza-50-krem-zlusz-elzrogow-30g-5907573300153" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/10883/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/10883/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="18"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="10883">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/calvin-klein-ck-euphoria-woman-edp-100ml-88300162505" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-10883.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/8/88300162505_T1_4968.jpeg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="CALVIN KLEIN CK EUPHORIA WOMAN EDP 100ML" title="CALVIN KLEIN CK EUPHORIA WOMAN EDP 100ML">

    <div class="amasty-label-container
            amasty-label-container-29-10883-cat            amasty-label-for-10883            hidden" style="width: 64px !important; height: 36px !important; background: #b61714; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 64px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="1" x-data="{... new Amasty.Label.class.Item({
                id: &quot;29-10883-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;10883&quot;,&quot;label&quot;:29,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:1,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;10883&quot;,
                selector: &quot;.amasty-label-container-29-10883-cat&quot;
            })}">
        <div class="amlabel-text">
            Pomysł na prezent        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-10883-cat            amasty-label-for-10883            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-10883-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;10883&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;10883&quot;,
                selector: &quot;.amasty-label-container-20-10883-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-10883-cat            amasty-label-for-10883            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-10883-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;10883&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;10883&quot;,
                selector: &quot;.amasty-label-container-2-10883-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(10883)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/zapachy_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Zapachy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/calvin-klein-ck-euphoria-woman-edp-100ml-88300162505">
                    CALVIN KLEIN CK EUPHORIA WOMAN EDP 100ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6e0e54() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6e0e54()" @update-prices-10883.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="10883" data-price-box="product-id-10883"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-10883" data-price-amount="184.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">184,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 1.85 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/calvin-klein-ck-euphoria-woman-edp-100ml-88300162505" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13948/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13948/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="19"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="13948">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/pierre-rene-lip-matic-konturowka-dust-07-5901780766573" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-13948.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5901780766573_T1_af35.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="PIERRE RENE LIP MATIC KONTURÓWKA D/UST 07" title="PIERRE RENE LIP MATIC KONTURÓWKA D/UST 07">

    <div class="amasty-label-container
            amasty-label-container-20-13948-cat            amasty-label-for-13948            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-13948-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13948&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13948&quot;,
                selector: &quot;.amasty-label-container-20-13948-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-13948-cat            amasty-label-for-13948            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-13948-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13948&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13948&quot;,
                selector: &quot;.amasty-label-container-2-13948-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(13948)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/makijaz_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Makijaż </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/pierre-rene-lip-matic-konturowka-dust-07-5901780766573">
                    PIERRE RENE LIP MATIC KONTURÓWKA D/UST 07                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a92c46dd() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a92c46dd()" @update-prices-13948.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="13948" data-price-box="product-id-13948"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-13948" data-price-amount="18.7" data-price-type="finalPrice" class="price-wrapper "><span class="price">18,70&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2">
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/pierre-rene-lip-matic-konturowka-dust-07-5901780766573" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2101/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2101/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="20"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="2101">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/calvin-klein-obsession-night-woman-edp-100ml-88300150410" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-2101.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/0/8/088300150410_1_97fd.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML" title="CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML">

    <div class="amasty-label-container
            amasty-label-container-29-2101-cat            amasty-label-for-2101            hidden" style="width: 64px !important; height: 36px !important; background: #b61714; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 64px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="1" x-data="{... new Amasty.Label.class.Item({
                id: &quot;29-2101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2101&quot;,&quot;label&quot;:29,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:1,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2101&quot;,
                selector: &quot;.amasty-label-container-29-2101-cat&quot;
            })}">
        <div class="amlabel-text">
            Pomysł na prezent        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-2101-cat            amasty-label-for-2101            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-2101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2101&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2101&quot;,
                selector: &quot;.amasty-label-container-20-2101-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-2101-cat            amasty-label-for-2101            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-2101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2101&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2101&quot;,
                selector: &quot;.amasty-label-container-2-2101-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(2101)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/zapachy_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Zapachy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/calvin-klein-obsession-night-woman-edp-100ml-88300150410">
                    CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6ea3f3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6ea3f3()" @update-prices-2101.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="2101" data-price-box="product-id-2101"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-2101" data-price-amount="89.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">89,95&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.90 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/calvin-klein-obsession-night-woman-edp-100ml-88300150410" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST

<form method="post" x-on:submit="addToCart(event)" class="product_addtocart_form form mt-[13px] 2xl:mt-[30px]" :action="product.add_to_cart">
  <input type="hidden" name="form_key" :value="product.form_key">
  <input type="hidden" name="product" :value="product.product_id">
  <div class="flex justify-center font-light" x-text="product.header"></div>
  <div class="text-2xl font-bold text-center mb-4 md:text-xl lg:text-base
                                lg:mb-0 xl:text-xl xl:leading-8 xl:mb-[30px]" x-text="countDown(product.promo_will_be_completed_at)"></div>
  <div class="md:flex md:justify-center lg:flex-col xl:flex-row">
    <!-- Product image -->
    <div class="flex relative xl:w-2/5 md:max-w-[240px] 2xl:w-1/2 lg:h-[100px] xl:h-auto">
      <a :href="product.url" class="product photo product-item-photo block mx-auto mb-3 lg:mb-0">
                                                <img class="hover:shadow-sm object-contain
                                                product-image-photo max-h-full" :src="product.image_url" :title="product.name" loading="lazy" width="240" height="300">
                                            </a>
    </div>
    <div class="w-full xl:w-3/5 2xl:w-1/2 flex justify-center">
      <div class="md:max-w-[232px]  flex flex-col items-center">
        <!-- Product name -->
        <div class="items-center justify-center font-semibold text-sm text-center
                                                 mb-2 lg:mb-1 xl:mb-2">
          <a class="font-semibold text-base lg:text-sm xl:text-base" :href="product.url" x-text="product.name"></a>
        </div>
        <!-- Short description -->
        <div x-html="product.short_description" class="product-item-link text-sm text-gray-4
                                                     text-center mb-2 lg:mb-0 xl:mb-2"></div>
        <!-- Price box -->
        <div class="price-box price-final_price min-h-[48px] mb-2 lg:mb-1
                                            xl:mb-2 flex flex-wrap justify-center">
          <span :class="product.lowest_price > product.price ? 'special-price' : 'final-price'">
            <span class="price-container">
              <span data-price-type="finalPrice" class="price-wrapper ">
                <span class="price text-2xl font-medium" x-text="product.price"></span>
              </span>
            </span>
          </span>
          <template x-if="product.regular_price &amp;&amp; product.lowest_price > product.price">
            <span class="old-price ml-2 pt-2">
              <span class="price-container flex flex-col">
                <span data-price-type="oldPrice" class="price-wrapper">
                  <span class="text-base line-through" x-text="product.regular_price"></span>
                </span>
                <span class="price-label normal-case text-xs font-light
                                                            text-gray-4 hidden md:block"> Cena regularna </span>
              </span>
            </span>
          </template>
          <template x-if="product.regular_price &amp;&amp; product.lowest_price > product.price">
            <span class="test2 normal-case text-xs font-light text-gray-4 md:hidden
                                                    w-full text-center"> regular price </span>
          </template>
        </div>
        <!-- Capacity per price -->
        <div class="text-xs text-gray-4 text-center mb-2 lg:mb-1 xl:mb-2">
          <template x-if="product.capacity_per_price">
            <span x-text="product.capacity_per_price"></span>
          </template>
        </div>
        <!-- Historical price -->
        <div class="product-item-link text-xs text-gray-4 text-centermb-2
                                                lg:mb-1 xl:mb-2 text-center">
          <template x-if="product.lowest_price &amp;&amp; product.price < product.lowest_price">
            <div>
              <span class="text-[9px] text-gray-4 leading-[0.875rem]"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki </span>
              <span class="text-xs text-gray-6 line-through" x-text="product.lowest_price"></span>
            </div>
          </template>
        </div>
        <!-- Add to cart -->
        <button class="btn btn-primary w-[188px] md:w-[193px] lg:w-[188px] xl:w-[193px] btn-cart mb-0" :class="loading ? 'is-loading' : ''" aria-label="Dodaj do koszyka">
          <div x-show="!loading" class="h-6 w-6">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
              <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
              <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
              <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
              <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
              <title>cart</title>
            </svg>
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
              <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
              <title>cart_hover</title>
            </svg>
          </div>
          <svg class="w-6 h-6 loader" x-show="loading" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xml:space="preserve" width="32" height="32">
            <path fill="#fff" d="M73 50c0-12.7-10.3-23-23-23S27 37.3 27 50m3.9 0c0-10.5 8.5-19.1 19.1-19.1S69.1 39.5 69.1 50">
              <animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite"></animateTransform>
            </path>
          </svg>
        </button>
      </div>
    </div>
  </div>
  <!-- Progressbar -->
  <template x-if="(product.promo_max_qty - product.promo_sold_qty) > 0">
    <div class="flex flex-wrap md:flex-nowrap lg:flex-wrap justify-between items-center
                                        text-gray-5 text-sm mx-auto px-3 py-[27px] md:py-[46px] lg:py-[17px] xl:py-[46px]
                                        font-light md:max-w-[545px] xl:flex-nowrap xl:max-w-[545px] xl:px-0 md:px-0 lg:px-3">
      <span class="order-1 mb-4 md:mb-0 lg:mb-1 xl:mb-0 flex ml-[25px] md:ml-0
                                            lg:ml-[7px]"> Sprzedano: <span class="ml-1" x-text="product.promo_sold_qty"></span>
      </span>
      <span class="w-full order-6 md:order-3 lg:order-6 xl:order-3 bg-gray-200
                                                relative h-1 rounded-full md:mx-8 lg:mx-0 xl:mx-8">
        <span class="bg-primary absolute top-0 left-0 bottom-0 rounded-full" :style="`width: ${product.promo_sold_qty / product.promo_max_qty * 100}%`"></span>
      </span>
      <span class="order-4 mb-4 md:mb-0 lg:mb-1 xl:mb-0 flex mr-[25px] md:mr-0
                                            lg:mr-[7px] xl:mr-[25px] 2xl:mr-[7px]"> Pozostało: <span class="ml-1" x-text="product.promo_max_qty - product.promo_sold_qty"></span>
      </span>
    </div>
  </template>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/aHR0cHM6Ly9kcm9nZXJpZW5hdHVyYS5wbC9jdXN0b21lci9zZWN0aW9uL2xvYWQvP3NlY3Rpb25zPQ%2C%2C/product/4327657/

<form method="post" x-on:submit="addToCart(event)" class="product_addtocart_form form mt-[13px] 2xl:mt-[30px] glider-slide active visible" :action="product.add_to_cart"
  action="https://drogerienatura.pl/checkout/cart/add/uenc/aHR0cHM6Ly9kcm9nZXJpZW5hdHVyYS5wbC9jdXN0b21lci9zZWN0aW9uL2xvYWQvP3NlY3Rpb25zPQ%2C%2C/product/4327657/" data-gslide="0" style="height: auto; width: 760px;">
  <input type="hidden" name="form_key" :value="product.form_key" value="EL12UEJIYj1eIKvM">
  <input type="hidden" name="product" :value="product.product_id" value="4327657">
  <div class="flex justify-center font-light" x-text="product.header">Superokazja</div>
  <div class="text-2xl font-bold text-center mb-4 md:text-xl lg:text-base
                                lg:mb-0 xl:text-xl xl:leading-8 xl:mb-[30px]" x-text="countDown(product.promo_will_be_completed_at)">Okazja wygasa za 32:31:28</div>
  <div class="md:flex md:justify-center lg:flex-col xl:flex-row">
    <!-- Product image -->
    <div class="flex relative xl:w-2/5 md:max-w-[240px] 2xl:w-1/2 lg:h-[100px] xl:h-auto">
      <a :href="product.url" class="product photo product-item-photo block mx-auto mb-3 lg:mb-0" href="https://drogerienatura.pl/produkt/jantar-galaretka-do-laminacji-wlosow-z-bursztynem-150-g-5900117979716">
                                                <img class="hover:shadow-sm object-contain
                                                product-image-photo max-h-full" :src="product.image_url" :title="product.name" loading="lazy" width="240" height="300" src="https://media.drogerienatura.pl/catalog/product/5/9/5900117979716_1_7b16.png?width=265&amp;height=265&amp;store=default&amp;image-type=image" title="JANTAR Galaretka do laminacji włosów z bursztynem 150 G">
                                            </a>
    </div>
    <div class="w-full xl:w-3/5 2xl:w-1/2 flex justify-center">
      <div class="md:max-w-[232px]  flex flex-col items-center">
        <!-- Product name -->
        <div class="items-center justify-center font-semibold text-sm text-center
                                                 mb-2 lg:mb-1 xl:mb-2">
          <a class="font-semibold text-base lg:text-sm xl:text-base" :href="product.url" x-text="product.name" href="https://drogerienatura.pl/produkt/jantar-galaretka-do-laminacji-wlosow-z-bursztynem-150-g-5900117979716">JANTAR Galaretka do laminacji włosów z bursztynem 150 G</a>
        </div>
        <!-- Short description -->
        <div x-html="product.short_description" class="product-item-link text-sm text-gray-4
                                                     text-center mb-2 lg:mb-0 xl:mb-2"></div>
        <!-- Price box -->
        <div class="price-box price-final_price min-h-[48px] mb-2 lg:mb-1
                                            xl:mb-2 flex flex-wrap justify-center">
          <span :class="product.lowest_price > product.price ? 'special-price' : 'final-price'" class="special-price">
            <span class="price-container">
              <span data-price-type="finalPrice" class="price-wrapper ">
                <span class="price text-2xl font-medium" x-text="product.price">14,99&nbsp;zł</span>
              </span>
            </span>
          </span>
          <template x-if="product.regular_price &amp;&amp; product.lowest_price > product.price">
            <span class="old-price ml-2 pt-2">
              <span class="price-container flex flex-col">
                <span data-price-type="oldPrice" class="price-wrapper">
                  <span class="text-base line-through" x-text="product.regular_price"></span>
                </span>
                <span class="price-label normal-case text-xs font-light
                                                            text-gray-4 hidden md:block"> Cena regularna </span>
              </span>
            </span>
          </template><span class="old-price ml-2 pt-2">
            <span class="price-container flex flex-col">
              <span data-price-type="oldPrice" class="price-wrapper">
                <span class="text-base line-through" x-text="product.regular_price">21,99&nbsp;zł</span>
              </span>
              <span class="price-label normal-case text-xs font-light
                                                            text-gray-4 hidden md:block"> Cena regularna </span>
            </span>
          </span>
          <template x-if="product.regular_price &amp;&amp; product.lowest_price > product.price">
            <span class="test2 normal-case text-xs font-light text-gray-4 md:hidden
                                                    w-full text-center"> regular price </span>
          </template><span class="test2 normal-case text-xs font-light text-gray-4 md:hidden
                                                    w-full text-center"> regular price </span>
        </div>
        <!-- Capacity per price -->
        <div class="text-xs text-gray-4 text-center mb-2 lg:mb-1 xl:mb-2">
          <template x-if="product.capacity_per_price">
            <span x-text="product.capacity_per_price"></span>
          </template><span x-text="product.capacity_per_price">1 g / 0.10 zł</span>
        </div>
        <!-- Historical price -->
        <div class="product-item-link text-xs text-gray-4 text-centermb-2
                                                lg:mb-1 xl:mb-2 text-center">
          <template x-if="product.lowest_price &amp;&amp; product.price < product.lowest_price">
            <div>
              <span class="text-[9px] text-gray-4 leading-[0.875rem]"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki </span>
              <span class="text-xs text-gray-6 line-through" x-text="product.lowest_price"></span>
            </div>
          </template>
          <div>
            <span class="text-[9px] text-gray-4 leading-[0.875rem]"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki </span>
            <span class="text-xs text-gray-6 line-through" x-text="product.lowest_price">15,95&nbsp;zł</span>
          </div>
        </div>
        <!-- Add to cart -->
        <button class="btn btn-primary w-[188px] md:w-[193px] lg:w-[188px] xl:w-[193px] btn-cart mb-0" :class="loading ? 'is-loading' : ''" aria-label="Dodaj do koszyka">
          <div x-show="!loading" class="h-6 w-6">
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
              <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
              <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
              <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
              <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
              <title>cart</title>
            </svg>
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
              <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
              <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
              <title>cart_hover</title>
            </svg>
          </div>
          <svg class="w-6 h-6 loader" x-show="loading" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xml:space="preserve" width="32" height="32" style="display: none;">
            <path fill="#fff" d="M73 50c0-12.7-10.3-23-23-23S27 37.3 27 50m3.9 0c0-10.5 8.5-19.1 19.1-19.1S69.1 39.5 69.1 50">
              <animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite"></animateTransform>
            </path>
          </svg>
        </button>
      </div>
    </div>
  </div>
  <!-- Progressbar -->
  <template x-if="(product.promo_max_qty - product.promo_sold_qty) > 0">
    <div class="flex flex-wrap md:flex-nowrap lg:flex-wrap justify-between items-center
                                        text-gray-5 text-sm mx-auto px-3 py-[27px] md:py-[46px] lg:py-[17px] xl:py-[46px]
                                        font-light md:max-w-[545px] xl:flex-nowrap xl:max-w-[545px] xl:px-0 md:px-0 lg:px-3">
      <span class="order-1 mb-4 md:mb-0 lg:mb-1 xl:mb-0 flex ml-[25px] md:ml-0
                                            lg:ml-[7px]"> Sprzedano: <span class="ml-1" x-text="product.promo_sold_qty"></span>
      </span>
      <span class="w-full order-6 md:order-3 lg:order-6 xl:order-3 bg-gray-200
                                                relative h-1 rounded-full md:mx-8 lg:mx-0 xl:mx-8">
        <span class="bg-primary absolute top-0 left-0 bottom-0 rounded-full" :style="`width: ${product.promo_sold_qty / product.promo_max_qty * 100}%`"></span>
      </span>
      <span class="order-4 mb-4 md:mb-0 lg:mb-1 xl:mb-0 flex mr-[25px] md:mr-0
                                            lg:mr-[7px] xl:mr-[25px] 2xl:mr-[7px]"> Pozostało: <span class="ml-1" x-text="product.promo_max_qty - product.promo_sold_qty"></span>
      </span>
    </div>
  </template>
  <div class="flex flex-wrap md:flex-nowrap lg:flex-wrap justify-between items-center
                                        text-gray-5 text-sm mx-auto px-3 py-[27px] md:py-[46px] lg:py-[17px] xl:py-[46px]
                                        font-light md:max-w-[545px] xl:flex-nowrap xl:max-w-[545px] xl:px-0 md:px-0 lg:px-3">
    <span class="order-1 mb-4 md:mb-0 lg:mb-1 xl:mb-0 flex ml-[25px] md:ml-0
                                            lg:ml-[7px]"> Sprzedano: <span class="ml-1" x-text="product.promo_sold_qty">32</span>
    </span>
    <span class="w-full order-6 md:order-3 lg:order-6 xl:order-3 bg-gray-200
                                                relative h-1 rounded-full md:mx-8 lg:mx-0 xl:mx-8">
      <span class="bg-primary absolute top-0 left-0 bottom-0 rounded-full" :style="`width: ${product.promo_sold_qty / product.promo_max_qty * 100}%`" style="width: 32%"></span>
    </span>
    <span class="order-4 mb-4 md:mb-0 lg:mb-1 xl:mb-0 flex mr-[25px] md:mr-0
                                            lg:mr-[7px] xl:mr-[25px] 2xl:mr-[7px]"> Pozostało: <span class="ml-1" x-text="product.promo_max_qty - product.promo_sold_qty">68</span>
    </span>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/35648/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/35648/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide active visible" data-gslide="0"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="35648">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/bielenda-vegan-smoothie-regenerujacy-balsam-do-ciala-borowka-kiwi-400-ml-5902169045616" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-35648.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5902169045616_T1_10c8.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Bielenda Vegan Smoothie Regenerujący balsam do ciała borówka + kiwi 400 ml" title="Bielenda Vegan Smoothie Regenerujący balsam do ciała borówka + kiwi 400 ml">

    <div class="amasty-label-container amasty-label-container-22-35648-cat amasty-label-for-35648 hidden visible-amasty" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-35648-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;35648&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;35648&quot;,
                selector: &quot;.amasty-label-container-22-35648-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-35648-cat amasty-label-for-35648 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-35648-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;35648&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;35648&quot;,
                selector: &quot;.amasty-label-container-2-35648-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(35648)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Balsamy, kremy i masła </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/bielenda-vegan-smoothie-regenerujacy-balsam-do-ciala-borowka-kiwi-400-ml-5902169045616">
                    Bielenda Vegan Smoothie Regenerujący balsam do ciała borówka + kiwi 400 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3e7c9ec() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3e7c9ec()" @update-prices-35648.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="35648" data-price-box="product-id-35648"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-35648" data-price-amount="17.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">17,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-35648" data-price-amount="26.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">26,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 20,23&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.04 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/bielenda-vegan-smoothie-regenerujacy-balsam-do-ciala-borowka-kiwi-400-ml-5902169045616" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/51819/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/51819/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="1"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="51819">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/loreal-paris-lp-color-riche-satin-124-3600523801992" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-51819.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/6/3600523801992_T1_a4a5.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="L'OREAL PARIS LP COLOR RICHE SATIN 124" title="L'OREAL PARIS LP COLOR RICHE SATIN 124">

    <div class="amasty-label-container
            amasty-label-container-22-51819-cat            amasty-label-for-51819            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-51819-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;51819&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;51819&quot;,
                selector: &quot;.amasty-label-container-22-51819-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-51819-cat            amasty-label-for-51819            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-51819-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;51819&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;51819&quot;,
                selector: &quot;.amasty-label-container-2-51819-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(51819)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/loreal-paris-lp-color-riche-satin-124-3600523801992">
                    L'OREAL PARIS LP COLOR RICHE SATIN 124                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3e862cf() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3e862cf()" @update-prices-51819.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="51819" data-price-box="product-id-51819"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-51819" data-price-amount="42.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">42,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 8.60 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/loreal-paris-lp-color-riche-satin-124-3600523801992" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/23209/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/23209/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="2"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="23209">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/syoss-repair-boost-intensywnie-regenerujaca-maska-do-wlosow-500-ml-9000101630565" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-23209.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/9/0/9000101630565_T1_b627.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Syoss Repair Boost Intensywnie regenerująca maska do włosów 500 ml" title="Syoss Repair Boost Intensywnie regenerująca maska do włosów 500 ml">

    <div class="amasty-label-container
            amasty-label-container-22-23209-cat            amasty-label-for-23209            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-23209-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;23209&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;23209&quot;,
                selector: &quot;.amasty-label-container-22-23209-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(23209)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/syoss-repair-boost-intensywnie-regenerujaca-maska-do-wlosow-500-ml-9000101630565">
                    Syoss Repair Boost Intensywnie regenerująca maska do włosów 500 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3e8e1dc() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3e8e1dc()" @update-prices-23209.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="23209" data-price-box="product-id-23209"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-23209" data-price-amount="25.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">25,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.05 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/syoss-repair-boost-intensywnie-regenerujaca-maska-do-wlosow-500-ml-9000101630565" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/10038/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/10038/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="3"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="10038">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/dove-deeply-nourishing-pielegnujace-mydlo-w-plynie-z-pompka-250-ml-4000388177000" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-10038.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/0/4000388177000_T1_67c1.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Dove Deeply Nourishing Pielęgnujące mydło w płynie z pompką 250 ml" title="Dove Deeply Nourishing Pielęgnujące mydło w płynie z pompką 250 ml">

    <div class="amasty-label-container
            amasty-label-container-20-10038-cat            amasty-label-for-10038            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-10038-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;10038&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;10038&quot;,
                selector: &quot;.amasty-label-container-20-10038-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-10038-cat            amasty-label-for-10038            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-10038-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;10038&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;10038&quot;,
                selector: &quot;.amasty-label-container-22-10038-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(10038)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/dove-deeply-nourishing-pielegnujace-mydlo-w-plynie-z-pompka-250-ml-4000388177000">
                    Dove Deeply Nourishing Pielęgnujące mydło w płynie z pompką 250 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3e94e1a() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3e94e1a()" @update-prices-10038.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="10038" data-price-box="product-id-10038"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-10038" data-price-amount="6.89" data-price-type="finalPrice" class="price-wrapper "><span class="price">6,89&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.03 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/dove-deeply-nourishing-pielegnujace-mydlo-w-plynie-z-pompka-250-ml-4000388177000" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/31235/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/31235/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="4"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="31235">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/syoss-beauty-elixir-absolute-oil-olejek-do-wlosow-zniszczonych-100-ml-9000100692083" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-31235.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/9/0/9000100692083_T1_b03e.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Syoss Beauty Elixir Absolute Oil Olejek do włosów zniszczonych 100 ml" title="Syoss Beauty Elixir Absolute Oil Olejek do włosów zniszczonych 100 ml">

    <div class="amasty-label-container
            amasty-label-container-20-31235-cat            amasty-label-for-31235            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-31235-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;31235&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;31235&quot;,
                selector: &quot;.amasty-label-container-20-31235-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-31235-cat            amasty-label-for-31235            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-31235-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;31235&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;31235&quot;,
                selector: &quot;.amasty-label-container-22-31235-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(31235)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/syoss-beauty-elixir-absolute-oil-olejek-do-wlosow-zniszczonych-100-ml-9000100692083">
                    Syoss Beauty Elixir Absolute Oil Olejek do włosów zniszczonych 100 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3e9c975() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3e9c975()" @update-prices-31235.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="31235" data-price-box="product-id-31235"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-31235" data-price-amount="33.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">33,49&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.33 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/syoss-beauty-elixir-absolute-oil-olejek-do-wlosow-zniszczonych-100-ml-9000100692083" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/11454/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/11454/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="5"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="11454">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/timotei-2w1-intensywna-pielegnacja-szampon-z-odzywka-400-ml-8711700631921" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-11454.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/7/8711700631921_T1_1bd3.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Timotei 2w1 Intensywna Pielęgnacja Szampon z odżywką 400 ml" title="Timotei 2w1 Intensywna Pielęgnacja Szampon z odżywką 400 ml">

    <div class="amasty-label-container
            amasty-label-container-20-11454-cat            amasty-label-for-11454            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-11454-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;11454&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;11454&quot;,
                selector: &quot;.amasty-label-container-20-11454-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-11454-cat            amasty-label-for-11454            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-11454-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;11454&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;11454&quot;,
                selector: &quot;.amasty-label-container-22-11454-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(11454)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/timotei-2w1-intensywna-pielegnacja-szampon-z-odzywka-400-ml-8711700631921">
                    Timotei 2w1 Intensywna Pielęgnacja Szampon z odżywką 400 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3ea3d15() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3ea3d15()" @update-prices-11454.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="11454" data-price-box="product-id-11454"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-11454" data-price-amount="11.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">11,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.03 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/timotei-2w1-intensywna-pielegnacja-szampon-z-odzywka-400-ml-8711700631921" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/47546/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/47546/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="6"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="47546">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/ziaja-jeju-dwufazowa-odzywka-dwlspray-125ml-5901887045236" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-47546.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5901887045236_T1_b793.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="ZIAJA JEJU DWUFAZOWA ODZYWKA D/WL.SPRAY 125ML" title="ZIAJA JEJU DWUFAZOWA ODZYWKA D/WL.SPRAY 125ML">

    <div class="amasty-label-container
            amasty-label-container-20-47546-cat            amasty-label-for-47546            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-47546-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47546&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;47546&quot;,
                selector: &quot;.amasty-label-container-20-47546-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-47546-cat            amasty-label-for-47546            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-47546-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47546&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;47546&quot;,
                selector: &quot;.amasty-label-container-22-47546-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(47546)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/ziaja-jeju-dwufazowa-odzywka-dwlspray-125ml-5901887045236">
                    ZIAJA JEJU DWUFAZOWA ODZYWKA D/WL.SPRAY 125ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3eab7a6() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3eab7a6()" @update-prices-47546.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="47546" data-price-box="product-id-47546"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-47546" data-price-amount="11.29" data-price-type="finalPrice" class="price-wrapper "><span class="price">11,29&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.09 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/ziaja-jeju-dwufazowa-odzywka-dwlspray-125ml-5901887045236" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/53101/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/53101/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="7"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="53101">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/marion-natura-silk-odzrozswl-spr150m-5902853007364" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-53101.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5902853007364_T1_14a9.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MARION NATURA SILK ODZ.ROZS.WL SPR.150M" title="MARION NATURA SILK ODZ.ROZS.WL SPR.150M">

    <div class="amasty-label-container
            amasty-label-container-20-53101-cat            amasty-label-for-53101            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-53101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;53101&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;53101&quot;,
                selector: &quot;.amasty-label-container-20-53101-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-53101-cat            amasty-label-for-53101            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-53101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;53101&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;53101&quot;,
                selector: &quot;.amasty-label-container-22-53101-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(53101)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/marion-natura-silk-odzrozswl-spr150m-5902853007364">
                    MARION NATURA SILK ODZ.ROZS.WL SPR.150M                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3eb35be() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3eb35be()" @update-prices-53101.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="53101" data-price-box="product-id-53101"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-53101" data-price-amount="9.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">9,49&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.06 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/marion-natura-silk-odzrozswl-spr150m-5902853007364" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13945/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13945/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="8"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="13945">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/cthru-harmony-bliss-dezodorant-w-sprayu-150-ml-5201314153443" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-13945.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/2/5201314153443_T1_42d7.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="C-Thru Harmony Bliss Dezodorant w sprayu 150 ml" title="C-Thru Harmony Bliss Dezodorant w sprayu 150 ml">

    <div class="amasty-label-container
            amasty-label-container-20-13945-cat            amasty-label-for-13945            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-13945-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13945&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13945&quot;,
                selector: &quot;.amasty-label-container-20-13945-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-13945-cat            amasty-label-for-13945            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-13945-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13945&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;13945&quot;,
                selector: &quot;.amasty-label-container-22-13945-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-13945-cat            amasty-label-for-13945            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-13945-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13945&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13945&quot;,
                selector: &quot;.amasty-label-container-2-13945-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(13945)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Dezodoranty </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/cthru-harmony-bliss-dezodorant-w-sprayu-150-ml-5201314153443">
                    C-Thru Harmony Bliss Dezodorant w sprayu 150 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3ebae79() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3ebae79()" @update-prices-13945.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="13945" data-price-box="product-id-13945"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-13945" data-price-amount="10.79" data-price-type="finalPrice" class="price-wrapper "><span class="price">10,79&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.07 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/cthru-harmony-bliss-dezodorant-w-sprayu-150-ml-5201314153443" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/29825/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/29825/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="9"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="29825">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/joanna-tradycyjna-receptura-szampon-tonizujacowzmacniajacy-300-ml-5901018017378" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-29825.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5901018017378_T1_8140.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Joanna Tradycyjna Receptura Szampon tonizująco-wzmacniający 300 ml" title="Joanna Tradycyjna Receptura Szampon tonizująco-wzmacniający 300 ml">

    <div class="amasty-label-container
            amasty-label-container-20-29825-cat            amasty-label-for-29825            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-29825-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;29825&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;29825&quot;,
                selector: &quot;.amasty-label-container-20-29825-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-22-29825-cat            amasty-label-for-29825            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;22-29825-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;29825&quot;,&quot;label&quot;:22,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;29825&quot;,
                selector: &quot;.amasty-label-container-22-29825-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            2+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(29825)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/joanna-tradycyjna-receptura-szampon-tonizujacowzmacniajacy-300-ml-5901018017378">
                    Joanna Tradycyjna Receptura Szampon tonizująco-wzmacniający 300 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66061d3ec5691() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66061d3ec5691()" @update-prices-29825.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="29825" data-price-box="product-id-29825"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-29825" data-price-amount="7.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.03 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/joanna-tradycyjna-receptura-szampon-tonizujacowzmacniajacy-300-ml-5901018017378" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330482/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330482/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide active visible" data-gslide="0"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330482">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/daso-bronzer-wyp-gorzka-cz-4g-5907747332508" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330482.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747332508_daso_bronzer_gorzka_czekolada_4g0001_58b9.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="DASO BRONZER WYP. GORZKA CZ. 4G" title="DASO BRONZER WYP. GORZKA CZ. 4G">

    <div class="amasty-label-container
            amasty-label-container-15-4330482-cat            amasty-label-for-4330482            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-4330482-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330482&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330482&quot;,
                selector: &quot;.amasty-label-container-15-4330482-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-4330482-cat            amasty-label-for-4330482            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4330482-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330482&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330482&quot;,
                selector: &quot;.amasty-label-container-20-4330482-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-35-4330482-cat            amasty-label-for-4330482            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;35-4330482-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330482&quot;,&quot;label&quot;:35,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;4330482&quot;,
                selector: &quot;.amasty-label-container-35-4330482-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            1+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330482)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/daso-bronzer-wyp-gorzka-cz-4g-5907747332508">
                    DASO BRONZER WYP. GORZKA CZ. 4G                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9420d69() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9420d69()" @update-prices-4330482.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330482" data-price-box="product-id-4330482"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4330482" data-price-amount="36.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">36,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 9.25 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/daso-bronzer-wyp-gorzka-cz-4g-5907747332508" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330847/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330847/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="1"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330847">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/domofix-plyn-do-prania-czarnego-15l-5907747347854" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330847.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747347854_1_8e95.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="DOMOFIX PŁYN DO PRANIA CZARNEGO 1,5L" title="DOMOFIX PŁYN DO PRANIA CZARNEGO 1,5L">

    <div class="amasty-label-container
            amasty-label-container-19-4330847-cat            amasty-label-for-4330847            hidden" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4330847-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330847&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330847&quot;,
                selector: &quot;.amasty-label-container-19-4330847-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330847)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Płyny do prania </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/domofix-plyn-do-prania-czarnego-15l-5907747347854">
                    DOMOFIX PŁYN DO PRANIA CZARNEGO 1,5L                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa709815() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa709815()" @update-prices-4330847.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330847" data-price-box="product-id-4330847"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4330847" data-price-amount="18.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">18,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.01 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/domofix-plyn-do-prania-czarnego-15l-5907747347854" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331206/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331206/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="2"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4331206">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/skinimal-regenerujaco-ochronny-krem-do-rak-120-ml-5907747348097" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4331206.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747348097_skinimal_krem_do_rak_120ml_0001_f462.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SKINIMAL Regenerująco ochronny krem do rąk 120 ml" title="SKINIMAL Regenerująco ochronny krem do rąk 120 ml">

    <div class="amasty-label-container
            amasty-label-container-15-4331206-cat            amasty-label-for-4331206            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-4331206-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331206&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331206&quot;,
                selector: &quot;.amasty-label-container-15-4331206-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-19-4331206-cat            amasty-label-for-4331206            hidden" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4331206-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331206&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331206&quot;,
                selector: &quot;.amasty-label-container-19-4331206-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-32-4331206-cat            amasty-label-for-4331206            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;32-4331206-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331206&quot;,&quot;label&quot;:32,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Drugi%20produkt%20za%2050%25%20ceny&quot;}},
                productId: &quot;4331206&quot;,
                selector: &quot;.amasty-label-container-32-4331206-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            1+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4331206)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Kremy i oliwki </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/skinimal-regenerujaco-ochronny-krem-do-rak-120-ml-5907747348097">
                    SKINIMAL Regenerująco ochronny krem do rąk 120 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa70fd5f() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa70fd5f()" @update-prices-4331206.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4331206" data-price-box="product-id-4331206"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4331206" data-price-amount="15.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">15,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.13 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/skinimal-regenerujaco-ochronny-krem-do-rak-120-ml-5907747348097" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330848/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330848/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="3"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330848">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/domofix-plyn-do-prania-kolorow-15l-5907747347847" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330848.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747347847_1_01a8.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="DOMOFIX PŁYN DO PRANIA KOLORÓW 1,5L" title="DOMOFIX PŁYN DO PRANIA KOLORÓW 1,5L">

    <div class="amasty-label-container
            amasty-label-container-19-4330848-cat            amasty-label-for-4330848            hidden" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4330848-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330848&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330848&quot;,
                selector: &quot;.amasty-label-container-19-4330848-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330848)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Płyny do prania </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/domofix-plyn-do-prania-kolorow-15l-5907747347847">
                    DOMOFIX PŁYN DO PRANIA KOLORÓW 1,5L                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa717dce() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa717dce()" @update-prices-4330848.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330848" data-price-box="product-id-4330848"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4330848" data-price-amount="18.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">18,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.01 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/domofix-plyn-do-prania-kolorow-15l-5907747347847" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330876/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330876/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="4"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330876">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/bugatti-performance-deep-blue-edt-100ml-4051395413179" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330876.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/B/U/BUGATTI_Performance_blue_3d_zus_2000_10af.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="BUGATTI Performance Deep Blue EdT 100ml" title="BUGATTI Performance Deep Blue EdT 100ml">

    <div class="amasty-label-container
            amasty-label-container-19-4330876-cat            amasty-label-for-4330876            hidden" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4330876-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330876&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330876&quot;,
                selector: &quot;.amasty-label-container-19-4330876-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330876)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/zapachy_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Zapachy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/bugatti-performance-deep-blue-edt-100ml-4051395413179">
                    BUGATTI Performance Deep Blue EdT 100ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa71cf29() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa71cf29()" @update-prices-4330876.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330876" data-price-box="product-id-4330876"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4330876" data-price-amount="119.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">119,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 0.33 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/bugatti-performance-deep-blue-edt-100ml-4051395413179" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330483/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330483/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="5"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330483">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/daso-puder-wyp-ksiezyc-posw-4g-5907747332454" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330483.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747332454_daso_puder_ksiezycowa_poswiata_4g0001_kopia_a8b6.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="DASO PUDER WYP. KSIĘŻYC. POŚW. 4G" title="DASO PUDER WYP. KSIĘŻYC. POŚW. 4G">

    <div class="amasty-label-container
            amasty-label-container-15-4330483-cat            amasty-label-for-4330483            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-4330483-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330483&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330483&quot;,
                selector: &quot;.amasty-label-container-15-4330483-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-4330483-cat            amasty-label-for-4330483            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4330483-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330483&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330483&quot;,
                selector: &quot;.amasty-label-container-20-4330483-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-35-4330483-cat            amasty-label-for-4330483            hidden" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;35-4330483-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330483&quot;,&quot;label&quot;:35,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Trzeci%20produkt%20za%201%20z%C5%82&quot;}},
                productId: &quot;4330483&quot;,
                selector: &quot;.amasty-label-container-35-4330483-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            1+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330483)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/daso-puder-wyp-ksiezyc-posw-4g-5907747332454">
                    DASO PUDER WYP. KSIĘŻYC. POŚW. 4G                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9448651() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9448651()" @update-prices-4330483.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330483" data-price-box="product-id-4330483"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4330483" data-price-amount="36.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">36,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 9.25 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/daso-puder-wyp-ksiezyc-posw-4g-5907747332454" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4329338/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4329338/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="6"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4329338">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/pur-balsam-nagietek-750ml-9000101553949" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4329338.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/9/0/9000101553949_67f7.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="PUR BALSAM NAGIETEK 750ML" title="PUR BALSAM NAGIETEK 750ML">
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4329338)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/pur-balsam-nagietek-750ml-9000101553949">
                    PUR BALSAM NAGIETEK 750ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa72240e() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa72240e()" @update-prices-4329338.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4329338" data-price-box="product-id-4329338"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4329338" data-price-amount="7.89" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,89&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2">
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/pur-balsam-nagietek-750ml-9000101553949" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2689/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2689/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="7"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="2689">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/sensique-multidimensional-face-palette-paleta-do-konturowania-twarzy-16-g-5907747329447" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-2689.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/S/_/S_MULTI_o_5907747329447_kopia_2b71.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SENSIQUE MULTIDIMENSIONAL FACE PALETTE PALETA DO KONTUROWANIA TWARZY 16 g" title="SENSIQUE MULTIDIMENSIONAL FACE PALETTE PALETA DO KONTUROWANIA TWARZY 16 g">

    <div class="amasty-label-container
            amasty-label-container-15-2689-cat            amasty-label-for-2689            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-2689-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2689&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2689&quot;,
                selector: &quot;.amasty-label-container-15-2689-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(2689)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> SENSIQUE </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/sensique-multidimensional-face-palette-paleta-do-konturowania-twarzy-16-g-5907747329447">
                    SENSIQUE MULTIDIMENSIONAL FACE PALETTE PALETA DO KONTUROWANIA TWARZY 16 g                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9469862() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9469862()" @update-prices-2689.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="2689" data-price-box="product-id-2689"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-2689" data-price-amount="44.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">44,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 4.50 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/sensique-multidimensional-face-palette-paleta-do-konturowania-twarzy-16-g-5907747329447" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331212/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331212/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="8"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4331212">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/garnier-krem-do-rak-hand-repair-75-ml-intensywna-regeneracja-suchej-skory-3600542561389" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4331212.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/B/o/Body_Hand_Repair_1350x1800_1bed.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="GARNIER KREM DO RĄK HAND REPAIR  75 ML intensywna regeneracja suchej skóry" title="GARNIER KREM DO RĄK HAND REPAIR  75 ML intensywna regeneracja suchej skóry">

    <div class="amasty-label-container
            amasty-label-container-19-4331212-cat            amasty-label-for-4331212            hidden" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4331212-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331212&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331212&quot;,
                selector: &quot;.amasty-label-container-19-4331212-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4331212)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Kremy i oliwki </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/garnier-krem-do-rak-hand-repair-75-ml-intensywna-regeneracja-suchej-skory-3600542561389">
                    GARNIER KREM DO RĄK HAND REPAIR  75 ML intensywna regeneracja suchej skóry                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a9108996() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a9108996()" @update-prices-4331212.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4331212" data-price-box="product-id-4331212"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4331212" data-price-amount="19.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">19,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.27 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/garnier-krem-do-rak-hand-repair-75-ml-intensywna-regeneracja-suchej-skory-3600542561389" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330918/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330918/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="9"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330918">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/loreal-panorama-maskara-tusz-do-rzes-105ml-30149649" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330918.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/L/o/Loreal_nowo_____Panorama_2_a97b.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="L'OREAL PANORAMA MASKARA - Tusz do rzęs, 10,5ml" title="L'OREAL PANORAMA MASKARA - Tusz do rzęs, 10,5ml">

    <div class="amasty-label-container amasty-label-container-19-4330918-cat amasty-label-for-4330918 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4330918-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330918&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330918&quot;,
                selector: &quot;.amasty-label-container-19-4330918-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-20-4330918-cat amasty-label-for-4330918 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4330918-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330918&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330918&quot;,
                selector: &quot;.amasty-label-container-20-4330918-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4330918-cat amasty-label-for-4330918 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4330918-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330918&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330918&quot;,
                selector: &quot;.amasty-label-container-2-4330918-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330918)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Tusze do rzęs </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/loreal-panorama-maskara-tusz-do-rzes-105ml-30149649">
                    L'OREAL PANORAMA MASKARA - Tusz do rzęs, 10,5ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065ad6ccdc1() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065ad6ccdc1()" @update-prices-4330918.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330918" data-price-box="product-id-4330918"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4330918" data-price-amount="49.59" data-price-type="finalPrice" class="price-wrapper "><span class="price">49,59&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4330918" data-price-amount="69.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">69,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 49,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 4.96 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/loreal-panorama-maskara-tusz-do-rzes-105ml-30149649" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16148/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16148/"
  class="relative item product product-item product_addtocart_form flex flex-col border border-primary promo-product w-full pt-1 glider-slide active visible" data-gslide="0" style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="16148">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/long4lashes-serum-przyspieszajace-wzrost-rzes-3-ml-5900116020419" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-16148.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900116020419_Long4Lashes_serum_przyspieszaj__ce_wzrost_rz__s_3_ml_T2_kopia_a239.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Long4Lashes serum przyspieszające wzrost rzęs 3 ml" title="Long4Lashes serum przyspieszające wzrost rzęs 3 ml">

    <div class="amasty-label-container amasty-label-container-20-16148-cat amasty-label-for-16148 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-16148-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16148&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16148&quot;,
                selector: &quot;.amasty-label-container-20-16148-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-16148-cat amasty-label-for-16148 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-16148-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16148&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16148&quot;,
                selector: &quot;.amasty-label-container-2-16148-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(16148)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/long4lashes-serum-przyspieszajace-wzrost-rzes-3-ml-5900116020419">
                    Long4Lashes serum przyspieszające wzrost rzęs 3 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065add89980() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065add89980()" @update-prices-16148.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="16148" data-price-box="product-id-16148"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-16148" data-price-amount="39.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">39,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-16148" data-price-amount="84.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">84,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 49,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 13.33 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/long4lashes-serum-przyspieszajace-wzrost-rzes-3-ml-5900116020419" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330918/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4330918/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="1"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4330918">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/loreal-panorama-maskara-tusz-do-rzes-105ml-30149649" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4330918.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/L/o/Loreal_nowo_____Panorama_2_a97b.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="L'OREAL PANORAMA MASKARA - Tusz do rzęs, 10,5ml" title="L'OREAL PANORAMA MASKARA - Tusz do rzęs, 10,5ml">

    <div class="amasty-label-container amasty-label-container-19-4330918-cat amasty-label-for-4330918 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4330918-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330918&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330918&quot;,
                selector: &quot;.amasty-label-container-19-4330918-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-20-4330918-cat amasty-label-for-4330918 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4330918-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330918&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330918&quot;,
                selector: &quot;.amasty-label-container-20-4330918-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4330918-cat amasty-label-for-4330918 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4330918-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4330918&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4330918&quot;,
                selector: &quot;.amasty-label-container-2-4330918-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4330918)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Tusze do rzęs </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/loreal-panorama-maskara-tusz-do-rzes-105ml-30149649">
                    L'OREAL PANORAMA MASKARA - Tusz do rzęs, 10,5ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065ad6ccdc1() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065ad6ccdc1()" @update-prices-4330918.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4330918" data-price-box="product-id-4330918"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4330918" data-price-amount="49.59" data-price-type="finalPrice" class="price-wrapper "><span class="price">49,59&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4330918" data-price-amount="69.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">69,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 49,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 4.96 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/loreal-panorama-maskara-tusz-do-rzes-105ml-30149649" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/109/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/109/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible"
  style="display: none; height: auto; width: 219.429px;" data-gslide="2">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="109">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-maskara-sky-high-30166967" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-109.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/0/30166967_T1_9c8c.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MAYBELLINE MB LASH SENSATIONAL MASKARA SKY HIGH" title="MAYBELLINE MB LASH SENSATIONAL MASKARA SKY HIGH">

    <div class="amasty-label-container
            amasty-label-container-20-109-cat            amasty-label-for-109            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-109-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;109&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;109&quot;,
                selector: &quot;.amasty-label-container-20-109-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-109-cat            amasty-label-for-109            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-109-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;109&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;109&quot;,
                selector: &quot;.amasty-label-container-2-109-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(109)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-maskara-sky-high-30166967">
                    MAYBELLINE MB LASH SENSATIONAL MASKARA SKY HIGH                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7335da() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7335da()" @update-prices-109.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="109" data-price-box="product-id-109"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-109" data-price-amount="38.02" data-price-type="finalPrice" class="price-wrapper "><span class="price">38,02&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 3.80 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/maybelline-mb-lash-sensational-maskara-sky-high-30166967" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16016/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16016/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="3"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="16016">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/blendamed-3d-white-classic-fresh-pasta-do-zebow-75ml-8006540792971" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-16016.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/0/8006540792971_T1_ddb8.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Blend-a-med 3D White Classic Fresh Pasta do zębów 75ml" title="Blend-a-med 3D White Classic Fresh Pasta do zębów 75ml">

    <div class="amasty-label-container amasty-label-container-20-16016-cat amasty-label-for-16016 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-16016-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16016&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16016&quot;,
                selector: &quot;.amasty-label-container-20-16016-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-16016-cat amasty-label-for-16016 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-16016-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16016&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16016&quot;,
                selector: &quot;.amasty-label-container-2-16016-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(16016)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/blendamed-3d-white-classic-fresh-pasta-do-zebow-75ml-8006540792971">
                    Blend-a-med 3D White Classic Fresh Pasta do zębów 75ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa738da3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa738da3()" @update-prices-16016.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="16016" data-price-box="product-id-16016"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-16016" data-price-amount="6.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">6,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-16016" data-price-amount="8.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">8,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 7,09&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.09 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/blendamed-3d-white-classic-fresh-pasta-do-zebow-75ml-8006540792971" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2860/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2860/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="4"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="2860">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/essence-ess-i-love-crazy-volume-tusz-01-4250587739084" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-2860.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/2/4250587739084_T1_5066.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="ESSENCE ESS. I LOVE CRAZY VOLUME TUSZ 01" title="ESSENCE ESS. I LOVE CRAZY VOLUME TUSZ 01">

    <div class="amasty-label-container amasty-label-container-20-2860-cat amasty-label-for-2860 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-2860-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2860&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2860&quot;,
                selector: &quot;.amasty-label-container-20-2860-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-2860-cat amasty-label-for-2860 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-2860-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2860&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2860&quot;,
                selector: &quot;.amasty-label-container-2-2860-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(2860)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/makijaz_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Makijaż </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/essence-ess-i-love-crazy-volume-tusz-01-4250587739084">
                    ESSENCE ESS. I LOVE CRAZY VOLUME TUSZ 01                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a8e530b7() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8e530b7()" @update-prices-2860.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="2860" data-price-box="product-id-2860"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-2860" data-price-amount="10.92" data-price-type="finalPrice" class="price-wrapper "><span class="price">10,92&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-2860" data-price-amount="15.49" data-price-type="oldPrice" class="price-wrapper "><span class="price">15,49&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 11,26&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 1.21 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/essence-ess-i-love-crazy-volume-tusz-01-4250587739084" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/26416/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/26416/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible"
  style="display: none; height: auto; width: 219.429px;" data-gslide="5">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="26416">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/catrice-hd-liquid-coverage-podklad-010-4250947598283" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-26416.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/2/4250947598283_T1_da30.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="CATRICE HD LIQUID COVERAGE PODKLAD 010" title="CATRICE HD LIQUID COVERAGE PODKLAD 010">

    <div class="amasty-label-container
            amasty-label-container-20-26416-cat            amasty-label-for-26416            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-26416-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;26416&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;26416&quot;,
                selector: &quot;.amasty-label-container-20-26416-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-26416-cat            amasty-label-for-26416            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-26416-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;26416&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;26416&quot;,
                selector: &quot;.amasty-label-container-2-26416-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(26416)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/makijaz_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Makijaż </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/catrice-hd-liquid-coverage-podklad-010-4250947598283">
                    CATRICE HD LIQUID COVERAGE PODKLAD 010                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a90bd03e() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a90bd03e()" @update-prices-26416.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="26416" data-price-box="product-id-26416"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-26416" data-price-amount="28.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">28,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.97 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/catrice-hd-liquid-coverage-podklad-010-4250947598283" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2101/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2101/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible"
  style="display: none; height: auto; width: 219.429px;" data-gslide="6">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="2101">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/calvin-klein-obsession-night-woman-edp-100ml-88300150410" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-2101.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/0/8/088300150410_1_97fd.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML" title="CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML">

    <div class="amasty-label-container
            amasty-label-container-29-2101-cat            amasty-label-for-2101            hidden" style="width: 64px !important; height: 36px !important; background: #b61714; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 64px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="1" x-data="{... new Amasty.Label.class.Item({
                id: &quot;29-2101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2101&quot;,&quot;label&quot;:29,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:1,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2101&quot;,
                selector: &quot;.amasty-label-container-29-2101-cat&quot;
            })}">
        <div class="amlabel-text">
            Pomysł na prezent        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-2101-cat            amasty-label-for-2101            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-2101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2101&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2101&quot;,
                selector: &quot;.amasty-label-container-20-2101-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-2101-cat            amasty-label-for-2101            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-2101-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2101&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2101&quot;,
                selector: &quot;.amasty-label-container-2-2101-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(2101)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/zapachy_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Zapachy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/calvin-klein-obsession-night-woman-edp-100ml-88300150410">
                    CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6ea3f3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6ea3f3()" @update-prices-2101.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="2101" data-price-box="product-id-2101"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-2101" data-price-amount="89.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">89,95&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.90 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/calvin-klein-obsession-night-woman-edp-100ml-88300150410" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/56856/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/56856/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="7"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="56856">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/ziaja-liscie-manuka-zel-myjacy-normalizujacy-na-dzienna-noc-200-ml-5901887029113" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-56856.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5901887029113_T1_8753.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Ziaja Liście Manuka Żel myjący normalizujący na dzień/na noc 200 ml" title="Ziaja Liście Manuka Żel myjący normalizujący na dzień/na noc 200 ml">

    <div class="amasty-label-container amasty-label-container-20-56856-cat amasty-label-for-56856 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-56856-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;56856&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;56856&quot;,
                selector: &quot;.amasty-label-container-20-56856-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-56856-cat amasty-label-for-56856 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-56856-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;56856&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;56856&quot;,
                selector: &quot;.amasty-label-container-2-56856-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(56856)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/ziaja-liscie-manuka-zel-myjacy-normalizujacy-na-dzienna-noc-200-ml-5901887029113">
                    Ziaja Liście Manuka Żel myjący normalizujący na dzień/na noc 200 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa56df72() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa56df72()" @update-prices-56856.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="56856" data-price-box="product-id-56856"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-56856" data-price-amount="10.18" data-price-type="finalPrice" class="price-wrapper "><span class="price">10,18&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-56856" data-price-amount="10.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">10,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 10,44&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.05 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/ziaja-liscie-manuka-zel-myjacy-normalizujacy-na-dzienna-noc-200-ml-5901887029113" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/915/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/915/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="8"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="915">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/nivea-dwufazowy-plyn-do-demakijazu-oczu-125-ml-5900017040998" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-915.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900017040998_T1_b558.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Nivea Dwufazowy płyn do demakijażu oczu 125 ml" title="Nivea Dwufazowy płyn do demakijażu oczu 125 ml">

    <div class="amasty-label-container amasty-label-container-20-915-cat amasty-label-for-915 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-915-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;915&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;915&quot;,
                selector: &quot;.amasty-label-container-20-915-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-915-cat amasty-label-for-915 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-915-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;915&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;915&quot;,
                selector: &quot;.amasty-label-container-2-915-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(915)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/nivea-dwufazowy-plyn-do-demakijazu-oczu-125-ml-5900017040998">
                    Nivea Dwufazowy płyn do demakijażu oczu 125 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a8fe420d() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8fe420d()" @update-prices-915.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="915" data-price-box="product-id-915"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-915" data-price-amount="12.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">12,95&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-915" data-price-amount="17.49" data-price-type="oldPrice" class="price-wrapper "><span class="price">17,49&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 12,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.10 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/nivea-dwufazowy-plyn-do-demakijazu-oczu-125-ml-5900017040998" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/3888/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/3888/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="9"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="3888">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/milly-chusteczki-higieniczne-3-warstwowe-90-szt-kafle-5907747319394" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-3888.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747319394_T1_639a.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MILLY CHUSTECZKI HIGIENICZNE 3 WARSTWOWE 90 szt. KAFLE" title="MILLY CHUSTECZKI HIGIENICZNE 3 WARSTWOWE 90 szt. KAFLE">

    <div class="amasty-label-container amasty-label-container-15-3888-cat amasty-label-for-3888 hidden visible-amasty" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-3888-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;3888&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;3888&quot;,
                selector: &quot;.amasty-label-container-15-3888-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-20-3888-cat amasty-label-for-3888 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-3888-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;3888&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;3888&quot;,
                selector: &quot;.amasty-label-container-20-3888-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-3888-cat amasty-label-for-3888 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-3888-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;3888&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;3888&quot;,
                selector: &quot;.amasty-label-container-2-3888-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(3888)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Artykuły higieniczne </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/milly-chusteczki-higieniczne-3-warstwowe-90-szt-kafle-5907747319394">
                    MILLY CHUSTECZKI HIGIENICZNE 3 WARSTWOWE 90 szt. KAFLE                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa73fc7a() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa73fc7a()" @update-prices-3888.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="3888" data-price-box="product-id-3888"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-3888" data-price-amount="4.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">4,49&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-3888" data-price-amount="5.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">5,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 5,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 0.05 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/milly-chusteczki-higieniczne-3-warstwowe-90-szt-kafle-5907747319394" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/103/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/103/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="10"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="103">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/loreal-paris-lp-true-match-podklad-w3-3600522862543" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-103.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/6/3600522862543_T1_7408.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="L'OREAL PARIS LP TRUE MATCH PODKŁAD&nbsp; W3" title="L'OREAL PARIS LP TRUE MATCH PODKŁAD&nbsp; W3">

    <div class="amasty-label-container amasty-label-container-20-103-cat amasty-label-for-103 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-103-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;103&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;103&quot;,
                selector: &quot;.amasty-label-container-20-103-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-103-cat amasty-label-for-103 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-103-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;103&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;103&quot;,
                selector: &quot;.amasty-label-container-2-103-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(103)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/loreal-paris-lp-true-match-podklad-w3-3600522862543">
                    L'OREAL PARIS LP TRUE MATCH PODKŁAD&nbsp; W3                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa747ce0() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa747ce0()" @update-prices-103.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="103" data-price-box="product-id-103"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-103" data-price-amount="38.58" data-price-type="finalPrice" class="price-wrapper "><span class="price">38,58&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-103" data-price-amount="79.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">79,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 38,68&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 1.29 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/loreal-paris-lp-true-match-podklad-w3-3600522862543" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/66185/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/66185/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="11"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="66185">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/bella-perfecta-ultra-blue-extra-soft-podpaski-higieniczne-20-sztuk-5900516305253" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-66185.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900516305253_T1_dc25.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Bella Perfecta Ultra Blue Extra Soft Podpaski higieniczne 20 sztuk" title="Bella Perfecta Ultra Blue Extra Soft Podpaski higieniczne 20 sztuk">

    <div class="amasty-label-container amasty-label-container-20-66185-cat amasty-label-for-66185 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-66185-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;66185&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;66185&quot;,
                selector: &quot;.amasty-label-container-20-66185-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-66185-cat amasty-label-for-66185 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-66185-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;66185&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;66185&quot;,
                selector: &quot;.amasty-label-container-2-66185-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(66185)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena intymna </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/bella-perfecta-ultra-blue-extra-soft-podpaski-higieniczne-20-sztuk-5900516305253">
                    Bella Perfecta Ultra Blue Extra Soft Podpaski higieniczne 20 sztuk                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa74f32c() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa74f32c()" @update-prices-66185.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="66185" data-price-box="product-id-66185"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-66185" data-price-amount="7.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-66185" data-price-amount="8.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">8,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 8,63&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 0.40 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/bella-perfecta-ultra-blue-extra-soft-podpaski-higieniczne-20-sztuk-5900516305253" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13161/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13161/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="12"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="13161">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/biohyaluron-3-x-retinol-przeciwzmarszczkowy-zel-rollo-pod-oczy-i-na-powieki-5903416028741" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-13161.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5903416028741_T1_33a0.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="BioHyaluron 3 x Retinol Przeciwzmarszczkowy żel roll-o pod oczy i na powieki" title="BioHyaluron 3 x Retinol Przeciwzmarszczkowy żel roll-o pod oczy i na powieki">

    <div class="amasty-label-container amasty-label-container-20-13161-cat amasty-label-for-13161 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-13161-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13161&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13161&quot;,
                selector: &quot;.amasty-label-container-20-13161-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-13161-cat amasty-label-for-13161 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-13161-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13161&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13161&quot;,
                selector: &quot;.amasty-label-container-2-13161-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(13161)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/biohyaluron-3-x-retinol-przeciwzmarszczkowy-zel-rollo-pod-oczy-i-na-powieki-5903416028741">
                    BioHyaluron 3 x Retinol Przeciwzmarszczkowy żel roll-o pod oczy i na powieki                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065a8fa8cf4() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8fa8cf4()" @update-prices-13161.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="13161" data-price-box="product-id-13161"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-13161" data-price-amount="19.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">19,95&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-13161" data-price-amount="25.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">25,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 19,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 1.11 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/biohyaluron-3-x-retinol-przeciwzmarszczkowy-zel-rollo-pod-oczy-i-na-powieki-5903416028741" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4007/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4007/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="13"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4007">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/skinimal-serum-rozjasniajace-witc-10-5907747317116" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4007.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747317116_T1_9771.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SKINIMAL SERUM ROZJAŚNIAJĄCE WIT.C 10%" title="SKINIMAL SERUM ROZJAŚNIAJĄCE WIT.C 10%">

    <div class="amasty-label-container amasty-label-container-15-4007-cat amasty-label-for-4007 hidden visible-amasty" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-4007-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4007&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4007&quot;,
                selector: &quot;.amasty-label-container-15-4007-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-20-4007-cat amasty-label-for-4007 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4007-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4007&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4007&quot;,
                selector: &quot;.amasty-label-container-20-4007-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-32-4007-cat amasty-label-for-4007 hidden visible-amasty" style="max-width: 50px !important; background: #fbcc05; border-radius: 50px !important; padding: 15px 0px; text-align: center; line-height: 20px; font-weight: 700; color: #333333 !important; color: #333333 !important; font-size: 20px; color: #333333;" data-amlabel-order="4" x-data="{... new Amasty.Label.class.Item({
                id: &quot;32-4007-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4007&quot;,&quot;label&quot;:32,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:4,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;#333333&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;Drugi%20produkt%20za%2050%25%20ceny&quot;}},
                productId: &quot;4007&quot;,
                selector: &quot;.amasty-label-container-32-4007-cat&quot;
            })}">
        <div class="amlabel-text" style="color: rgb(51, 51, 51); font-weight: 700;">
            1+1        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4007)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/skinimal-serum-rozjasniajace-witc-10-5907747317116">
                    SKINIMAL SERUM ROZJAŚNIAJĄCE WIT.C 10%                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7569b7() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7569b7()" @update-prices-4007.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4007" data-price-box="product-id-4007"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4007" data-price-amount="25.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">25,49&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4007" data-price-amount="39.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">39,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 25,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.85 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/skinimal-serum-rozjasniajace-witc-10-5907747317116" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15720/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15720/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide"
  style="display: none; height: auto; width: 219.429px;" data-gslide="14">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="15720">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/carmex-pomadka-ochronna-425-g-83078001254" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-15720.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/3/83078001254_T1_d620.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="CARMEX Pomadka Ochronna 4.25 g" title="CARMEX Pomadka Ochronna 4.25 g">

    <div class="amasty-label-container
            amasty-label-container-20-15720-cat            amasty-label-for-15720            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-15720-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15720&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15720&quot;,
                selector: &quot;.amasty-label-container-20-15720-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-15720-cat            amasty-label-for-15720            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-15720-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15720&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15720&quot;,
                selector: &quot;.amasty-label-container-2-15720-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(15720)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/twarz_1_.svg">
      </div>
      <span class="font-light font-sm mb-1"> Twarz </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/carmex-pomadka-ochronna-425-g-83078001254">
                    CARMEX Pomadka Ochronna 4.25 g                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa75f4f5() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa75f4f5()" @update-prices-15720.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="15720" data-price-box="product-id-15720"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-15720" data-price-amount="9.09" data-price-type="finalPrice" class="price-wrapper "><span class="price">9,09&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 2.27 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/carmex-pomadka-ochronna-425-g-83078001254" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/45476/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/45476/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="15"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="45476">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/kobo-professional-pud-prasmatt-bronz-311-nubian-d-5908309085191" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-45476.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5908309085191_74b3.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="KOBO PROFESSIONAL PUD. PRAS.MATT  BRONZ. 311 NUBIAN D" title="KOBO PROFESSIONAL PUD. PRAS.MATT  BRONZ. 311 NUBIAN D">

    <div class="amasty-label-container amasty-label-container-15-45476-cat amasty-label-for-45476 hidden visible-amasty" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-45476-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;45476&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;45476&quot;,
                selector: &quot;.amasty-label-container-15-45476-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-20-45476-cat amasty-label-for-45476 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-45476-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;45476&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;45476&quot;,
                selector: &quot;.amasty-label-container-20-45476-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-45476-cat amasty-label-for-45476 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-45476-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;45476&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;45476&quot;,
                selector: &quot;.amasty-label-container-2-45476-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(45476)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/makijaz_1.svg">
      </div>
      <span class="font-light font-sm mb-1"> Makijaż </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/kobo-professional-pud-prasmatt-bronz-311-nubian-d-5908309085191">
                    KOBO PROFESSIONAL PUD. PRAS.MATT  BRONZ. 311 NUBIAN D                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7657bf() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7657bf()" @update-prices-45476.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="45476" data-price-box="product-id-45476"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-45476" data-price-amount="19.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">19,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-45476" data-price-amount="27.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">27,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 27,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 2.22 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/kobo-professional-pud-prasmatt-bronz-311-nubian-d-5908309085191" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/331/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/331/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide"
  style="display: none; height: auto; width: 219.429px;" data-gslide="16">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="331">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/yope-boost-szampon-do-wrazliwej-skory-glowy-300ml-5903760202989" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-331.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5903760202989_T1_ec42.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="YOPE Boost Szampon do wrażliwej skóry głowy 300ml" title="YOPE Boost Szampon do wrażliwej skóry głowy 300ml">

    <div class="amasty-label-container
            amasty-label-container-20-331-cat            amasty-label-for-331            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-331-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;331&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;331&quot;,
                selector: &quot;.amasty-label-container-20-331-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-331-cat            amasty-label-for-331            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-331-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;331&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;331&quot;,
                selector: &quot;.amasty-label-container-2-331-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(331)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/yope-boost-szampon-do-wrazliwej-skory-glowy-300ml-5903760202989">
                    YOPE Boost Szampon do wrażliwej skóry głowy 300ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa76f732() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa76f732()" @update-prices-331.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="331" data-price-box="product-id-331"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-331" data-price-amount="21.19" data-price-type="finalPrice" class="price-wrapper "><span class="price">21,19&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2">
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/yope-boost-szampon-do-wrazliwej-skory-glowy-300ml-5903760202989" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4275/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4275/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide"
  style="display: none; height: auto; width: 219.429px;" data-gslide="17">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4275">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/oralb-proexpert-crossaction-allinone-szczoteczka-manualna-do-zebow-srednia-x-2-3014260022051" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4275.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/0/3014260022051_T1_e510.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Oral-B Pro-Expert CrossAction All-In-One Szczoteczka manualna do zębów, średnia x 2" title="Oral-B Pro-Expert CrossAction All-In-One Szczoteczka manualna do zębów, średnia x 2">

    <div class="amasty-label-container
            amasty-label-container-20-4275-cat            amasty-label-for-4275            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4275-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4275&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4275&quot;,
                selector: &quot;.amasty-label-container-20-4275-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-4275-cat            amasty-label-for-4275            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4275-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4275&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4275&quot;,
                selector: &quot;.amasty-label-container-2-4275-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4275)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/oralb-proexpert-crossaction-allinone-szczoteczka-manualna-do-zebow-srednia-x-2-3014260022051">
                    Oral-B Pro-Expert CrossAction All-In-One Szczoteczka manualna do zębów, średnia x 2                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa775bf3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa775bf3()" @update-prices-4275.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4275" data-price-box="product-id-4275"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4275" data-price-amount="16.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">16,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 16.99 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/oralb-proexpert-crossaction-allinone-szczoteczka-manualna-do-zebow-srednia-x-2-3014260022051" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/333/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/333/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide"
  style="display: none; height: auto; width: 219.429px;" data-gslide="18">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="333">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/yope-hydrate-odzywka-do-wlosow-z-humektantami-300ml-5903760203030" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-333.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5903760203030_T1_7520.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="YOPE Hydrate Odżywka do włosów z humektantami 300ml" title="YOPE Hydrate Odżywka do włosów z humektantami 300ml">

    <div class="amasty-label-container
            amasty-label-container-20-333-cat            amasty-label-for-333            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-333-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;333&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;333&quot;,
                selector: &quot;.amasty-label-container-20-333-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-333-cat            amasty-label-for-333            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-333-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;333&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;333&quot;,
                selector: &quot;.amasty-label-container-2-333-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(333)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/yope-hydrate-odzywka-do-wlosow-z-humektantami-300ml-5903760203030">
                    YOPE Hydrate Odżywka do włosów z humektantami 300ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa77c368() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa77c368()" @update-prices-333.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="333" data-price-box="product-id-333"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-333" data-price-amount="21.74" data-price-type="finalPrice" class="price-wrapper "><span class="price">21,74&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2">
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/yope-hydrate-odzywka-do-wlosow-z-humektantami-300ml-5903760203030" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/330/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/330/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide"
  style="display: none; height: auto; width: 219.429px;" data-gslide="19">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="330">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/yope-boost-serum-do-koncowek-50ml-5903760203078" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-330.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5903760203078_T1_59da.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="YOPE Boost Serum do końcówek 50ml" title="YOPE Boost Serum do końcówek 50ml">

    <div class="amasty-label-container
            amasty-label-container-20-330-cat            amasty-label-for-330            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-330-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;330&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;330&quot;,
                selector: &quot;.amasty-label-container-20-330-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-330-cat            amasty-label-for-330            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-330-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;330&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;330&quot;,
                selector: &quot;.amasty-label-container-2-330-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(330)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/wlosy.svg">
      </div>
      <span class="font-light font-sm mb-1"> Włosy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/yope-boost-serum-do-koncowek-50ml-5903760203078">
                    YOPE Boost Serum do końcówek 50ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa05d6fe() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa05d6fe()" @update-prices-330.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="330" data-price-box="product-id-330"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-330" data-price-amount="17.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">17,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2">
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/yope-boost-serum-do-koncowek-50ml-5903760203078" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/34006/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/34006/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="20"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="34006">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/nivea-men-sensitive-lagodzacy-zel-do-golenia-200-ml-4005808222964" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-34006.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/0/4005808222964_T1_7898.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Nivea MEN Sensitive Łagodzący żel do golenia 200 ml" title="Nivea MEN Sensitive Łagodzący żel do golenia 200 ml">

    <div class="amasty-label-container amasty-label-container-20-34006-cat amasty-label-for-34006 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-34006-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;34006&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;34006&quot;,
                selector: &quot;.amasty-label-container-20-34006-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-34006-cat amasty-label-for-34006 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-34006-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;34006&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;34006&quot;,
                selector: &quot;.amasty-label-container-2-34006-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(34006)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/mezczyzna.svg">
      </div>
      <span class="font-light font-sm mb-1"> Mężczyzna </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/nivea-men-sensitive-lagodzacy-zel-do-golenia-200-ml-4005808222964">
                    Nivea MEN Sensitive Łagodzący żel do golenia 200 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa782489() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa782489()" @update-prices-34006.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="34006" data-price-box="product-id-34006"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-34006" data-price-amount="12.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">12,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-34006" data-price-amount="15.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">15,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 13,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.06 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/nivea-men-sensitive-lagodzacy-zel-do-golenia-200-ml-4005808222964" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/37670/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/37670/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide active visible" data-gslide="0"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="37670">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-37670.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/0/4009903011119_T1_0fb4.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Ajona Medyczny koncentrat pasty do zębów dziąseł i języka 25 ml" title="Ajona Medyczny koncentrat pasty do zębów dziąseł i języka 25 ml">

    <div class="amasty-label-container
            amasty-label-container-20-37670-cat            amasty-label-for-37670            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-37670-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;37670&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;37670&quot;,
                selector: &quot;.amasty-label-container-20-37670-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-37670-cat            amasty-label-for-37670            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-37670-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;37670&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;37670&quot;,
                selector: &quot;.amasty-label-container-2-37670-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(37670)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119">
                    Ajona Medyczny koncentrat pasty do zębów dziąseł i języka 25 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6a84e6() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6a84e6()" @update-prices-37670.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="37670" data-price-box="product-id-37670"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-37670" data-price-amount="7.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,99&nbsp;zł</span></span>
          </span>
        </span>
        <a href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119" class="minimal-price-link">

<span class="price-container ">
    <span id="37670" data-price-amount="7.19" data-price-type="" class="price-wrapper ">7,19&nbsp;zł</span>
            <span class="price-label">As low as</span>
            </span>
        </a>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.32 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/ajona-medyczny-koncentrat-pasty-do-zebow-dziasel-i-jezyka-25-ml-4009903011119" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13163/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/13163/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="1"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="13163">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-13163.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/0/8017331020074_T1_dab5.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Biorepair Night Pasta do zębów 75 ml" title="Biorepair Night Pasta do zębów 75 ml">

    <div class="amasty-label-container
            amasty-label-container-20-13163-cat            amasty-label-for-13163            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-13163-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13163&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13163&quot;,
                selector: &quot;.amasty-label-container-20-13163-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-13163-cat            amasty-label-for-13163            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-13163-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;13163&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;13163&quot;,
                selector: &quot;.amasty-label-container-2-13163-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(13163)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074">
                    Biorepair Night Pasta do zębów 75 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6afbfd() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6afbfd()" @update-prices-13163.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="13163" data-price-box="product-id-13163"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-13163" data-price-amount="18.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">18,99&nbsp;zł</span></span>
          </span>
        </span>
        <a href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074" class="minimal-price-link">

<span class="price-container ">
    <span id="13163" data-price-amount="17.1" data-price-type="" class="price-wrapper ">17,10&nbsp;zł</span>
            <span class="price-label">As low as</span>
            </span>
        </a>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.25 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/biorepair-night-pasta-do-zebow-75-ml-8017331020074" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4196/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4196/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="2"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4196">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/seyo-pomaran-peeling-cukr-200ml-5907747305090" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4196.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747305090_T1_f452.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SEYO POMARAŃ. PEELING CUKR 200ML" title="SEYO POMARAŃ. PEELING CUKR 200ML">

    <div class="amasty-label-container
            amasty-label-container-15-4196-cat            amasty-label-for-4196            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-4196-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4196&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4196&quot;,
                selector: &quot;.amasty-label-container-15-4196-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4196)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/seyo-pomaran-peeling-cukr-200ml-5907747305090">
                    SEYO POMARAŃ. PEELING CUKR 200ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa1b1d66() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa1b1d66()" @update-prices-4196.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4196" data-price-box="product-id-4196"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-4196" data-price-amount="12.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">12,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.06 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/seyo-pomaran-peeling-cukr-200ml-5907747305090" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/3590/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/3590/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="3"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="3590">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/milly-chusteczki-higieniczne-box-200-szt-makaroniki-2-warstwowe-5907747319363" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-3590.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747319363_T1_6acb.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MILLY chusteczki higieniczne BOX 200 szt. MAKARONIKI 2 warstwowe " title="MILLY chusteczki higieniczne BOX 200 szt. MAKARONIKI 2 warstwowe ">

    <div class="amasty-label-container
            amasty-label-container-15-3590-cat            amasty-label-for-3590            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-3590-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;3590&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;3590&quot;,
                selector: &quot;.amasty-label-container-15-3590-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-3590-cat            amasty-label-for-3590            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-3590-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;3590&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;3590&quot;,
                selector: &quot;.amasty-label-container-20-3590-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-3590-cat            amasty-label-for-3590            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-3590-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;3590&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;3590&quot;,
                selector: &quot;.amasty-label-container-2-3590-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(3590)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/milly-chusteczki-higieniczne-box-200-szt-makaroniki-2-warstwowe-5907747319363">
                    MILLY chusteczki higieniczne BOX 200 szt. MAKARONIKI 2 warstwowe                 </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa797105() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa797105()" @update-prices-3590.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="3590" data-price-box="product-id-3590"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-3590" data-price-amount="5.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">5,49&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 0.03 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/milly-chusteczki-higieniczne-box-200-szt-makaroniki-2-warstwowe-5907747319363" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15668/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15668/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="4"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="15668">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/seyo-mango-mydlo-zapas-500-ml-5907747309197" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-15668.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747309197_T1_2f01.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SEYO MANGO MYDŁO ZAPAS 500 ML" title="SEYO MANGO MYDŁO ZAPAS 500 ML">

    <div class="amasty-label-container
            amasty-label-container-15-15668-cat            amasty-label-for-15668            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-15668-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15668&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15668&quot;,
                selector: &quot;.amasty-label-container-15-15668-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-15668-cat            amasty-label-for-15668            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-15668-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15668&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15668&quot;,
                selector: &quot;.amasty-label-container-20-15668-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(15668)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/seyo-mango-mydlo-zapas-500-ml-5907747309197">
                    SEYO MANGO MYDŁO ZAPAS 500 ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa79f04c() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa79f04c()" @update-prices-15668.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="15668" data-price-box="product-id-15668"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-15668" data-price-amount="5.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">5,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.01 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/seyo-mango-mydlo-zapas-500-ml-5907747309197" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/37060/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/37060/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="5"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="37060">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/milly-papier-toaletowy-a8-200-l-5908309108142" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-37060.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5908309108142_T1_889e.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MILLY PAPIER TOALETOWY A'8 200 L" title="MILLY PAPIER TOALETOWY A'8 200 L">

    <div class="amasty-label-container
            amasty-label-container-15-37060-cat            amasty-label-for-37060            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-37060-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;37060&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;37060&quot;,
                selector: &quot;.amasty-label-container-15-37060-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-37060-cat            amasty-label-for-37060            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-37060-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;37060&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;37060&quot;,
                selector: &quot;.amasty-label-container-20-37060-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(37060)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Papier toaletowy </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/milly-papier-toaletowy-a8-200-l-5908309108142">
                    MILLY PAPIER TOALETOWY A'8 200 L                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7a4610() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7a4610()" @update-prices-37060.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="37060" data-price-box="product-id-37060"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-37060" data-price-amount="15.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">15,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 2.00 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/milly-papier-toaletowy-a8-200-l-5908309108142" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/54902/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/54902/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide visible" data-gslide="6"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="54902">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/biala-perla-wybielajaca-pasta-do-zebow-krystaliczna-biel-75-ml-8588003659743" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-54902.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/5/8588003659743_T1_f2ec.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Biała Perła Wybielająca pasta do zębów krystaliczna biel 75 ml" title="Biała Perła Wybielająca pasta do zębów krystaliczna biel 75 ml">

    <div class="amasty-label-container
            amasty-label-container-20-54902-cat            amasty-label-for-54902            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-54902-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;54902&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;54902&quot;,
                selector: &quot;.amasty-label-container-20-54902-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-54902-cat            amasty-label-for-54902            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-54902-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;54902&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;54902&quot;,
                selector: &quot;.amasty-label-container-2-54902-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(54902)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/biala-perla-wybielajaca-pasta-do-zebow-krystaliczna-biel-75-ml-8588003659743">
                    Biała Perła Wybielająca pasta do zębów krystaliczna biel 75 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7aac06() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7aac06()" @update-prices-54902.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="54902" data-price-box="product-id-54902"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-54902" data-price-amount="14.42" data-price-type="finalPrice" class="price-wrapper "><span class="price">14,42&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.19 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/biala-perla-wybielajaca-pasta-do-zebow-krystaliczna-biel-75-ml-8588003659743" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/9022/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/9022/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="7"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="9022">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/biorepair-plyn-do-plukania-jamy-ustnej-500-ml-8017331029725" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-9022.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/0/8017331029725_T1_9bcb.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Biorepair Płyn do płukania jamy ustnej 500 ml" title="Biorepair Płyn do płukania jamy ustnej 500 ml">

    <div class="amasty-label-container
            amasty-label-container-20-9022-cat            amasty-label-for-9022            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-9022-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;9022&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;9022&quot;,
                selector: &quot;.amasty-label-container-20-9022-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-9022-cat            amasty-label-for-9022            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-9022-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;9022&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;9022&quot;,
                selector: &quot;.amasty-label-container-2-9022-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(9022)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/biorepair-plyn-do-plukania-jamy-ustnej-500-ml-8017331029725">
                    Biorepair Płyn do płukania jamy ustnej 500 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa6bbc3a() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa6bbc3a()" @update-prices-9022.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="9022" data-price-box="product-id-9022"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-9022" data-price-amount="16.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">16,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.03 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/biorepair-plyn-do-plukania-jamy-ustnej-500-ml-8017331029725" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/33336/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/33336/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="8"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="33336">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/anida-medisoft-woman-antiperspirant-rollon-50-ml-5900031003801" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-33336.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900031003801_T1_d50d.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Anida Medisoft Woman Anti-perspirant roll-on 50 ml" title="Anida Medisoft Woman Anti-perspirant roll-on 50 ml">

    <div class="amasty-label-container
            amasty-label-container-20-33336-cat            amasty-label-for-33336            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-33336-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;33336&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;33336&quot;,
                selector: &quot;.amasty-label-container-20-33336-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-33336-cat            amasty-label-for-33336            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-33336-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;33336&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;33336&quot;,
                selector: &quot;.amasty-label-container-2-33336-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(33336)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Dezodoranty </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/anida-medisoft-woman-antiperspirant-rollon-50-ml-5900031003801">
                    Anida Medisoft Woman Anti-perspirant roll-on 50 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7afef2() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7afef2()" @update-prices-33336.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="33336" data-price-box="product-id-33336"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-33336" data-price-amount="7.36" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,36&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.15 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/anida-medisoft-woman-antiperspirant-rollon-50-ml-5900031003801" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/66164/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/66164/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="9"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="66164">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/bella-perfecta-ultra-violet-silky-drai-podpaski-higieniczne-20-sztuk-5900516305451" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-66164.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900516305451_T1_6d05.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Bella Perfecta Ultra Violet Silky Drai Podpaski higieniczne 20 sztuk" title="Bella Perfecta Ultra Violet Silky Drai Podpaski higieniczne 20 sztuk">

    <div class="amasty-label-container
            amasty-label-container-20-66164-cat            amasty-label-for-66164            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-66164-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;66164&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;66164&quot;,
                selector: &quot;.amasty-label-container-20-66164-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-66164-cat            amasty-label-for-66164            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-66164-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;66164&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;66164&quot;,
                selector: &quot;.amasty-label-container-2-66164-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(66164)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena intymna </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/bella-perfecta-ultra-violet-silky-drai-podpaski-higieniczne-20-sztuk-5900516305451">
                    Bella Perfecta Ultra Violet Silky Drai Podpaski higieniczne 20 sztuk                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7b7824() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7b7824()" @update-prices-66164.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="66164" data-price-box="product-id-66164"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-66164" data-price-amount="7.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 0.40 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/bella-perfecta-ultra-violet-silky-drai-podpaski-higieniczne-20-sztuk-5900516305451" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16016/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/16016/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="10"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="16016">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/blendamed-3d-white-classic-fresh-pasta-do-zebow-75ml-8006540792971" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-16016.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/8/0/8006540792971_T1_ddb8.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Blend-a-med 3D White Classic Fresh Pasta do zębów 75ml" title="Blend-a-med 3D White Classic Fresh Pasta do zębów 75ml">

    <div class="amasty-label-container amasty-label-container-20-16016-cat amasty-label-for-16016 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-16016-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16016&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16016&quot;,
                selector: &quot;.amasty-label-container-20-16016-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-16016-cat amasty-label-for-16016 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-16016-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;16016&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;16016&quot;,
                selector: &quot;.amasty-label-container-2-16016-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(16016)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/blendamed-3d-white-classic-fresh-pasta-do-zebow-75ml-8006540792971">
                    Blend-a-med 3D White Classic Fresh Pasta do zębów 75ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa738da3() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa738da3()" @update-prices-16016.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="16016" data-price-box="product-id-16016"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-16016" data-price-amount="6.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">6,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-16016" data-price-amount="8.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">8,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 7,09&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.09 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/blendamed-3d-white-classic-fresh-pasta-do-zebow-75ml-8006540792971" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/64966/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/64966/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="11"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="64966">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/garnier-mineral-floral-fresh-antyperspirant-150-ml-3600542475020" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-64966.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/3/6/3600542475020_T1_c2c7.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Garnier Mineral Floral Fresh Antyperspirant 150 ml" title="Garnier Mineral Floral Fresh Antyperspirant 150 ml">

    <div class="amasty-label-container
            amasty-label-container-2-64966-cat            amasty-label-for-64966            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-64966-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;64966&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;64966&quot;,
                selector: &quot;.amasty-label-container-2-64966-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(64966)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Dezodoranty </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/garnier-mineral-floral-fresh-antyperspirant-150-ml-3600542475020">
                    Garnier Mineral Floral Fresh Antyperspirant 150 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7bddbb() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7bddbb()" @update-prices-64966.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="64966" data-price-box="product-id-64966"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-64966" data-price-amount="13.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">13,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.09 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/garnier-mineral-floral-fresh-antyperspirant-150-ml-3600542475020" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/30110/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/30110/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="12"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="30110">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/ziaja-maslo-kakaowe-kremowy-zel-myjacy-500-ml-5901887009917" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-30110.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5901887009917_T1_4faf.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Ziaja Masło kakaowe Kremowy żel myjący 500 ml" title="Ziaja Masło kakaowe Kremowy żel myjący 500 ml">

    <div class="amasty-label-container
            amasty-label-container-20-30110-cat            amasty-label-for-30110            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-30110-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;30110&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;30110&quot;,
                selector: &quot;.amasty-label-container-20-30110-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-30110-cat            amasty-label-for-30110            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-30110-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;30110&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;30110&quot;,
                selector: &quot;.amasty-label-container-2-30110-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(30110)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/ziaja-maslo-kakaowe-kremowy-zel-myjacy-500-ml-5901887009917">
                    Ziaja Masło kakaowe Kremowy żel myjący 500 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa5674e8() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa5674e8()" @update-prices-30110.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="30110" data-price-box="product-id-30110"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-30110" data-price-amount="9.28" data-price-type="finalPrice" class="price-wrapper "><span class="price">9,28&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.02 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/ziaja-maslo-kakaowe-kremowy-zel-myjacy-500-ml-5901887009917" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/8029/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/8029/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="13"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="8029">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/always-ultra-normal-r1-ze-skrzydelkami-podpaski-10-sztuk-5997253515991" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-8029.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5997253515991_T1_e8ff.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Always Ultra Normal (R1) Ze Skrzydełkami Podpaski 10 Sztuk" title="Always Ultra Normal (R1) Ze Skrzydełkami Podpaski 10 Sztuk">

    <div class="amasty-label-container
            amasty-label-container-2-8029-cat            amasty-label-for-8029            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-8029-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;8029&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;8029&quot;,
                selector: &quot;.amasty-label-container-2-8029-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(8029)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Podpaski </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/always-ultra-normal-r1-ze-skrzydelkami-podpaski-10-sztuk-5997253515991">
                    Always Ultra Normal (R1) Ze Skrzydełkami Podpaski 10 Sztuk                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7c32b1() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7c32b1()" @update-prices-8029.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="8029" data-price-box="product-id-8029"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-8029" data-price-amount="7.34" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,34&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 szt / 0.73 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/always-ultra-normal-r1-ze-skrzydelkami-podpaski-10-sztuk-5997253515991" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/49425/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/49425/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="14"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="49425">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/lactacyd-femina-emulsja-do-higieny-intymnej-200-ml-5391520942662" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-49425.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/3/5391520942662_T1_0025.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Lactacyd Femina Emulsja do higieny intymnej 200 ml" title="Lactacyd Femina Emulsja do higieny intymnej 200 ml">

    <div class="amasty-label-container
            amasty-label-container-20-49425-cat            amasty-label-for-49425            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-49425-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;49425&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;49425&quot;,
                selector: &quot;.amasty-label-container-20-49425-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-49425-cat            amasty-label-for-49425            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-49425-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;49425&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;49425&quot;,
                selector: &quot;.amasty-label-container-2-49425-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(49425)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena intymna </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/lactacyd-femina-emulsja-do-higieny-intymnej-200-ml-5391520942662">
                    Lactacyd Femina Emulsja do higieny intymnej 200 ml                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7c9bce() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7c9bce()" @update-prices-49425.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="49425" data-price-box="product-id-49425"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-49425" data-price-amount="15.59" data-price-type="finalPrice" class="price-wrapper "><span class="price">15,59&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 ml / 0.08 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/lactacyd-femina-emulsja-do-higieny-intymnej-200-ml-5391520942662" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2442/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/2442/" class="relative item product product-item product_addtocart_form flex flex-col w-full pt-1 glider-slide" data-gslide="15"
  style="height: auto; width: 219.429px;">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="2442">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/himalaya-dental-cream-ajurwedyjska-pasta-do-zebow-z-olejkiem-gozdzikow-100g-4751015926668" class="product photo product-item-photo block mx-auto
               mb-3 " tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-2442.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/4/7/4751015926668_1c7c.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Himalaya Dental Cream Ajurwedyjska pasta do zębów z Olejkiem Goździków 100g" title="Himalaya Dental Cream Ajurwedyjska pasta do zębów z Olejkiem Goździków 100g">

    <div class="amasty-label-container
            amasty-label-container-20-2442-cat            amasty-label-for-2442            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-2442-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2442&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2442&quot;,
                selector: &quot;.amasty-label-container-20-2442-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-2-2442-cat            amasty-label-for-2442            hidden" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-2442-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;2442&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;2442&quot;,
                selector: &quot;.amasty-label-container-2-2442-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(2442)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Higiena jamy ustnej </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center ">
      <a class="product-item-link" href="https://drogerienatura.pl/produkt/himalaya-dental-cream-ajurwedyjska-pasta-do-zebow-z-olejkiem-gozdzikow-100g-4751015926668">
                    Himalaya Dental Cream Ajurwedyjska pasta do zębów z Olejkiem Goździków 100g                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto ">
    </div>
    <script>
      function initPriceBox__66065aa7cf755() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065aa7cf755()" @update-prices-2442.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="2442" data-price-box="product-id-2442"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-2442" data-price-amount="13.89" data-price-type="finalPrice" class="price-wrapper "><span class="price">13,89&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="capacity-per-price text-center text-sm mt-2"> 1 g / 0.14 zł</div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/himalaya-dental-cream-ajurwedyjska-pasta-do-zebow-z-olejkiem-gozdzikow-100g-4751015926668" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/newsletter/subscriber/new/

<form class="mx-auto max-w-[580px] xl:max-w-full relative z-10 flex flex-col px-4 xl:px-0 items-center" action="https://drogerienatura.pl/newsletter/subscriber/new/" method="post" x-data="initNewsletterForm()" @submit.prevent="submitForm()"
  id="newsletter-validate-detail">
  <div class="text-center text-base py-1 xl:py-0 font-serif xl:text-lg xl:flex xl:items-center
        xl:justify-center xl:w-full">
    <div class="hidden xl:block py-2 pl-0 pr-3 sm:px-3 w-full">
      <div class="h-px bg-gray-6"></div>
    </div>
    <span class="xl:whitespace-nowrap xl:py-4"> Zaprenumeruj newsletter i korzystaj z benefitów </span>
    <div class="hidden xl:block py-2 pl-0 pr-3 sm:px-3 w-full">
      <div class="h-px bg-gray-6"></div>
    </div>
  </div>
  <div class="font-light text-xs xl:font-base xl:max-w-[972px] w-full xl:mx-auto">
    <div class="xl:hidden py-4">
      <p>Chcesz być bliżej natury?</p>
      <p>Interesują Cię tematy związane z:</p>
    </div>
    <ol class="list-disc list-inside marker:text-primary-darker xl:hidden">
      <li class="py-2">ekologią</li>
      <li class="py-2">zrównoważonym rozwojem</li>
      <li class="py-2">trendem zero waste</li>
      <li class="py-2">dobrostanem</li>
      <li class="py-2">zdrowiem i urodą</li>
      <li class="py-2">opieką nad zwierzętami</li>
    </ol>
    <p class="hidden xl:flex xl:p-4 xl:text-base"> Chcesz być bliżej natury? Interesują Cię tematy związane z ekologią, zrównoważonym rozwojem, trendem zero waste, <br> dobrostanem, ale także zdrowiem i urodą? </p>
    <p class="py-2 xl:p-4 xl:text-base xl:mb-4"> Zapisz się do newslettera, bądź na bieżąco z nowinkami i korzystaj z benefitów dla członków Klubu Natura. </p>
  </div>
  <div class="py-2 w-full xl:max-w-[972px] xl:py-4 xl:pl-4 xl:pr-0">
    <input name="email" type="email" required="" id="newsletter-subscribe" class="form-input inline-flex w-full text-base font-light h-12 xl:w-1/2 py-3 px-2" placeholder="e-mail">
    <div class="w-full font-light pt-1 xl:py-4 xl:w-1/2 hidden xl:block xl:mt-8"> Wyrażam zgodę na otrzymywanie od Natura Sp. z o.o. z siedzibą w Łodzi przy ulicy Pojezierskiej nr 90A, 91 – 341 Łódź informacji handlowej o promocjach i ofertach,
      zgodnie z ustawą z dnia 18 lipca 2002 r. o świadczeniu usług drogą elektroniczną. Zgodę można cofnąć w każdym czasie. </div>
  </div>
  <div class="test">
    <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM">
  </div>
  <div class="w-full md:hidden">
  </div>
  <button class="submit-newsletter order-2 flex btn btn-primary py-2.5 xl:py-2 px-4
        text-base font-semibold"> Zapisz się </button>
  <div>
    <template x-if="displayErrorMessage">
      <p class="flex items-center text-red">
        <span class="inline-block w-8 h-8 mr-3">
          <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24" width="24" height="24" role="img">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"></path>
            <title>exclamation-circle</title>
          </svg>
        </span>
        <template x-for="errorMessage in errorMessages">
          <span x-html="errorMessage"></span>
        </template>
      </p>
    </template>
  </div>
  <div class="agreements-wrapper">
    <div class="amgdpr-checkbox-block" x-data="{ ...new Amasty.Gdpr.class.Checkbox({id: 'checkbox_0', $el: $el }) }" id="checkbox-0">
      <div class="before-text">
      </div>
      <div class="amgdpr-checkbox field choice">
        <input type="hidden" name="amgdpr_agreement[marketing_communication]" value="0">
        <input type="checkbox" name="amgdpr_agreement[marketing_communication]" title="Marketing communication " value="1" id="amprivacy-checkbox-66065adea89fb" class="checkbox" required="">
        <label for="amprivacy-checkbox-66065adea89fb" class="label" @click="privacyPolicyLink($event,
                            $dispatch,
                            4,
                            'amprivacy-checkbox-66065adea89fb')">
          <span class="amgdpr-text"> Wyrażam zgodę na otrzymywanie od Natura Sp. z o.o. z siedzibą w Łodzi przy ulicy Pojezierskiej nr 90A, 91 – 341 Łódź informacji handlowej o promocjach i ofertach, zgodnie z ustawą z dnia 18 lipca 2002 r. o
            świadczeniu usług drogą elektroniczną. Zgodę można cofnąć w każdym czasie. </span>
        </label>
      </div>
      <div class="after-text">
      </div>
      <input type="hidden" name="am-gdpr-checkboxes-from" value="subscription">
    </div>
    <p class="last-checkbox-text">zgodnie z ustawą z dnia 18 lipca 2002 r. o świadczeniu usług drogą elektroniczną. Zgodę można cofnąć w każdym czasie.</p>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4327657/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4327657/" class="relative item product product-item product_addtocart_form flex
      flex-col       w-full pt-1">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4327657">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/jantar-galaretka-do-laminacji-wlosow-z-bursztynem-150-g-5900117979716" class="product photo product-item-photo block mx-auto
               mb-3" tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4327657.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5900117979716_1_7b16.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="JANTAR Galaretka do laminacji włosów z bursztynem 150 G" title="JANTAR Galaretka do laminacji włosów z bursztynem 150 G">

    <div class="amasty-label-container amasty-label-container-2-4327657-cat amasty-label-for-4327657 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4327657-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4327657&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4327657&quot;,
                selector: &quot;.amasty-label-container-2-4327657-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4327657)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center">
      <a class="slider item product-item-link" href="https://drogerienatura.pl/produkt/jantar-galaretka-do-laminacji-wlosow-z-bursztynem-150-g-5900117979716">
                    JANTAR Galaretka do laminacji włosów z bursztynem 150 G                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto">
    </div>
    <script>
      function initPriceBox__66065a8e592b4() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8e592b4()" @update-prices-4327657.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4327657" data-price-box="product-id-4327657"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4327657" data-price-amount="14.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">14,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4327657" data-price-amount="21.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">21,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 15,95&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/jantar-galaretka-do-laminacji-wlosow-z-bursztynem-150-g-5900117979716" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15668/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/15668/" class="relative item product product-item product_addtocart_form flex
      flex-col       w-full pt-1">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="15668">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/seyo-mango-mydlo-zapas-500-ml-5907747309197" class="product photo product-item-photo block mx-auto
               mb-3" tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-15668.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907747309197_T1_2f01.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="SEYO MANGO MYDŁO ZAPAS 500 ML" title="SEYO MANGO MYDŁO ZAPAS 500 ML">

    <div class="amasty-label-container
            amasty-label-container-15-15668-cat            amasty-label-for-15668            hidden" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-15668-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15668&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15668&quot;,
                selector: &quot;.amasty-label-container-15-15668-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container
            amasty-label-container-20-15668-cat            amasty-label-for-15668            hidden" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-15668-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;15668&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;15668&quot;,
                selector: &quot;.amasty-label-container-20-15668-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(15668)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <div class="w-[24px] h-[24px] mb-1">
        <img src="https://drogerienatura.pl/media/mega_menu_images/cialo_6.svg">
      </div>
      <span class="font-light font-sm mb-1"> Ciało </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center">
      <a class="slider item product-item-link" href="https://drogerienatura.pl/produkt/seyo-mango-mydlo-zapas-500-ml-5907747309197">
                    SEYO MANGO MYDŁO ZAPAS 500 ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto">
    </div>
    <script>
      function initPriceBox__66065a8e969c1() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8e969c1()" @update-prices-15668.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="15668" data-price-box="product-id-15668"> <span class="final-price">
          <span class="price-container ">
            <span id="product-price-15668" data-price-amount="5.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">5,99&nbsp;zł</span></span>
          </span>
        </span>
      </div>
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/seyo-mango-mydlo-zapas-500-ml-5907747309197" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331209/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4331209/" class="relative item product product-item product_addtocart_form flex
      flex-col       w-full pt-1">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4331209">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/retinobaza-1700-krem-z-witamina-a-30g-5907573300245" class="product photo product-item-photo block mx-auto
               mb-3" tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4331209.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5907573300245_77bd.png?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="RETINOBAZA 1700 krem z witaminą A 30g" title="RETINOBAZA 1700 krem z witaminą A 30g">

    <div class="amasty-label-container amasty-label-container-19-4331209-cat amasty-label-for-4331209 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #2BAECB; border-radius: 50px !important; padding: 18px 0px; text-align: center; font-weight: 600; font-size: 9px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;19-4331209-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331209&quot;,&quot;label&quot;:19,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331209&quot;,
                selector: &quot;.amasty-label-container-19-4331209-cat&quot;
            })}">
        <div class="amlabel-text">
            NOWOŚĆ        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4331209-cat amasty-label-for-4331209 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4331209-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4331209&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4331209&quot;,
                selector: &quot;.amasty-label-container-2-4331209-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4331209)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Balsamy, kremy i masła </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center">
      <a class="slider item product-item-link" href="https://drogerienatura.pl/produkt/retinobaza-1700-krem-z-witamina-a-30g-5907573300245">
                    RETINOBAZA 1700 krem z witaminą A 30g                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto">
    </div>
    <script>
      function initPriceBox__66065a8e5782d() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8e5782d()" @update-prices-4331209.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4331209" data-price-box="product-id-4331209"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4331209" data-price-amount="10.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">10,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4331209" data-price-amount="16.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">16,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 16,99&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/retinobaza-1700-krem-z-witamina-a-30g-5907573300245" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/47337/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/47337/" class="relative item product product-item product_addtocart_form flex
      flex-col       w-full pt-1">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="47337">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/milly-zestaw-platkow-3x120szt-5903624691119" class="product photo product-item-photo block mx-auto
               mb-3" tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-47337.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/5/9/5903624691119_T1_fae2.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="MILLY ZESTAW PŁATKOW 3X120SZT" title="MILLY ZESTAW PŁATKOW 3X120SZT">

    <div class="amasty-label-container amasty-label-container-15-47337-cat amasty-label-for-47337 hidden visible-amasty" style="width: 60px !important; height: 36px !important; background: #7DBA00; padding: 5px 0px; white-space: wrap !important; line-height: 1.2; text-overflow: ellipsis; text-align: center; width: 60px !important; border-radius: 0px 18px 0px 18px; font-size: 11px; color: #ffffff;" data-amlabel-order="2" x-data="{... new Amasty.Label.class.Item({
                id: &quot;15-47337-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;bottom-right&quot;,&quot;size&quot;:&quot;28&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47337&quot;,&quot;label&quot;:15,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:2,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;47337&quot;,
                selector: &quot;.amasty-label-container-15-47337-cat&quot;
            })}">
        <div class="amlabel-text">
            Tylko w Natura        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-20-47337-cat amasty-label-for-47337 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-47337-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47337&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;47337&quot;,
                selector: &quot;.amasty-label-container-20-47337-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-47337-cat amasty-label-for-47337 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-47337-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;47337&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;47337&quot;,
                selector: &quot;.amasty-label-container-2-47337-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(47337)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Artykuły higieniczne </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center">
      <a class="slider item product-item-link" href="https://drogerienatura.pl/produkt/milly-zestaw-platkow-3x120szt-5903624691119">
                    MILLY ZESTAW PŁATKOW 3X120SZT                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto">
    </div>
    <script>
      function initPriceBox__66065a8e654ad() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065a8e654ad()" @update-prices-47337.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="47337" data-price-box="product-id-47337"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-47337" data-price-amount="9.49" data-price-type="finalPrice" class="price-wrapper "><span class="price">9,49&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-47337" data-price-amount="12.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">12,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 9,66&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/milly-zestaw-platkow-3x120szt-5903624691119" class="see-more-link">
                więcej            </a>
  </div>
</form>

POST https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4327947/

<form method="post" action="https://drogerienatura.pl/checkout/cart/add/uenc/%25uenc%25/product/4327947/" class="relative item product product-item product_addtocart_form flex
      flex-col border border-primary promo-product      w-full pt-1">
  <input name="form_key" type="hidden" value="EL12UEJIYj1eIKvM"> <input type="hidden" name="product" value="4327947">
  <div class="relative flex image-section">
    <a href="https://drogerienatura.pl/produkt/fresini-black-orchid-zelazko-w-sprayu-500ml-5901087323271" class="product photo product-item-photo block mx-auto
               mb-3" tabindex="-1">
                <img class="hover:shadow-sm object-contain product-image-photo" x-data="" @update-gallery-4327947.window="$root.src = $event.detail" src="https://media.drogerienatura.pl/catalog/product/b/l/black_orch_0010.jpg?width=240&amp;height=300&amp;store=default&amp;image-type=small_image" loading="lazy" width="240" height="300" alt="Fresini Black Orchid Żelazko w sprayu 500ML" title="Fresini Black Orchid Żelazko w sprayu 500ML">

    <div class="amasty-label-container amasty-label-container-20-4327947-cat amasty-label-for-4327947 hidden visible-amasty" style="max-width: 50px !important; height: 50px; background: #333333; border-radius: 50px !important; padding: 19px 0px; text-align: center; letter-spacing: -0.2px !important; font-size: 8px; color: #ffffff;" data-amlabel-order="3" x-data="{... new Amasty.Label.class.Item({
                id: &quot;20-4327947-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;24&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4327947&quot;,&quot;label&quot;:20,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:3,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4327947&quot;,
                selector: &quot;.amasty-label-container-20-4327947-cat&quot;
            })}">
        <div class="amlabel-text">
            BESTSELLER        </div>

            </div>

    <div class="amasty-label-container amasty-label-container-2-4327947-cat amasty-label-for-4327947 hidden visible-amasty" style="max-width: 50px !important; background: #C92027; border-radius: 50px !important; padding: 19px 0px; text-align: center; font-weight: 600; display: none; visibility: hidden; font-size: 8px; color: #ffffff;" data-amlabel-order="5" x-data="{... new Amasty.Label.class.Item({
                id: &quot;2-4327947-cat&quot;,
                $el: $el,
                mode: &quot;cat&quot;,
                isAdminArea: &quot;&quot;,
                config: {&quot;position&quot;:&quot;top-left&quot;,&quot;size&quot;:&quot;&quot;,&quot;path&quot;:&quot;.product-image-container, .product-item-photo, .cdz-product-top&quot;,&quot;mode&quot;:&quot;prod&quot;,&quot;move&quot;:0,&quot;product&quot;:&quot;4327947&quot;,&quot;label&quot;:2,&quot;margin&quot;:8,&quot;alignment&quot;:0,&quot;order&quot;:5,&quot;redirect_url&quot;:&quot;&quot;,&quot;tooltip&quot;:{&quot;backgroundColor&quot;:&quot;&quot;,&quot;color&quot;:&quot;&quot;,&quot;status&quot;:1,&quot;content&quot;:&quot;&quot;}},
                productId: &quot;4327947&quot;,
                selector: &quot;.amasty-label-container-2-4327947-cat&quot;
            })}">
        <div class="amlabel-text">
            PROMOCJA        </div>

            </div>
            </a>
    <a href="" x-data="initWishlist()" @click.prevent="addToWishlist(4327947)" aria-label="Dodaj do listy życzeń" class="wishlist-icon inline-flex flex-shrink-0 items-center justify-center text-gray-500 absolute
                    right-1 top-2">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 22" fill="none" class="w-5 h-5" role="img">
<path d="M16.9186 1.01447C18.5464 1.01447 20.0715 1.66554 21.2235 2.85676C22.3755 4.04799 23.0051 5.62985 23.0005 7.313C23.0005 8.99614 22.3662 10.578 21.2142 11.7692L12.4366 20.8119C12.3153 20.9373 12.1521 21 11.9935 21C11.8349 21 11.6717 20.9325 11.5504 20.8071L2.79148 11.7499C1.63948 10.5587 1.00051 8.98167 1.00051 7.29853C0.99585 5.61539 1.63015 4.03352 2.78215 2.8423C3.92949 1.6559 5.45927 1 7.08233 1C8.71006 1 10.2445 1.66072 11.3965 2.85194L12.0075 3.48372L12.6091 2.86159C13.7611 1.67036 15.2909 1.01447 16.9186 1.01447Z" stroke="#333333" stroke-width="1.5"></path>
<title>heart</title></svg>
                </a>
  </div>
  <hr>
  <div class="product-info flex flex-col flex-grow">
    <div class="category-item hidden first:flex flex-col items-center">
      <span class="font-light font-sm mb-1"> Drogerie Natura </span>
    </div>
    <h3 class="mt-1 mb-1 items-center justify-center font-semibold text-sm product-item-link-box
             text-center">
      <a class="slider item product-item-link" href="https://drogerienatura.pl/produkt/fresini-black-orchid-zelazko-w-sprayu-500ml-5901087323271">
                    Fresini Black Orchid Żelazko w sprayu 500ML                </a>
    </h3>
    <hr class="mb-1">
    <div class="rating-summary py-1 mx-auto">
    </div>
    <script>
      function initPriceBox__66065ad3c2549() {
        return {
          updatePrice(priceData) {
            const regularPriceLabel = this.$el.querySelector('.normal-price .price-label');
            const regularPriceElement = this.$el.querySelector('.normal-price .price-wrapper .price');
            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {
              regularPriceLabel.classList.add('hidden');
            } else {
              regularPriceLabel.classList.remove('hidden');
            }
            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);
          }
        }
      }
    </script>
    <div class="pt-1 text-center product-price-html" x-data="initPriceBox__66065ad3c2549()" @update-prices-4327947.window="updatePrice($event.detail);">
      <div class="price-box price-final_price" data-role="priceBox" data-product-id="4327947" data-price-box="product-id-4327947"> <span class="special-price
        text-price    ">
          <span class="price-container ">
            <span id="product-price-4327947" data-price-amount="7.99" data-price-type="finalPrice" class="price-wrapper "><span class="price">7,99&nbsp;zł</span></span>
            <span class="price-label">Cena promocyjna</span>
          </span>
        </span>
        <span class="old-price ">
          <span class="price-container ">
            <span id="old-price-4327947" data-price-amount="11.99" data-price-type="oldPrice" class="price-wrapper "><span class="price">11,99&nbsp;zł</span></span>
            <span class="price-label">Cena Regularna</span>
          </span>
        </span>
        <div class="historical-price"> Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki <span class="price text-xs font-regular text-gray-6
        line-through"> 8,27&nbsp;zł </span>
        </div>
      </div>
    </div>
    <div class="add-to-cart-btn mt-auto pt-3 flex flex-wrap justify-center items-center">
      <button class="btn btn-primary w-full btn-cart mb-0" aria-label="Dodaj do koszyka">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="w-6 h-6 svg" role="img">
          <path d="M16.0005 8C15.449 8 15.0005 8.44854 15.0005 9C15.0005 9.55146 15.449 10 16.0005 10C16.552 10 17.0005 9.55146 17.0005 9C17.0005 8.44854 16.552 8 16.0005 8Z" fill="currentColor"></path>
          <path d="M9.00049 8C8.44902 8 8.00049 8.44854 8.00049 9C8.00049 9.55146 8.44902 10 9.00049 10C9.55195 10 10.0005 9.55146 10.0005 9C10.0005 8.44854 9.55195 8 9.00049 8Z" fill="currentColor"></path>
          <path d="M9.00049 9V4.03572C9.00049 2.3618 10.5706 1 12.5006 1C14.4305 1 16.0006 2.3618 16.0005 4.03572V9" stroke="currentColor" stroke-width="1.2"></path>
          <path d="M3.59604 5H20.8131L22.0005 23H2.00049L3.59604 5Z" stroke="currentColor" stroke-width="1.2"></path>
          <title>cart</title>
        </svg>
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 25 25" fill="none" class="w-6 h-6 svg-hover" role="img">
          <path d="M15.79 8.43C15.21 8.43 14.73 8.91 14.73 9.49C14.73 10.07 15.2 10.55 15.79 10.55C16.38 10.55 16.85 10.07 16.85 9.49C16.85 8.91 16.38 8.43 15.79 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 8.43C7.81 8.43 7.33 8.91 7.33 9.49C7.33 10.07 7.8 10.55 8.39 10.55C8.98 10.55 9.45 10.07 9.45 9.49C9.45 8.91 8.98 8.43 8.39 8.43Z" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M8.39 9.49V4.22C8.39 2.44 10.05 1 12.09 1C14.13 1 15.79 2.45 15.79 4.22V9.49" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M14 24.35H1L2.68 5.25H20.87L21.5 14" stroke="#7DBA00" stroke-width="1.2"></path>
          <path d="M20.9689 19.0658H25V20.9812H20.9689V25H19.0072V20.9812H15V19.0658H19.0072V15H20.9689V19.0658Z" fill="#7DBA00"></path>
          <title>cart_hover</title>
        </svg>
      </button>
    </div>
    <a href="https://drogerienatura.pl/produkt/fresini-black-orchid-zelazko-w-sprayu-500ml-5901087323271" class="see-more-link">
                więcej            </a>
  </div>
</form>

Text Content

Skip to Content

Oszczędzanie mamy w Naturze >> Sprawdź

ColourFlow-nowa marka makeup - stworzona z miłości do kolorów >> Sprawdź <<

W tę niedzielę Drogerie Natura są otwarte! Kupuj prezenty w promocyjnych cenach
• Znajdź drogerię »

Sprawdź »

Skinimal 1+1 za 50% • Co drugi dermokosmetyk 50% taniej! • Sprawdź »

Ze względów na zmiany na stronie zamówienia z dni 6-8.09 będą realizowane z
opóźnieniem

.bg-info { background-color: #bf2032; } .bg-info p { color: #1b1b19; } .bg-info
path { stroke: #1b1b19; }

Zrób zakupy za 39zł i użyj kodu SUMMER w koszyku aby otrzymać Darmową Dostawę >>
Tylko Dziś 15.07 ! <<


@import
url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
close-white
hamburger




Darmowa dostawa od 149zł Outlet Superoferty Marki Gazetka Magazyn Natura Blog
Przeszukaj cały sklep tutaj... search search close

Wyniki wyszukiwania dla ""

Odkryj więcej
phone 22 454 62 00
club heart Koszyk cart 0
user
Zaloguj się Załóż konto
Menu close
Twarz chevron-right Ciało chevron-right Włosy chevron-right Makijaż
chevron-right Zapachy chevron-right Dermo chevron-right Naturalne chevron-right
Higiena chevron-right Mama i dziecko chevron-right Mężczyzna chevron-right
Zdrowie i żywność chevron-right Dom, ogród i pozostałe chevron-right
chevron-left Twarz close
Nowości Pielęgnacja twarzy chevron-right Oczyszczanie i demakijaż chevron-right
Pielęgnacja ust chevron-right Akcesoria Zestawy
chevron-left Pielęgnacja twarzy close
Krem do twarzy Kremy pod oczy Serum Olejki Maseczki Odżywki do rzęs i brwi

chevron-left Oczyszczanie i demakijaż close
Plyny micelarne Olejki i płyny dwufazowe Pianki do mycia twarzy Toniki i
hydrolaty Żele do mycia twarzy Mleczka Peelingi Chusteczki do demakijażu
chevron-left Pielęgnacja ust close
Pomadki ochronne Balsamy do ust Peelingi
chevron-left Ciało close
Nowości Kąpiel chevron-right Depilacja chevron-right Pielęgnacja ciała
chevron-right Pielęgnacja dłoni chevron-right Pielęgnacja stóp chevron-right SPA
chevron-right Akcesoria Zestawy
chevron-left Kąpiel close
Żele i pianki Mydła Olejki Peelingi Płyny do kąpieli Kule i sole do kąpieli
chevron-left Depilacja close
Maszynki Pianki i żele Kremy Plastry Depilacja woskiem Po depilacji
chevron-left Pielęgnacja ciała close
Balsamy, kremy i masła Olejki do ciała Modelowanie Opalanie
chevron-left Pielęgnacja dłoni close
Kremy i oliwki Peelingi i maski Akcesoria Manicure
chevron-left Pielęgnacja stóp close
Kremy do stóp Peelingi i maski Dezodoranty Akcesoria
chevron-left SPA close
Kosmetyki Świece i zapachy Kule i sole do kąpieli Akcesoria
chevron-left Włosy close
Nowości Pielęgnacja chevron-right Koloryzacja chevron-right Stylizacja
chevron-right Akcesoria chevron-right
chevron-left Pielęgnacja close
Szampony Suche szampony Odżywki Maski Olejki Serum Kuracje i zabiegi Peelingi do
skóry głowy
chevron-left Koloryzacja close
Farby Produkty koloryzujące Na odrosty Rozjaśniacze Henna Akcesoria
chevron-left Stylizacja close
Lakiery Żele Inne produkty stylizujące
chevron-left Akcesoria close
Szczotki Grzebienie Gumki, spinki Wałki, papiloty, termoloki Opaski Inne
akcesoria
chevron-left Makijaż close
Nowości Twarz chevron-right Oczy chevron-right Brwi chevron-right Usta
chevron-right Paznokcie chevron-right Akcesoria chevron-right
chevron-left Twarz close
Podkłady Korektory Pudry Bronzery Róże Rozświetlacze Konturowanie Bazy pod
makijaż Utrwalacze makijażu
chevron-left Oczy close
Tusze do rzęs Cienie Eyelinery Kredki do oczu Sztuczne rzęsy
chevron-left Brwi close
Kredki do brwi Pomady i woski Cienie do brwi Mydełka Żele i tusze do brwi Henna
Odżywki do rzęs i brwi
chevron-left Usta close
Pomadki i szminki Konturówki i kredki Błyszczyki Pielęgnacja
chevron-left Paznokcie close
Lakiery klasyczne Lakiery hybrydowe Topy i bazy Żele Ozdoby Zmywacze do paznokci
Odżywki do paznokci Akcesoria do paznokci Urządzenia Zestawy
chevron-left Akcesoria close
Pędzle i gąbki Kosmetyczki Bibułki matujące Pozostałe
chevron-left Zapachy close
Nowości Damskie chevron-right Męskie chevron-right Unisex chevron-right
chevron-left Damskie close
Wody perfumowane Wody toaletowe Dezodoranty perfumowane Mgiełki Zestawy
chevron-left Męskie close
Wody perfumowane Wody toaletowe Wody kolońskie Dezodoranty perfumowane Zestawy
chevron-left Unisex close
Wody perfumowane
chevron-left Dermo close
Nowości Twarz Ciało Włosy
chevron-left Naturalne close
Twarz Ciało Włosy Higiena Dom
chevron-left Higiena close
Nowości Artykuły higieniczne chevron-right Dezodoranty chevron-right Higiena
jamy ustnej chevron-right Higiena intymna chevron-right Produkty antybakteryjne
i ochronne chevron-right
chevron-left Artykuły higieniczne close
Papier toaletowy Chusteczki Płatki kosmetyczne Patyczki kosmetyczne
chevron-left Dezodoranty close
Antyperspiranty W kulce Dezodoranty perfumowane
chevron-left Higiena jamy ustnej close
Pasty do zębów Płyny i odświeżacze do ust Szczoteczki manualne Szczoteczki
elektryczne Wybielanie Produkty do protez Akcesoria dentystyczne
chevron-left Higiena intymna close
Podpaski Tampony Wkładki higieniczne Płyny do higieny intymnej Chusteczki do
higieny intymnej Pozostałe
chevron-left Produkty antybakteryjne i ochronne close
Żele i spraye antybakteryjne Mydła antybakteryjne Maseczki
chevron-left Mama i dziecko close
Artykuły higieniczne chevron-right Kąpiel i pielęgnacja chevron-right Dla mamy
chevron-right Żywienie chevron-right Akcesoria chevron-right Pranie
chevron-right Pozostałe
chevron-left Artykuły higieniczne close
Pieluchy Chusteczki Higiena intymna Higiena jamy ustnej
chevron-left Kąpiel i pielęgnacja close
Żele i szampony Mydła Oliwki Akcesoria do kąpieli Kremy i balsamy Przeciw
odparzeniom Ochrona przeciwsłoneczna
chevron-left Dla mamy close
Pielęgnacja w ciąży Sterylizatory i podgrzewacze Nianie elektroniczne Akcesoria
chevron-left Żywienie close
Obiadki i zupki
chevron-left Akcesoria close
Smoczki i gryzaki Butelki i kubki Do włosów Zabawki
chevron-left Pranie close
Kapsułki do prania Płyny do prania Płyny do płukania Odplamiacze
chevron-left Mężczyzna close
Zapachy chevron-right Twarz chevron-right Higiena chevron-right Włosy
chevron-right Zarost chevron-right Pozostałe
chevron-left Zapachy close
Wody perfumowane Wody toaletowe Wody kolońskie Dezodoranty perfumowane Zestawy
chevron-left Twarz close
Pielęgnacja Oczyszczanie
chevron-left Higiena close
Do kąpieli Dezodoranty
chevron-left Włosy close
Pielęgnacja Koloryzacja
chevron-left Zarost close
Pielęgnacja zarostu Maszynki Kremy do golenia Pianki do golenia Żele do golenia
Po goleniu Akcesoria do golenia
chevron-left Zdrowie i żywność close
Suplementy chevron-right Żywność chevron-right Seks chevron-right Ochrona
antybakteryjna chevron-right Produkty medyczne chevron-right Okulary i soczewki
chevron-right Leki
chevron-left Suplementy close
Witaminy Odporność Kontrola wagi Uroda Pamięć i układ nerwowy Na trawienie Dla
seniorów Stawy, kości, mięśnie Ciąża Odżywki białkowe Sprawność seksualna Dla
dzieci Pozostałe
chevron-left Żywność close
Superfood BIO Produkty śniadaniowe Kawa, herbata, kakao Miody Przekąski i
słodycze Woda i napoje Cukier i słodziki Pozostałe
chevron-left Seks close
Prezerwatywy Żele intymne Gadżety erotyczne Suplementy
chevron-left Ochrona antybakteryjna close
Żele i spraye antybakteryjne
chevron-left Produkty medyczne close
Plastry i opatrunki
chevron-left Okulary i soczewki close
Soczewki Krople i płyny
chevron-left Dom, ogród i pozostałe close
Nowości Kubki termiczne i butelki Rajstopy Dom chevron-right Ogród chevron-right
Elektronika Pozostałe chevron-right
chevron-left Dom close
Sprzątanie Czystość domu chevron-right Kuchnia Łazienka i toaleta Akcesoria
zapachowe
chevron-left Czystość domu close
Detergenty Kapsułki do prania Płyny do prania Płyny do płukania Odplamiacze
chevron-left Ogród close
Pielęgnacja i ochrona roślin Przeciw owadom i insektom Nawozy Akcesoria
chevron-left Pozostałe close
Akcesoria do butów Torby Dodatki



Mój koszyk ()

x



Cena regularna
Najniższa cena z 30 dni przed obniżką
trash
Ilość:
decrease-icon trash plus-icon

Razem (z VAT)



Złóż zamówienie Złóż zamówienie
Przejdź do koszyka
Wybrane dla Ciebie

Najniższa cena z 30 dni przed obniżką

cart cart_hover
loader
Przetwarzanie...
x

Checkout using your account

Adres e-mail

Hasło

Zaloguj się Zapomniałeś hasła?


Checkout as a new customer

Creating an account has many benefits:

 * See order and shipping status
 * Track order history
 * Check out faster

Załóż konto
chevron-left-banner

chevron-right-banner
chevron-left-banner

chevron-right-banner
Zapachy
SPFy
Podkłady
Kremy
Koloryzacja
Szampony
Pudry



BESTSELLERY

BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Włosy


ANWEN GROW US TENDER WCIERKA DO WŁOSÓW 150 ML - ZIOŁOWA, ROZGRZEWAJĄCA

--------------------------------------------------------------------------------


24,99 zł
1 ml / 0.17 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Holika Holika


HOLIKA HOLIKA ALOE WATERPROOF SUN GEL SPF50+ - ŻEL PRZECIWSŁONECZNY 100ML

--------------------------------------------------------------------------------


54,99 zł Cena promocyjna 69,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 56,79 zł
1 ml / 0.55 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Włosy


BATISTE WILDFLOWER SUCHY SZAMPON DO WŁOSÓW 200 ML

--------------------------------------------------------------------------------


13,69 zł
1 ml / 0.07 zł
cart cart_hover
więcej
NOWOŚĆ
PROMOCJA
heart

--------------------------------------------------------------------------------

Balsamy, kremy i masła


RETINOBAZA 1700 KREM Z WITAMINĄ A 30G

--------------------------------------------------------------------------------


10,99 zł Cena promocyjna 16,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 16,99 zł
1 ml / 0.37 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Zdrowie i żywność


ASCORVITA MAX WITAMINA C 1000MG 30 SZT.

--------------------------------------------------------------------------------


16,49 zł
1 szt / 16.49 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
1+1
heart

--------------------------------------------------------------------------------


Dermo


SKINIMAL KREM SEBOREGULUJĄCY Z KWASEM AZELAINOWYM 10%

--------------------------------------------------------------------------------


34,99 zł
1 ml / 0.70 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


AJONA MEDYCZNY KONCENTRAT PASTY DO ZĘBÓW DZIĄSEŁ I JĘZYKA 25 ML

--------------------------------------------------------------------------------


7,99 zł 7,19 zł As low as
1 ml / 0.32 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


MAYBELLINE MB LASH SENSATIONAL INTENSE BLACK

--------------------------------------------------------------------------------


27,59 zł
1 ml / 2.76 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BIOREPAIR NIGHT PASTA DO ZĘBÓW 75 ML

--------------------------------------------------------------------------------


18,99 zł 17,10 zł As low as
1 ml / 0.25 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Dermo


PHYSIOGEL KREM INTENSYWNY CERY SUCHA 100ML

--------------------------------------------------------------------------------


54,97 zł
1 ml / 0.55 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Ciało


HOLIKA HOLIKA ŻEL ALOESOWY 99% 250 ML - KOJĄCY, WIELOFUNKCYJNY

--------------------------------------------------------------------------------


25,38 zł
1 ml / 0.10 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BIOREPAIR PŁYN DO PŁUKANIA JAMY USTNEJ 500 ML

--------------------------------------------------------------------------------


16,99 zł
1 ml / 0.03 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


MÖLLER'S TRAN NORWESKI GOLD 250ML.

--------------------------------------------------------------------------------


30,99 zł
1 ml / 0.12 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


MAYBELLINE MB LASH SENSATIONAL VERY BLACK

--------------------------------------------------------------------------------


32,09 zł
1 ml / 3.21 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
1+1
heart

--------------------------------------------------------------------------------

Drogerie Natura


MY SECRET MOCNY ZEL DO BRWI WOW

--------------------------------------------------------------------------------


16,99 zł
1 ml / 1.70 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Twarz


LONG4LASHES SERUM PRZYSPIESZAJĄCE WZROST RZĘS 3 ML

--------------------------------------------------------------------------------


39,99 zł Cena promocyjna 84,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 49,99 zł
1 ml / 13.33 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Makijaż


L'OREAL PARIS LP TRUE MATCH PODKŁAD  N2

--------------------------------------------------------------------------------


42,99 zł
1 ml / 1.43 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Ciało


CREMOBAZA 50% KREM ZŁUSZ. EL.ZROGOW. 30G

--------------------------------------------------------------------------------


15,99 zł Cena promocyjna 21,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 17,89 zł
1 g / 0.53 zł
cart cart_hover
więcej
Pomysł na prezent
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Zapachy


CALVIN KLEIN CK EUPHORIA WOMAN EDP 100ML

--------------------------------------------------------------------------------


184,99 zł
1 ml / 1.85 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Makijaż


PIERRE RENE LIP MATIC KONTURÓWKA D/UST 07

--------------------------------------------------------------------------------


18,70 zł

cart cart_hover
więcej
Pomysł na prezent
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Zapachy


CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML

--------------------------------------------------------------------------------


89,95 zł
1 ml / 0.90 zł
cart cart_hover
więcej
chevron-left-banner

chevron-right-banner
Cena regularna regular price

Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki
cart cart_hover
Sprzedano: Pozostało:
chevron-left-banner chevron-right-banner
Superokazja
Okazja wygasa za 32:31:28
JANTAR Galaretka do laminacji włosów z bursztynem 150 G

14,99 zł Cena regularna 21,99 zł Cena regularna regular price regular price
1 g / 0.10 zł
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 15,95 zł
cart cart_hover
Sprzedano: Pozostało:
Sprzedano: 32 Pozostało: 68
chevron-left-banner chevron-right-banner



WYPRZEDAŻ 2+1 ZA 1 GROSZ

2+1
PROMOCJA
heart

--------------------------------------------------------------------------------

Balsamy, kremy i masła


BIELENDA VEGAN SMOOTHIE REGENERUJĄCY BALSAM DO CIAŁA BORÓWKA + KIWI 400 ML

--------------------------------------------------------------------------------


17,99 zł Cena promocyjna 26,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 20,23 zł
1 ml / 0.04 zł
cart cart_hover
więcej
2+1
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


L'OREAL PARIS LP COLOR RICHE SATIN 124

--------------------------------------------------------------------------------


42,99 zł
1 g / 8.60 zł
cart cart_hover
więcej
2+1
heart

--------------------------------------------------------------------------------

Drogerie Natura


SYOSS REPAIR BOOST INTENSYWNIE REGENERUJĄCA MASKA DO WŁOSÓW 500 ML

--------------------------------------------------------------------------------


25,99 zł
1 ml / 0.05 zł
cart cart_hover
więcej
BESTSELLER
2+1
heart

--------------------------------------------------------------------------------


Ciało


DOVE DEEPLY NOURISHING PIELĘGNUJĄCE MYDŁO W PŁYNIE Z POMPKĄ 250 ML

--------------------------------------------------------------------------------


6,89 zł
1 ml / 0.03 zł
cart cart_hover
więcej
BESTSELLER
2+1
heart

--------------------------------------------------------------------------------


Włosy


SYOSS BEAUTY ELIXIR ABSOLUTE OIL OLEJEK DO WŁOSÓW ZNISZCZONYCH 100 ML

--------------------------------------------------------------------------------


33,49 zł
1 ml / 0.33 zł
cart cart_hover
więcej
BESTSELLER
2+1
heart

--------------------------------------------------------------------------------


Włosy


TIMOTEI 2W1 INTENSYWNA PIELĘGNACJA SZAMPON Z ODŻYWKĄ 400 ML

--------------------------------------------------------------------------------


11,99 zł
1 ml / 0.03 zł
cart cart_hover
więcej
BESTSELLER
2+1
heart

--------------------------------------------------------------------------------


Włosy


ZIAJA JEJU DWUFAZOWA ODZYWKA D/WL.SPRAY 125ML

--------------------------------------------------------------------------------


11,29 zł
1 ml / 0.09 zł
cart cart_hover
więcej
BESTSELLER
2+1
heart

--------------------------------------------------------------------------------


Włosy


MARION NATURA SILK ODZ.ROZS.WL SPR.150M

--------------------------------------------------------------------------------


9,49 zł
1 ml / 0.06 zł
cart cart_hover
więcej
BESTSELLER
2+1
PROMOCJA
heart

--------------------------------------------------------------------------------

Dezodoranty


C-THRU HARMONY BLISS DEZODORANT W SPRAYU 150 ML

--------------------------------------------------------------------------------


10,79 zł
1 ml / 0.07 zł
cart cart_hover
więcej
BESTSELLER
2+1
heart

--------------------------------------------------------------------------------


Włosy


JOANNA TRADYCYJNA RECEPTURA SZAMPON TONIZUJĄCO-WZMACNIAJĄCY 300 ML

--------------------------------------------------------------------------------


7,99 zł
1 ml / 0.03 zł
cart cart_hover
więcej
chevron-left-banner

chevron-right-banner



NOWOŚCI

Tylko w Natura
BESTSELLER
1+1
heart

--------------------------------------------------------------------------------

Drogerie Natura


DASO BRONZER WYP. GORZKA CZ. 4G

--------------------------------------------------------------------------------


36,99 zł
1 g / 9.25 zł
cart cart_hover
więcej
NOWOŚĆ
heart

--------------------------------------------------------------------------------

Płyny do prania


DOMOFIX PŁYN DO PRANIA CZARNEGO 1,5L

--------------------------------------------------------------------------------


18,99 zł
1 ml / 0.01 zł
cart cart_hover
więcej
Tylko w Natura
NOWOŚĆ
1+1
heart

--------------------------------------------------------------------------------

Kremy i oliwki


SKINIMAL REGENERUJĄCO OCHRONNY KREM DO RĄK 120 ML

--------------------------------------------------------------------------------


15,99 zł
1 ml / 0.13 zł
cart cart_hover
więcej
NOWOŚĆ
heart

--------------------------------------------------------------------------------

Płyny do prania


DOMOFIX PŁYN DO PRANIA KOLORÓW 1,5L

--------------------------------------------------------------------------------


18,99 zł
1 ml / 0.01 zł
cart cart_hover
więcej
NOWOŚĆ
heart

--------------------------------------------------------------------------------


Zapachy


BUGATTI PERFORMANCE DEEP BLUE EDT 100ML

--------------------------------------------------------------------------------


119,99 zł
1 g / 0.33 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
1+1
heart

--------------------------------------------------------------------------------

Drogerie Natura


DASO PUDER WYP. KSIĘŻYC. POŚW. 4G

--------------------------------------------------------------------------------


36,99 zł
1 g / 9.25 zł
cart cart_hover
więcej
heart

--------------------------------------------------------------------------------

Drogerie Natura


PUR BALSAM NAGIETEK 750ML

--------------------------------------------------------------------------------


7,89 zł

cart cart_hover
więcej
Tylko w Natura
heart

--------------------------------------------------------------------------------

SENSIQUE


SENSIQUE MULTIDIMENSIONAL FACE PALETTE PALETA DO KONTUROWANIA TWARZY 16 G

--------------------------------------------------------------------------------


44,99 zł
1 g / 4.50 zł
cart cart_hover
więcej
NOWOŚĆ
heart

--------------------------------------------------------------------------------

Kremy i oliwki


GARNIER KREM DO RĄK HAND REPAIR 75 ML INTENSYWNA REGENERACJA SUCHEJ SKÓRY

--------------------------------------------------------------------------------


19,99 zł
1 ml / 0.27 zł
cart cart_hover
więcej
NOWOŚĆ
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Tusze do rzęs


L'OREAL PANORAMA MASKARA - TUSZ DO RZĘS, 10,5ML

--------------------------------------------------------------------------------


49,59 zł Cena promocyjna 69,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 49,99 zł
1 ml / 4.96 zł
cart cart_hover
więcej
chevron-left-banner

chevron-right-banner



NAJLEPSZE PROMOCJE

BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Twarz


LONG4LASHES SERUM PRZYSPIESZAJĄCE WZROST RZĘS 3 ML

--------------------------------------------------------------------------------


39,99 zł Cena promocyjna 84,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 49,99 zł
1 ml / 13.33 zł
cart cart_hover
więcej
NOWOŚĆ
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Tusze do rzęs


L'OREAL PANORAMA MASKARA - TUSZ DO RZĘS, 10,5ML

--------------------------------------------------------------------------------


49,59 zł Cena promocyjna 69,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 49,99 zł
1 ml / 4.96 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


MAYBELLINE MB LASH SENSATIONAL MASKARA SKY HIGH

--------------------------------------------------------------------------------


38,02 zł
1 ml / 3.80 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BLEND-A-MED 3D WHITE CLASSIC FRESH PASTA DO ZĘBÓW 75ML

--------------------------------------------------------------------------------


6,99 zł Cena promocyjna 8,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 7,09 zł
1 ml / 0.09 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Makijaż


ESSENCE ESS. I LOVE CRAZY VOLUME TUSZ 01

--------------------------------------------------------------------------------


10,92 zł Cena promocyjna 15,49 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 11,26 zł
1 ml / 1.21 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Makijaż


CATRICE HD LIQUID COVERAGE PODKLAD 010

--------------------------------------------------------------------------------


28,99 zł
1 ml / 0.97 zł
cart cart_hover
więcej
Pomysł na prezent
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Zapachy


CALVIN KLEIN OBSESSION NIGHT WOMAN EDP 100ML

--------------------------------------------------------------------------------


89,95 zł
1 ml / 0.90 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Twarz


ZIAJA LIŚCIE MANUKA ŻEL MYJĄCY NORMALIZUJĄCY NA DZIEŃ/NA NOC 200 ML

--------------------------------------------------------------------------------


10,18 zł Cena promocyjna 10,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 10,44 zł
1 ml / 0.05 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Twarz


NIVEA DWUFAZOWY PŁYN DO DEMAKIJAŻU OCZU 125 ML

--------------------------------------------------------------------------------


12,95 zł Cena promocyjna 17,49 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 12,99 zł
1 ml / 0.10 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Artykuły higieniczne


MILLY CHUSTECZKI HIGIENICZNE 3 WARSTWOWE 90 SZT. KAFLE

--------------------------------------------------------------------------------


4,49 zł Cena promocyjna 5,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 5,99 zł
1 szt / 0.05 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


L'OREAL PARIS LP TRUE MATCH PODKŁAD  W3

--------------------------------------------------------------------------------


38,58 zł Cena promocyjna 79,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 38,68 zł
1 ml / 1.29 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena intymna


BELLA PERFECTA ULTRA BLUE EXTRA SOFT PODPASKI HIGIENICZNE 20 SZTUK

--------------------------------------------------------------------------------


7,99 zł Cena promocyjna 8,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 8,63 zł
1 szt / 0.40 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Twarz


BIOHYALURON 3 X RETINOL PRZECIWZMARSZCZKOWY ŻEL ROLL-O POD OCZY I NA POWIEKI

--------------------------------------------------------------------------------


19,95 zł Cena promocyjna 25,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 19,99 zł
1 ml / 1.11 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
1+1
heart

--------------------------------------------------------------------------------


Twarz


SKINIMAL SERUM ROZJAŚNIAJĄCE WIT.C 10%

--------------------------------------------------------------------------------


25,49 zł Cena promocyjna 39,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 25,99 zł
1 ml / 0.85 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Twarz


CARMEX POMADKA OCHRONNA 4.25 G

--------------------------------------------------------------------------------


9,09 zł
1 g / 2.27 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Makijaż


KOBO PROFESSIONAL PUD. PRAS.MATT BRONZ. 311 NUBIAN D

--------------------------------------------------------------------------------


19,99 zł Cena promocyjna 27,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 27,99 zł
1 g / 2.22 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Włosy


YOPE BOOST SZAMPON DO WRAŻLIWEJ SKÓRY GŁOWY 300ML

--------------------------------------------------------------------------------


21,19 zł

cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


ORAL-B PRO-EXPERT CROSSACTION ALL-IN-ONE SZCZOTECZKA MANUALNA DO ZĘBÓW, ŚREDNIA
X 2

--------------------------------------------------------------------------------


16,99 zł
1 szt / 16.99 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Włosy


YOPE HYDRATE ODŻYWKA DO WŁOSÓW Z HUMEKTANTAMI 300ML

--------------------------------------------------------------------------------


21,74 zł

cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Włosy


YOPE BOOST SERUM DO KOŃCÓWEK 50ML

--------------------------------------------------------------------------------


17,99 zł

cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Mężczyzna


NIVEA MEN SENSITIVE ŁAGODZĄCY ŻEL DO GOLENIA 200 ML

--------------------------------------------------------------------------------


12,99 zł Cena promocyjna 15,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 13,99 zł
1 ml / 0.06 zł
cart cart_hover
więcej
chevron-left-banner

chevron-right-banner

 

 



 

Darmowa dostawa
od 149 zł

 

Darmowy odbiór w

drogeriach stacjonarnych

 

Program lojalnościowy

Klub Natura

 

Wysoka jakość

produktów

 

Szybka wysyłka

zamówienia

 

Infolinia

22 454 62 00



--------------------------------------------------------------------------------




NAJLEPSZE OFERTY


Odkryj więcej


PRODUKTY PIERWSZEJ POTRZEBY

BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


AJONA MEDYCZNY KONCENTRAT PASTY DO ZĘBÓW DZIĄSEŁ I JĘZYKA 25 ML

--------------------------------------------------------------------------------


7,99 zł 7,19 zł As low as
1 ml / 0.32 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BIOREPAIR NIGHT PASTA DO ZĘBÓW 75 ML

--------------------------------------------------------------------------------


18,99 zł 17,10 zł As low as
1 ml / 0.25 zł
cart cart_hover
więcej
Tylko w Natura
heart

--------------------------------------------------------------------------------


Ciało


SEYO POMARAŃ. PEELING CUKR 200ML

--------------------------------------------------------------------------------


12,99 zł
1 ml / 0.06 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


MILLY CHUSTECZKI HIGIENICZNE BOX 200 SZT. MAKARONIKI 2 WARSTWOWE

--------------------------------------------------------------------------------


5,49 zł
1 szt / 0.03 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
heart

--------------------------------------------------------------------------------


Ciało


SEYO MANGO MYDŁO ZAPAS 500 ML

--------------------------------------------------------------------------------


5,99 zł
1 ml / 0.01 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
heart

--------------------------------------------------------------------------------

Papier toaletowy


MILLY PAPIER TOALETOWY A'8 200 L

--------------------------------------------------------------------------------


15,99 zł
1 szt / 2.00 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BIAŁA PERŁA WYBIELAJĄCA PASTA DO ZĘBÓW KRYSTALICZNA BIEL 75 ML

--------------------------------------------------------------------------------


14,42 zł
1 ml / 0.19 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BIOREPAIR PŁYN DO PŁUKANIA JAMY USTNEJ 500 ML

--------------------------------------------------------------------------------


16,99 zł
1 ml / 0.03 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Dezodoranty


ANIDA MEDISOFT WOMAN ANTI-PERSPIRANT ROLL-ON 50 ML

--------------------------------------------------------------------------------


7,36 zł
1 ml / 0.15 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena intymna


BELLA PERFECTA ULTRA VIOLET SILKY DRAI PODPASKI HIGIENICZNE 20 SZTUK

--------------------------------------------------------------------------------


7,99 zł
1 szt / 0.40 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


BLEND-A-MED 3D WHITE CLASSIC FRESH PASTA DO ZĘBÓW 75ML

--------------------------------------------------------------------------------


6,99 zł Cena promocyjna 8,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 7,09 zł
1 ml / 0.09 zł
cart cart_hover
więcej
PROMOCJA
heart

--------------------------------------------------------------------------------

Dezodoranty


GARNIER MINERAL FLORAL FRESH ANTYPERSPIRANT 150 ML

--------------------------------------------------------------------------------


13,99 zł
1 ml / 0.09 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------


Ciało


ZIAJA MASŁO KAKAOWE KREMOWY ŻEL MYJĄCY 500 ML

--------------------------------------------------------------------------------


9,28 zł
1 ml / 0.02 zł
cart cart_hover
więcej
PROMOCJA
heart

--------------------------------------------------------------------------------

Podpaski


ALWAYS ULTRA NORMAL (R1) ZE SKRZYDEŁKAMI PODPASKI 10 SZTUK

--------------------------------------------------------------------------------


7,34 zł
1 szt / 0.73 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena intymna


LACTACYD FEMINA EMULSJA DO HIGIENY INTYMNEJ 200 ML

--------------------------------------------------------------------------------


15,59 zł
1 ml / 0.08 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Higiena jamy ustnej


HIMALAYA DENTAL CREAM AJURWEDYJSKA PASTA DO ZĘBÓW Z OLEJKIEM GOŹDZIKÓW 100G

--------------------------------------------------------------------------------


13,89 zł
1 g / 0.14 zł
cart cart_hover
więcej
chevron-left-banner

chevron-right-banner


ZAINSPIRUJ SIĘ NA BLOGU

JAK DZIAŁA OLEJEK RYCYNOWY NA TWARZ? TO CIĘ ZASKOCZY

Olej z nasion rącznika pospolitego znajduje szerokie zastosowanie w kosmetyce ze
względu na wysoką zawartość estrów glicerynowych kwasu rycynolowego. Czy można
aplikować olejek rycynowy na twarz i z czym warto go łączyć? Zobacz, jak go
włączyć do codziennej rutyny pielęgnacyjnej.

KARTA DUŻEJ RODZINY JUŻ DZIAŁA W DROGERIACH NATURA. RABAT 10 PROCENT

Drogerie Natura dołączyły do ogólnopolskiego programu wspierającego duże
rodziny. Karta Dużej Rodziny to system zniżek i dodatkowych uprawnień dla rodzin
3+ w instytucjach publicznych i w firmach prywatnych. Posiadacze KDR mają
możliwość tańszego korzystania z oferty partnerów m.in. z branży spożywczej,
paliwowej, bankowej czy rekreacyjnej.

DANIEL SOBIEŚNIEWSKI RADZI: IDEALNY MAKIJAŻ DLA PANNY MŁODEJ

Makijaż ślubny musi być perfekcyjny. Ślub to dzień, na który wiele kobiet czeka
w wielkim napięciu. To właśnie panna młoda jest obiektem największego
zainteresowania podczas całej ceremonii, dlatego powinna wyglądać nienagannie.
Stworzenie idealnej stylizacji jest więc dla wielu pań sprawą priorytetową.
Piękna suknia, dodatki, fryzura…, a całości powinien dopełniać dopracowany
makijaż ślubny.

JAKI MAKIJAŻ PASUJE DO ZIELONYCH OCZU? BEZPIECZNE KOLORY DLA ZIELONOOKICH

Zielone oczy ma zaledwie dwa procent ludzi, co czyni ten kolor najrzadszym na
świecie. Jeśli zaliczasz się do tego elitarnego grona, możesz czuć się naprawdę
wyjątkowo. Dowiedz się, jak malować zielone oczy, by wydobyć ich prawdziwe
piękno.

Odkryj więcej

Zaprenumeruj newsletter i korzystaj z benefitów


Chcesz być bliżej natury?

Interesują Cię tematy związane z:

 1. ekologią
 2. zrównoważonym rozwojem
 3. trendem zero waste
 4. dobrostanem
 5. zdrowiem i urodą
 6. opieką nad zwierzętami

Chcesz być bliżej natury? Interesują Cię tematy związane z ekologią,
zrównoważonym rozwojem, trendem zero waste,
dobrostanem, ale także zdrowiem i urodą?

Zapisz się do newslettera, bądź na bieżąco z nowinkami i korzystaj z benefitów
dla członków Klubu Natura.

Wyrażam zgodę na otrzymywanie od Natura Sp. z o.o. z siedzibą w Łodzi przy ulicy
Pojezierskiej nr 90A, 91 – 341 Łódź informacji handlowej o promocjach i
ofertach, zgodnie z ustawą z dnia 18 lipca 2002 r. o świadczeniu usług drogą
elektroniczną. Zgodę można cofnąć w każdym czasie.


Zapisz się

exclamation-circle

Wyrażam zgodę na otrzymywanie od Natura Sp. z o.o. z siedzibą w Łodzi przy ulicy
Pojezierskiej nr 90A, 91 – 341 Łódź informacji handlowej o promocjach i
ofertach, zgodnie z ustawą z dnia 18 lipca 2002 r. o świadczeniu usług drogą
elektroniczną. Zgodę można cofnąć w każdym czasie.


zgodnie z ustawą z dnia 18 lipca 2002 r. o świadczeniu usług drogą
elektroniczną. Zgodę można cofnąć w każdym czasie.



Drogeria Natura

chevron-down
O firmie Reklamacje Klub Natura Znajdź drogerię Regulaminy promocji

Sklep internetowy

chevron-down
Koszty i czas dostawy Formy płatności Zwroty i reklamacje online Składanie
zamówień Regulamin kodów rabatowych

Informacje

chevron-down
Kontakt FAQ Praca w Naturze


Obserwuj nas



Polityka prywatności Regulamin sklepu Ochrona danych Cookies

Copyright © Natura


Przeczytałem i akceptuję


NIE ZAPOMNIJ O:

PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


JANTAR GALARETKA DO LAMINACJI WŁOSÓW Z BURSZTYNEM 150 G

--------------------------------------------------------------------------------


14,99 zł Cena promocyjna 21,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 15,95 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
heart

--------------------------------------------------------------------------------


Ciało


SEYO MANGO MYDŁO ZAPAS 500 ML

--------------------------------------------------------------------------------


5,99 zł
cart cart_hover
więcej
NOWOŚĆ
PROMOCJA
heart

--------------------------------------------------------------------------------

Balsamy, kremy i masła


RETINOBAZA 1700 KREM Z WITAMINĄ A 30G

--------------------------------------------------------------------------------


10,99 zł Cena promocyjna 16,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 16,99 zł
cart cart_hover
więcej
Tylko w Natura
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Artykuły higieniczne


MILLY ZESTAW PŁATKOW 3X120SZT

--------------------------------------------------------------------------------


9,49 zł Cena promocyjna 12,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 9,66 zł
cart cart_hover
więcej
BESTSELLER
PROMOCJA
heart

--------------------------------------------------------------------------------

Drogerie Natura


FRESINI BLACK ORCHID ŻELAZKO W SPRAYU 500ML

--------------------------------------------------------------------------------


7,99 zł Cena promocyjna 11,99 zł Cena Regularna
Najniższa cena towaru w okresie 30 dni przed wprowadzeniem obniżki 8,27 zł
cart cart_hover
więcej
chevron-left-banner

chevron-right-banner
Przejdź do zamówienia
loader
Przetwarzanie...



PONIŻSZA STRONA PRZETWARZA PLIKI COOKIES

Strona wykorzystuje pliki Cookies (Ciasteczka), które są ważne dla prawidłowego
funkcjonowania serwisu, do optymalizacji przeglądania, personalizacji zawartości
zgodnie z Państwa zainteresowaniami oraz w celu analizowania ruchu w witrynie.
Klikając "Zgadzam się" zgadzasz się na używanie przez nas wszystkich plików
cookies. Możesz samodzielnie określić warunki przechowywania lub dostępu do
cookies w Twojej przeglądarce lub konfiguracji usługi, klikając w „Dostosuj”.
Wyrażając zgodę umożliwiasz nam przygotowywanie ofert i dostosowanie rabatów,
opartych na analizie Twojej aktywności. Więcej informacji odnośnie
wykorzystywanych przez nas plików Cookies znajdziesz w dokumencie Polityka
Cookie.
Zgadzam sięDostosuj



USTAWIENIA PLIKÓW COOKIE


Wykorzystanie plików cookie
Używamy plików cookie, aby zapewnić podstawowe funkcje strony internetowej i
poprawić Twoje doświadczenie online. Dla każdej kategorii możesz wybrać opcję
opt-in/out, kiedy tylko chcesz.
Ciasteczka reklamoweCiasteczka reklamowe
Reklamowe pliki cookie są wykorzystywane przez nas lub naszych partnerów do
pokazywania Ci odpowiednich treści lub reklam zarówno na naszej stronie, jak i
na stronach osób trzecich. Dzięki temu możemy tworzyć profile oparte na Państwa
zainteresowaniach, tzw. profile pseudonimizowane. Na podstawie tych informacji
zasadniczo nie jest możliwa bezpośrednia identyfikacja Państwa jako osoby,
ponieważ wykorzystywane są tylko dane pseudonimowe. O ile nie wyrażą Państwo
zgody, nie będą Państwo otrzymywać treści i reklam dostosowanych do Państwa
zainteresowań.

NazwaDostawcaOpisLinkCMIDcasalemedia.comCasale Media ustawia ten plik cookie,
aby zbierać informacje o zachowaniu użytkownika w celu kierowania reklam.
dowiedz się więcej CMPROcasalemedia.comPlik cookie CMPRO jest ustawiany przez
CasaleMedia w celu anonimowego śledzenia użytkowników i ukierunkowanej reklamy.
samej reklamy. dowiedz się więcej CMPScasalemedia.comPlik cookie CMPS jest
ustawiany przez CasaleMedia w celu anonimowego śledzenia użytkowników w oparciu
o wizyty użytkownika na stronie internetowej, w celu wyświetlania
ukierunkowanych reklam. dowiedz się więcej IDEGoogleGoogle DoubleClick
wykorzystuje ten plik cookie do rejestrowania i raportowania działań
użytkowników na stronach internetowych po wyświetleniu lub kliknięciu reklam
reklamodawcy, w celu pomiaru skuteczności reklam i dostarczania ukierunkowanych
reklam użytkownikom. dowiedz się więcej _fbpMetaJest on wykorzystywany przez
Facebooka do dostarczania szeregu produktów reklamowych, takich jak licytacja w
czasie rzeczywistym od zewnętrznych reklamodawców. dowiedz się więcej _kuid_Krux
DigitalTen plik cookie jest powiązany z Krux Digital, amerykańską firmą
dostarczającą platformę zarządzania danymi, która umożliwia profilowanie
zainteresowań odwiedzających w czasie rzeczywistym. dowiedz się więcej
matchadformRokuPrezentuje użytkownikowi odpowiednie treści i reklamy. Usługa
jest świadczona przez zewnętrzne centra reklamowe, które ułatwiają reklamodawcom
składanie ofert w czasie rzeczywistym. dowiedz się więcej zcZeotapRegisters data
on visitors from multiple visits and on multiple websites. This information is
used to measure the efficiency of advertisement on websites. dowiedz się więcej

Ciasteczka analityczneCiasteczka analityczne
Analityczne pliki cookie pozwalają nam mierzyć wydajność naszej strony
internetowej i naszych kampanii reklamowych. Wykorzystujemy je do określenia
liczby wizyt i źródeł odwiedzin naszej strony internetowej. Dane uzyskane za
pośrednictwem tych plików cookie przetwarzamy w sposób zagregowany, bez użycia
identyfikatorów wskazujących na konkretnych użytkowników naszej strony
internetowej. Jeśli wyłączysz stosowanie plików cookie analitycznych w
odniesieniu do swojej wizyty, tracimy możliwość analizy wydajności i
optymalizacji naszych działań.

NazwaDostawcaOpisLink_gaGoogleRejestruje unikalny identyfikator używany do
generowania danych statystycznych dotyczących sposobu korzystania z witryny
przez odwiedzającego. dowiedz się więcej _ga_V3G2K8ZNQPGoogleRejestruje unikalny
identyfikator używany do generowania danych statystycznych dotyczących sposobu
korzystania z witryny przez odwiedzającego. dowiedz się więcej
_hjAbsoluteSessionInProgressHotjarOkres ten wskazuje długość okresu, w którym
usługa może przechowywać i/lub odczytywać określone dane z komputera użytkownika
za pomocą pliku cookie, piksela, interfejsu API, śledzenia bez plików cookie lub
innych zasobów. dowiedz się więcej _hjFirstSeenHotjarIdentyfikuje pierwszą sesję
nowego użytkownika. Używany przez filtry nagrywania do identyfikacji nowych
sesji użytkowników. Czas trwania 30 minut, rozszerzony o aktywność użytkownika.
Typ danych logiczna prawda/fałsz. dowiedz się więcej
_hjIncludedInSessionSample_3382368HotjarUstawienie określające, czy użytkownik
jest uwzględniony w próbkowaniu danych zdefiniowanym przez limit odsłon witryny.
Czas trwania 2 minuty, przedłużany co 30 sekund. Typ danych logiczna
prawda/fałsz. dowiedz się więcej _hjSessionUser_3382368HotjarUstawiany, gdy
użytkownik po raz pierwszy wyląduje na stronie. Utrwala identyfikator
użytkownika Hotjar, który jest unikalny dla tej witryny. Hotjar nie śledzi
użytkowników w różnych witrynach. Zapewnia, że dane z kolejnych wizyt w tej
samej witrynie są przypisywane do tego samego identyfikatora użytkownika. Czas
trwania 365 dni. Typ danych JSON. dowiedz się więcej
_hjSession_3382368HotjarPrzechowuje bieżące dane sesji. Zapewnia, że kolejne
żądania w oknie sesji są przypisywane do tej samej sesji. Czas trwania 30 minut,
przedłużany w zależności od aktywności użytkownika. Typ danych JSON. dowiedz się
więcej _smvsSalesManagoCiasteczko zawiera informacje na temat źródła wizyty na
stronie z podziałem na typy źródeł dowiedz się więcej
smcfdsSalesManagoPrzechowuje informacje o formularzach wyświetlanych na stronie.
dowiedz się więcej smuuidSalesManagoŚledzi anonimowe wizyty; jest przypisany do
każdego, kto wyląduje na stronie. dowiedz się więcej smvrSalesManagoPrzechowuje
informacje o wizytach (zakodowane base64) dowiedz się więcej

Pliki cookie związane z funkcjonalnościąPliki cookie związane z funkcjonalnością
Te pliki cookie są niezbędne do prawidłowego funkcjonowania naszej strony
internetowej. Bez tych plików cookie strona może nie działać prawidłowo.

NazwaDostawcaOpisLinkPHPSESSIDMagentoZachowanie stanu sesji Użytkownika. dowiedz
się więcej SERVERIDMagentoTen plik cookie służy do przypisania odwiedzającego do
określonego serwera - ta funkcja jest niezbędna do działania strony
internetowej. dowiedz się więcej STUIDMagentoTen plik cookie identyfikuje
unikalną sesję przeglądania. dowiedz się więcej STVIDMagentoTen plik cookie
identyfikuje unikalnego powracającego użytkownika. dowiedz się więcej
abMagentoJest to narzędzie służące do łączenia lub zmiany treści na stronie.
Dzięki temu strona internetowa może znaleźć najlepszą odmianę / edycję witryny.
dowiedz się więcej ar_debugMagentoSprawdza, czy obecny jest techniczny
debugger-cookie. dowiedz się więcej form_keyMagentoCiastko systemowe niezbędne
do działania strony. dowiedz się więcej gdpr-cookiesMagentoPozwala na
przechowywanie zestawu zgód cookie wraz z identyfikatorem i datą zgody. dowiedz
się więcej last_visited_storeMagentoTen plik cookie śledzi ostatnio odwiedzaną
witrynę. Jest to niezbędne do włączenia właściwego języka na stronie
internetowej. dowiedz się więcej mage-cache-sessidMagentoWartość tego pliku
cookie uruchamia czyszczenie lokalnej pamięci podręcznej. Gdy plik cookie
zostanie usunięty przez aplikację zaplecza, administrator wyczyści lokalną
pamięć i ustawi wartość pliku cookie na true. dowiedz się więcej
private_content_versionMagentoDodaje losowy, unikalny numer i czas do stron z
zawartością klienta, aby zapobiec ich buforowaniu na serwerze. Jest on ustawiany
w wielu miejscach: w PHP, w JavaScript jako plik cookie oraz w JavaScript do
pamięci lokalnej. dowiedz się więcej section_data_idsMagentoPrzechowuje
informacje specyficzne dla klienta związane z działaniami zainicjowanymi przez
kupującego, takimi jak wyświetlanie listy życzeń, informacje o kasie itp.
dowiedz się więcej

Pliki cookie służące do personalizacjiPliki cookie służące do personalizacji
Pliki cookie do personalizacji mogą wykorzystywać pliki cookie stron trzecich,
aby pomóc im w personalizacji treści i śledzeniu użytkowników na różnych
stronach internetowych i urządzeniach.

NazwaDostawcaOpisLinkCAdFormSłuży do sprawdzenia, czy przeglądarka użytkownika
obsługuje pliki cookie. dowiedz się więcej CMAdFormOkreśla, czy istnieje
potrzeba ponownego sprawdzenia dopasowania plików cookie partnera (ustawionych
przez AdServing). dowiedz się więcej CM14AdFormOkreśla, czy istnieje potrzeba
ponownego sprawdzenia dopasowania plików cookie partnera (ustawionego przez
Cookie Matching). dowiedz się więcej SEUNCYSemasioRejestruje unikalny
identyfikator, który identyfikuje urządzenie użytkownika w przypadku ponownych
wizyt. dowiedz się więcej anjAppNexusRejestruje unikalny identyfikator, który
identyfikuje urządzenie powracającego użytkownika. Identyfikator jest używany w
reklamach kierowanych. dowiedz się więcej arcki2Audrte.comGromadzi dane
dotyczące zachowania użytkownika i interakcji w celu optymalizacji strony
internetowej i zwiększenia trafności reklam na stronie. dowiedz się więcej
arcki2_adformAudrte.comPrzedstawia użytkownikowi odpowiednią treść i reklamę.
Usługa jest świadczona przez zewnętrzne centra reklamowe, które ułatwiają
reklamodawcom licytowanie w czasie rzeczywistym. dowiedz się więcej
arcki2_ddp2Audrte.comPrzedstawia użytkownikowi odpowiednią treść i reklamę.
Usługa jest świadczona przez zewnętrzne centra reklamowe, które ułatwiają
reklamodawcom licytowanie w czasie rzeczywistym. dowiedz się więcej
bkpaOraclePliki cookie Blue Kai są ustawiane przez witryny internetowe w celu
rejestrowania anonimowych działań użytkowników, a także agregowania anonimowych
działań, aby umożliwić marketerom dostarczanie bardziej ukierunkowanych reklam
online. dowiedz się więcej bkuOraclePliki cookie Blue Kai są ustawiane przez
witryny internetowe w celu rejestrowania anonimowych działań użytkowników, a
także agregowania anonimowych działań, aby umożliwić marketerom dostarczanie
bardziej ukierunkowanych reklam online. dowiedz się więcej demdexAdobeZa pomocą
unikalnego identyfikatora, który jest używany do semantycznej analizy treści,
nawigacja użytkownika na stronie jest rejestrowana i połączona z danymi offline
z ankiet i podobnych rejestracji w celu wyświetlenia ukierunkowanej reklamy.
dowiedz się więcej dpmAdobeUstawia niepowtarzalny identyfikator dla gościa, co
pozwala reklamodawcom z trzeciej strony na dotarcie do użytkownika z
odpowiednimi reklamami nasienie Ta usługa parowania jest świadczona przez centra
reklamowe stron trzecich, co ułatwia reklamodawcom licytowanie w czasie
rzeczywistym. dowiedz się więcej pxrcrlcdn.comTen plik cookie rejestruje dane
nieosobowe odwiedzającego. Informacje te są wykorzystywane do optymalizacji
trafności reklam. dowiedz się więcej rlas3rlcdn.comTen plik cookie służy do
dostarczania reklam, lepiej dopasowanych do Ciebie i Twoich zainteresowań. Jest
również wykorzystywany do ograniczenia wyświetleń reklamy, jak również pomaga
mierzyć skuteczność kampanii reklamowej. dowiedz się więcej uuid2AppNexusUżywany
przez ad nexus analytics by AppNexus dowiedz się więcej wfivefivecRoku. dowiedz
się więcej

Użycie danych użytkownika reklamUżycie danych użytkownika reklam
Określa stan zgody na wysyłanie do Google danych użytkownika związanych z
reklamami.
Personalizacja reklamPersonalizacja reklam
Określa stan zgody na reklamy spersonalizowane.
Nieklasyfikowane
Nieklasyfikowane pliki cookie, to pliki, które są w procesie klasyfikowania,
wraz z dostawcami poszczególnych ciasteczek.

NazwaDostawcaOpisLinkAFFICHE_WUnknown dowiedz się więcej UIDUnknown dowiedz się
więcej UserID1Unknown dowiedz się więcej __rtbh.lidUnknown dowiedz się więcej
gUnknown dowiedz się więcej uUnknown dowiedz się więcej uid-bp-617Unknown
dowiedz się więcej tsUnknown dowiedz się więcej cookieUnknown dowiedz się więcej
done_redirects147Unknown dowiedz się więcej done_redirects219Unknown dowiedz się
więcej zscUnknown dowiedz się więcej XANDR_PANIDUnknown dowiedz się więcej
receive-cookie-deprecationUnknown dowiedz się więcej

Więcej informacji
W przypadku jakichkolwiek zapytań związanych z moją polityką dotyczącą plików
cookies i Twoich wyborów, proszę o kontakt.
Akceptuj wszystkieOdrzuć wszystkieZezwól na wybór