www.sayeret.co.il Open in urlscan Pro
104.26.2.159  Public Scan

Submitted URL: http://www.sayeret.co.il/
Effective URL: https://www.sayeret.co.il/
Submission: On June 16 via api from US — Scanned from IL

Form analysis 41 forms found in the DOM

GET https://www.sayeret.co.il/catalogsearch/result/

<form class="form minisearch" id="search_mini_form" action="https://www.sayeret.co.il/catalogsearch/result/" method="get">
  <div class="relative">
    <label class="sr-only" for="search"> חיפוש בכל החנות... </label>
    <input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" type="search"
      class="w-full text-lg leading-normal transition appearance-none text-grey-800 focus:border-mandarin focus:ring-mandarin lg:text-xl rounded-full border-dark-lava pl-10" autocapitalize="off" autocomplete="off" autocorrect="off" name="q" value=""
      placeholder="חיפוש בכל החנות..." maxlength="128">
  </div>
  <div id="search_autocomplete" class="search-autocomplete relative w-full" x-show="show" style="display:none;">
    <div class="search-container absolute bg-white border border-solid border-black z-50 w-full grid grid-cols-1 lg:grid-cols-2/3">
      <template x-for="searchResultByType in Object.values(searchResultsByType)">
        <div class="">
          <template x-if="searchResultByType.hasOwnProperty(0) &amp;&amp; templates[searchResultByType[0].type].title &amp;&amp; templates[searchResultByType[0].type].titleRenderer === undefined">
            <div class="font-bold pt-2 pl-3" x-text="templates[searchResultByType[0].type].title"></div>
          </template>
          <template x-if="searchResultByType.hasOwnProperty(0) &amp;&amp; templates[searchResultByType[0].type].titleRenderer !== undefined">
            <div class="font-bold pt-2 pl-3" x-text="window[templates[searchResultByType[0].type].titleRenderer](searchResultByType)"></div>
          </template>
          <template x-for="searchResult in searchResultByType">
            <div class="hover:bg-gray-100">
              <template x-if="searchResult.type == 'term'">
                <a class="w-full block p-2" x-bind:href="'https://www.sayeret.co.il/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" :href="searchResult.url" :title="searchResult.title">
<div class="grid grid-cols-4 gap-4 p-3">
<div>
<img :src="searchResult.image" class="inline-block">
</div>
<div class="col-span-3">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-sm font-bold flex" x-html="searchResult.price"></span>
</div>
</div>
</a>
              </template>
              <template x-if="searchResult.type == 'category'">
                <a class="w-full block p-3" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm italic block text-gray-500" x-text="searchResult.breadcrumb.join(' > ').concat(' > ')"></span>
<span class="text-sm" x-text="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>
            </div>
          </template>
        </div>
      </template>
    </div>
  </div>
</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="customer-email">
        <span>כתובת דוא"ל</span>
      </label>
      <div class="control">
        <input name="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="pass" class="label">
        <span>סיסמה</span>
      </label>
      <div class="control">
        <input name="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"> כניסה </button>
      <a href="https://www.sayeret.co.il/customer/account/forgotpassword/">
שכחת סיסמה? </a>
    </div>
  </div>
</form>

GET https://www.sayeret.co.il/catalogsearch/result/

<form class="form minisearch" id="search_mini_form-mobile" action="https://www.sayeret.co.il/catalogsearch/result/" method="get">
  <div class="relative">
    <label class="sr-only" for="search"> חיפוש בכל החנות... </label>
    <input id="search-mobile" x-on:input.debounce="getSearchResultsMobile()" x-ref="searchInput" type="search" class="w-full text-lg leading-normal transition appearance-none text-grey-800
                 focus:border-dark-lava lg:text-xl rounded-full border-dark-lava pl-10" "="" autocapitalize=" off" autocomplete="off" autocorrect="off" name="q" value="" placeholder="חיפוש בכל החנות..." maxlength="128">
  </div>
  <div id="search_autocomplete" class="search-autocomplete relative w-full" x-show="show" style="display:none;">
    <div class="absolute search-container bg-white border border-solid border-black z-20 w-full grid grid-cols-1">
      <template x-for="searchResultByType in Object.values(searchResultsByType)">
        <div class="">
          <template x-if="searchResultByType.hasOwnProperty(0) &amp;&amp; templates[searchResultByType[0].type].title &amp;&amp; templates[searchResultByType[0].type].titleRenderer === undefined">
            <div class="font-bold pt-2 pl-3" x-text="templates[searchResultByType[0].type].title"></div>
          </template>
          <template x-if="searchResultByType.hasOwnProperty(0) &amp;&amp; templates[searchResultByType[0].type].titleRenderer !== undefined">
            <div class="font-bold pt-2 pl-3" x-text="window[templates[searchResultByType[0].type].titleRenderer](searchResultByType)"></div>
          </template>
          <template x-for="searchResult in searchResultByType">
            <div class="hover:bg-gray-100">
              <template x-if="searchResult.type == 'term'">
                <a class="w-full block p-2" x-bind:href="'https://www.sayeret.co.il/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" :href="searchResult.url" :title="searchResult.title">
<div class="grid grid-cols-4 gap-4 p-3">
<div>
<img :src="searchResult.image" class="inline-block">
</div>
<div class="col-span-3">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-sm font-bold flex" x-html="searchResult.price"></span>
</div>
</div>
</a>
              </template>
              <template x-if="searchResult.type == 'category'">
                <a class="w-full block p-3" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm italic block text-gray-500" x-text="searchResult.breadcrumb.join(' > ').concat(' > ')"></span>
<span class="text-sm" x-text="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>
            </div>
          </template>
        </div>
      </template>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11726/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11726/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide left-3" data-gslide="0" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11726">
  <a href="https://www.sayeret.co.il/mhclt-3-3-iard-m-1.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11726.window="$el.src = $event.detail" alt="מחצלת 3/4" title="מחצלת 3/4" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/_/4/_4_4_1_1_2.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mhclt-3-3-iard-m-1.html">
מחצלת שטח 2/2 יארד 1.82/1.82 מ' </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bd91fd7() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bd91fd7()" @update-prices-11726.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11726" data-price-box="product-id-11726">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11726" data-price-amount="59" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏59.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11726)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11726)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11725/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11725/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide visible active left-2" data-gslide="1" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11725">
  <a href="https://www.sayeret.co.il/mzrvn-ivgh-khvl-pvc-0-6-go-nature-6.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11725.window="$el.src = $event.detail" alt="חזור כיסא דייגים משודרג מסדרת אלסקה camptown" title="חזור כיסא דייגים משודרג מסדרת אלסקה camptown" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/7/2/7296049024623.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mzrvn-ivgh-khvl-pvc-0-6-go-nature-6.html">
חזור כיסא דייגים משודרג מסדרת אלסקה camptown </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bd9aa98() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bd9aa98()" @update-prices-11725.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11725" data-price-box="product-id-11725">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11725" data-price-amount="89" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏89.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11725" data-price-amount="79" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏79.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11725)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11725)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11724/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11724/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide visible left-1" data-gslide="2" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11724">
  <a href="https://www.sayeret.co.il/mzrvn-ivgh-khvl-pvc-0-6-go-nature-5.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11724.window="$el.src = $event.detail" alt="מיטת שטח מתקפלת לתיק נשיאה בצבע שחור CAMPTOWN" title="מיטת שטח מתקפלת לתיק נשיאה בצבע שחור CAMPTOWN" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/9/0/90245_26012024102005.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mzrvn-ivgh-khvl-pvc-0-6-go-nature-5.html">
מיטת שטח מתקפלת לתיק נשיאה בצבע שחור CAMPTOWN </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bd9baef() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bd9baef()" @update-prices-11724.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11724" data-price-box="product-id-11724">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11724" data-price-amount="399" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏399.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11724" data-price-amount="189" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏189.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11724)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11724)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11720/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11720/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide center visible" data-gslide="3" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11720">
  <a href="https://www.sayeret.co.il/wvlhn-qvmpqti-mtqpl-oasis-11.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11720.window="$el.src = $event.detail" alt="שולחן פיקניק קמפינג מתקפל + 4 כסאות CAMPTOWN" title="שולחן פיקניק קמפינג מתקפל + 4 כסאות CAMPTOWN" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/4/2/4217_260920231221071.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/wvlhn-qvmpqti-mtqpl-oasis-11.html">
שולחן פיקניק קמפינג מתקפל + 4 כסאות CAMPTOWN </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bd9c9dc() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bd9c9dc()" @update-prices-11720.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11720" data-price-box="product-id-11720">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11720" data-price-amount="249" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏249.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11720)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11720)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11716/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11716/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide center visible" data-gslide="4" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11716">
  <a href="https://www.sayeret.co.il/wq-wih-tbvr-mbit-outdoor-7.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11716.window="$el.src = $event.detail" alt="כילה זוגית מלבנית EFOD" title="כילה זוגית מלבנית EFOD" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/k/i/kila-zug_1.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/wq-wih-tbvr-mbit-outdoor-7.html">
כילה זוגית מלבנית EFOD </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bd9d878() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bd9d878()" @update-prices-11716.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11716" data-price-box="product-id-11716">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11716" data-price-amount="109" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏109.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11716" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏99.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11716)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11716)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11685/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11685/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-1" data-gslide="5" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11685">
  <a href="https://www.sayeret.co.il/mzrvn-ivgh-khvl-pvc-0-6-go-nature-4.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11685.window="$el.src = $event.detail" alt="FOLDING BED מיטה לשטח GO NATURE" title="FOLDING BED מיטה לשטח GO NATURE" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/f/o/folding_bed_28958.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mzrvn-ivgh-khvl-pvc-0-6-go-nature-4.html">
FOLDING BED מיטה לשטח GO NATURE </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bd9eed5() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bd9eed5()" @update-prices-11685.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11685" data-price-box="product-id-11685">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11685" data-price-amount="389" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏389.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11685" data-price-amount="299" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏299.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11685)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11685)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11681/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11681/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-2" data-gslide="6" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11681">
  <a href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-9.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11681.window="$el.src = $event.detail" alt="שלוקר שורש פרימיום | 3 ליטר | Premium" title="שלוקר שורש פרימיום | 3 ליטר | Premium" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/p/r/primium2-3_1.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-9.html">
שלוקר שורש פרימיום | 3 ליטר | Premium </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda01e6() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda01e6()" @update-prices-11681.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11681" data-price-box="product-id-11681">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11681" data-price-amount="169" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏169.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11681)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11681)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11680/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11680/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-3" data-gslide="7" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11680">
  <a href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-8.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11680.window="$el.src = $event.detail" alt="שלוקר שורש פרימיום | 2 ליטר | Premium" title="שלוקר שורש פרימיום | 2 ליטר | Premium" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/p/r/primium2-3.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-8.html">
שלוקר שורש פרימיום | 2 ליטר | Premium </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda11f5() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda11f5()" @update-prices-11680.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11680" data-price-box="product-id-11680">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11680" data-price-amount="159" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏159.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11680)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11680)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11679/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11679/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-4" data-gslide="8" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11679">
  <a href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-7.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11679.window="$el.src = $event.detail" alt="שלוקר שורש עם פתח מילוי נוסף | נפח 3 ליטר | Ultimate" title="שלוקר שורש עם פתח מילוי נוסף | נפח 3 ליטר | Ultimate" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/u/l/ultimate3_1.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-7.html">
שלוקר שורש עם פתח מילוי נוסף | נפח 3 ליטר | Ultimate </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda20db() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda20db()" @update-prices-11679.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11679" data-price-box="product-id-11679">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11679" data-price-amount="199" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏199.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11679)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11679)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11678/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11678/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-5" data-gslide="9" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11678">
  <a href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-6.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11678.window="$el.src = $event.detail" alt="שלוקר שורש עם פתח מילוי נוסף | נפח 2 ליטר | Ultimate" title="שלוקר שורש עם פתח מילוי נוסף | נפח 2 ליטר | Ultimate" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/u/l/ultimate3.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/mimiih-wlvqr-wvrw-2-litr-widepac-6.html">
שלוקר שורש עם פתח מילוי נוסף | נפח 2 ליטר | Ultimate </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda3031() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda3031()" @update-prices-11678.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11678" data-price-box="product-id-11678">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11678" data-price-amount="179" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏179.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11678)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11678)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11675/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11675/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-6" data-gslide="10" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11675">
  <a href="https://www.sayeret.co.il/wq-wih-tbvr-mbit-outdoor-6.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11675.window="$el.src = $event.detail" alt="כילה יחיד מלבנית EFOD" title="כילה יחיד מלבנית EFOD" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/k/i/kila-zug.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/wq-wih-tbvr-mbit-outdoor-6.html">
כילה יחיד מלבנית EFOD </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda3ff7() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda3ff7()" @update-prices-11675.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11675" data-price-box="product-id-11675">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11675" data-price-amount="79" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏79.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11675" data-price-amount="59" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏59.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11675)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11675)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11674/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11674/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-7" data-gslide="11" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11674">
  <a href="https://www.sayeret.co.il/wq-wih-tbvr-mbit-outdoor-5.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11674.window="$el.src = $event.detail" alt="כילה פירמידה ליחיד EFOD" title="כילה פירמידה ליחיד EFOD" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/k/i/kila-piramida-ihid.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/wq-wih-tbvr-mbit-outdoor-5.html">
כילה פירמידה ליחיד EFOD </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda500e() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda500e()" @update-prices-11674.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11674" data-price-box="product-id-11674">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11674" data-price-amount="129" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏129.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11674" data-price-amount="119" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏119.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11674)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11674)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11670/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11670/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-9" data-gslide="13" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11670">
  <a href="https://www.sayeret.co.il/erkt-mikl-mzvn-wvmr-tmprtvrh-1-27l-bcbe-ksvp-5.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11670.window="$el.src = $event.detail" alt="סט פיקניק 32 חלקים במארז נשיאה נוח" title="סט פיקניק 32 חלקים במארז נשיאה נוח" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/3/238003-1.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/erkt-mikl-mzvn-wvmr-tmprtvrh-1-27l-bcbe-ksvp-5.html">
סט פיקניק 32 חלקים במארז נשיאה נוח </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda6fa4() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda6fa4()" @update-prices-11670.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11670" data-price-box="product-id-11670">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11670" data-price-amount="99" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏99.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11670" data-price-amount="59" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏59.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11670)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11670)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11669/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11669/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-10" data-gslide="14" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11669">
  <a href="https://www.sayeret.co.il/avhl-trmilaim-l-2-anwim-star-light-go-nature-1.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11669.window="$el.src = $event.detail" alt="אוהל פתיחה מהירה ל- 4  אנשים Camptown 210/210/140" title="אוהל פתיחה מהירה ל- 4  אנשים Camptown 210/210/140" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/c/a/camptown4.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/avhl-trmilaim-l-2-anwim-star-light-go-nature-1.html">
אוהל פתיחה מהירה ל- 4 אנשים Camptown 210/210/140 </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda7ea1() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda7ea1()" @update-prices-11669.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11669" data-price-box="product-id-11669">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11669" data-price-amount="229" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏229.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11669)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11669)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11665/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11665/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-11" data-gslide="15" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11665">
  <a href="https://www.sayeret.co.il/wvlhn-qvmpqti-mtqpl-oasis-10.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11665.window="$el.src = $event.detail" alt="שולחן קמפינג גדול חגור" title="שולחן קמפינג גדול חגור" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/8/j/8j3a7996.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/wvlhn-qvmpqti-mtqpl-oasis-10.html">
שולחן קמפינג גדול חגור </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda8eb8() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda8eb8()" @update-prices-11665.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11665" data-price-box="product-id-11665">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11665" data-price-amount="349" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏349.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11665" data-price-amount="299" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏299.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11665)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11665)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11664/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11664/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-12" data-gslide="16" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11664">
  <a href="https://www.sayeret.co.il/wvlhn-qvmpqti-mtqpl-oasis-9.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11664.window="$el.src = $event.detail" alt="שולחן קמפינג נמוך חגור" title="שולחן קמפינג נמוך חגור" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/_/-/_-_-_-3.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/wvlhn-qvmpqti-mtqpl-oasis-9.html">
שולחן קמפינג נמוך חגור </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bda9f4a() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bda9f4a()" @update-prices-11664.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11664" data-price-box="product-id-11664">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11664" data-price-amount="99" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏99.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 w-full h-px bg-black"></span>
                </span>
                <span class="special-price text-mandarin ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">מחיר מיוחד</span>
                    <span id="product-price-11664" data-price-amount="89" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏89.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11664)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11664)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11663/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11663/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-13" data-gslide="17" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11663">
  <a href="https://www.sayeret.co.il/ksa-ildim-kriw-5.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11663.window="$el.src = $event.detail" alt="כסא מתקפל דגם סנדי חגור" title="כסא מתקפל דגם סנדי חגור" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/s/a/sandi.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/ksa-ildim-kriw-5.html">
כסא מתקפל דגם סנדי חגור </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bdab155() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bdab155()" @update-prices-11663.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11663" data-price-box="product-id-11663">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11663" data-price-amount="189" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏189.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11663)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11663)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11662/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11662/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-14" data-gslide="18" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11662">
  <a href="https://www.sayeret.co.il/ksa-im-rptor-outdoor-11.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11662.window="$el.src = $event.detail" alt="כיסא מתקפל Maui Chill-אפור/כחול" title="כיסא מתקפל Maui Chill-אפור/כחול" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/7/0/703224-2024-03-11t101809.881.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/ksa-im-rptor-outdoor-11.html">
כיסא מתקפל Maui Chill-אפור/כחול </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bdac399() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bdac399()" @update-prices-11662.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11662" data-price-box="product-id-11662">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11662" data-price-amount="189" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏189.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11662)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11662)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11661/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11661/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-15" data-gslide="19" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11661">
  <a href="https://www.sayeret.co.il/ksa-im-rptor-outdoor-10.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11661.window="$el.src = $event.detail" alt="כיסא נדנדה מתקפל דגם Rockway Deluxe-אפור/כחול" title="כיסא נדנדה מתקפל דגם Rockway Deluxe-אפור/כחול" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/7/0/703224-2024-03-11t101521.888.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/ksa-im-rptor-outdoor-10.html">
כיסא נדנדה מתקפל דגם Rockway Deluxe-אפור/כחול </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initPriceBox__666df5bdad488() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666df5bdad488()" @update-prices-11661.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11661" data-price-box="product-id-11661">
              <span class="price-container price-final_price tax weee">
                <span id="product-price-11661" data-price-amount="369" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏369.00&nbsp;₪</span></span>
              </span>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11661)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11661)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11739/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11739/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide left-3" data-gslide="0" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11739">
  <a href="https://www.sayeret.co.il/marz-6-hvlcvt-niibi-lcba-hvlcvt-mtht-lmdim-marz-6-hvlcvt-qcrvt-1.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11739.window="$el.src = $event.detail" alt=" מארז 3 חולצות נייבי לצבא - חולצות מתחת למדים " title=" מארז 3 חולצות נייבי לצבא - חולצות מתחת למדים " src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/w/h/whatsapp_image_2024-06-10_at_14.19.16-removebg-preview.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-6-hvlcvt-niibi-lcba-hvlcvt-mtht-lmdim-marz-6-hvlcvt-qcrvt-1.html">
מארז 3 חולצות נייבי לצבא - חולצות מתחת למדים </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_11739() {
            const configurableOptionsComponent = initConfigurableOptions('11739', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["11740"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["11741"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["11742"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["11743"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["11744"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "11740": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11741": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11742": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11743": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11744": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 100
                },
                "oldPrice": {
                  "amount": 100
                },
                "basePrice": {
                  "amount": 75
                },
                "finalPrice": {
                  "amount": 75
                }
              },
              "productId": "11739",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "11740": {
                  "140": "28"
                },
                "11741": {
                  "140": "29"
                },
                "11742": {
                  "140": "30"
                },
                "11743": {
                  "140": "31"
                },
                "11744": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-11739", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_11739()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-11739-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-11739-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef513244cd() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef513244cd()" @update-prices-11739.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11739" data-price-box="product-id-11739">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11739" data-price-amount="100" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏100.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-11739" data-price-amount="75" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏75.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="11739" data-price-box="product-id-11739">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="11739" data-price-box="product-id-11739">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-11739" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏52.50&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11739)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11739)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11738/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/11738/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide visible active left-2" data-gslide="1" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="11738">
  <a href="https://www.sayeret.co.il/marz-6-hvlcvt-niibi-lcba-hvlcvt-mtht-lmdim-marz-6-hvlcvt-qcrvt.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-11738.window="$el.src = $event.detail" alt=" מארז 6 חולצות נייבי לצבא - חולצות מתחת למדים " title=" מארז 6 חולצות נייבי לצבא - חולצות מתחת למדים " src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/w/h/whatsapp_image_2024-06-10_at_14.11.45-removebg-preview.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-6-hvlcvt-niibi-lcba-hvlcvt-mtht-lmdim-marz-6-hvlcvt-qcrvt.html">
מארז 6 חולצות נייבי לצבא - חולצות מתחת למדים </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_11738() {
            const configurableOptionsComponent = initConfigurableOptions('11738', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["11733"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["11734"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["11735"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["11736"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["11737"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "11733": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11734": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11735": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11736": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11737": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 199
                },
                "oldPrice": {
                  "amount": 199
                },
                "basePrice": {
                  "amount": 113
                },
                "finalPrice": {
                  "amount": 113
                }
              },
              "productId": "11738",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "11733": {
                  "140": "28"
                },
                "11734": {
                  "140": "29"
                },
                "11735": {
                  "140": "30"
                },
                "11736": {
                  "140": "31"
                },
                "11737": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-11738", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_11738()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-11738-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-11738-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5132dc9d() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5132dc9d()" @update-prices-11738.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="11738" data-price-box="product-id-11738">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-11738" data-price-amount="199" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏199.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-11738" data-price-amount="113" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏113.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="11738" data-price-box="product-id-11738">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="11738" data-price-box="product-id-11738">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-11738" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏79.10&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(11738)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 11738)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10773/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10773/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide visible left-1" data-gslide="2" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="10773">
  <a href="https://www.sayeret.co.il/hvlch-trmit-cbe-whvr-daniel-chen.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-10773.window="$el.src = $event.detail" alt="חולצה טרמית צבע שחור DANIEL CHEN" title="חולצה טרמית צבע שחור DANIEL CHEN" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/d/a/daniel-chen-termi-removebg-preview.png" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/hvlch-trmit-cbe-whvr-daniel-chen.html">
חולצה טרמית צבע שחור DANIEL CHEN </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_10773() {
            const configurableOptionsComponent = initConfigurableOptions('10773', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["10769"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["10770"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": []
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": []
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "10769": {
                  "baseOldPrice": {
                    "amount": 29
                  },
                  "oldPrice": {
                    "amount": 29
                  },
                  "basePrice": {
                    "amount": 29
                  },
                  "finalPrice": {
                    "amount": 29
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10770": {
                  "baseOldPrice": {
                    "amount": 29
                  },
                  "oldPrice": {
                    "amount": 29
                  },
                  "basePrice": {
                    "amount": 29
                  },
                  "finalPrice": {
                    "amount": 29
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10771": {
                  "baseOldPrice": {
                    "amount": 29
                  },
                  "oldPrice": {
                    "amount": 29
                  },
                  "basePrice": {
                    "amount": 29
                  },
                  "finalPrice": {
                    "amount": 29
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10772": {
                  "baseOldPrice": {
                    "amount": 29
                  },
                  "oldPrice": {
                    "amount": 29
                  },
                  "basePrice": {
                    "amount": 29
                  },
                  "finalPrice": {
                    "amount": 29
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 29
                },
                "oldPrice": {
                  "amount": 29
                },
                "basePrice": {
                  "amount": 29
                },
                "finalPrice": {
                  "amount": 29
                }
              },
              "productId": "10773",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "10769": {
                  "140": "28"
                },
                "10770": {
                  "140": "29"
                },
                "10771": {
                  "140": "32"
                },
                "10772": {
                  "140": "31"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-10773", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_10773()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-10773-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-10773-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef51330123() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef51330123()" @update-prices-10773.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="10773" data-price-box="product-id-10773"> <span class="normal-price">
                <span class="price-container price-final_price tax weee">
                  <span class="price-label">המחיר הנמוך ביותר</span>
                  <span id="product-price-10773" data-price-amount="29" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏29.00&nbsp;₪</span></span>
                </span>
              </span>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="10773" data-price-box="product-id-10773">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="10773" data-price-box="product-id-10773">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-10773" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏20.30&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(10773)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 10773)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/1586/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/1586/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide center visible" data-gslide="4" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="1586">
  <a href="https://www.sayeret.co.il/hvlct-cicit-spvrt-dryfit.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-1586.window="$el.src = $event.detail" alt="חולצת ציצית ספורט – DryFit" title="חולצת ציצית ספורט – DryFit" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/f/i/file_152.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/hvlct-cicit-spvrt-dryfit.html">
גופיית ציצית ספורט צבע זית – DryFit </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_1586() {
            const configurableOptionsComponent = initConfigurableOptions('1586', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "27",
                    "label": "XS",
                    "products": []
                  }, {
                    "id": "28",
                    "label": "S",
                    "products": []
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": []
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["1589"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["1590"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": []
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "1587": {
                  "baseOldPrice": {
                    "amount": 79
                  },
                  "oldPrice": {
                    "amount": 79
                  },
                  "basePrice": {
                    "amount": 79
                  },
                  "finalPrice": {
                    "amount": 79
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1588": {
                  "baseOldPrice": {
                    "amount": 79
                  },
                  "oldPrice": {
                    "amount": 79
                  },
                  "basePrice": {
                    "amount": 79
                  },
                  "finalPrice": {
                    "amount": 79
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1589": {
                  "baseOldPrice": {
                    "amount": 79
                  },
                  "oldPrice": {
                    "amount": 79
                  },
                  "basePrice": {
                    "amount": 79
                  },
                  "finalPrice": {
                    "amount": 79
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1590": {
                  "baseOldPrice": {
                    "amount": 79
                  },
                  "oldPrice": {
                    "amount": 79
                  },
                  "basePrice": {
                    "amount": 79
                  },
                  "finalPrice": {
                    "amount": 79
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10009": {
                  "baseOldPrice": {
                    "amount": 79
                  },
                  "oldPrice": {
                    "amount": 79
                  },
                  "basePrice": {
                    "amount": 79
                  },
                  "finalPrice": {
                    "amount": 79
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 79
                },
                "oldPrice": {
                  "amount": 79
                },
                "basePrice": {
                  "amount": 79
                },
                "finalPrice": {
                  "amount": 79
                }
              },
              "productId": "1586",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "1587": {
                  "140": "28"
                },
                "1588": {
                  "140": "29"
                },
                "1589": {
                  "140": "30"
                },
                "1590": {
                  "140": "31"
                },
                "10009": {
                  "140": "27"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "27": {
                  "type": "0",
                  "value": null,
                  "label": "XS"
                },
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-1586", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_1586()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-1586-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-1586-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef51334252() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef51334252()" @update-prices-1586.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="1586" data-price-box="product-id-1586"> <span class="normal-price">
                <span class="price-container price-final_price tax weee">
                  <span class="price-label">המחיר הנמוך ביותר</span>
                  <span id="product-price-1586" data-price-amount="79" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏79.00&nbsp;₪</span></span>
                </span>
              </span>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="1586" data-price-box="product-id-1586">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="1586" data-price-box="product-id-1586">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-1586" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏55.30&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(1586)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 1586)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/6883/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/6883/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-1" data-gslide="5" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="6883">
  <a href="https://www.sayeret.co.il/3-hvcvt-irvq-zit-lhiil-b-45w-h.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-6883.window="$el.src = $event.detail" alt="מארז 3 חולצות דרייפיט לצבא חולצות מנדפות זיעה לגברים" title="מארז 3 חולצות דרייפיט לצבא חולצות מנדפות זיעה לגברים" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__5192__1.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/3-hvcvt-irvq-zit-lhiil-b-45w-h.html">
מארז 3 חולצות קצרות דרייפיט לצבא </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_6883() {
            const configurableOptionsComponent = initConfigurableOptions('6883', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["7071", "7072", "7073"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["7074", "7075", "7076"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["7077", "7078", "7079"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["7080", "7081", "7082"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["7083", "7084", "7085"]
                  }, {
                    "id": "121",
                    "label": "3XL",
                    "products": ["10821"]
                  }],
                  "position": "0"
                },
                "92": {
                  "id": "92",
                  "code": "color",
                  "label": "\u05e6\u05d1\u05e2",
                  "options": [{
                    "id": "25",
                    "label": "\u05dc\u05d1\u05df",
                    "products": ["7072", "7075", "7078", "7081", "7084"]
                  }, {
                    "id": "26",
                    "label": "\u05e9\u05d7\u05d5\u05e8",
                    "products": ["7071", "7074", "7077", "7080", "7083"]
                  }, {
                    "id": "10",
                    "label": "\u05d9\u05e8\u05d5\u05e7",
                    "products": ["7073", "7076", "7079", "7082", "7085", "10821"]
                  }],
                  "position": "1"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "7071": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7072": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7073": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7074": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7075": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7076": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7077": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7078": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7079": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7080": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7081": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7082": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7083": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7084": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "7085": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10820": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10821": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10822": {
                  "baseOldPrice": {
                    "amount": 99
                  },
                  "oldPrice": {
                    "amount": 99
                  },
                  "basePrice": {
                    "amount": 70
                  },
                  "finalPrice": {
                    "amount": 70
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 99
                },
                "oldPrice": {
                  "amount": 99
                },
                "basePrice": {
                  "amount": 70
                },
                "finalPrice": {
                  "amount": 70
                }
              },
              "productId": "6883",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "7071": {
                  "140": "28",
                  "92": "26"
                },
                "7072": {
                  "140": "28",
                  "92": "25"
                },
                "7073": {
                  "140": "28",
                  "92": "10"
                },
                "7074": {
                  "140": "29",
                  "92": "26"
                },
                "7075": {
                  "140": "29",
                  "92": "25"
                },
                "7076": {
                  "140": "29",
                  "92": "10"
                },
                "7077": {
                  "140": "30",
                  "92": "26"
                },
                "7078": {
                  "140": "30",
                  "92": "25"
                },
                "7079": {
                  "140": "30",
                  "92": "10"
                },
                "7080": {
                  "140": "31",
                  "92": "26"
                },
                "7081": {
                  "140": "31",
                  "92": "25"
                },
                "7082": {
                  "140": "31",
                  "92": "10"
                },
                "7083": {
                  "140": "32",
                  "92": "26"
                },
                "7084": {
                  "140": "32",
                  "92": "25"
                },
                "7085": {
                  "140": "32",
                  "92": "10"
                },
                "10820": {
                  "140": "121",
                  "92": "26"
                },
                "10821": {
                  "140": "121",
                  "92": "10"
                },
                "10822": {
                  "140": "121",
                  "92": "25"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "121": {
                  "type": "0",
                  "value": null,
                  "label": "3XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              },
              "92": {
                "10": {
                  "type": "1",
                  "value": "#008000",
                  "label": "\u05d9\u05e8\u05d5\u05e7"
                },
                "25": {
                  "type": "1",
                  "value": "#ffffff",
                  "label": "\u05dc\u05d1\u05df"
                },
                "26": {
                  "type": "1",
                  "value": "#000000",
                  "label": "\u05e9\u05d7\u05d5\u05e8"
                },
                "additional_data": "{\"swatch_input_type\":\"visual\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":\"0\"}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-6883", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_6883()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-6883-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-6883-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
            <div class="swatch-attribute last:border-b border-container
            color">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributecolor">
                      <span> צבע </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[92].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(92, item.id) &amp;&amp; optionIsActive(92, item.id)">
                          <label :for="'attribute-option-6883-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(92, item.id),
                ' w-8 h-8' : isTextSwatch(92, item.id),
            }" :style="getSwatchBackgroundStyle('92',item.id)">
                            <input :id="'attribute-option-6883-'+item.id" :value="item.id" name="super_attribute[92]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(92, $event.target.value)" x-model="selectedValues[92]" :required="getAllowedAttributeOptions(92).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(92, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(92, item.id),
                 'border w-8 h-8' : isTextSwatch(92, item.id),
                 'border-transparent' : !isTextSwatch(92, item.id) &amp;&amp; getSwatchText(92, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(92, item.id) &amp;&amp; !optionIsActive(92, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('92',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(92, item.id),
                ' w-8 h-8' : isTextSwatch(92, item.id),
            }">
                            <div x-html="getSwatchText(92, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(92, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef513365da() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef513365da()" @update-prices-6883.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="6883" data-price-box="product-id-6883">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-6883" data-price-amount="99" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏99.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-6883" data-price-amount="70" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏70.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="6883" data-price-box="product-id-6883">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="6883" data-price-box="product-id-6883">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-6883" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏49.00&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(6883)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 6883)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/957/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/957/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-2" data-gslide="6" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="957">
  <a href="https://www.sayeret.co.il/hmiwiit-hvlcvt-dripit-bcbe-zit.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-957.window="$el.src = $event.detail" alt="מארז 6 חולצות דרייפיט לצבא - חולצות דרייפיט ירוק זית " title="מארז 6 חולצות דרייפיט לצבא - חולצות דרייפיט ירוק זית " src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__2_5192.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/hmiwiit-hvlcvt-dripit-bcbe-zit.html">
מארז 6 חולצות דרייפיט קצרות צבע זית לצבא </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_957() {
            const configurableOptionsComponent = initConfigurableOptions('957', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["958"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["959"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["960"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["961"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["6660"]
                  }, {
                    "id": "121",
                    "label": "3XL",
                    "products": ["11358"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "958": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 127
                  },
                  "finalPrice": {
                    "amount": 127
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "959": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 127
                  },
                  "finalPrice": {
                    "amount": 127
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "960": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 127
                  },
                  "finalPrice": {
                    "amount": 127
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "961": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 127
                  },
                  "finalPrice": {
                    "amount": 127
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "6660": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 127
                  },
                  "finalPrice": {
                    "amount": 127
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11358": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 127
                  },
                  "finalPrice": {
                    "amount": 127
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 225
                },
                "oldPrice": {
                  "amount": 225
                },
                "basePrice": {
                  "amount": 127
                },
                "finalPrice": {
                  "amount": 127
                }
              },
              "productId": "957",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "958": {
                  "140": "28"
                },
                "959": {
                  "140": "29"
                },
                "960": {
                  "140": "30"
                },
                "961": {
                  "140": "31"
                },
                "6660": {
                  "140": "32"
                },
                "11358": {
                  "140": "121"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "121": {
                  "type": "0",
                  "value": null,
                  "label": "3XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-957", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_957()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-957-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-957-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef51338b16() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef51338b16()" @update-prices-957.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="957" data-price-box="product-id-957">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-957" data-price-amount="225" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏225.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-957" data-price-amount="127" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏127.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="957" data-price-box="product-id-957">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="957" data-price-box="product-id-957">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-957" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏88.90&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(957)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 957)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/527/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/527/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-3" data-gslide="7" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="527">
  <a href="https://www.sayeret.co.il/6-hvlcvt-bcbe-lbn-lhiil.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-527.window="$el.src = $event.detail" alt="מארז 6 חולצות לבנות לצבא - חולצות מתחת למדים" title="מארז 6 חולצות לבנות לצבא - חולצות מתחת למדים" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__2_5121_.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/6-hvlcvt-bcbe-lbn-lhiil.html">
מארז 6 חולצות קצרות צבע לבן לצבא </a>
      </div>
      <div class="mx-auto ">
        <div class="rating-summary flex pt-2" title="היה הראשון לכתוב חוות דעת ביקורת">
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current text-gray-200 w-6 h-6" viewBox="3 0 20 20" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current text-gray-200 w-6 h-6" viewBox="3 0 20 20" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current text-gray-200 w-6 h-6" viewBox="3 0 20 20" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current text-gray-200 w-6 h-6" viewBox="3 0 20 20" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current text-gray-200 w-6 h-6" viewBox="3 0 20 20" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
        </div>
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_527() {
            const configurableOptionsComponent = initConfigurableOptions('527', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["528"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["529"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["530"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["532"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["533"]
                  }, {
                    "id": "121",
                    "label": "3XL",
                    "products": ["8495"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "528": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "529": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "530": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "532": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "533": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8495": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 199
                },
                "oldPrice": {
                  "amount": 199
                },
                "basePrice": {
                  "amount": 113
                },
                "finalPrice": {
                  "amount": 113
                }
              },
              "productId": "527",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "528": {
                  "140": "28"
                },
                "529": {
                  "140": "29"
                },
                "530": {
                  "140": "30"
                },
                "532": {
                  "140": "31"
                },
                "533": {
                  "140": "32"
                },
                "8495": {
                  "140": "121"
                }
              }
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "121": {
                  "type": "0",
                  "value": null,
                  "label": "3XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-527", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_527()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-527-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-527-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5133aeab() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5133aeab()" @update-prices-527.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="527" data-price-box="product-id-527">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-527" data-price-amount="199" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏199.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-527" data-price-amount="113" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏113.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="527" data-price-box="product-id-527">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="527" data-price-box="product-id-527">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-527" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏79.10&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(527)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 527)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/509/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/509/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-4" data-gslide="8" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="509">
  <a href="https://www.sayeret.co.il/marz-wl-6-hvlcvt-irvq-zit-lhiil.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-509.window="$el.src = $event.detail" alt="מארז 6 חולצות ירוקות לצבא - חולצות לחיילים" title="מארז 6 חולצות ירוקות לצבא - חולצות לחיילים" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__2_5122_.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-wl-6-hvlcvt-irvq-zit-lhiil.html">
מארז 6 חולצות קצרות צבע ירוק לצבא </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_509() {
            const configurableOptionsComponent = initConfigurableOptions('509', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["510"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["511"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["512"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["513"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["514"]
                  }, {
                    "id": "121",
                    "label": "3XL",
                    "products": ["8494"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "510": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "511": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "512": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "513": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "514": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8494": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 199
                },
                "oldPrice": {
                  "amount": 199
                },
                "basePrice": {
                  "amount": 113
                },
                "finalPrice": {
                  "amount": 113
                }
              },
              "productId": "509",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "510": {
                  "140": "28"
                },
                "511": {
                  "140": "29"
                },
                "512": {
                  "140": "30"
                },
                "513": {
                  "140": "31"
                },
                "514": {
                  "140": "32"
                },
                "8494": {
                  "140": "121"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "121": {
                  "type": "0",
                  "value": null,
                  "label": "3XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-509", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_509()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-509-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-509-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5134324c() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5134324c()" @update-prices-509.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="509" data-price-box="product-id-509">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-509" data-price-amount="199" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏199.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-509" data-price-amount="113" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏113.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="509" data-price-box="product-id-509">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="509" data-price-box="product-id-509">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-509" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏79.10&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(509)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 509)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/6012/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/6012/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-5" data-gslide="9" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="6012">
  <a href="https://www.sayeret.co.il/diadora-hvlct-it-wrvvl-arvk.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-6012.window="$el.src = $event.detail" alt="חולצה טרמית ירוקה זית - חולצות תרמיות לחיילים " title="חולצה טרמית ירוקה זית - חולצות תרמיות לחיילים " src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/f/i/file_4_4.png" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/diadora-hvlct-it-wrvvl-arvk.html">
חולצה טרמית ירוקה זית לחיילים X-DREAM </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_6012() {
            const configurableOptionsComponent = initConfigurableOptions('6012', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "27",
                    "label": "XS",
                    "products": []
                  }, {
                    "id": "28",
                    "label": "S",
                    "products": ["6013"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["6014"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["6015"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["6016"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["8848"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "6013": {
                  "baseOldPrice": {
                    "amount": 84
                  },
                  "oldPrice": {
                    "amount": 84
                  },
                  "basePrice": {
                    "amount": 56
                  },
                  "finalPrice": {
                    "amount": 56
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "6014": {
                  "baseOldPrice": {
                    "amount": 84
                  },
                  "oldPrice": {
                    "amount": 84
                  },
                  "basePrice": {
                    "amount": 56
                  },
                  "finalPrice": {
                    "amount": 56
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "6015": {
                  "baseOldPrice": {
                    "amount": 84
                  },
                  "oldPrice": {
                    "amount": 84
                  },
                  "basePrice": {
                    "amount": 56
                  },
                  "finalPrice": {
                    "amount": 56
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "6016": {
                  "baseOldPrice": {
                    "amount": 84
                  },
                  "oldPrice": {
                    "amount": 84
                  },
                  "basePrice": {
                    "amount": 56
                  },
                  "finalPrice": {
                    "amount": 56
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8848": {
                  "baseOldPrice": {
                    "amount": 84
                  },
                  "oldPrice": {
                    "amount": 84
                  },
                  "basePrice": {
                    "amount": 56
                  },
                  "finalPrice": {
                    "amount": 56
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 84
                },
                "oldPrice": {
                  "amount": 84
                },
                "basePrice": {
                  "amount": 56
                },
                "finalPrice": {
                  "amount": 56
                }
              },
              "productId": "6012",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "6013": {
                  "140": "28"
                },
                "6014": {
                  "140": "29"
                },
                "6015": {
                  "140": "30"
                },
                "6016": {
                  "140": "31"
                },
                "8848": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-6012", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_6012()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-6012-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-6012-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5134581c() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5134581c()" @update-prices-6012.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="6012" data-price-box="product-id-6012">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-6012" data-price-amount="84" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏84.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-6012" data-price-amount="56" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏56.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="6012" data-price-box="product-id-6012">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="6012" data-price-box="product-id-6012">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-6012" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏39.20&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(6012)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 6012)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10398/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10398/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-6" data-gslide="10" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="10398">
  <a href="https://www.sayeret.co.il/marz-6-hvlcvt-driipit-lcba-cbe-zit-mgbt-miiqrvpiibr-b99-w-h.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-10398.window="$el.src = $event.detail" alt="מארז 6 חולצות קצרות דרייפיט לצבא צבע זית + מגבת מייקרופייבר ב99 ש&quot;ח" title="מארז 6 חולצות קצרות דרייפיט לצבא צבע זית + מגבת מייקרופייבר ב99 ש&quot;ח" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/s/o/social_media_background_collage_blank.png" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-6-hvlcvt-driipit-lcba-cbe-zit-mgbt-miiqrvpiibr-b99-w-h.html">
מארז 6 חולצות קצרות דרייפיט לצבא צבע זית + מגבת מייקרופייבר ב99 ש"ח </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_10398() {
            const configurableOptionsComponent = initConfigurableOptions('10398', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["10399"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["10400"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["10401"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["10402"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["10403"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "10399": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 142
                  },
                  "finalPrice": {
                    "amount": 142
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10400": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 142
                  },
                  "finalPrice": {
                    "amount": 142
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10401": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 142
                  },
                  "finalPrice": {
                    "amount": 142
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10402": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 142
                  },
                  "finalPrice": {
                    "amount": 142
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10403": {
                  "baseOldPrice": {
                    "amount": 225
                  },
                  "oldPrice": {
                    "amount": 225
                  },
                  "basePrice": {
                    "amount": 142
                  },
                  "finalPrice": {
                    "amount": 142
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 225
                },
                "oldPrice": {
                  "amount": 225
                },
                "basePrice": {
                  "amount": 142
                },
                "finalPrice": {
                  "amount": 142
                }
              },
              "productId": "10398",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "10399": {
                  "140": "28"
                },
                "10400": {
                  "140": "29"
                },
                "10401": {
                  "140": "30"
                },
                "10402": {
                  "140": "31"
                },
                "10403": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-10398", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_10398()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-10398-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-10398-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef513478ef() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef513478ef()" @update-prices-10398.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="10398" data-price-box="product-id-10398">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-10398" data-price-amount="225" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏225.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-10398" data-price-amount="142" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏142.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="10398" data-price-box="product-id-10398">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="10398" data-price-box="product-id-10398">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-10398" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏99.40&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(10398)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 10398)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/1635/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/1635/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-7" data-gslide="11" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="1635">
  <a href="https://www.sayeret.co.il/hvlch-driipit-bcbe-whvr.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-1635.window="$el.src = $event.detail" alt="חולצה דרייפיט שחורה - חולצות דרייפיט לצבא" title="חולצה דרייפיט שחורה - חולצות דרייפיט לצבא" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/_/-/_-_-__2_12.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/hvlch-driipit-bcbe-whvr.html">
חולצה דרייפיט שחורה </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_1635() {
            const configurableOptionsComponent = initConfigurableOptions('1635', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["1636"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["1637"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["1638"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["1639"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["5390"]
                  }, {
                    "id": "121",
                    "label": "3XL",
                    "products": []
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "1636": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1637": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1638": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1639": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "5390": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10819": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 50
                },
                "oldPrice": {
                  "amount": 50
                },
                "basePrice": {
                  "amount": 36
                },
                "finalPrice": {
                  "amount": 36
                }
              },
              "productId": "1635",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "1636": {
                  "140": "28"
                },
                "1637": {
                  "140": "29"
                },
                "1638": {
                  "140": "30"
                },
                "1639": {
                  "140": "31"
                },
                "5390": {
                  "140": "32"
                },
                "10819": {
                  "140": "121"
                }
              }
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "121": {
                  "type": "0",
                  "value": null,
                  "label": "3XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-1635", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_1635()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-1635-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-1635-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef513498bc() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef513498bc()" @update-prices-1635.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="1635" data-price-box="product-id-1635">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-1635" data-price-amount="50" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏50.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-1635" data-price-amount="36" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏36.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="1635" data-price-box="product-id-1635">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="1635" data-price-box="product-id-1635">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-1635" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏25.20&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(1635)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 1635)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/952/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/952/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-8" data-gslide="12" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="952">
  <a href="https://www.sayeret.co.il/hvlch-driipit-bcbe-zit.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-952.window="$el.src = $event.detail" alt="חולצת דרייפיט ירוק זית - חולצות דרייפיט לצבא" title="חולצת דרייפיט ירוק זית - חולצות דרייפיט לצבא" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__5195_.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/hvlch-driipit-bcbe-zit.html">
חולצת דרייפיט קצרה ירוק זית </a>
      </div>
      <div class="mx-auto ">
        <div class="rating-summary flex pt-2">
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
        </div>
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_952() {
            const configurableOptionsComponent = initConfigurableOptions('952', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["953"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["954"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["955"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["1409"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["10032"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "953": {
                  "baseOldPrice": {
                    "amount": 69
                  },
                  "oldPrice": {
                    "amount": 69
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "954": {
                  "baseOldPrice": {
                    "amount": 69
                  },
                  "oldPrice": {
                    "amount": 69
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "955": {
                  "baseOldPrice": {
                    "amount": 69
                  },
                  "oldPrice": {
                    "amount": 69
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1409": {
                  "baseOldPrice": {
                    "amount": 69
                  },
                  "oldPrice": {
                    "amount": 69
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10032": {
                  "baseOldPrice": {
                    "amount": 69
                  },
                  "oldPrice": {
                    "amount": 69
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 69
                },
                "oldPrice": {
                  "amount": 69
                },
                "basePrice": {
                  "amount": 36
                },
                "finalPrice": {
                  "amount": 36
                }
              },
              "productId": "952",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "953": {
                  "140": "28"
                },
                "954": {
                  "140": "29"
                },
                "955": {
                  "140": "30"
                },
                "1409": {
                  "140": "31"
                },
                "10032": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-952", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_952()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-952-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-952-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5134b862() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5134b862()" @update-prices-952.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="952" data-price-box="product-id-952">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-952" data-price-amount="69" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏69.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-952" data-price-amount="36" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏36.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="952" data-price-box="product-id-952">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="952" data-price-box="product-id-952">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-952" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏25.20&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(952)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 952)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10998/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10998/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-9" data-gslide="13" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="10998">
  <a href="https://www.sayeret.co.il/marz-3-hvlct-dripit-qcrh-cool-cbe-zit-x-dream.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-10998.window="$el.src = $event.detail" alt="מארז 3 חולצות דרייפיט קצרות +COOL  צבע זית X-DREAM" title="מארז 3 חולצות דרייפיט קצרות +COOL  צבע זית X-DREAM" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/c/o/cool_2-removebg-preview.png" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-3-hvlct-dripit-qcrh-cool-cbe-zit-x-dream.html">
מארז 3 חולצות דרייפיט קצרות +COOL צבע זית X-DREAM </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_10998() {
            const configurableOptionsComponent = initConfigurableOptions('10998', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "27",
                    "label": "XS",
                    "products": ["10993"]
                  }, {
                    "id": "28",
                    "label": "S",
                    "products": ["10992"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["10994"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["10995"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["10996"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["10997"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "10992": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10993": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10994": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10995": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10996": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "10997": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 113
                },
                "oldPrice": {
                  "amount": 113
                },
                "basePrice": {
                  "amount": 113
                },
                "finalPrice": {
                  "amount": 113
                }
              },
              "productId": "10998",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "10992": {
                  "140": "28"
                },
                "10993": {
                  "140": "27"
                },
                "10994": {
                  "140": "29"
                },
                "10995": {
                  "140": "30"
                },
                "10996": {
                  "140": "31"
                },
                "10997": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "27": {
                  "type": "0",
                  "value": null,
                  "label": "XS"
                },
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-10998", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_10998()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-10998-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-10998-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5134de6e() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5134de6e()" @update-prices-10998.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="10998" data-price-box="product-id-10998"> <span class="normal-price">
                <span class="price-container price-final_price tax weee">
                  <span class="price-label">המחיר הנמוך ביותר</span>
                  <span id="product-price-10998" data-price-amount="113" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏113.00&nbsp;₪</span></span>
                </span>
              </span>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="10998" data-price-box="product-id-10998">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="10998" data-price-box="product-id-10998">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-10998" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏79.10&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(10998)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 10998)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/5613/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/5613/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-10" data-gslide="14" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="5613">
  <a href="https://www.sayeret.co.il/marz-wl-6-hvlcvt-irvq-zit-lhiil-5613.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-5613.window="$el.src = $event.detail" alt="מארז 3 חולצות ירוק זית לצבא ו 3 חולצות לבנות- חולצות אוקספורד" title="מארז 3 חולצות ירוק זית לצבא ו 3 חולצות לבנות- חולצות אוקספורד" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/3/_/3__5.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-wl-6-hvlcvt-irvq-zit-lhiil-5613.html">
מארז 3 חולצות קצרות ירוק זית לצבא ו 3 חולצות לבנות לגבר - חולצות אוקספורד </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_5613() {
            const configurableOptionsComponent = initConfigurableOptions('5613', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["5614"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["5615"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["5616"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["5617"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": []
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "5614": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "5615": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "5616": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "5617": {
                  "baseOldPrice": {
                    "amount": 199
                  },
                  "oldPrice": {
                    "amount": 199
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 199
                },
                "oldPrice": {
                  "amount": 199
                },
                "basePrice": {
                  "amount": 113
                },
                "finalPrice": {
                  "amount": 113
                }
              },
              "productId": "5613",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "5614": {
                  "140": "28"
                },
                "5615": {
                  "140": "29"
                },
                "5616": {
                  "140": "30"
                },
                "5617": {
                  "140": "31"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-5613", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_5613()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-5613-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-5613-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef51352185() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef51352185()" @update-prices-5613.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="5613" data-price-box="product-id-5613">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-5613" data-price-amount="199" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏199.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-5613" data-price-amount="113" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏113.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="5613" data-price-box="product-id-5613">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="5613" data-price-box="product-id-5613">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-5613" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏79.10&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(5613)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 5613)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/1261/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/1261/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-11" data-gslide="15" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="1261">
  <a href="https://www.sayeret.co.il/hlch-driipit-bcbe-zit.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-1261.window="$el.src = $event.detail" alt="חולצת  דרייפיט בצבע לבן " title="חולצת  דרייפיט בצבע לבן " src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/f/i/file_1148_2.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/hlch-driipit-bcbe-zit.html">
חולצת דרייפיט בצבע לבן </a>
      </div>
      <div class="mx-auto ">
        <div class="rating-summary flex pt-2">
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
        </div>
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_1261() {
            const configurableOptionsComponent = initConfigurableOptions('1261', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["1262"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["1263"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["1264"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["1265"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["5389"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "1262": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1263": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1264": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "1265": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "5389": {
                  "baseOldPrice": {
                    "amount": 50
                  },
                  "oldPrice": {
                    "amount": 50
                  },
                  "basePrice": {
                    "amount": 36
                  },
                  "finalPrice": {
                    "amount": 36
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 50
                },
                "oldPrice": {
                  "amount": 50
                },
                "basePrice": {
                  "amount": 36
                },
                "finalPrice": {
                  "amount": 36
                }
              },
              "productId": "1261",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "1262": {
                  "140": "28"
                },
                "1263": {
                  "140": "29"
                },
                "1264": {
                  "140": "30"
                },
                "1265": {
                  "140": "31"
                },
                "5389": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-1261", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_1261()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-1261-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-1261-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef51354256() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef51354256()" @update-prices-1261.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="1261" data-price-box="product-id-1261">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-1261" data-price-amount="50" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏50.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-1261" data-price-amount="36" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏36.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="1261" data-price-box="product-id-1261">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="1261" data-price-box="product-id-1261">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-1261" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏25.20&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(1261)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 1261)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10999/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/10999/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-12" data-gslide="16" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="10999">
  <a href="https://www.sayeret.co.il/marz-3-hvlct-dripit-qcrh-cool-cbe-zit-x-dream-1.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-10999.window="$el.src = $event.detail" alt="מארז 3 חולצות דרייפיט קצרות +COOL  צבע שחור X-DREAM" title="מארז 3 חולצות דרייפיט קצרות +COOL  צבע שחור X-DREAM" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/c/o/cool_-removebg-preview.png" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-3-hvlct-dripit-qcrh-cool-cbe-zit-x-dream-1.html">
מארז 3 חולצות דרייפיט קצרות +COOL צבע שחור X-DREAM </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_10999() {
            const configurableOptionsComponent = initConfigurableOptions('10999', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "27",
                    "label": "XS",
                    "products": ["11000"]
                  }, {
                    "id": "28",
                    "label": "S",
                    "products": ["11001"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": []
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["11003"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["11004"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["11005"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "11000": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11001": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11002": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11003": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11004": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "11005": {
                  "baseOldPrice": {
                    "amount": 113
                  },
                  "oldPrice": {
                    "amount": 113
                  },
                  "basePrice": {
                    "amount": 113
                  },
                  "finalPrice": {
                    "amount": 113
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 113
                },
                "oldPrice": {
                  "amount": 113
                },
                "basePrice": {
                  "amount": 113
                },
                "finalPrice": {
                  "amount": 113
                }
              },
              "productId": "10999",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "11000": {
                  "140": "27"
                },
                "11001": {
                  "140": "28"
                },
                "11002": {
                  "140": "29"
                },
                "11003": {
                  "140": "30"
                },
                "11004": {
                  "140": "31"
                },
                "11005": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "27": {
                  "type": "0",
                  "value": null,
                  "label": "XS"
                },
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-10999", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_10999()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-10999-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-10999-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef513564ab() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef513564ab()" @update-prices-10999.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="10999" data-price-box="product-id-10999"> <span class="normal-price">
                <span class="price-container price-final_price tax weee">
                  <span class="price-label">המחיר הנמוך ביותר</span>
                  <span id="product-price-10999" data-price-amount="113" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏113.00&nbsp;₪</span></span>
                </span>
              </span>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="10999" data-price-box="product-id-10999">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="10999" data-price-box="product-id-10999">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-10999" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏79.10&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(10999)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 10999)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/521/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/521/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-13" data-gslide="17" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="521">
  <a href="https://www.sayeret.co.il/3-hvlcvt-lbnvt-lhiil.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-521.window="$el.src = $event.detail" alt="מארז 3 חולצות לבנות לצבא - חולצות מתחת למדים" title="מארז 3 חולצות לבנות לצבא - חולצות מתחת למדים" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__5121_.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/3-hvlcvt-lbnvt-lhiil.html">
מארז 3 חולצות קצרות צבע לבן לצבא </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_521() {
            const configurableOptionsComponent = initConfigurableOptions('521', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["522"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["523"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["524"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["525"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["526"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "522": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "523": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "524": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "525": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "526": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 100
                },
                "oldPrice": {
                  "amount": 100
                },
                "basePrice": {
                  "amount": 75
                },
                "finalPrice": {
                  "amount": 75
                }
              },
              "productId": "521",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "522": {
                  "140": "28"
                },
                "523": {
                  "140": "29"
                },
                "524": {
                  "140": "30"
                },
                "525": {
                  "140": "31"
                },
                "526": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-521", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_521()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-521-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-521-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5135846c() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5135846c()" @update-prices-521.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="521" data-price-box="product-id-521">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-521" data-price-amount="100" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏100.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-521" data-price-amount="75" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏75.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="521" data-price-box="product-id-521">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="521" data-price-box="product-id-521">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-521" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏52.50&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(521)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 521)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/502/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/502/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-14" data-gslide="18" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="502">
  <a href="https://www.sayeret.co.il/3-hvlcvt-irvq-zit-lhiil-b-45w-h.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-502.window="$el.src = $event.detail" alt="3 חולצות קצרות ירוק זית לחייל במבצע" title="3 חולצות קצרות ירוק זית לחייל במבצע" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/2/_/2.2.2022__5131__1.jpg" width="240" height="300">
<div class="absolute top-0 right-auto bottom-auto left-0">
<div style="
                background: url('https://www.sayeret.co.il/media/cataloglabel/s/t/star_1.png') no-repeat;
        width: 100px; height: 100px;                              ">
<span class="hidden"></span>
</div>
</div>
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/3-hvlcvt-irvq-zit-lhiil-b-45w-h.html">
3 חולצות קצרות ירוק זית לחייל במבצע </a>
      </div>
      <div class="mx-auto ">
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_502() {
            const configurableOptionsComponent = initConfigurableOptions('502', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["503"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["504"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["505"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["507"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["508"]
                  }],
                  "position": "0"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "503": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "504": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "505": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "507": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "508": {
                  "baseOldPrice": {
                    "amount": 100
                  },
                  "oldPrice": {
                    "amount": 100
                  },
                  "basePrice": {
                    "amount": 75
                  },
                  "finalPrice": {
                    "amount": 75
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 100
                },
                "oldPrice": {
                  "amount": 100
                },
                "basePrice": {
                  "amount": 75
                },
                "finalPrice": {
                  "amount": 75
                }
              },
              "productId": "502",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "503": {
                  "140": "28"
                },
                "504": {
                  "140": "29"
                },
                "505": {
                  "140": "30"
                },
                "507": {
                  "140": "31"
                },
                "508": {
                  "140": "32"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-502", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_502()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-502-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-502-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5135a3e4() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5135a3e4()" @update-prices-502.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="502" data-price-box="product-id-502">
              <div class="flex font-semibold justify-center lg:justify-start">
                <span class="relative">
                  <span class="sly-old-price no-display">
                    <span class="price-container price-final_price tax weee">
                      <span class="price-label">מחיר רגיל</span>
                      <span id="old-price-502" data-price-amount="100" data-price-type="oldPrice" class="price-wrapper "><span class="price">‏100.00&nbsp;₪</span></span>
                    </span>
                  </span>
                  <span class="absolute left-0 top-1/2 right-0 w-full h-px bg-black"></span>
                </span>
                <span class="normal-price text-lime-green ml-2">
                  <span class="price-container price-final_price tax weee">
                    <span class="price-label">המחיר הנמוך ביותר</span>
                    <span id="product-price-502" data-price-amount="75" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏75.00&nbsp;₪</span></span>
                  </span>
                </span>
              </div>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="502" data-price-box="product-id-502">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="502" data-price-box="product-id-502">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-502" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏52.50&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(502)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 502)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

POST https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/8372/

<form method="post" action="https://www.sayeret.co.il/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2F5ZXJldC5jby5pbC8%2C/product/8372/"
  class="item relative product product-item product_addtocart_form w-full group hover:border-1 hover:border-masonry hover:shadow-prod glider-slide right-15" data-gslide="19" style="height: auto; width: 329px;">
  <input name="form_key" type="hidden" value="3k3oOJfKGmfNCYzZ"> <input type="hidden" name="product" value="8372">
  <a href="https://www.sayeret.co.il/marz-hkvl-lgivs.html" class=" product photo product-item-photo block mx-auto my-3 sm:w-48 sm:h-64  relative" tabindex="-1">
<img class="object-contain w-full h-full" loading="lazy" x-data="" @update-gallery-8372.window="$el.src = $event.detail" alt="ערכה למתגייס ולמתגייסת - מארז לגיוס" title="ערכה למתגייס ולמתגייסת - מארז לגיוס" src="https://www.sayeret.co.il/media/catalog/product/cache/73b3c6224d995d16552a1b57e5039db8/m/a/maarlagius.jpg.jpg" width="240" height="300">
</a>
  <div class="relative">
    <div class="product-info flex flex-col flex-grow bg-white group-hover:absolute group-hover:top-full group-hover:left-0 group-hover:right-0 z-10 group-hover:shadow-prod-top">
      <div class="product-info__title pb-2 mx-5 mt-2 text-dark-lava lg:text-lg text-base text-center border-b">
        <a class="product-item-link" href="https://www.sayeret.co.il/marz-hkvl-lgivs.html">
מארז הכול לגיוס </a>
      </div>
      <div class="mx-auto ">
        <div class="rating-summary flex pt-2">
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
          <svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: #f47c49" fill="currentColor">
            <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
                        1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
                        1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
                        1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
          </svg>
        </div>
      </div>
      <div class="product-info__text flex flex-col w-full sm:px-5 pb-5 pt-1.5">
        <script>
          function initConfigurableSwatchOptions_8372() {
            const configurableOptionsComponent = initConfigurableOptions('8372', {
              "attributes": {
                "140": {
                  "id": "140",
                  "code": "size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05d1\u05d9\u05d2\u05d5\u05d3",
                  "options": [{
                    "id": "28",
                    "label": "S",
                    "products": ["8373", "8374", "8375"]
                  }, {
                    "id": "29",
                    "label": "M",
                    "products": ["8376", "8377", "8378"]
                  }, {
                    "id": "30",
                    "label": "L",
                    "products": ["8379", "8380", "8381"]
                  }, {
                    "id": "31",
                    "label": "XL",
                    "products": ["8382", "8383", "8384"]
                  }, {
                    "id": "32",
                    "label": "2XL",
                    "products": ["8385", "8386", "8387"]
                  }],
                  "position": "0"
                },
                "142": {
                  "id": "142",
                  "code": "shoes_size",
                  "label": "\u05de\u05d9\u05d3\u05d5\u05ea \u05e0\u05e2\u05dc\u05d9\u05d9\u05dd",
                  "options": [{
                    "id": "80",
                    "label": "40-43",
                    "products": ["8374", "8377", "8380", "8383", "8386"]
                  }, {
                    "id": "100",
                    "label": "36-39",
                    "products": ["8373", "8376", "8379", "8382", "8385"]
                  }, {
                    "id": "79",
                    "label": "44-47",
                    "products": ["8375", "8378", "8381", "8384", "8387"]
                  }],
                  "position": "1"
                }
              },
              "template": "\u200f<%- data.price %>\u00a0\u20aa",
              "currencyFormat": "\u200f%s\u00a0\u20aa",
              "optionPrices": {
                "8373": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8374": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8375": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8376": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8377": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8378": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8379": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8380": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8381": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8382": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8383": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8384": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8385": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8386": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                },
                "8387": {
                  "baseOldPrice": {
                    "amount": 470
                  },
                  "oldPrice": {
                    "amount": 470
                  },
                  "basePrice": {
                    "amount": 470
                  },
                  "finalPrice": {
                    "amount": 470
                  },
                  "tierPrices": [],
                  "msrpPrice": {
                    "amount": 0
                  }
                }
              },
              "priceFormat": {
                "pattern": "\u200f%s\u00a0\u20aa",
                "precision": 2,
                "requiredPrecision": 2,
                "decimalSymbol": ".",
                "groupSymbol": ",",
                "groupLength": 3,
                "integerRequired": false
              },
              "prices": {
                "baseOldPrice": {
                  "amount": 470
                },
                "oldPrice": {
                  "amount": 470
                },
                "basePrice": {
                  "amount": 470
                },
                "finalPrice": {
                  "amount": 470
                }
              },
              "productId": "8372",
              "chooseText": "\u05d1\u05d7\u05e8\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea...",
              "images": [],
              "index": {
                "8373": {
                  "140": "28",
                  "142": "100"
                },
                "8374": {
                  "140": "28",
                  "142": "80"
                },
                "8375": {
                  "140": "28",
                  "142": "79"
                },
                "8376": {
                  "140": "29",
                  "142": "100"
                },
                "8377": {
                  "140": "29",
                  "142": "80"
                },
                "8378": {
                  "140": "29",
                  "142": "79"
                },
                "8379": {
                  "140": "30",
                  "142": "100"
                },
                "8380": {
                  "140": "30",
                  "142": "80"
                },
                "8381": {
                  "140": "30",
                  "142": "79"
                },
                "8382": {
                  "140": "31",
                  "142": "100"
                },
                "8383": {
                  "140": "31",
                  "142": "80"
                },
                "8384": {
                  "140": "31",
                  "142": "79"
                },
                "8385": {
                  "140": "32",
                  "142": "100"
                },
                "8386": {
                  "140": "32",
                  "142": "80"
                },
                "8387": {
                  "140": "32",
                  "142": "79"
                }
              },
              "preSelectedGallery": []
            });
            const swatchOptionsComponent = initSwatchOptions({
              "140": {
                "28": {
                  "type": "0",
                  "value": null,
                  "label": "S"
                },
                "29": {
                  "type": "0",
                  "value": null,
                  "label": "M"
                },
                "30": {
                  "type": "0",
                  "value": null,
                  "label": "L"
                },
                "31": {
                  "type": "0",
                  "value": null,
                  "label": "XL"
                },
                "32": {
                  "type": "0",
                  "value": null,
                  "label": "2XL"
                },
                "additional_data": "{\"swatch_input_type\":\"text\",\"update_product_preview_image\":\"0\",\"use_product_image_for_swatch\":0}"
              }
            });
            return Object.assign(configurableOptionsComponent, swatchOptionsComponent, {
              mediaCallback: "https\u003A\u002F\u002Fwww.sayeret.co.il\u002Fswatches\u002Fajax\u002Fmedia\u002F",
              changeOption(optionId, value, skipUpdateGallery) {
                this.selectedValues[optionId] = value;
                this.findSimpleIndex();
                this.findAllowedAttributeOptions();
                this.updatePrices();
                !skipUpdateGallery && this.updateGallery();
              },
              updateGallery() {
                if (!this.productIndex) {
                  return;
                }
                fetch(`${this.mediaCallback}?product_id=${this.productIndex}&isAjax=true`, {
                  method: 'GET',
                  headers: {
                    'Content-Type': 'application/json',
                    'X-Requested-With': 'XMLHttpRequest'
                  }
                }).then(response => {
                  return response.json()
                }).then(data => {
                  if (data.errors) {
                    // non critical failure only console logged
                    console.warn(data.errors);
                  } else {
                    const image = data && data.medium;
                    image && window.dispatchEvent(new CustomEvent("update-gallery-8372", {
                      detail: image
                    }));
                  }
                }).catch(error => {
                  console.warn(error)
                });
              },
              preselectQuerystringItems() {
                // pre-select option like ?size=167
                const urlQueryParams = new URLSearchParams(window.location.search.replace('?', ''));
                Object.values(this.optionConfig.attributes).map(attribute => {
                  // Don't update images on load, since PLPs already set the main image to the selected options
                  const skipUpdateGallery = true;
                  urlQueryParams.get(attribute.code) && this.changeOption(attribute.id, urlQueryParams.get(attribute.code), skipUpdateGallery);
                });
              },
              mouseDown: false,
              startX: 0,
              maxScroll: 0,
              scrollLeft: null,
              slider: null,
              scrollEvents: {
                ['@mousedown'](e) {
                  this.slider = e.target.closest('.snap');
                  if (!this.slider) {
                    return;
                  }
                  this.maxScroll = this.slider.scrollWidth - this.slider.offsetWidth;
                  this.startX = e.pageX - this.slider.offsetLeft;
                  this.scrollLeft = this.slider.scrollLeft;
                  this.mouseDown = true;
                },
                ['@mouseout.self']() {
                  this.mouseDown = false;
                },
                ['@mouseup']() {
                  this.mouseDown = false;
                },
                ['@mousemove'](e) {
                  e.preventDefault();
                  if (!this.mouseDown) {
                    return;
                  }
                  const x = e.pageX - this.slider.offsetLeft;
                  const scroll = x - this.startX;
                  const scrollLeft = this.scrollLeft - scroll;
                  if (scrollLeft > this.maxScroll) {
                    this.slider.scrollLeft = this.maxScroll;
                    return
                  }
                  this.slider.scrollLeft = this.scrollLeft - scroll;
                },
                ['@onselectstart']() {
                  return false;
                }
              },
              resizeEvent() {
                Array.from(this.$el.querySelectorAll('.snap')).forEach(slider => {
                  slider.scrollLeft = 0;
                })
              }
            });
          }
        </script>
        <div x-data="initConfigurableSwatchOptions_8372()" x-init="findAllowedAttributeOptions(); initShowSwatchesIntersect();" @private-content-loaded.window="onGetCartData($event.detail.data)" @resize.window="resizeEvent()"
          class="mb-2 relative hidden group-hover:block">
          <div class="flex flex-col-reverse w-full">
            <div class="swatch-attribute last:border-b border-container
            size">
              <div class="w-full overflow-x-hidden swatch-attribute-options min-h-14">
                <template x-if="showSwatches">
                  <div class="flex flex-wrap justify-center w-full overflow-auto transition-all snap items-center pb-1 pt-3 space-x-3" role="radiogroup" x-spread="scrollEvents">
                    <label class="sr-only" for="attributesize">
                      <span> מידות ביגוד </span>
                    </label>
                    <template x-for="(item, index) in optionConfig.attributes[140].options" :key="item.id">
                      <div>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; optionIsActive(140, item.id)">
                          <label :for="'attribute-option-8372-'+item.id" class="swatch-option relative cursor-pointer select-none bg-container-lighter" :class="{
                'rounded-full w-7 h-7 category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }" :style="getSwatchBackgroundStyle('140',item.id)">
                            <input :id="'attribute-option-8372-'+item.id" :value="item.id" name="super_attribute[140]" type="radio" class="inline-block absolute p-0 border-0 focus:border-0 focus:ring-0 product-option-value-input" style="z-index:-1"
                              x-on:focus="focusLabel(item.id)" x-on:blur="blurLabel()" x-on:change="changeOption(140, $event.target.value)" x-model="selectedValues[140]" :required="getAllowedAttributeOptions(140).filter(
                                                                    attributeOption => selectedValues[attributeOption]
                                                                ).length === 0">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap flex items-center justify-center  shadow-sm" :class="{
                 'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                 'border w-8 h-8' : isTextSwatch(140, item.id),
                 'border-transparent' : !isTextSwatch(140, item.id) &amp;&amp; getSwatchText(140, item.id) !== 'לבן',
                 }"></div>
                          </label>
                        </template>
                        <template x-if="optionIsEnabled(140, item.id) &amp;&amp; !optionIsActive(140, item.id)">
                          <div class="relative border shadow-sm opacity-50 cursor-pointer select-none border-container-darker swatch-option bg-container-lighter mb-2 " :style="getSwatchBackgroundStyle('140',item.id)" :class="{
                'rounded-full border-2 w-7 h-7 text-none category-swatch' : !isTextSwatch(140, item.id),
                ' w-8 h-8' : isTextSwatch(140, item.id),
            }">
                            <div x-html="getSwatchText(140, item.id)" class="whitespace-nowrap" :class="{ 'sr-only' : !isTextSwatch(140, item.id) }"></div>
                            <svg class="absolute inset-0 w-full h-full text-gray-500 bg-white bg-opacity-25">
                              <line x1="0" y1="100%" x2="100%" y2="0" class="stroke-current stroke-1"></line>
                            </svg>
                          </div>
                        </template>
                      </div>
                    </template>
                  </div>
                </template>
              </div>
            </div>
          </div>
        </div>
        <script>
          function initPriceBox__666ef5135c305() {
            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="flex lg:justify-between mt-auto lg:flex-row flex-col">
          <div class="mt-2 text-center lg:text-left mb-5 sm:mb-0 px-1 sm:pr-4 text-lg" x-data="initPriceBox__666ef5135c305()" @update-prices-8372.window="updatePrice($event.detail);">
            <div class="price-box price-final_price" data-role="priceBox" data-product-id="8372" data-price-box="product-id-8372"> <span class="normal-price">
                <span class="price-container price-final_price tax weee">
                  <span class="price-label">המחיר הנמוך ביותר</span>
                  <span id="product-price-8372" data-price-amount="470" data-price-type="finalPrice" class="price-wrapper "><span class="price">‏470.00&nbsp;₪</span></span>
                </span>
              </span>
            </div>
            <div class="price-box price-srmultipass_price" data-role="priceBox" data-product-id="8372" data-price-box="product-id-8372">
              <div class="price-box price-srmultipass_price py-0.5 font-semibold text-lime-green" data-role="priceBox" data-product-id="8372" data-price-box="product-id-8372">
                <span class="price-container price-srmultipass_price tax weee">
                  <span class="price-label">מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע</span>
                  <span id="product-price-8372" data-price-amount="" data-price-type="srmultipassPrice" class="price-wrapper font-bold text-lg text-fire-engine-red">
                    <span class="price">‏329.00&nbsp;₪</span>
                  </span>
                </span>
              </div>
            </div>
          </div>
          <div class="flex justify-center items-end flex-row-reverse lg:ml-0 mb-2">
            <button class="text-mandarin relative lg:mr-auto" aria-label="הוסף לסל">
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="h-6 w-6 border-current inline" width="21" height="21">
                <path d="M9,5.5C9,5.2,8.8,5,8.5,5S8,5.2,8,5.5V7H6.5C6.2,7,6,7.2,6,7.5S6.2,8,6.5,8H8v1.5C8,9.8,8.2,10,8.5,10S9,9.8,9,9.5V8h1.5  C10.8,8,11,7.8,11,7.5S10.8,7,10.5,7H9V5.5z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"
                class="h-6 w-6 border-current inline loader animation hidden absolute top-0 right-0" width="21" height="21">
                <path d="M11.4,6.4c0.2-0.2,0.2-0.5,0-0.7s-0.5-0.2-0.7,0l0,0L8,8.3L6.9,7.1C6.7,7,6.3,7,6.1,7.1S6,7.7,6.1,7.9l1.5,1.5  c0.2,0.2,0.5,0.2,0.7,0c0,0,0,0,0,0L11.4,6.4z"></path>
                <path
                  d="M0.5,1C0.2,1,0,1.2,0,1.5S0.2,2,0.5,2h1.1L2,3.6l1.5,8C3.6,11.8,3.8,12,4,12h1c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2  s-0.9-2-2-2h7c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2s-0.9-2-2-2h1c0.2,0,0.4-0.2,0.5-0.4l1.5-8C15,3.3,14.9,3.1,14.6,3  c0,0-0.1,0-0.1,0H2.9L2.5,1.4C2.4,1.2,2.2,1,2,1H0.5z M4.4,11L3.1,4h10.8l-1.3,7H4.4z M6,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1  S6,13.4,6,14z M13,14c0,0.6-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S13,13.4,13,14z">
                </path>
              </svg>
              <span class="hidden ml-2 md:ml-0 lg:ml-2"> הוסף לסל </span>
            </button>
            <button x-data="initWishlist()" @click.prevent="addToWishlist(8372)" @private-content-loaded.window="receiveWishlistData($event.detail.data, 8372)" aria-label="הוסף ל-wishlist" type="button" class="text-mandarin mr-1.5">
              <template x-if="inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path d="M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2C12.7-3,23.3,4.9,8,15z"></path>
                </svg>
              </template>
              <template x-if="!inWishlist">
                <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                  <path
                    d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                  </path>
                </svg>
              </template>
              <svg xmlns="http://www.w3.org/2000/svg" version="1.1" fill="currentColor" x="0px" y="0px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve" class="w-5 h-5" width="21" height="20">
                <path
                  d="M8,2.7L7.3,2c-1.7-1.7-4.8-1.1-5.9,1c-0.5,1-0.6,2.5,0.3,4.4c0.9,1.8,2.8,4,6.3,6.4c3.5-2.4,5.4-4.5,6.3-6.4  c1-1.9,0.8-3.4,0.3-4.4c-1.1-2.2-4.2-2.8-5.9-1L8,2.7z M8,15C-7.3,4.9,3.3-3,7.8,1.1C7.9,1.2,7.9,1.3,8,1.3c0.1-0.1,0.1-0.1,0.2-0.2  C12.7-3,23.3,4.9,8,15z">
                </path>
              </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

Text Content

רשימת גיוס
טיפים
מדריך כוכבים
צרו קשר
חיפוש בכל החנות...

Cart 0
כניסה יצירת חשבון


העגלה שלי

x











סכום ביניים:

קופה
המשך קנייה לסל הקניות


CHECKOUT USING YOUR ACCOUNT

כתובת דוא"ל

סיסמה

כניסה שכחת סיסמה?



CHECKOUT AS A NEW CUSTOMER

ביצירת חשבון יש יתרונות רבים:

 * ראה מצב הזמנה ומשלוח
 * מעקב אחר ההזמנה
 * רכישה מהירה יותר

יצירת חשבון
Skip to Content
 * כוכבים צבא / נקודות
   כוכבים צבא / נקודות
    * כוכבים צבא / נקודות
      כוכבים צבא / נקודות
    * מדריך כוכבים
      מדריך כוכבים
   
   * כוכבים צבא / נקודות
   * הצג הכל
     הצג הכל
   * כוכבים צבא / נקודות
     כוכבים צבא / נקודות
   * מדריך כוכבים
     מדריך כוכבים
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ביגוד חיילים
   ביגוד חיילים
    * מדים לצבא
      מדים לצבא
    * בגדי צבא לחיילים
      בגדי צבא לחיילים
      * חולצות מתחת למדים וגופיות לצבא
        חולצות מתחת למדים וגופיות לצבא
      * גרביים צבאיות
        גרביים צבאיות
      * תחתונים ובוקסרים - גברים
        תחתונים ובוקסרים - גברים
      * חולצות דרייפיט
        חולצות דרייפיט
      * ביגוד מד״ס לחייל
        ביגוד מד״ס לחייל
      * חגורות צבאיות
        חגורות צבאיות
      * בגדי צבא לחיילים
      * הצג הכל
        הצג הכל
      * חולצות מתחת למדים וגופיות לצבא
        חולצות מתחת למדים וגופיות לצבא
      * גרביים צבאיות
        גרביים צבאיות
      * תחתונים ובוקסרים - גברים
        תחתונים ובוקסרים - גברים
      * חולצות דרייפיט
        חולצות דרייפיט
      * ביגוד מד״ס לחייל
        ביגוד מד״ס לחייל
      * חגורות צבאיות
        חגורות צבאיות
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * בגדי צבא לחיילות
      בגדי צבא לחיילות
      * חולצות וגופיות מתחת למדים
        חולצות וגופיות מתחת למדים
      * גרביים צבאיות
        גרביים צבאיות
      * חולצות דריפיט
        חולצות דריפיט
      * תחתונים וחזיות
        תחתונים וחזיות
      * ביגוד מד״ס
        ביגוד מד״ס
      * שעונים
        שעונים
      * בגדי צבא לחיילות
      * הצג הכל
        הצג הכל
      * חולצות וגופיות מתחת למדים
        חולצות וגופיות מתחת למדים
      * גרביים צבאיות
        גרביים צבאיות
      * חולצות דריפיט
        חולצות דריפיט
      * תחתונים וחזיות
        תחתונים וחזיות
      * ביגוד מד״ס
        ביגוד מד״ס
      * שעונים
        שעונים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * מארזי גיוס לחיילים וחיילות
      מארזי גיוס לחיילים וחיילות
    * ביגוד צבאי לחורף
      ביגוד צבאי לחורף
      * מעיל סופטשיל ופליזים
        מעיל סופטשיל ופליזים
      * ביגוד תרמי וחליפות תרמיות
        ביגוד תרמי וחליפות תרמיות
      * חרמוניות
        חרמוניות
      * חולצות ארוכות וגעטקס
        חולצות ארוכות וגעטקס
      * חם צוואר וכובעים
        חם צוואר וכובעים
      * כפפות וצעיפים
        כפפות וצעיפים
      * גרביים תרמים
        גרביים תרמים
      * סוודר סריג צבאי
        סוודר סריג צבאי
      * ביגוד צבאי לחורף
      * הצג הכל
        הצג הכל
      * מעיל סופטשיל ופליזים
        מעיל סופטשיל ופליזים
      * ביגוד תרמי וחליפות תרמיות
        ביגוד תרמי וחליפות תרמיות
      * חרמוניות
        חרמוניות
      * חולצות ארוכות וגעטקס
        חולצות ארוכות וגעטקס
      * חם צוואר וכובעים
        חם צוואר וכובעים
      * כפפות וצעיפים
        כפפות וצעיפים
      * גרביים תרמים
        גרביים תרמים
      * סוודר סריג צבאי
        סוודר סריג צבאי
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * ביגוד חיילים
   * הצג הכל
     הצג הכל
   * מדים לצבא
     מדים לצבא
   * בגדי צבא לחיילים
     בגדי צבא לחיילים
     * חולצות מתחת למדים וגופיות לצבא
       חולצות מתחת למדים וגופיות לצבא
     * גרביים צבאיות
       גרביים צבאיות
     * תחתונים ובוקסרים - גברים
       תחתונים ובוקסרים - גברים
     * חולצות דרייפיט
       חולצות דרייפיט
     * ביגוד מד״ס לחייל
       ביגוד מד״ס לחייל
     * חגורות צבאיות
       חגורות צבאיות
     * בגדי צבא לחיילים
     * הצג הכל
       הצג הכל
     * חולצות מתחת למדים וגופיות לצבא
       חולצות מתחת למדים וגופיות לצבא
     * גרביים צבאיות
       גרביים צבאיות
     * תחתונים ובוקסרים - גברים
       תחתונים ובוקסרים - גברים
     * חולצות דרייפיט
       חולצות דרייפיט
     * ביגוד מד״ס לחייל
       ביגוד מד״ס לחייל
     * חגורות צבאיות
       חגורות צבאיות
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * בגדי צבא לחיילות
     בגדי צבא לחיילות
     * חולצות וגופיות מתחת למדים
       חולצות וגופיות מתחת למדים
     * גרביים צבאיות
       גרביים צבאיות
     * חולצות דריפיט
       חולצות דריפיט
     * תחתונים וחזיות
       תחתונים וחזיות
     * ביגוד מד״ס
       ביגוד מד״ס
     * שעונים
       שעונים
     * בגדי צבא לחיילות
     * הצג הכל
       הצג הכל
     * חולצות וגופיות מתחת למדים
       חולצות וגופיות מתחת למדים
     * גרביים צבאיות
       גרביים צבאיות
     * חולצות דריפיט
       חולצות דריפיט
     * תחתונים וחזיות
       תחתונים וחזיות
     * ביגוד מד״ס
       ביגוד מד״ס
     * שעונים
       שעונים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * מארזי גיוס לחיילים וחיילות
     מארזי גיוס לחיילים וחיילות
   * ביגוד צבאי לחורף
     ביגוד צבאי לחורף
     * מעיל סופטשיל ופליזים
       מעיל סופטשיל ופליזים
     * ביגוד תרמי וחליפות תרמיות
       ביגוד תרמי וחליפות תרמיות
     * חרמוניות
       חרמוניות
     * חולצות ארוכות וגעטקס
       חולצות ארוכות וגעטקס
     * חם צוואר וכובעים
       חם צוואר וכובעים
     * כפפות וצעיפים
       כפפות וצעיפים
     * גרביים תרמים
       גרביים תרמים
     * סוודר סריג צבאי
       סוודר סריג צבאי
     * ביגוד צבאי לחורף
     * הצג הכל
       הצג הכל
     * מעיל סופטשיל ופליזים
       מעיל סופטשיל ופליזים
     * ביגוד תרמי וחליפות תרמיות
       ביגוד תרמי וחליפות תרמיות
     * חרמוניות
       חרמוניות
     * חולצות ארוכות וגעטקס
       חולצות ארוכות וגעטקס
     * חם צוואר וכובעים
       חם צוואר וכובעים
     * כפפות וצעיפים
       כפפות וצעיפים
     * גרביים תרמים
       גרביים תרמים
     * סוודר סריג צבאי
       סוודר סריג צבאי
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * הנעלה
   הנעלה
    * נעלי ספורט
      נעלי ספורט
      * נעלי ספורט לנשים
        נעלי ספורט לנשים
      * נעלי ספורט נשים
        נעלי ספורט נשים
      * נעלי ספורט
      * הצג הכל
        הצג הכל
      * נעלי ספורט לנשים
        נעלי ספורט לנשים
      * נעלי ספורט נשים
        נעלי ספורט נשים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * נעלי טיולים ונעליים צבאיות
      נעלי טיולים ונעליים צבאיות
      * נעלי טיולים של HOKA
        נעלי טיולים של HOKA
      * נעלי טיולים ונעליים צבאיות
      * הצג הכל
        הצג הכל
      * נעלי טיולים של HOKA
        נעלי טיולים של HOKA
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * נעלי LOWA
      נעלי LOWA
    * סנדלי שורש נשים וגברים
      סנדלי שורש נשים וגברים
    * כפכפים הוויאנס
      כפכפים הוויאנס
      * כפכפי הוויאנס לנשים
        כפכפי הוויאנס לנשים
      * כפכפי הוויאנס לגברים
        כפכפי הוויאנס לגברים
      * כפכפי הוויאנס לילדים
        כפכפי הוויאנס לילדים
      * כפכפים הוויאנס
      * הצג הכל
        הצג הכל
      * כפכפי הוויאנס לנשים
        כפכפי הוויאנס לנשים
      * כפכפי הוויאנס לגברים
        כפכפי הוויאנס לגברים
      * כפכפי הוויאנס לילדים
        כפכפי הוויאנס לילדים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * הנעלה
   * הצג הכל
     הצג הכל
   * נעלי ספורט
     נעלי ספורט
     * נעלי ספורט לנשים
       נעלי ספורט לנשים
     * נעלי ספורט נשים
       נעלי ספורט נשים
     * נעלי ספורט
     * הצג הכל
       הצג הכל
     * נעלי ספורט לנשים
       נעלי ספורט לנשים
     * נעלי ספורט נשים
       נעלי ספורט נשים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * נעלי טיולים ונעליים צבאיות
     נעלי טיולים ונעליים צבאיות
     * נעלי טיולים של HOKA
       נעלי טיולים של HOKA
     * נעלי טיולים ונעליים צבאיות
     * הצג הכל
       הצג הכל
     * נעלי טיולים של HOKA
       נעלי טיולים של HOKA
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * נעלי LOWA
     נעלי LOWA
   * סנדלי שורש נשים וגברים
     סנדלי שורש נשים וגברים
   * כפכפים הוויאנס
     כפכפים הוויאנס
     * כפכפי הוויאנס לנשים
       כפכפי הוויאנס לנשים
     * כפכפי הוויאנס לגברים
       כפכפי הוויאנס לגברים
     * כפכפי הוויאנס לילדים
       כפכפי הוויאנס לילדים
     * כפכפים הוויאנס
     * הצג הכל
       הצג הכל
     * כפכפי הוויאנס לנשים
       כפכפי הוויאנס לנשים
     * כפכפי הוויאנס לגברים
       כפכפי הוויאנס לגברים
     * כפכפי הוויאנס לילדים
       כפכפי הוויאנס לילדים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ציוד טקטי
   ציוד טקטי
    * ציוד טקטי
      ציוד טקטי
    * נרתיקים לאקדח
      נרתיקים לאקדח
    * ליאור טק
      ליאור טק
    * קירו
      קירו
    * מצדה ארמור
      מצדה ארמור
    * מרעום דולפין
      מרעום דולפין
    * TASMANIAN TIGER
      TASMANIAN TIGER
    * תוספות לנשק
      תוספות לנשק
      * ידיות אחיזה והסתערות
        ידיות אחיזה והסתערות
      * ביגוד טקטי
        ביגוד טקטי
      * קתות טרור
        קתות טרור
      * מסילות ומתאמי פיקטיני
        מסילות ומתאמי פיקטיני
      * אפודי מגן קרמי נגד ירי
        אפודי מגן קרמי נגד ירי
      * קסדות
        קסדות
      * כפפות טקטיות
        כפפות טקטיות
      * ברכיות רובוקופ
        ברכיות רובוקופ
      * משקפות
        משקפות
      * אזיקים
        אזיקים
      * ציוד לניקוי הנשק
        ציוד לניקוי הנשק
      * נרתיקים לנשק
        נרתיקים לנשק
      * תוספות לנשק
      * הצג הכל
        הצג הכל
      * ידיות אחיזה והסתערות
        ידיות אחיזה והסתערות
      * ביגוד טקטי
        ביגוד טקטי
      * קתות טרור
        קתות טרור
      * מסילות ומתאמי פיקטיני
        מסילות ומתאמי פיקטיני
      * אפודי מגן קרמי נגד ירי
        אפודי מגן קרמי נגד ירי
      * קסדות
        קסדות
      * כפפות טקטיות
        כפפות טקטיות
      * ברכיות רובוקופ
        ברכיות רובוקופ
      * משקפות
        משקפות
      * אזיקים
        אזיקים
      * ציוד לניקוי הנשק
        ציוד לניקוי הנשק
      * נרתיקים לנשק
        נרתיקים לנשק
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * ציוד טקטי
   * הצג הכל
     הצג הכל
   * ציוד טקטי
     ציוד טקטי
   * נרתיקים לאקדח
     נרתיקים לאקדח
   * ליאור טק
     ליאור טק
   * קירו
     קירו
   * מצדה ארמור
     מצדה ארמור
   * מרעום דולפין
     מרעום דולפין
   * TASMANIAN TIGER
     TASMANIAN TIGER
   * תוספות לנשק
     תוספות לנשק
     * ידיות אחיזה והסתערות
       ידיות אחיזה והסתערות
     * ביגוד טקטי
       ביגוד טקטי
     * קתות טרור
       קתות טרור
     * מסילות ומתאמי פיקטיני
       מסילות ומתאמי פיקטיני
     * אפודי מגן קרמי נגד ירי
       אפודי מגן קרמי נגד ירי
     * קסדות
       קסדות
     * כפפות טקטיות
       כפפות טקטיות
     * ברכיות רובוקופ
       ברכיות רובוקופ
     * משקפות
       משקפות
     * אזיקים
       אזיקים
     * ציוד לניקוי הנשק
       ציוד לניקוי הנשק
     * נרתיקים לנשק
       נרתיקים לנשק
     * תוספות לנשק
     * הצג הכל
       הצג הכל
     * ידיות אחיזה והסתערות
       ידיות אחיזה והסתערות
     * ביגוד טקטי
       ביגוד טקטי
     * קתות טרור
       קתות טרור
     * מסילות ומתאמי פיקטיני
       מסילות ומתאמי פיקטיני
     * אפודי מגן קרמי נגד ירי
       אפודי מגן קרמי נגד ירי
     * קסדות
       קסדות
     * כפפות טקטיות
       כפפות טקטיות
     * ברכיות רובוקופ
       ברכיות רובוקופ
     * משקפות
       משקפות
     * אזיקים
       אזיקים
     * ציוד לניקוי הנשק
       ציוד לניקוי הנשק
     * נרתיקים לנשק
       נרתיקים לנשק
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ציוד לצבא
   ציוד לצבא
    * ציוד לצבא
      ציוד לצבא
      * מנעולים לצבא
        מנעולים לצבא
      * משחות נעליים לצבא - גלח״צ
        משחות נעליים לצבא - גלח״צ
      * פק״לי כיסים ומפקד
        פק״לי כיסים ומפקד
      * כיסוי חוגרים וארנקים
        כיסוי חוגרים וארנקים
      * אביזרים ומדרסים לנעליים
        אביזרים ומדרסים לנעליים
      * אביזרי הגנה עצמית
        אביזרי הגנה עצמית
      * ציוד לצבא
      * הצג הכל
        הצג הכל
      * מנעולים לצבא
        מנעולים לצבא
      * משחות נעליים לצבא - גלח״צ
        משחות נעליים לצבא - גלח״צ
      * פק״לי כיסים ומפקד
        פק״לי כיסים ומפקד
      * כיסוי חוגרים וארנקים
        כיסוי חוגרים וארנקים
      * אביזרים ומדרסים לנעליים
        אביזרים ומדרסים לנעליים
      * אביזרי הגנה עצמית
        אביזרי הגנה עצמית
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * שפצורים לצבא
      שפצורים לצבא
      * אביזרי שיפצור
        אביזרי שיפצור
      * מיתרים
        מיתרים
      * איזולירבנד
        איזולירבנד
      * שפצורים לצבא
      * הצג הכל
        הצג הכל
      * אביזרי שיפצור
        אביזרי שיפצור
      * מיתרים
        מיתרים
      * איזולירבנד
        איזולירבנד
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * לדרמנים ואולרים
      לדרמנים ואולרים
    * פנס צבאי
      פנס צבאי
      * פנס ראש
        פנס ראש
      * פנס יד
        פנס יד
      * צייני לייזר
        צייני לייזר
      * פנס שטח
        פנס שטח
      * פנס לנשק
        פנס לנשק
      * פנס צבאי
      * הצג הכל
        הצג הכל
      * פנס ראש
        פנס ראש
      * פנס יד
        פנס יד
      * צייני לייזר
        צייני לייזר
      * פנס שטח
        פנס שטח
      * פנס לנשק
        פנס לנשק
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * שעונים לצבא
      שעונים לצבא
      * שעוני בייבי ג׳שוק וקסיו לבנות
        שעוני בייבי ג׳שוק וקסיו לבנות
      * שעון מעורר
        שעון מעורר
      * שעונים לצבא
      * הצג הכל
        הצג הכל
      * שעוני בייבי ג׳שוק וקסיו לבנות
        שעוני בייבי ג׳שוק וקסיו לבנות
      * שעון מעורר
        שעון מעורר
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * כומתות וסיכות
      כומתות וסיכות
      * כומתות צבאיות
        כומתות צבאיות
      * סיכות וסמלי יחידות
        סיכות וסמלי יחידות
      * סיכות כומתה
        סיכות כומתה
      * אותות מלחמה וסיכות
        אותות מלחמה וסיכות
      * דרגות בצה״ל ושרוכי הדרכה
        דרגות בצה״ל ושרוכי הדרכה
      * כומתות וסיכות
      * הצג הכל
        הצג הכל
      * כומתות צבאיות
        כומתות צבאיות
      * סיכות וסמלי יחידות
        סיכות וסמלי יחידות
      * סיכות כומתה
        סיכות כומתה
      * אותות מלחמה וסיכות
        אותות מלחמה וסיכות
      * דרגות בצה״ל ושרוכי הדרכה
        דרגות בצה״ל ושרוכי הדרכה
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * ציוד חורף
      ציוד חורף
   
   * ציוד לצבא
   * הצג הכל
     הצג הכל
   * ציוד לצבא
     ציוד לצבא
     * מנעולים לצבא
       מנעולים לצבא
     * משחות נעליים לצבא - גלח״צ
       משחות נעליים לצבא - גלח״צ
     * פק״לי כיסים ומפקד
       פק״לי כיסים ומפקד
     * כיסוי חוגרים וארנקים
       כיסוי חוגרים וארנקים
     * אביזרים ומדרסים לנעליים
       אביזרים ומדרסים לנעליים
     * אביזרי הגנה עצמית
       אביזרי הגנה עצמית
     * ציוד לצבא
     * הצג הכל
       הצג הכל
     * מנעולים לצבא
       מנעולים לצבא
     * משחות נעליים לצבא - גלח״צ
       משחות נעליים לצבא - גלח״צ
     * פק״לי כיסים ומפקד
       פק״לי כיסים ומפקד
     * כיסוי חוגרים וארנקים
       כיסוי חוגרים וארנקים
     * אביזרים ומדרסים לנעליים
       אביזרים ומדרסים לנעליים
     * אביזרי הגנה עצמית
       אביזרי הגנה עצמית
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * שפצורים לצבא
     שפצורים לצבא
     * אביזרי שיפצור
       אביזרי שיפצור
     * מיתרים
       מיתרים
     * איזולירבנד
       איזולירבנד
     * שפצורים לצבא
     * הצג הכל
       הצג הכל
     * אביזרי שיפצור
       אביזרי שיפצור
     * מיתרים
       מיתרים
     * איזולירבנד
       איזולירבנד
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * לדרמנים ואולרים
     לדרמנים ואולרים
   * פנס צבאי
     פנס צבאי
     * פנס ראש
       פנס ראש
     * פנס יד
       פנס יד
     * צייני לייזר
       צייני לייזר
     * פנס שטח
       פנס שטח
     * פנס לנשק
       פנס לנשק
     * פנס צבאי
     * הצג הכל
       הצג הכל
     * פנס ראש
       פנס ראש
     * פנס יד
       פנס יד
     * צייני לייזר
       צייני לייזר
     * פנס שטח
       פנס שטח
     * פנס לנשק
       פנס לנשק
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * שעונים לצבא
     שעונים לצבא
     * שעוני בייבי ג׳שוק וקסיו לבנות
       שעוני בייבי ג׳שוק וקסיו לבנות
     * שעון מעורר
       שעון מעורר
     * שעונים לצבא
     * הצג הכל
       הצג הכל
     * שעוני בייבי ג׳שוק וקסיו לבנות
       שעוני בייבי ג׳שוק וקסיו לבנות
     * שעון מעורר
       שעון מעורר
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * כומתות וסיכות
     כומתות וסיכות
     * כומתות צבאיות
       כומתות צבאיות
     * סיכות וסמלי יחידות
       סיכות וסמלי יחידות
     * סיכות כומתה
       סיכות כומתה
     * אותות מלחמה וסיכות
       אותות מלחמה וסיכות
     * דרגות בצה״ל ושרוכי הדרכה
       דרגות בצה״ל ושרוכי הדרכה
     * כומתות וסיכות
     * הצג הכל
       הצג הכל
     * כומתות צבאיות
       כומתות צבאיות
     * סיכות וסמלי יחידות
       סיכות וסמלי יחידות
     * סיכות כומתה
       סיכות כומתה
     * אותות מלחמה וסיכות
       אותות מלחמה וסיכות
     * דרגות בצה״ל ושרוכי הדרכה
       דרגות בצה״ל ושרוכי הדרכה
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * ציוד חורף
     ציוד חורף
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ציוד קמפינג
   ציוד קמפינג
    * ציוד קמפינג ומחנאות
      ציוד קמפינג ומחנאות
      * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
        אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
      * מזרני שטח ומחצלות
        מזרני שטח ומחצלות
      * שקי שינה לטיולים וציוד לשינה
        שקי שינה לטיולים וציוד לשינה
      * ציליות חוף ושמשיות לים - גזיבו
        ציליות חוף ושמשיות לים - גזיבו
      * גזיות, פקלי קפה וכלים רב פעמיים
        גזיות, פקלי קפה וכלים רב פעמיים
      * סיר פויקה - סאג׳ - בישול שטח
        סיר פויקה - סאג׳ - בישול שטח
      * ערסלים
        ערסלים
      * עגלות קמפינג וים
        עגלות קמפינג וים
      * כובעים מסנני קרינה ומכנסי טיולים
        כובעים מסנני קרינה ומכנסי טיולים
      * כיסאות קמפינג וכיסאות ים מתקפלים
        כיסאות קמפינג וכיסאות ים מתקפלים
      * ערכת תאורה לשטח ואוהל בן רגע
        ערכת תאורה לשטח ואוהל בן רגע
      * בקבוקים
        בקבוקים
      * נגד יתושים ועקיצות
        נגד יתושים ועקיצות
      * מערכות שתיה ושלוקרים
        מערכות שתיה ושלוקרים
      * צידניות וקולרים
        צידניות וקולרים
      * ציוד קמפינג ומחנאות
      * הצג הכל
        הצג הכל
      * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
        אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
      * מזרני שטח ומחצלות
        מזרני שטח ומחצלות
      * שקי שינה לטיולים וציוד לשינה
        שקי שינה לטיולים וציוד לשינה
      * ציליות חוף ושמשיות לים - גזיבו
        ציליות חוף ושמשיות לים - גזיבו
      * גזיות, פקלי קפה וכלים רב פעמיים
        גזיות, פקלי קפה וכלים רב פעמיים
      * סיר פויקה - סאג׳ - בישול שטח
        סיר פויקה - סאג׳ - בישול שטח
      * ערסלים
        ערסלים
      * עגלות קמפינג וים
        עגלות קמפינג וים
      * כובעים מסנני קרינה ומכנסי טיולים
        כובעים מסנני קרינה ומכנסי טיולים
      * כיסאות קמפינג וכיסאות ים מתקפלים
        כיסאות קמפינג וכיסאות ים מתקפלים
      * ערכת תאורה לשטח ואוהל בן רגע
        ערכת תאורה לשטח ואוהל בן רגע
      * בקבוקים
        בקבוקים
      * נגד יתושים ועקיצות
        נגד יתושים ועקיצות
      * מערכות שתיה ושלוקרים
        מערכות שתיה ושלוקרים
      * צידניות וקולרים
        צידניות וקולרים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * ציוד קמפינג
   * הצג הכל
     הצג הכל
   * ציוד קמפינג ומחנאות
     ציוד קמפינג ומחנאות
     * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
       אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
     * מזרני שטח ומחצלות
       מזרני שטח ומחצלות
     * שקי שינה לטיולים וציוד לשינה
       שקי שינה לטיולים וציוד לשינה
     * ציליות חוף ושמשיות לים - גזיבו
       ציליות חוף ושמשיות לים - גזיבו
     * גזיות, פקלי קפה וכלים רב פעמיים
       גזיות, פקלי קפה וכלים רב פעמיים
     * סיר פויקה - סאג׳ - בישול שטח
       סיר פויקה - סאג׳ - בישול שטח
     * ערסלים
       ערסלים
     * עגלות קמפינג וים
       עגלות קמפינג וים
     * כובעים מסנני קרינה ומכנסי טיולים
       כובעים מסנני קרינה ומכנסי טיולים
     * כיסאות קמפינג וכיסאות ים מתקפלים
       כיסאות קמפינג וכיסאות ים מתקפלים
     * ערכת תאורה לשטח ואוהל בן רגע
       ערכת תאורה לשטח ואוהל בן רגע
     * בקבוקים
       בקבוקים
     * נגד יתושים ועקיצות
       נגד יתושים ועקיצות
     * מערכות שתיה ושלוקרים
       מערכות שתיה ושלוקרים
     * צידניות וקולרים
       צידניות וקולרים
     * ציוד קמפינג ומחנאות
     * הצג הכל
       הצג הכל
     * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
       אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
     * מזרני שטח ומחצלות
       מזרני שטח ומחצלות
     * שקי שינה לטיולים וציוד לשינה
       שקי שינה לטיולים וציוד לשינה
     * ציליות חוף ושמשיות לים - גזיבו
       ציליות חוף ושמשיות לים - גזיבו
     * גזיות, פקלי קפה וכלים רב פעמיים
       גזיות, פקלי קפה וכלים רב פעמיים
     * סיר פויקה - סאג׳ - בישול שטח
       סיר פויקה - סאג׳ - בישול שטח
     * ערסלים
       ערסלים
     * עגלות קמפינג וים
       עגלות קמפינג וים
     * כובעים מסנני קרינה ומכנסי טיולים
       כובעים מסנני קרינה ומכנסי טיולים
     * כיסאות קמפינג וכיסאות ים מתקפלים
       כיסאות קמפינג וכיסאות ים מתקפלים
     * ערכת תאורה לשטח ואוהל בן רגע
       ערכת תאורה לשטח ואוהל בן רגע
     * בקבוקים
       בקבוקים
     * נגד יתושים ועקיצות
       נגד יתושים ועקיצות
     * מערכות שתיה ושלוקרים
       מערכות שתיה ושלוקרים
     * צידניות וקולרים
       צידניות וקולרים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * תיקים
   תיקים
    * תיקי גב ותרמילים
      תיקי גב ותרמילים
      * תרמילי גב (55 ליטר ומעלה)
        תרמילי גב (55 ליטר ומעלה)
      * תיקי גב (עד 50 ליטר)
        תיקי גב (עד 50 ליטר)
      * צ'ימידנים
        צ'ימידנים
      * תיקי יום / תיקי טיולים
        תיקי יום / תיקי טיולים
      * מזוודות וטרולי
        מזוודות וטרולי
      * תיקי גב ותרמילים
      * הצג הכל
        הצג הכל
      * תרמילי גב (55 ליטר ומעלה)
        תרמילי גב (55 ליטר ומעלה)
      * תיקי גב (עד 50 ליטר)
        תיקי גב (עד 50 ליטר)
      * צ'ימידנים
        צ'ימידנים
      * תיקי יום / תיקי טיולים
        תיקי יום / תיקי טיולים
      * מזוודות וטרולי
        מזוודות וטרולי
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * תיקים
   * הצג הכל
     הצג הכל
   * תיקי גב ותרמילים
     תיקי גב ותרמילים
     * תרמילי גב (55 ליטר ומעלה)
       תרמילי גב (55 ליטר ומעלה)
     * תיקי גב (עד 50 ליטר)
       תיקי גב (עד 50 ליטר)
     * צ'ימידנים
       צ'ימידנים
     * תיקי יום / תיקי טיולים
       תיקי יום / תיקי טיולים
     * מזוודות וטרולי
       מזוודות וטרולי
     * תיקי גב ותרמילים
     * הצג הכל
       הצג הכל
     * תרמילי גב (55 ליטר ומעלה)
       תרמילי גב (55 ליטר ומעלה)
     * תיקי גב (עד 50 ליטר)
       תיקי גב (עד 50 ליטר)
     * צ'ימידנים
       צ'ימידנים
     * תיקי יום / תיקי טיולים
       תיקי יום / תיקי טיולים
     * מזוודות וטרולי
       מזוודות וטרולי
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * טואלטיקה
   טואלטיקה
    * מוצרי היגיינה וטואלטיקה
      מוצרי היגיינה וטואלטיקה
      * בנים
        בנים
      * בנות
        בנות
      * תיקי רחצה
        תיקי רחצה
      * הגנה מהשמש
        הגנה מהשמש
      * מגבות ואביזרים
        מגבות ואביזרים
      * מוצרי היגיינה וטואלטיקה
      * הצג הכל
        הצג הכל
      * בנים
        בנים
      * בנות
        בנות
      * תיקי רחצה
        תיקי רחצה
      * הגנה מהשמש
        הגנה מהשמש
      * מגבות ואביזרים
        מגבות ואביזרים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * טואלטיקה
   * הצג הכל
     הצג הכל
   * מוצרי היגיינה וטואלטיקה
     מוצרי היגיינה וטואלטיקה
     * בנים
       בנים
     * בנות
       בנות
     * תיקי רחצה
       תיקי רחצה
     * הגנה מהשמש
       הגנה מהשמש
     * מגבות ואביזרים
       מגבות ואביזרים
     * מוצרי היגיינה וטואלטיקה
     * הצג הכל
       הצג הכל
     * בנים
       בנים
     * בנות
       בנות
     * תיקי רחצה
       תיקי רחצה
     * הגנה מהשמש
       הגנה מהשמש
     * מגבות ואביזרים
       מגבות ואביזרים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * מבצעים
   מבצעים
 * Gift Card

 * כוכבים צבא / נקודות
   כוכבים צבא / נקודות
    * כוכבים צבא / נקודות
      כוכבים צבא / נקודות
    * מדריך כוכבים
      מדריך כוכבים
   
   * כוכבים צבא / נקודות
   * הצג הכל
     הצג הכל
   * כוכבים צבא / נקודות
     כוכבים צבא / נקודות
   * מדריך כוכבים
     מדריך כוכבים
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ביגוד חיילים
   ביגוד חיילים
    * מדים לצבא
      מדים לצבא
    * בגדי צבא לחיילים
      בגדי צבא לחיילים
      * חולצות מתחת למדים וגופיות לצבא
        חולצות מתחת למדים וגופיות לצבא
      * גרביים צבאיות
        גרביים צבאיות
      * תחתונים ובוקסרים - גברים
        תחתונים ובוקסרים - גברים
      * חולצות דרייפיט
        חולצות דרייפיט
      * ביגוד מד״ס לחייל
        ביגוד מד״ס לחייל
      * חגורות צבאיות
        חגורות צבאיות
      * בגדי צבא לחיילים
      * הצג הכל
        הצג הכל
      * חולצות מתחת למדים וגופיות לצבא
        חולצות מתחת למדים וגופיות לצבא
      * גרביים צבאיות
        גרביים צבאיות
      * תחתונים ובוקסרים - גברים
        תחתונים ובוקסרים - גברים
      * חולצות דרייפיט
        חולצות דרייפיט
      * ביגוד מד״ס לחייל
        ביגוד מד״ס לחייל
      * חגורות צבאיות
        חגורות צבאיות
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * בגדי צבא לחיילות
      בגדי צבא לחיילות
      * חולצות וגופיות מתחת למדים
        חולצות וגופיות מתחת למדים
      * גרביים צבאיות
        גרביים צבאיות
      * חולצות דריפיט
        חולצות דריפיט
      * תחתונים וחזיות
        תחתונים וחזיות
      * ביגוד מד״ס
        ביגוד מד״ס
      * שעונים
        שעונים
      * בגדי צבא לחיילות
      * הצג הכל
        הצג הכל
      * חולצות וגופיות מתחת למדים
        חולצות וגופיות מתחת למדים
      * גרביים צבאיות
        גרביים צבאיות
      * חולצות דריפיט
        חולצות דריפיט
      * תחתונים וחזיות
        תחתונים וחזיות
      * ביגוד מד״ס
        ביגוד מד״ס
      * שעונים
        שעונים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * מארזי גיוס לחיילים וחיילות
      מארזי גיוס לחיילים וחיילות
    * ביגוד צבאי לחורף
      ביגוד צבאי לחורף
      * מעיל סופטשיל ופליזים
        מעיל סופטשיל ופליזים
      * ביגוד תרמי וחליפות תרמיות
        ביגוד תרמי וחליפות תרמיות
      * חרמוניות
        חרמוניות
      * חולצות ארוכות וגעטקס
        חולצות ארוכות וגעטקס
      * חם צוואר וכובעים
        חם צוואר וכובעים
      * כפפות וצעיפים
        כפפות וצעיפים
      * גרביים תרמים
        גרביים תרמים
      * סוודר סריג צבאי
        סוודר סריג צבאי
      * ביגוד צבאי לחורף
      * הצג הכל
        הצג הכל
      * מעיל סופטשיל ופליזים
        מעיל סופטשיל ופליזים
      * ביגוד תרמי וחליפות תרמיות
        ביגוד תרמי וחליפות תרמיות
      * חרמוניות
        חרמוניות
      * חולצות ארוכות וגעטקס
        חולצות ארוכות וגעטקס
      * חם צוואר וכובעים
        חם צוואר וכובעים
      * כפפות וצעיפים
        כפפות וצעיפים
      * גרביים תרמים
        גרביים תרמים
      * סוודר סריג צבאי
        סוודר סריג צבאי
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * ביגוד חיילים
   * הצג הכל
     הצג הכל
   * מדים לצבא
     מדים לצבא
   * בגדי צבא לחיילים
     בגדי צבא לחיילים
     * חולצות מתחת למדים וגופיות לצבא
       חולצות מתחת למדים וגופיות לצבא
     * גרביים צבאיות
       גרביים צבאיות
     * תחתונים ובוקסרים - גברים
       תחתונים ובוקסרים - גברים
     * חולצות דרייפיט
       חולצות דרייפיט
     * ביגוד מד״ס לחייל
       ביגוד מד״ס לחייל
     * חגורות צבאיות
       חגורות צבאיות
     * בגדי צבא לחיילים
     * הצג הכל
       הצג הכל
     * חולצות מתחת למדים וגופיות לצבא
       חולצות מתחת למדים וגופיות לצבא
     * גרביים צבאיות
       גרביים צבאיות
     * תחתונים ובוקסרים - גברים
       תחתונים ובוקסרים - גברים
     * חולצות דרייפיט
       חולצות דרייפיט
     * ביגוד מד״ס לחייל
       ביגוד מד״ס לחייל
     * חגורות צבאיות
       חגורות צבאיות
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * בגדי צבא לחיילות
     בגדי צבא לחיילות
     * חולצות וגופיות מתחת למדים
       חולצות וגופיות מתחת למדים
     * גרביים צבאיות
       גרביים צבאיות
     * חולצות דריפיט
       חולצות דריפיט
     * תחתונים וחזיות
       תחתונים וחזיות
     * ביגוד מד״ס
       ביגוד מד״ס
     * שעונים
       שעונים
     * בגדי צבא לחיילות
     * הצג הכל
       הצג הכל
     * חולצות וגופיות מתחת למדים
       חולצות וגופיות מתחת למדים
     * גרביים צבאיות
       גרביים צבאיות
     * חולצות דריפיט
       חולצות דריפיט
     * תחתונים וחזיות
       תחתונים וחזיות
     * ביגוד מד״ס
       ביגוד מד״ס
     * שעונים
       שעונים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * מארזי גיוס לחיילים וחיילות
     מארזי גיוס לחיילים וחיילות
   * ביגוד צבאי לחורף
     ביגוד צבאי לחורף
     * מעיל סופטשיל ופליזים
       מעיל סופטשיל ופליזים
     * ביגוד תרמי וחליפות תרמיות
       ביגוד תרמי וחליפות תרמיות
     * חרמוניות
       חרמוניות
     * חולצות ארוכות וגעטקס
       חולצות ארוכות וגעטקס
     * חם צוואר וכובעים
       חם צוואר וכובעים
     * כפפות וצעיפים
       כפפות וצעיפים
     * גרביים תרמים
       גרביים תרמים
     * סוודר סריג צבאי
       סוודר סריג צבאי
     * ביגוד צבאי לחורף
     * הצג הכל
       הצג הכל
     * מעיל סופטשיל ופליזים
       מעיל סופטשיל ופליזים
     * ביגוד תרמי וחליפות תרמיות
       ביגוד תרמי וחליפות תרמיות
     * חרמוניות
       חרמוניות
     * חולצות ארוכות וגעטקס
       חולצות ארוכות וגעטקס
     * חם צוואר וכובעים
       חם צוואר וכובעים
     * כפפות וצעיפים
       כפפות וצעיפים
     * גרביים תרמים
       גרביים תרמים
     * סוודר סריג צבאי
       סוודר סריג צבאי
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * הנעלה
   הנעלה
    * נעלי ספורט
      נעלי ספורט
      * נעלי ספורט לנשים
        נעלי ספורט לנשים
      * נעלי ספורט נשים
        נעלי ספורט נשים
      * נעלי ספורט
      * הצג הכל
        הצג הכל
      * נעלי ספורט לנשים
        נעלי ספורט לנשים
      * נעלי ספורט נשים
        נעלי ספורט נשים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * נעלי טיולים ונעליים צבאיות
      נעלי טיולים ונעליים צבאיות
      * נעלי טיולים של HOKA
        נעלי טיולים של HOKA
      * נעלי טיולים ונעליים צבאיות
      * הצג הכל
        הצג הכל
      * נעלי טיולים של HOKA
        נעלי טיולים של HOKA
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * נעלי LOWA
      נעלי LOWA
    * סנדלי שורש נשים וגברים
      סנדלי שורש נשים וגברים
    * כפכפים הוויאנס
      כפכפים הוויאנס
      * כפכפי הוויאנס לנשים
        כפכפי הוויאנס לנשים
      * כפכפי הוויאנס לגברים
        כפכפי הוויאנס לגברים
      * כפכפי הוויאנס לילדים
        כפכפי הוויאנס לילדים
      * כפכפים הוויאנס
      * הצג הכל
        הצג הכל
      * כפכפי הוויאנס לנשים
        כפכפי הוויאנס לנשים
      * כפכפי הוויאנס לגברים
        כפכפי הוויאנס לגברים
      * כפכפי הוויאנס לילדים
        כפכפי הוויאנס לילדים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * הנעלה
   * הצג הכל
     הצג הכל
   * נעלי ספורט
     נעלי ספורט
     * נעלי ספורט לנשים
       נעלי ספורט לנשים
     * נעלי ספורט נשים
       נעלי ספורט נשים
     * נעלי ספורט
     * הצג הכל
       הצג הכל
     * נעלי ספורט לנשים
       נעלי ספורט לנשים
     * נעלי ספורט נשים
       נעלי ספורט נשים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * נעלי טיולים ונעליים צבאיות
     נעלי טיולים ונעליים צבאיות
     * נעלי טיולים של HOKA
       נעלי טיולים של HOKA
     * נעלי טיולים ונעליים צבאיות
     * הצג הכל
       הצג הכל
     * נעלי טיולים של HOKA
       נעלי טיולים של HOKA
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * נעלי LOWA
     נעלי LOWA
   * סנדלי שורש נשים וגברים
     סנדלי שורש נשים וגברים
   * כפכפים הוויאנס
     כפכפים הוויאנס
     * כפכפי הוויאנס לנשים
       כפכפי הוויאנס לנשים
     * כפכפי הוויאנס לגברים
       כפכפי הוויאנס לגברים
     * כפכפי הוויאנס לילדים
       כפכפי הוויאנס לילדים
     * כפכפים הוויאנס
     * הצג הכל
       הצג הכל
     * כפכפי הוויאנס לנשים
       כפכפי הוויאנס לנשים
     * כפכפי הוויאנס לגברים
       כפכפי הוויאנס לגברים
     * כפכפי הוויאנס לילדים
       כפכפי הוויאנס לילדים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ציוד טקטי
   ציוד טקטי
    * ציוד טקטי
      ציוד טקטי
    * נרתיקים לאקדח
      נרתיקים לאקדח
    * ליאור טק
      ליאור טק
    * קירו
      קירו
    * מצדה ארמור
      מצדה ארמור
    * מרעום דולפין
      מרעום דולפין
    * TASMANIAN TIGER
      TASMANIAN TIGER
    * תוספות לנשק
      תוספות לנשק
      * ידיות אחיזה והסתערות
        ידיות אחיזה והסתערות
      * ביגוד טקטי
        ביגוד טקטי
      * קתות טרור
        קתות טרור
      * מסילות ומתאמי פיקטיני
        מסילות ומתאמי פיקטיני
      * אפודי מגן קרמי נגד ירי
        אפודי מגן קרמי נגד ירי
      * קסדות
        קסדות
      * כפפות טקטיות
        כפפות טקטיות
      * ברכיות רובוקופ
        ברכיות רובוקופ
      * משקפות
        משקפות
      * אזיקים
        אזיקים
      * ציוד לניקוי הנשק
        ציוד לניקוי הנשק
      * נרתיקים לנשק
        נרתיקים לנשק
      * תוספות לנשק
      * הצג הכל
        הצג הכל
      * ידיות אחיזה והסתערות
        ידיות אחיזה והסתערות
      * ביגוד טקטי
        ביגוד טקטי
      * קתות טרור
        קתות טרור
      * מסילות ומתאמי פיקטיני
        מסילות ומתאמי פיקטיני
      * אפודי מגן קרמי נגד ירי
        אפודי מגן קרמי נגד ירי
      * קסדות
        קסדות
      * כפפות טקטיות
        כפפות טקטיות
      * ברכיות רובוקופ
        ברכיות רובוקופ
      * משקפות
        משקפות
      * אזיקים
        אזיקים
      * ציוד לניקוי הנשק
        ציוד לניקוי הנשק
      * נרתיקים לנשק
        נרתיקים לנשק
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * ציוד טקטי
   * הצג הכל
     הצג הכל
   * ציוד טקטי
     ציוד טקטי
   * נרתיקים לאקדח
     נרתיקים לאקדח
   * ליאור טק
     ליאור טק
   * קירו
     קירו
   * מצדה ארמור
     מצדה ארמור
   * מרעום דולפין
     מרעום דולפין
   * TASMANIAN TIGER
     TASMANIAN TIGER
   * תוספות לנשק
     תוספות לנשק
     * ידיות אחיזה והסתערות
       ידיות אחיזה והסתערות
     * ביגוד טקטי
       ביגוד טקטי
     * קתות טרור
       קתות טרור
     * מסילות ומתאמי פיקטיני
       מסילות ומתאמי פיקטיני
     * אפודי מגן קרמי נגד ירי
       אפודי מגן קרמי נגד ירי
     * קסדות
       קסדות
     * כפפות טקטיות
       כפפות טקטיות
     * ברכיות רובוקופ
       ברכיות רובוקופ
     * משקפות
       משקפות
     * אזיקים
       אזיקים
     * ציוד לניקוי הנשק
       ציוד לניקוי הנשק
     * נרתיקים לנשק
       נרתיקים לנשק
     * תוספות לנשק
     * הצג הכל
       הצג הכל
     * ידיות אחיזה והסתערות
       ידיות אחיזה והסתערות
     * ביגוד טקטי
       ביגוד טקטי
     * קתות טרור
       קתות טרור
     * מסילות ומתאמי פיקטיני
       מסילות ומתאמי פיקטיני
     * אפודי מגן קרמי נגד ירי
       אפודי מגן קרמי נגד ירי
     * קסדות
       קסדות
     * כפפות טקטיות
       כפפות טקטיות
     * ברכיות רובוקופ
       ברכיות רובוקופ
     * משקפות
       משקפות
     * אזיקים
       אזיקים
     * ציוד לניקוי הנשק
       ציוד לניקוי הנשק
     * נרתיקים לנשק
       נרתיקים לנשק
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ציוד לצבא
   ציוד לצבא
    * ציוד לצבא
      ציוד לצבא
      * מנעולים לצבא
        מנעולים לצבא
      * משחות נעליים לצבא - גלח״צ
        משחות נעליים לצבא - גלח״צ
      * פק״לי כיסים ומפקד
        פק״לי כיסים ומפקד
      * כיסוי חוגרים וארנקים
        כיסוי חוגרים וארנקים
      * אביזרים ומדרסים לנעליים
        אביזרים ומדרסים לנעליים
      * אביזרי הגנה עצמית
        אביזרי הגנה עצמית
      * ציוד לצבא
      * הצג הכל
        הצג הכל
      * מנעולים לצבא
        מנעולים לצבא
      * משחות נעליים לצבא - גלח״צ
        משחות נעליים לצבא - גלח״צ
      * פק״לי כיסים ומפקד
        פק״לי כיסים ומפקד
      * כיסוי חוגרים וארנקים
        כיסוי חוגרים וארנקים
      * אביזרים ומדרסים לנעליים
        אביזרים ומדרסים לנעליים
      * אביזרי הגנה עצמית
        אביזרי הגנה עצמית
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * שפצורים לצבא
      שפצורים לצבא
      * אביזרי שיפצור
        אביזרי שיפצור
      * מיתרים
        מיתרים
      * איזולירבנד
        איזולירבנד
      * שפצורים לצבא
      * הצג הכל
        הצג הכל
      * אביזרי שיפצור
        אביזרי שיפצור
      * מיתרים
        מיתרים
      * איזולירבנד
        איזולירבנד
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * לדרמנים ואולרים
      לדרמנים ואולרים
    * פנס צבאי
      פנס צבאי
      * פנס ראש
        פנס ראש
      * פנס יד
        פנס יד
      * צייני לייזר
        צייני לייזר
      * פנס שטח
        פנס שטח
      * פנס לנשק
        פנס לנשק
      * פנס צבאי
      * הצג הכל
        הצג הכל
      * פנס ראש
        פנס ראש
      * פנס יד
        פנס יד
      * צייני לייזר
        צייני לייזר
      * פנס שטח
        פנס שטח
      * פנס לנשק
        פנס לנשק
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * שעונים לצבא
      שעונים לצבא
      * שעוני בייבי ג׳שוק וקסיו לבנות
        שעוני בייבי ג׳שוק וקסיו לבנות
      * שעון מעורר
        שעון מעורר
      * שעונים לצבא
      * הצג הכל
        הצג הכל
      * שעוני בייבי ג׳שוק וקסיו לבנות
        שעוני בייבי ג׳שוק וקסיו לבנות
      * שעון מעורר
        שעון מעורר
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * כומתות וסיכות
      כומתות וסיכות
      * כומתות צבאיות
        כומתות צבאיות
      * סיכות וסמלי יחידות
        סיכות וסמלי יחידות
      * סיכות כומתה
        סיכות כומתה
      * אותות מלחמה וסיכות
        אותות מלחמה וסיכות
      * דרגות בצה״ל ושרוכי הדרכה
        דרגות בצה״ל ושרוכי הדרכה
      * כומתות וסיכות
      * הצג הכל
        הצג הכל
      * כומתות צבאיות
        כומתות צבאיות
      * סיכות וסמלי יחידות
        סיכות וסמלי יחידות
      * סיכות כומתה
        סיכות כומתה
      * אותות מלחמה וסיכות
        אותות מלחמה וסיכות
      * דרגות בצה״ל ושרוכי הדרכה
        דרגות בצה״ל ושרוכי הדרכה
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
    * ציוד חורף
      ציוד חורף
   
   * ציוד לצבא
   * הצג הכל
     הצג הכל
   * ציוד לצבא
     ציוד לצבא
     * מנעולים לצבא
       מנעולים לצבא
     * משחות נעליים לצבא - גלח״צ
       משחות נעליים לצבא - גלח״צ
     * פק״לי כיסים ומפקד
       פק״לי כיסים ומפקד
     * כיסוי חוגרים וארנקים
       כיסוי חוגרים וארנקים
     * אביזרים ומדרסים לנעליים
       אביזרים ומדרסים לנעליים
     * אביזרי הגנה עצמית
       אביזרי הגנה עצמית
     * ציוד לצבא
     * הצג הכל
       הצג הכל
     * מנעולים לצבא
       מנעולים לצבא
     * משחות נעליים לצבא - גלח״צ
       משחות נעליים לצבא - גלח״צ
     * פק״לי כיסים ומפקד
       פק״לי כיסים ומפקד
     * כיסוי חוגרים וארנקים
       כיסוי חוגרים וארנקים
     * אביזרים ומדרסים לנעליים
       אביזרים ומדרסים לנעליים
     * אביזרי הגנה עצמית
       אביזרי הגנה עצמית
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * שפצורים לצבא
     שפצורים לצבא
     * אביזרי שיפצור
       אביזרי שיפצור
     * מיתרים
       מיתרים
     * איזולירבנד
       איזולירבנד
     * שפצורים לצבא
     * הצג הכל
       הצג הכל
     * אביזרי שיפצור
       אביזרי שיפצור
     * מיתרים
       מיתרים
     * איזולירבנד
       איזולירבנד
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * לדרמנים ואולרים
     לדרמנים ואולרים
   * פנס צבאי
     פנס צבאי
     * פנס ראש
       פנס ראש
     * פנס יד
       פנס יד
     * צייני לייזר
       צייני לייזר
     * פנס שטח
       פנס שטח
     * פנס לנשק
       פנס לנשק
     * פנס צבאי
     * הצג הכל
       הצג הכל
     * פנס ראש
       פנס ראש
     * פנס יד
       פנס יד
     * צייני לייזר
       צייני לייזר
     * פנס שטח
       פנס שטח
     * פנס לנשק
       פנס לנשק
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * שעונים לצבא
     שעונים לצבא
     * שעוני בייבי ג׳שוק וקסיו לבנות
       שעוני בייבי ג׳שוק וקסיו לבנות
     * שעון מעורר
       שעון מעורר
     * שעונים לצבא
     * הצג הכל
       הצג הכל
     * שעוני בייבי ג׳שוק וקסיו לבנות
       שעוני בייבי ג׳שוק וקסיו לבנות
     * שעון מעורר
       שעון מעורר
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * כומתות וסיכות
     כומתות וסיכות
     * כומתות צבאיות
       כומתות צבאיות
     * סיכות וסמלי יחידות
       סיכות וסמלי יחידות
     * סיכות כומתה
       סיכות כומתה
     * אותות מלחמה וסיכות
       אותות מלחמה וסיכות
     * דרגות בצה״ל ושרוכי הדרכה
       דרגות בצה״ל ושרוכי הדרכה
     * כומתות וסיכות
     * הצג הכל
       הצג הכל
     * כומתות צבאיות
       כומתות צבאיות
     * סיכות וסמלי יחידות
       סיכות וסמלי יחידות
     * סיכות כומתה
       סיכות כומתה
     * אותות מלחמה וסיכות
       אותות מלחמה וסיכות
     * דרגות בצה״ל ושרוכי הדרכה
       דרגות בצה״ל ושרוכי הדרכה
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
   * ציוד חורף
     ציוד חורף
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * ציוד קמפינג
   ציוד קמפינג
    * ציוד קמפינג ומחנאות
      ציוד קמפינג ומחנאות
      * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
        אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
      * מזרני שטח ומחצלות
        מזרני שטח ומחצלות
      * שקי שינה לטיולים וציוד לשינה
        שקי שינה לטיולים וציוד לשינה
      * ציליות חוף ושמשיות לים - גזיבו
        ציליות חוף ושמשיות לים - גזיבו
      * גזיות, פקלי קפה וכלים רב פעמיים
        גזיות, פקלי קפה וכלים רב פעמיים
      * סיר פויקה - סאג׳ - בישול שטח
        סיר פויקה - סאג׳ - בישול שטח
      * ערסלים
        ערסלים
      * עגלות קמפינג וים
        עגלות קמפינג וים
      * כובעים מסנני קרינה ומכנסי טיולים
        כובעים מסנני קרינה ומכנסי טיולים
      * כיסאות קמפינג וכיסאות ים מתקפלים
        כיסאות קמפינג וכיסאות ים מתקפלים
      * ערכת תאורה לשטח ואוהל בן רגע
        ערכת תאורה לשטח ואוהל בן רגע
      * בקבוקים
        בקבוקים
      * נגד יתושים ועקיצות
        נגד יתושים ועקיצות
      * מערכות שתיה ושלוקרים
        מערכות שתיה ושלוקרים
      * צידניות וקולרים
        צידניות וקולרים
      * ציוד קמפינג ומחנאות
      * הצג הכל
        הצג הכל
      * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
        אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
      * מזרני שטח ומחצלות
        מזרני שטח ומחצלות
      * שקי שינה לטיולים וציוד לשינה
        שקי שינה לטיולים וציוד לשינה
      * ציליות חוף ושמשיות לים - גזיבו
        ציליות חוף ושמשיות לים - גזיבו
      * גזיות, פקלי קפה וכלים רב פעמיים
        גזיות, פקלי קפה וכלים רב פעמיים
      * סיר פויקה - סאג׳ - בישול שטח
        סיר פויקה - סאג׳ - בישול שטח
      * ערסלים
        ערסלים
      * עגלות קמפינג וים
        עגלות קמפינג וים
      * כובעים מסנני קרינה ומכנסי טיולים
        כובעים מסנני קרינה ומכנסי טיולים
      * כיסאות קמפינג וכיסאות ים מתקפלים
        כיסאות קמפינג וכיסאות ים מתקפלים
      * ערכת תאורה לשטח ואוהל בן רגע
        ערכת תאורה לשטח ואוהל בן רגע
      * בקבוקים
        בקבוקים
      * נגד יתושים ועקיצות
        נגד יתושים ועקיצות
      * מערכות שתיה ושלוקרים
        מערכות שתיה ושלוקרים
      * צידניות וקולרים
        צידניות וקולרים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * ציוד קמפינג
   * הצג הכל
     הצג הכל
   * ציוד קמפינג ומחנאות
     ציוד קמפינג ומחנאות
     * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
       אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
     * מזרני שטח ומחצלות
       מזרני שטח ומחצלות
     * שקי שינה לטיולים וציוד לשינה
       שקי שינה לטיולים וציוד לשינה
     * ציליות חוף ושמשיות לים - גזיבו
       ציליות חוף ושמשיות לים - גזיבו
     * גזיות, פקלי קפה וכלים רב פעמיים
       גזיות, פקלי קפה וכלים רב פעמיים
     * סיר פויקה - סאג׳ - בישול שטח
       סיר פויקה - סאג׳ - בישול שטח
     * ערסלים
       ערסלים
     * עגלות קמפינג וים
       עגלות קמפינג וים
     * כובעים מסנני קרינה ומכנסי טיולים
       כובעים מסנני קרינה ומכנסי טיולים
     * כיסאות קמפינג וכיסאות ים מתקפלים
       כיסאות קמפינג וכיסאות ים מתקפלים
     * ערכת תאורה לשטח ואוהל בן רגע
       ערכת תאורה לשטח ואוהל בן רגע
     * בקבוקים
       בקבוקים
     * נגד יתושים ועקיצות
       נגד יתושים ועקיצות
     * מערכות שתיה ושלוקרים
       מערכות שתיה ושלוקרים
     * צידניות וקולרים
       צידניות וקולרים
     * ציוד קמפינג ומחנאות
     * הצג הכל
       הצג הכל
     * אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
       אוהלים - אוהלי קולמן, אוהלים פתיחה מהירה
     * מזרני שטח ומחצלות
       מזרני שטח ומחצלות
     * שקי שינה לטיולים וציוד לשינה
       שקי שינה לטיולים וציוד לשינה
     * ציליות חוף ושמשיות לים - גזיבו
       ציליות חוף ושמשיות לים - גזיבו
     * גזיות, פקלי קפה וכלים רב פעמיים
       גזיות, פקלי קפה וכלים רב פעמיים
     * סיר פויקה - סאג׳ - בישול שטח
       סיר פויקה - סאג׳ - בישול שטח
     * ערסלים
       ערסלים
     * עגלות קמפינג וים
       עגלות קמפינג וים
     * כובעים מסנני קרינה ומכנסי טיולים
       כובעים מסנני קרינה ומכנסי טיולים
     * כיסאות קמפינג וכיסאות ים מתקפלים
       כיסאות קמפינג וכיסאות ים מתקפלים
     * ערכת תאורה לשטח ואוהל בן רגע
       ערכת תאורה לשטח ואוהל בן רגע
     * בקבוקים
       בקבוקים
     * נגד יתושים ועקיצות
       נגד יתושים ועקיצות
     * מערכות שתיה ושלוקרים
       מערכות שתיה ושלוקרים
     * צידניות וקולרים
       צידניות וקולרים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * תיקים
   תיקים
    * תיקי גב ותרמילים
      תיקי גב ותרמילים
      * תרמילי גב (55 ליטר ומעלה)
        תרמילי גב (55 ליטר ומעלה)
      * תיקי גב (עד 50 ליטר)
        תיקי גב (עד 50 ליטר)
      * צ'ימידנים
        צ'ימידנים
      * תיקי יום / תיקי טיולים
        תיקי יום / תיקי טיולים
      * מזוודות וטרולי
        מזוודות וטרולי
      * תיקי גב ותרמילים
      * הצג הכל
        הצג הכל
      * תרמילי גב (55 ליטר ומעלה)
        תרמילי גב (55 ליטר ומעלה)
      * תיקי גב (עד 50 ליטר)
        תיקי גב (עד 50 ליטר)
      * צ'ימידנים
        צ'ימידנים
      * תיקי יום / תיקי טיולים
        תיקי יום / תיקי טיולים
      * מזוודות וטרולי
        מזוודות וטרולי
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * תיקים
   * הצג הכל
     הצג הכל
   * תיקי גב ותרמילים
     תיקי גב ותרמילים
     * תרמילי גב (55 ליטר ומעלה)
       תרמילי גב (55 ליטר ומעלה)
     * תיקי גב (עד 50 ליטר)
       תיקי גב (עד 50 ליטר)
     * צ'ימידנים
       צ'ימידנים
     * תיקי יום / תיקי טיולים
       תיקי יום / תיקי טיולים
     * מזוודות וטרולי
       מזוודות וטרולי
     * תיקי גב ותרמילים
     * הצג הכל
       הצג הכל
     * תרמילי גב (55 ליטר ומעלה)
       תרמילי גב (55 ליטר ומעלה)
     * תיקי גב (עד 50 ליטר)
       תיקי גב (עד 50 ליטר)
     * צ'ימידנים
       צ'ימידנים
     * תיקי יום / תיקי טיולים
       תיקי יום / תיקי טיולים
     * מזוודות וטרולי
       מזוודות וטרולי
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * טואלטיקה
   טואלטיקה
    * מוצרי היגיינה וטואלטיקה
      מוצרי היגיינה וטואלטיקה
      * בנים
        בנים
      * בנות
        בנות
      * תיקי רחצה
        תיקי רחצה
      * הגנה מהשמש
        הגנה מהשמש
      * מגבות ואביזרים
        מגבות ואביזרים
      * מוצרי היגיינה וטואלטיקה
      * הצג הכל
        הצג הכל
      * בנים
        בנים
      * בנות
        בנות
      * תיקי רחצה
        תיקי רחצה
      * הגנה מהשמש
        הגנה מהשמש
      * מגבות ואביזרים
        מגבות ואביזרים
        רשימת גיוס
        טיפים
        מדריך כוכבים
        צרו קשר
        09-9603029
        רחוב גלגלי הפלדה 7, הרצליה
        info@sayeret.co.il
        
        
         * מדיניות פרטיות
         * הצהרת נגישות
         * 
   
   * טואלטיקה
   * הצג הכל
     הצג הכל
   * מוצרי היגיינה וטואלטיקה
     מוצרי היגיינה וטואלטיקה
     * בנים
       בנים
     * בנות
       בנות
     * תיקי רחצה
       תיקי רחצה
     * הגנה מהשמש
       הגנה מהשמש
     * מגבות ואביזרים
       מגבות ואביזרים
     * מוצרי היגיינה וטואלטיקה
     * הצג הכל
       הצג הכל
     * בנים
       בנים
     * בנות
       בנות
     * תיקי רחצה
       תיקי רחצה
     * הגנה מהשמש
       הגנה מהשמש
     * מגבות ואביזרים
       מגבות ואביזרים
       רשימת גיוס
       טיפים
       מדריך כוכבים
       צרו קשר
       09-9603029
       רחוב גלגלי הפלדה 7, הרצליה
       info@sayeret.co.il
       
       
        * מדיניות פרטיות
        * הצהרת נגישות
        * 
     רשימת גיוס
     טיפים
     מדריך כוכבים
     צרו קשר
     09-9603029
     רחוב גלגלי הפלדה 7, הרצליה
     info@sayeret.co.il
     
     
      * מדיניות פרטיות
      * הצהרת נגישות
      * 
 * מבצעים
   מבצעים
 * Gift Card
   רשימת גיוס
   טיפים
   מדריך כוכבים
   צרו קשר
   09-9603029
   רחוב גלגלי הפלדה 7, הרצליה
   info@sayeret.co.il
   
   
    * מדיניות פרטיות
    * הצהרת נגישות
    * 

חיפוש בכל החנות...


כוכבים צבא / נקודות

ציוד קמפינג ומחנאות

ביגוד צבאי לחייל

ביגוד צבאי לחיילת

ציוד כללי לצבא

מדים לצבא

היגיינה וטואלטיקה

שעונים

נעלי ספורט

תוספות לנשק

כומתות וסיכות

מובייל וגאדג'טים

לדרמנים וסכינים

שיפצורים

רכישה קבוצתית

מועדון ההטבות

תיקי גב ותרמילים

ביגוד חורף

סנדלי שורש

כפכפים הוויאנס

אוהלים

בישול שטח

גזיות ופקלי קפה

כסאות מתקפלים

הנעלה



מוצרי דלתא





המוצרים החמים 



המוצרים החמים 

מחצלת שטח 2/2 יארד 1.82/1.82 מ'

‏59.00 ₪
הוסף לסל
חזור כיסא דייגים משודרג מסדרת אלסקה camptown

מחיר רגיל ‏89.00 ₪ מחיר מיוחד ‏79.00 ₪
הוסף לסל
מיטת שטח מתקפלת לתיק נשיאה בצבע שחור CAMPTOWN

מחיר רגיל ‏399.00 ₪ מחיר מיוחד ‏189.00 ₪
הוסף לסל
שולחן פיקניק קמפינג מתקפל + 4 כסאות CAMPTOWN

‏249.00 ₪
הוסף לסל
כילה זוגית מלבנית EFOD

מחיר רגיל ‏109.00 ₪ מחיר מיוחד ‏99.00 ₪
הוסף לסל
FOLDING BED מיטה לשטח GO NATURE

מחיר רגיל ‏389.00 ₪ מחיר מיוחד ‏299.00 ₪
הוסף לסל
שלוקר שורש פרימיום | 3 ליטר | Premium

‏169.00 ₪
הוסף לסל
שלוקר שורש פרימיום | 2 ליטר | Premium

‏159.00 ₪
הוסף לסל
שלוקר שורש עם פתח מילוי נוסף | נפח 3 ליטר | Ultimate

‏199.00 ₪
הוסף לסל
שלוקר שורש עם פתח מילוי נוסף | נפח 2 ליטר | Ultimate

‏179.00 ₪
הוסף לסל
כילה יחיד מלבנית EFOD

מחיר רגיל ‏79.00 ₪ מחיר מיוחד ‏59.00 ₪
הוסף לסל
כילה פירמידה ליחיד EFOD

מחיר רגיל ‏129.00 ₪ מחיר מיוחד ‏119.00 ₪
הוסף לסל
כיסא במאי עם ידיות ומעמד לכוס שתיה כחול

מחיר רגיל ‏69.00 ₪ מחיר מיוחד ‏49.00 ₪

סט פיקניק 32 חלקים במארז נשיאה נוח

מחיר רגיל ‏99.00 ₪ מחיר מיוחד ‏59.00 ₪
הוסף לסל
אוהל פתיחה מהירה ל- 4 אנשים Camptown 210/210/140

‏229.00 ₪
הוסף לסל
שולחן קמפינג גדול חגור

מחיר רגיל ‏349.00 ₪ מחיר מיוחד ‏299.00 ₪
הוסף לסל
שולחן קמפינג נמוך חגור

מחיר רגיל ‏99.00 ₪ מחיר מיוחד ‏89.00 ₪
הוסף לסל
כסא מתקפל דגם סנדי חגור

‏189.00 ₪
הוסף לסל
כיסא מתקפל Maui Chill-אפור/כחול

‏189.00 ₪
הוסף לסל
כיסא נדנדה מתקפל דגם Rockway Deluxe-אפור/כחול

‏369.00 ₪
הוסף לסל



במיוחד לחיילים ומתגייסים 

מארז 3 חולצות נייבי לצבא - חולצות מתחת למדים

מידות ביגוד

מחיר רגיל ‏100.00 ₪ המחיר הנמוך ביותר ‏75.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏52.50 ₪
הוסף לסל
מארז 6 חולצות נייבי לצבא - חולצות מתחת למדים

מידות ביגוד

מחיר רגיל ‏199.00 ₪ המחיר הנמוך ביותר ‏113.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏79.10 ₪
הוסף לסל
חולצה טרמית צבע שחור DANIEL CHEN

מידות ביגוד

המחיר הנמוך ביותר ‏29.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏20.30 ₪
הוסף לסל
זוג חולצות פלנל לבנות נשים לצבא שרוול ארוך OXFORD

מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏39.20 ₪

גופיית ציצית ספורט צבע זית – DryFit

מידות ביגוד

המחיר הנמוך ביותר ‏79.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏55.30 ₪
הוסף לסל
מארז 3 חולצות קצרות דרייפיט לצבא

מידות ביגוד

צבע

מחיר רגיל ‏99.00 ₪ המחיר הנמוך ביותר ‏70.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏49.00 ₪
הוסף לסל
מארז 6 חולצות דרייפיט קצרות צבע זית לצבא

מידות ביגוד

מחיר רגיל ‏225.00 ₪ המחיר הנמוך ביותר ‏127.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏88.90 ₪
הוסף לסל
מארז 6 חולצות קצרות צבע לבן לצבא

מידות ביגוד

מחיר רגיל ‏199.00 ₪ המחיר הנמוך ביותר ‏113.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏79.10 ₪
הוסף לסל
מארז 6 חולצות קצרות צבע ירוק לצבא

מידות ביגוד

מחיר רגיל ‏199.00 ₪ המחיר הנמוך ביותר ‏113.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏79.10 ₪
הוסף לסל
חולצה טרמית ירוקה זית לחיילים X-DREAM

מידות ביגוד

מחיר רגיל ‏84.00 ₪ המחיר הנמוך ביותר ‏56.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏39.20 ₪
הוסף לסל
מארז 6 חולצות קצרות דרייפיט לצבא צבע זית + מגבת מייקרופייבר ב99 ש"ח

מידות ביגוד

מחיר רגיל ‏225.00 ₪ המחיר הנמוך ביותר ‏142.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏99.40 ₪
הוסף לסל
חולצה דרייפיט שחורה

מידות ביגוד

מחיר רגיל ‏50.00 ₪ המחיר הנמוך ביותר ‏36.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏25.20 ₪
הוסף לסל
חולצת דרייפיט קצרה ירוק זית

מידות ביגוד

מחיר רגיל ‏69.00 ₪ המחיר הנמוך ביותר ‏36.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏25.20 ₪
הוסף לסל
מארז 3 חולצות דרייפיט קצרות +COOL צבע זית X-DREAM

מידות ביגוד

המחיר הנמוך ביותר ‏113.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏79.10 ₪
הוסף לסל
מארז 3 חולצות קצרות ירוק זית לצבא ו 3 חולצות לבנות לגבר - חולצות אוקספורד

מידות ביגוד

מחיר רגיל ‏199.00 ₪ המחיר הנמוך ביותר ‏113.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏79.10 ₪
הוסף לסל
חולצת דרייפיט בצבע לבן

מידות ביגוד

מחיר רגיל ‏50.00 ₪ המחיר הנמוך ביותר ‏36.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏25.20 ₪
הוסף לסל
מארז 3 חולצות דרייפיט קצרות +COOL צבע שחור X-DREAM

מידות ביגוד

המחיר הנמוך ביותר ‏113.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏79.10 ₪
הוסף לסל
מארז 3 חולצות קצרות צבע לבן לצבא

מידות ביגוד

מחיר רגיל ‏100.00 ₪ המחיר הנמוך ביותר ‏75.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏52.50 ₪
הוסף לסל
3 חולצות קצרות ירוק זית לחייל במבצע

מידות ביגוד

מחיר רגיל ‏100.00 ₪ המחיר הנמוך ביותר ‏75.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏52.50 ₪
הוסף לסל
מארז הכול לגיוס

מידות ביגוד

המחיר הנמוך ביותר ‏470.00 ₪
מחיר חיילים /מתגייסים בשימוש כוכבי הנחה(כספר)/נקודות קבע ‏329.00 ₪
הוסף לסל



הסיירת - ציוד צבאי לחיילים וציוד טיולים 



 

עד לא מזמן היה נהוג כי ציוד צבאי מגיע אך ורק מצה"ל, וחיילים אשר הגיעו לבקו"ם או
לבסיס עם ציוד לצבא מהבית ננזפו, או אפילו נענשו. בשנים האחרונות השתנתה הגישה הזו,
וכיום הצבא מקבל בברכה חיילים, אשר מגדילים ראש ומשקיעים ברכישת דברים לצבא אשר
משפרים את תפקודם ויכולותיהם.

בחנות האונליין של הסיירת תוכלו למצוא ציוד לחייל ולחיילת במחירים אטרקטיביים, כדי
שתוכלו תמיד להגיע מוכנים, לכל תפקיד ולכל תרחיש.

 


איזה ציוד למתגייסים ולחיילים יש בסיירת?

כדי לסייע הכנו לכם רשימת ציוד לגיוס לצבא, ובנוסף לכך גם רשימה לצבא בנות, אשר
לוקחת בחשבון את הצרכים המיוחדים של בנות בטירונות, ובמהלך השירות הצבאי. שימו לב
שמדי א ונעליים אתם מקבלים ביום הגיוס, אבל יש ציוד שלא מקבלים בשרשרת החיול.

 


חוששים שמדובר בהוצאה כבדה?

עם אתר הסיירת אתם להגיע לבקו"ם עם כל הציוד הנדרש, גם באמצעות משכורת חייל. אנחנו
מציעים מחירים ללא תחרות ולא פחות חשוב מכך - יש לנו המון ניסיון. אנחנו חיים את
השטח, ופועלים מתוך מטרה להיות בית אמיתי לחיילים. אצלנו לא תמצאו רשימות ציוד
מנופחות, ותוכלו לבחור רק ציוד צבאי שאתם באמת צריכים.

עוד לפני שאתם מציצים ברשימות שלנו, טיפ קטן: לא משנה לאיזה חיל אתם מתגייסים, אל
תשכחו להביא שני תיקים (תיק גב גדול ותיק אישי קטן), לבוש לשבועיים (בהתאם להצבכתם
בתור לוחמים, תומכי לחימה או כלל צהלי) וביגוד לחורף, תיק ואביזרי רחצה והיגיינה,
ציוד אישי כללי (מנעולים, ערכת תפירה, פנס, סוללות ועוד) ומסמכים חשובים. בנוסף לכל
זה, לוחמים צריכים להצטייד גם בשפצורים מסוימים.

בנוסף, אתם זכאים להשתמש אצלנו באתר, בכרטיס הכוכבים של צהל, בהתאם למסלול הגיוס
שלכם, בין אם אתם לוחמים / תומכי לחימה.

 


כיצד בוחרים ציוד אישי צבאי?

להגיע מוכנים ליום הגיוס זה לא מספיק. חיילים רבים מגלים את הצורך להצטייד בציוד
נוסף לאורך השירות. בחירת ציוד לצבא צריכה להיעשות בהתאמה אישית לצרכים של כל חייל
וחיילת. בחנות של הסיירת תוכלו למצוא ביגוד, שפצורים, מדים, תיקים, מארזים שלמים
לחיילים, גאדג'טים, ציוד לנשק, אולרים, מוצרי היגיינה, ציוד שטח ועוד.

אנחנו פועלים בכל העולם ומשמשים כספק רשמי של משרד הביטחון. אנחנו לא מתפשרים על אף
מוצר, ומציעים ציוד צבאי וגם ציוד למטיילים ללא פערי תיווך, ישירות מהיבואן לצרכן.

 


איזה ציוד טיולים יש בסיירת?

הסיירת היא לא רק חנות לחיילים, אלא גם המקום הכי טוב למצוא ציוד למטיילים. אם אתם
אוהבים לצאת לטיולים בחיק הטבע, ובעיקר אם אתם מטיבי לכת אשר נוהגים גם טיולי
קמפינג, אתם ודאי מודעים לחשיבות העצומה של הכנה מראש, ושל הצטיידות בכל הדברים
החשובים.

אצלנו תוכלו למצוא אוהלים, מזרונים, כילות, נעליים, מכנסי טיולים מתפרקים, פנסים,
ערכות קפה, מחצלות, תיקים, צידניות וקרחומים, כריות לנסיעות, כריות מתנפחות, כסאות
מתקפלים, מזרנים מתנפחים, מיכלי מזון שומרי טמפרטורה, ערסלים, כירות גז ניידות,
ציוד קמפינג ומחנאות חסין מים, כלי אוכל, אביזרים למנגל ועוד רבים.


משלוח חינם מעל 150 ₪

‏14 ימים להחזרות


מועדון לקוחות


קטגוריות

 * ציוד קמפינג ומחנאות
 * אוהלים פתיחה מהירה
 * כסאות מתקפלים
 * מזרני שטח
 * גזיות,פקלי קפה
 * 'פויקה - סאג
 * בקבוקים
 * כובעים מסנני קרינה

 * שקי שינה וציוד לשינה
 * ציוד הצללה - גזיבו
 * ערסלים
 * מערכות שתיה ושלוקרים
 * צידניות וקולרים
 * תאורה לשטח ולאוהל
 * נגד יתושים ועקיצות


החשבון שלי

 * אודות סיירת
 * משלוחים והחזרות
 * תנאי שימוש
 * משלוחים ללא עלות
 * צרו קשר


חיילים

 * בגדי צבא לחיילים
 * כוכבים של צהל
 * חבילות גיוס
 * תיקי גב ותרמילים
 * לדרמן
 * שעונים
 * פנסים


צור קשר

סניף הרצליה רח' גלגלי הפלדה 7
סניף חיפה שדרות ההסתדרות 251 צומת קריית אתא
סניף ראשון לציון רח' דרך המכבים 40
סניף ירושלים רח' צרת 17
09-9603029
info@sayeret.co.il


שעות פעילות

ימים א'-ה': 20:00-9:00 יום ו' וערבי חג: 14:30-9:30 שבת 20:00-23:00


 * מדיניות פרטיות
 * הצהרת נגישות
 * תקנון האתר

 * 
 * 


Please ensure Javascript is enabled for purposes of accessibility

,,,,,,