thedesideli.com
Open in
urlscan Pro
23.227.38.32
Public Scan
URL:
https://thedesideli.com/
Submission: On March 12 via api from US — Scanned from US
Submission: On March 12 via api from US — Scanned from US
Form analysis
158 forms found in the DOMGET /search
<form action="/search" method="get" role="search" class="search-form dialog-search-header">
<!-- <select id="search-type">
<option value="">All categories</option><option value="Food, Beverages & Tobacco">Food, Beverages & Tobacco</option></select>
<span class="separator"></span> -->
<input class="search-input" type="search" name="q" value="" placeholder="I'm looking for..." required="" autocomplete="off">
<label class="sr-only">Search</label>
<input type="hidden" name="options[prefix]" value="last">
<button class="search-button" aria-label="Search">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16.6 16.6" fill="currentColor">
<path d="M16.6,15.87l-5.17-5.18A6.43,6.43,0,0,0,13,6.47,6.5,6.5,0,1,0,6.5,13a6.43,6.43,0,0,0,4.22-1.57l5.18,5.18ZM6.5,12A5.5,5.5,0,1,1,12,6.47,5.5,5.5,0,0,1,6.5,12Z" transform="translate(0 0.03)"></path>
</svg></button>
<div class="sarch-results" style="display:none"></div>
</form>
GET /search
<form action="/search" method="get" role="search" class="search-form dialog-search-header">
<!-- <select id="search-type">
<option value="">All categories</option><option value="Food, Beverages & Tobacco">Food, Beverages & Tobacco</option></select>
<span class="separator"></span> -->
<input class="search-input" type="search" name="q" value="" placeholder="I'm looking for..." required="" autocomplete="off">
<label class="sr-only">Search</label>
<input type="hidden" name="options[prefix]" value="last">
<button class="search-button" aria-label="Search">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16.6 16.6" fill="currentColor">
<path d="M16.6,15.87l-5.17-5.18A6.43,6.43,0,0,0,13,6.47,6.5,6.5,0,1,0,6.5,13a6.43,6.43,0,0,0,4.22-1.57l5.18,5.18ZM6.5,12A5.5,5.5,0,1,1,12,6.47,5.5,5.5,0,0,1,6.5,12Z" transform="translate(0 0.03)"></path>
</svg></button>
<div class="sarch-results" style="display:none"></div>
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066374762769">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066374762769" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066374762769)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066374762769);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136853188881'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136853188881"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066365980945">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066365980945" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066365980945)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066365980945);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925264657'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925264657"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066313978129">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066313978129" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066313978129)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066313978129);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924740369'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924740369"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066384363793">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066384363793" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066384363793)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066384363793);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925494033'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925494033"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066319188241">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066319188241" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066319188241)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066319188241);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924838673'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924838673"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049047011601">
<!-- <a href="/products/punjabi-samosa-ingrano-frozen-foods-frozen-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135924674833"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066332688657">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066332688657" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066332688657)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066332688657);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136852959505'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136852959505"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066353660177">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066353660177" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066353660177)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066353660177);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925133585'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925133585"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066325381393">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066325381393" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066325381393)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066325381393);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924969745'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924969745"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066318369041">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066318369041" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066318369041)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066318369041);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924773137'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924773137"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066346615057">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066346615057" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066346615057)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066346615057);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925100817'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925100817"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48419044163857">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48419044163857" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48419044163857)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48419044163857);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334537584913'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334537584913"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418763145489">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418763145489" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418763145489)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418763145489);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334293463313'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334293463313"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418882191633">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418882191633" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418882191633)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418882191633);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334398910737'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334398910737"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418809872657">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418809872657" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418809872657)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418809872657);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334334456081'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334334456081"><input type="hidden" name="section-id" value="template--21711630401809__bb589ae7-e5c8-42a1-9ac4-91a11b8347b7">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066374762769">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066374762769" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066374762769)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066374762769);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136853188881'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136853188881"><input type="hidden" name="section-id" value="template--21711630401809__d84ed3e4-2e93-4520-83dd-9972d50a5300">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066365980945">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066365980945" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066365980945)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066365980945);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925264657'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925264657"><input type="hidden" name="section-id" value="template--21711630401809__d84ed3e4-2e93-4520-83dd-9972d50a5300">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066313978129">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066313978129" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066313978129)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066313978129);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924740369'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924740369"><input type="hidden" name="section-id" value="template--21711630401809__d84ed3e4-2e93-4520-83dd-9972d50a5300">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066384363793">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066384363793" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066384363793)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066384363793);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925494033'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925494033"><input type="hidden" name="section-id" value="template--21711630401809__d84ed3e4-2e93-4520-83dd-9972d50a5300">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066319188241">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066319188241" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066319188241)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066319188241);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924838673'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924838673"><input type="hidden" name="section-id" value="template--21711630401809__d84ed3e4-2e93-4520-83dd-9972d50a5300">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049047011601">
<!-- <a href="/products/punjabi-samosa-ingrano-frozen-foods-frozen-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135924674833"><input type="hidden" name="section-id" value="template--21711630401809__d84ed3e4-2e93-4520-83dd-9972d50a5300">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046454545">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046454545" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046454545)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046454545);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924347153'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924347153"><input type="hidden" name="section-id" value="template--21711630401809__b2c40a24-e9bd-4cb0-97cf-3b19671efc63">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046552849">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046552849" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046552849)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046552849);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924445457'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924445457"><input type="hidden" name="section-id" value="template--21711630401809__b2c40a24-e9bd-4cb0-97cf-3b19671efc63">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046389009">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046389009" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046389009)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046389009);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924281617'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924281617"><input type="hidden" name="section-id" value="template--21711630401809__b2c40a24-e9bd-4cb0-97cf-3b19671efc63">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046356241">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046356241" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046356241)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046356241);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924248849'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924248849"><input type="hidden" name="section-id" value="template--21711630401809__b2c40a24-e9bd-4cb0-97cf-3b19671efc63">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48271185903889">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48271185903889" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48271185903889)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48271185903889);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9241272746257'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9241272746257"><input type="hidden" name="section-id" value="template--21711630401809__b2c40a24-e9bd-4cb0-97cf-3b19671efc63">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48354152382737">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48354152382737" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48354152382737)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48354152382737);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9297759928593'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9297759928593"><input type="hidden" name="section-id" value="template--21711630401809__b2c40a24-e9bd-4cb0-97cf-3b19671efc63">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048256785">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048256785" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048256785)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048256785);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925756177'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925756177"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48158179033361">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48158179033361" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48158179033361)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48158179033361);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9185895350545'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9185895350545"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48157836017937">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48157836017937" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48157836017937)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48157836017937);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9184486719761'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9184486719761"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044979985">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044979985" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044979985)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044979985);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923265809'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923265809"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044586769">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044586769" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044586769)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044586769);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922905361'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922905361"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044357393">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044357393" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044357393)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044357393);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922675985'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922675985"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48053542584593">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48053542584593" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48053542584593)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48053542584593);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136852304145'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136852304145"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051042065">
<!-- <a href="/products/namkeen-makai-chevdo-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928148241"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048289553">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048289553" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048289553)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048289553);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925788945'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925788945"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046061329">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046061329" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046061329)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046061329);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924019473'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924019473"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044455697">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044455697" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044455697)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044455697);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922774289'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922774289"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48217375703313">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48217375703313" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48217375703313)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48217375703313);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9217983250705'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9217983250705"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051959569">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051959569" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051959569)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051959569);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928574225'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928574225"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051566353">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051566353" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051566353)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051566353);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928508689'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928508689"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051500817">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051500817" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051500817)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051500817);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928475921'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928475921"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051435281">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051435281" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051435281)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051435281);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928377617'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928377617"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051107601">
<!-- <a href="/products/namkeen-vanela-ganthiya-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928181009"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050878225">
<!-- <a href="/products/namkeen-lasan-bhel-garlic-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928049937"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050517777">
<button title="Sold out" type="submit" name="add" class="add-to-cart-button" disabled="">
<!--Sold out-->
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path
d="m18.8831 4.69719c.3905-.39052 1.0237-.39052 1.4142 0l3.5906 3.59059 3.581-3.58098c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422l-3.581 3.58098 3.4805 3.4805c.3905.3905.3905 1.0237 0 1.4142s-1.0237.3905-1.4142 0l-3.4805-3.4805-3.4901 3.4901c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l3.4901-3.4901-3.5906-3.5906c-.3905-.39052-.3905-1.02369 0-1.41421z">
</path>
<path clip-rule="evenodd"
d="m23.8599 15.0513c.2052-.0684.4271-.0684.6323 0l14.7782 4.9252c.1986.0571.3794.1756.5125.3465l4.0031 5.1382c.1996.2561.2623.5932.1684.904-.0643.2127-.1966.395-.3724.5218l-15.3994 5.1289-3.2177-4.1301c-.1897-.2434-.4811-.3857-.7897-.3854s-.5998.143-.789.3867l-3.2003 4.1222-15.44366-5.1516c-.15659-.1248-.27431-.2956-.33383-.4925-.09397-.3108-.0312-.6479.16835-.904l3.93111-5.0458c.12027-.1963.30755-.3502.53667-.4265zm11.9687 5.8863-11.6485 3.8821-11.6526-3.8835 11.6485-3.8821z"
fill-rule="evenodd"></path>
<path d="m28.1441 34.1368 11.8468-3.9457-.0005 6.5717c-.0001 1.2912-.8263 2.4375-2.0513 2.8458l-12.763 4.2544v-12.4519l1.8631 2.3915c.2603.3342.703.468 1.1049.3342z"></path>
<path d="m23.1761 31.4191v12.4439l-12.7632-4.2544c-1.22492-.4083-2.05119-1.5546-2.05128-2.8458l-.00043-6.5896 11.86381 3.9574c.4026.1343.8461-.0001 1.1063-.3353z"></path>
</g>
</svg></button><input type="hidden" name="product-id" value="9135927656721"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050190097">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050190097" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050190097)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050190097);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927329041'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927329041"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050124561">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050124561" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050124561)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050124561);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927263505'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927263505"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049049927953">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049049927953" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049049927953)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049049927953);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927099665'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927099665"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049049698577">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049049698577" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049049698577)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049049698577);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926935825'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926935825"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049049010449">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049049010449" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049049010449)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049049010449);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926509841'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926509841"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048977681">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048977681" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048977681)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048977681);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926477073'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926477073"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048912145">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048912145" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048912145)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048912145);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926411537'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926411537"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048846609">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048846609" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048846609)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048846609);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926346001'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926346001"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048355089">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048355089" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048355089)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048355089);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925854481'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925854481"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048191249">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048191249" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048191249)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048191249);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925690641'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925690641"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048158481">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048158481" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048158481)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048158481);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925657873'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925657873"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046323473">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046323473" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046323473)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046323473);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924216081'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924216081"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046257937">
<button title="Sold out" type="submit" name="add" class="add-to-cart-button" disabled="">
<!--Sold out-->
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path
d="m18.8831 4.69719c.3905-.39052 1.0237-.39052 1.4142 0l3.5906 3.59059 3.581-3.58098c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422l-3.581 3.58098 3.4805 3.4805c.3905.3905.3905 1.0237 0 1.4142s-1.0237.3905-1.4142 0l-3.4805-3.4805-3.4901 3.4901c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l3.4901-3.4901-3.5906-3.5906c-.3905-.39052-.3905-1.02369 0-1.41421z">
</path>
<path clip-rule="evenodd"
d="m23.8599 15.0513c.2052-.0684.4271-.0684.6323 0l14.7782 4.9252c.1986.0571.3794.1756.5125.3465l4.0031 5.1382c.1996.2561.2623.5932.1684.904-.0643.2127-.1966.395-.3724.5218l-15.3994 5.1289-3.2177-4.1301c-.1897-.2434-.4811-.3857-.7897-.3854s-.5998.143-.789.3867l-3.2003 4.1222-15.44366-5.1516c-.15659-.1248-.27431-.2956-.33383-.4925-.09397-.3108-.0312-.6479.16835-.904l3.93111-5.0458c.12027-.1963.30755-.3502.53667-.4265zm11.9687 5.8863-11.6485 3.8821-11.6526-3.8835 11.6485-3.8821z"
fill-rule="evenodd"></path>
<path d="m28.1441 34.1368 11.8468-3.9457-.0005 6.5717c-.0001 1.2912-.8263 2.4375-2.0513 2.8458l-12.763 4.2544v-12.4519l1.8631 2.3915c.2603.3342.703.468 1.1049.3342z"></path>
<path d="m23.1761 31.4191v12.4439l-12.7632-4.2544c-1.22492-.4083-2.05119-1.5546-2.05128-2.8458l-.00043-6.5896 11.86381 3.9574c.4026.1343.8461-.0001 1.1063-.3353z"></path>
</g>
</svg></button><input type="hidden" name="product-id" value="9135924150545"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044914449">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044914449" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044914449)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044914449);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923200273'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923200273"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044848913">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044848913" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044848913)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044848913);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923134737'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923134737"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044816145">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044816145" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044816145)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044816145);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923101969'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923101969"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044521233">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044521233" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044521233)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044521233);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922839825'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922839825"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044422929">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044422929" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044422929)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044422929);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922741521'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922741521"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044390161">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044390161" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044390161)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044390161);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922708753'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922708753"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044226321">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044226321" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044226321)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044226321);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922544913'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922544913"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044193553">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044193553" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044193553)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044193553);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922512145'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922512145"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48217075319057">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48217075319057" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48217075319057)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48217075319057);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9217837138193'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9217837138193"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48206994211089">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48206994211089" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48206994211089)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48206994211089);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9212847849745'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9212847849745"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48206611808529">
<button title="Sold out" type="submit" name="add" class="add-to-cart-button" disabled="">
<!--Sold out-->
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path
d="m18.8831 4.69719c.3905-.39052 1.0237-.39052 1.4142 0l3.5906 3.59059 3.581-3.58098c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422l-3.581 3.58098 3.4805 3.4805c.3905.3905.3905 1.0237 0 1.4142s-1.0237.3905-1.4142 0l-3.4805-3.4805-3.4901 3.4901c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l3.4901-3.4901-3.5906-3.5906c-.3905-.39052-.3905-1.02369 0-1.41421z">
</path>
<path clip-rule="evenodd"
d="m23.8599 15.0513c.2052-.0684.4271-.0684.6323 0l14.7782 4.9252c.1986.0571.3794.1756.5125.3465l4.0031 5.1382c.1996.2561.2623.5932.1684.904-.0643.2127-.1966.395-.3724.5218l-15.3994 5.1289-3.2177-4.1301c-.1897-.2434-.4811-.3857-.7897-.3854s-.5998.143-.789.3867l-3.2003 4.1222-15.44366-5.1516c-.15659-.1248-.27431-.2956-.33383-.4925-.09397-.3108-.0312-.6479.16835-.904l3.93111-5.0458c.12027-.1963.30755-.3502.53667-.4265zm11.9687 5.8863-11.6485 3.8821-11.6526-3.8835 11.6485-3.8821z"
fill-rule="evenodd"></path>
<path d="m28.1441 34.1368 11.8468-3.9457-.0005 6.5717c-.0001 1.2912-.8263 2.4375-2.0513 2.8458l-12.763 4.2544v-12.4519l1.8631 2.3915c.2603.3342.703.468 1.1049.3342z"></path>
<path d="m23.1761 31.4191v12.4439l-12.7632-4.2544c-1.22492-.4083-2.05119-1.5546-2.05128-2.8458l-.00043-6.5896 11.86381 3.9574c.4026.1343.8461-.0001 1.1063-.3353z"></path>
</g>
</svg></button><input type="hidden" name="product-id" value="9212733260049"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48055056433425">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48055056433425" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48055056433425)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48055056433425);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9137100488977'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9137100488977"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051369745">
<!-- <a href="/products/namkeen-fulwadi-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928344849"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051271441">
<!-- <a href="/products/namkeen-tikha-ganthiya-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928279313"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051205905">
<!-- <a href="/products/namkeen-bhavnagri-ganthiya-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928246545"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050976529">
<!-- <a href="/products/namkeen-manglori-mix-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928115473"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050845457">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050845457" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050845457)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050845457);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927984401'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927984401"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050779921">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050779921" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050779921)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050779921);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927951633'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927951633"><input type="hidden" name="section-id" value="template--21711630401809__7113ddd6-f24b-49b5-8a64-deedd2a64437">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48217375703313">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48217375703313" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48217375703313)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48217375703313);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9217983250705'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9217983250705"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48217075319057">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48217075319057" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48217075319057)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48217075319057);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9217837138193'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9217837138193"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048650001">
<!-- <a href="/products/khari-salted-puffs-plain-maniarrs-snacks-bakery" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135926149393"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048617233">
<!-- <a href="/products/khari-salted-puffs-methi-maniarrs-snacks-bakery" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135926116625"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048551697">
<!-- <a href="/products/khari-salted-puffs-masala-maniarrs-snacks-bakery" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135926051089"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048486161">
<!-- <a href="/products/khari-salted-puffs-jeera-maniarrs-snacks-bakery" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135926018321"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048256785">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048256785" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048256785)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048256785);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925756177'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925756177"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48158179033361">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48158179033361" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48158179033361)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48158179033361);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9185895350545'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9185895350545"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48157836017937">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48157836017937" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48157836017937)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48157836017937);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9184486719761'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9184486719761"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044979985">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044979985" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044979985)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044979985);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923265809'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923265809"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044586769">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044586769" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044586769)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044586769);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922905361'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922905361"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044357393">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044357393" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044357393)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044357393);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922675985'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922675985"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48053542584593">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48053542584593" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48053542584593)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48053542584593);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136852304145'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136852304145"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051042065">
<!-- <a href="/products/namkeen-makai-chevdo-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928148241"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048289553">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048289553" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048289553)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048289553);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925788945'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925788945"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046061329">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046061329" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046061329)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046061329);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924019473'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924019473"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044455697">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044455697" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044455697)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044455697);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922774289'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922774289"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48217375703313">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48217375703313" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48217375703313)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48217375703313);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9217983250705'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9217983250705"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051959569">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051959569" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051959569)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051959569);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928574225'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928574225"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051566353">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051566353" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051566353)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051566353);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928508689'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928508689"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051500817">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051500817" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051500817)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051500817);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928475921'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928475921"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051435281">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049051435281" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049051435281)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049051435281);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135928377617'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135928377617"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051107601">
<!-- <a href="/products/namkeen-vanela-ganthiya-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928181009"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050878225">
<!-- <a href="/products/namkeen-lasan-bhel-garlic-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928049937"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050517777">
<button title="Sold out" type="submit" name="add" class="add-to-cart-button" disabled="">
<!--Sold out-->
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path
d="m18.8831 4.69719c.3905-.39052 1.0237-.39052 1.4142 0l3.5906 3.59059 3.581-3.58098c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422l-3.581 3.58098 3.4805 3.4805c.3905.3905.3905 1.0237 0 1.4142s-1.0237.3905-1.4142 0l-3.4805-3.4805-3.4901 3.4901c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l3.4901-3.4901-3.5906-3.5906c-.3905-.39052-.3905-1.02369 0-1.41421z">
</path>
<path clip-rule="evenodd"
d="m23.8599 15.0513c.2052-.0684.4271-.0684.6323 0l14.7782 4.9252c.1986.0571.3794.1756.5125.3465l4.0031 5.1382c.1996.2561.2623.5932.1684.904-.0643.2127-.1966.395-.3724.5218l-15.3994 5.1289-3.2177-4.1301c-.1897-.2434-.4811-.3857-.7897-.3854s-.5998.143-.789.3867l-3.2003 4.1222-15.44366-5.1516c-.15659-.1248-.27431-.2956-.33383-.4925-.09397-.3108-.0312-.6479.16835-.904l3.93111-5.0458c.12027-.1963.30755-.3502.53667-.4265zm11.9687 5.8863-11.6485 3.8821-11.6526-3.8835 11.6485-3.8821z"
fill-rule="evenodd"></path>
<path d="m28.1441 34.1368 11.8468-3.9457-.0005 6.5717c-.0001 1.2912-.8263 2.4375-2.0513 2.8458l-12.763 4.2544v-12.4519l1.8631 2.3915c.2603.3342.703.468 1.1049.3342z"></path>
<path d="m23.1761 31.4191v12.4439l-12.7632-4.2544c-1.22492-.4083-2.05119-1.5546-2.05128-2.8458l-.00043-6.5896 11.86381 3.9574c.4026.1343.8461-.0001 1.1063-.3353z"></path>
</g>
</svg></button><input type="hidden" name="product-id" value="9135927656721"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050190097">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050190097" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050190097)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050190097);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927329041'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927329041"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050124561">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050124561" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050124561)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050124561);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927263505'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927263505"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049049927953">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049049927953" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049049927953)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049049927953);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927099665'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927099665"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049049698577">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049049698577" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049049698577)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049049698577);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926935825'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926935825"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049049010449">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049049010449" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049049010449)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049049010449);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926509841'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926509841"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048977681">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048977681" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048977681)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048977681);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926477073'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926477073"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048912145">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048912145" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048912145)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048912145);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926411537'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926411537"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048846609">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048846609" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048846609)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048846609);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135926346001'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135926346001"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048355089">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048355089" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048355089)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048355089);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925854481'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925854481"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048191249">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048191249" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048191249)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048191249);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925690641'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925690641"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049048158481">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049048158481" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049048158481)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049048158481);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925657873'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925657873"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046323473">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049046323473" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049046323473)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049046323473);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924216081'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924216081"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049046257937">
<button title="Sold out" type="submit" name="add" class="add-to-cart-button" disabled="">
<!--Sold out-->
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path
d="m18.8831 4.69719c.3905-.39052 1.0237-.39052 1.4142 0l3.5906 3.59059 3.581-3.58098c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422l-3.581 3.58098 3.4805 3.4805c.3905.3905.3905 1.0237 0 1.4142s-1.0237.3905-1.4142 0l-3.4805-3.4805-3.4901 3.4901c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l3.4901-3.4901-3.5906-3.5906c-.3905-.39052-.3905-1.02369 0-1.41421z">
</path>
<path clip-rule="evenodd"
d="m23.8599 15.0513c.2052-.0684.4271-.0684.6323 0l14.7782 4.9252c.1986.0571.3794.1756.5125.3465l4.0031 5.1382c.1996.2561.2623.5932.1684.904-.0643.2127-.1966.395-.3724.5218l-15.3994 5.1289-3.2177-4.1301c-.1897-.2434-.4811-.3857-.7897-.3854s-.5998.143-.789.3867l-3.2003 4.1222-15.44366-5.1516c-.15659-.1248-.27431-.2956-.33383-.4925-.09397-.3108-.0312-.6479.16835-.904l3.93111-5.0458c.12027-.1963.30755-.3502.53667-.4265zm11.9687 5.8863-11.6485 3.8821-11.6526-3.8835 11.6485-3.8821z"
fill-rule="evenodd"></path>
<path d="m28.1441 34.1368 11.8468-3.9457-.0005 6.5717c-.0001 1.2912-.8263 2.4375-2.0513 2.8458l-12.763 4.2544v-12.4519l1.8631 2.3915c.2603.3342.703.468 1.1049.3342z"></path>
<path d="m23.1761 31.4191v12.4439l-12.7632-4.2544c-1.22492-.4083-2.05119-1.5546-2.05128-2.8458l-.00043-6.5896 11.86381 3.9574c.4026.1343.8461-.0001 1.1063-.3353z"></path>
</g>
</svg></button><input type="hidden" name="product-id" value="9135924150545"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044914449">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044914449" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044914449)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044914449);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923200273'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923200273"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044848913">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044848913" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044848913)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044848913);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923134737'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923134737"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044816145">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044816145" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044816145)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044816145);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135923101969'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135923101969"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044521233">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044521233" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044521233)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044521233);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922839825'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922839825"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044422929">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044422929" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044422929)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044422929);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922741521'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922741521"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044390161">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044390161" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044390161)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044390161);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922708753'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922708753"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044226321">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044226321" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044226321)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044226321);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922544913'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922544913"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049044193553">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049044193553" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049044193553)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049044193553);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135922512145'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135922512145"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48217075319057">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48217075319057" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48217075319057)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48217075319057);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9217837138193'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9217837138193"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48206994211089">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48206994211089" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48206994211089)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48206994211089);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9212847849745'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9212847849745"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48206611808529">
<button title="Sold out" type="submit" name="add" class="add-to-cart-button" disabled="">
<!--Sold out-->
<svg fill="none" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<g fill="#333">
<path
d="m18.8831 4.69719c.3905-.39052 1.0237-.39052 1.4142 0l3.5906 3.59059 3.581-3.58098c.3905-.39052 1.0237-.39052 1.4142 0 .3905.39053.3905 1.02369 0 1.41422l-3.581 3.58098 3.4805 3.4805c.3905.3905.3905 1.0237 0 1.4142s-1.0237.3905-1.4142 0l-3.4805-3.4805-3.4901 3.4901c-.3905.3905-1.0237.3905-1.4142 0s-.3905-1.0237 0-1.4142l3.4901-3.4901-3.5906-3.5906c-.3905-.39052-.3905-1.02369 0-1.41421z">
</path>
<path clip-rule="evenodd"
d="m23.8599 15.0513c.2052-.0684.4271-.0684.6323 0l14.7782 4.9252c.1986.0571.3794.1756.5125.3465l4.0031 5.1382c.1996.2561.2623.5932.1684.904-.0643.2127-.1966.395-.3724.5218l-15.3994 5.1289-3.2177-4.1301c-.1897-.2434-.4811-.3857-.7897-.3854s-.5998.143-.789.3867l-3.2003 4.1222-15.44366-5.1516c-.15659-.1248-.27431-.2956-.33383-.4925-.09397-.3108-.0312-.6479.16835-.904l3.93111-5.0458c.12027-.1963.30755-.3502.53667-.4265zm11.9687 5.8863-11.6485 3.8821-11.6526-3.8835 11.6485-3.8821z"
fill-rule="evenodd"></path>
<path d="m28.1441 34.1368 11.8468-3.9457-.0005 6.5717c-.0001 1.2912-.8263 2.4375-2.0513 2.8458l-12.763 4.2544v-12.4519l1.8631 2.3915c.2603.3342.703.468 1.1049.3342z"></path>
<path d="m23.1761 31.4191v12.4439l-12.7632-4.2544c-1.22492-.4083-2.05119-1.5546-2.05128-2.8458l-.00043-6.5896 11.86381 3.9574c.4026.1343.8461-.0001 1.1063-.3353z"></path>
</g>
</svg></button><input type="hidden" name="product-id" value="9212733260049"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48055056433425">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48055056433425" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48055056433425)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48055056433425);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9137100488977'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9137100488977"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051369745">
<!-- <a href="/products/namkeen-fulwadi-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928344849"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051271441">
<!-- <a href="/products/namkeen-tikha-ganthiya-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928279313"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049051205905">
<!-- <a href="/products/namkeen-bhavnagri-ganthiya-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928246545"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050976529">
<!-- <a href="/products/namkeen-manglori-mix-maniarrs-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135928115473"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050845457">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050845457" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050845457)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050845457);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927984401'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927984401"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049050779921">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48049050779921" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48049050779921)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48049050779921);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135927951633'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135927951633"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066374762769">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066374762769" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066374762769)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066374762769);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136853188881'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136853188881"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066365980945">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066365980945" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066365980945)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066365980945);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925264657'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925264657"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066313978129">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066313978129" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066313978129)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066313978129);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924740369'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924740369"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066384363793">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066384363793" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066384363793)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066384363793);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925494033'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925494033"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066319188241">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066319188241" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066319188241)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066319188241);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924838673'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924838673"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48049047011601">
<!-- <a href="/products/punjabi-samosa-ingrano-frozen-foods-frozen-snacks" class="add-to-cart-button">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"/>
</svg></a> -->
<button type="submit" name="add" class="button add-to-cart-button primary-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg>
</button><input type="hidden" name="product-id" value="9135924674833"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066332688657">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066332688657" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066332688657)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066332688657);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136852959505'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136852959505"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066353660177">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066353660177" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066353660177)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066353660177);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925133585'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925133585"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066325381393">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066325381393" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066325381393)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066325381393);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924969745'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924969745"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066318369041">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066318369041" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066318369041)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066318369041);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924773137'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924773137"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066346615057">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066346615057" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066346615057)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066346615057);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925100817'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925100817"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48419044163857">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48419044163857" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48419044163857)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48419044163857);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334537584913'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334537584913"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418763145489">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418763145489" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418763145489)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418763145489);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334293463313'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334293463313"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418882191633">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418882191633" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418882191633)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418882191633);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334398910737'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334398910737"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418809872657">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418809872657" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418809872657)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418809872657);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334334456081'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334334456081"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48418673066257">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48418673066257" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48418673066257)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48418673066257);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9334214492433'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9334214492433"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066369880337">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066369880337" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066369880337)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066369880337);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9136853057809'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9136853057809"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066380693777">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066380693777" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066380693777)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066380693777);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925461265'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925461265"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066360115473">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066360115473" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066360115473)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066360115473);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135925166353'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135925166353"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066321449233">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066321449233" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066321449233)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066321449233);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924936977'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924936977"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /cart/add
<form method="post" action="/cart/add" accept-charset="UTF-8" class="form-add-to-cart" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="id" value="48066319745297">
<div class="product-add-to-cart-btn">
<button type="submit" name="add" class="btn2 custom-add-to-cart-button add-to-cart-button" data-id="48066319745297" style="display: block;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" width="1em" height="1em" fill="currentColor">
<path d="M16,9H9v7H8V9H1V8H8V1H9V8h7Z" transform="translate(-1 -1)"></path>
</svg><!--Add-->
</button>
</div>
<script>
// 'use strict';
// document.addEventListener("click",function(e){
// if(e.target.classList.contains('custom-add-to-cart-button') && (e.target.getAttribute('data-id') == 48066319745297)){
// // Create the div container
// var quantityDiv = document.createElement('div');
// quantityDiv.classList.add('custom-quantity-selector', 'quantity', 'product-item', 'mini-cart');
// quantityDiv.setAttribute('data-id', 48066319745297);
// // Create the minus button
// var minusButton = document.createElement('button');
// minusButton.classList.add('quantity-button');
// minusButton.setAttribute('name', 'minus');
// minusButton.setAttribute('type', 'button');
// // Create the minus button content (span and svg)
// var minusSpan = document.createElement('span');
// minusSpan.classList.add('sr-only');
// minusSpan.textContent = 'products.product.quantity.decrease'; // Replace with appropriate text
// var minusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// minusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// minusSvg.setAttribute('width', '1em');
// minusSvg.setAttribute('height', '1em');
// minusSvg.setAttribute('fill', 'currentColor');
// minusSvg.setAttribute('viewBox', '0 0 16 16');
// var minusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// minusPath.setAttribute('fill-rule', 'evenodd');
// minusPath.setAttribute('d', 'M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z');
// // Append SVG path to SVG element
// minusSvg.appendChild(minusPath);
// // Append SVG and span to the minus button
// minusButton.appendChild(minusSpan);
// minusButton.appendChild(minusSvg);
// // Create the input element
// var itemQuantity = ''; // Assign the value from the server or wherever it's coming from
// // Check if itemQuantity is not available or empty
// if (!itemQuantity || isNaN(itemQuantity)) {
// itemQuantity = '1'; // Set default value as '1'
// }
// var quantityInput = document.createElement('input');
// quantityInput.classList.add('quantity-input');
// quantityInput.setAttribute('type', 'number');
// quantityInput.setAttribute('name', 'quantity');
// quantityInput.setAttribute('id', 'quantity-9135924904209'); // Replace 'productId' with the appropriate product ID
// quantityInput.setAttribute('min', '0');
// quantityInput.setAttribute('step', '1');
// quantityInput.setAttribute('value', itemQuantity);
//// // Create the plus button
// var plusButton = document.createElement('button');
// plusButton.classList.add('quantity-button');
// plusButton.setAttribute('name', 'plus');
// plusButton.setAttribute('type', 'button');
// // Create the plus button content (span and svg)
// var plusSpan = document.createElement('span');
// plusSpan.classList.add('sr-only');
// plusSpan.textContent = 'products.product.quantity.increase'; // Replace with appropriate text
// var plusSvg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
// plusSvg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
// plusSvg.setAttribute('width', '1em');
// plusSvg.setAttribute('height', '1em');
// plusSvg.setAttribute('fill', 'currentColor');
// plusSvg.setAttribute('viewBox', '0 0 16 16');
// var plusPath = document.createElementNS('http://www.w3.org/2000/svg', 'path');
// plusPath.setAttribute('fill-rule', 'evenodd');
// plusPath.setAttribute('d', 'M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z');
// // Append SVG path to SVG element
// plusSvg.appendChild(plusPath);
// // Append SVG and span to the plus button
// plusButton.appendChild(plusSpan);
// plusButton.appendChild(plusSvg);
// // Append elements to the quantity div
// quantityDiv.appendChild(minusButton);
// quantityDiv.appendChild(quantityInput);
// quantityDiv.appendChild(plusButton);
// // Append the quantity div to a parent container
// var parentElement = e.target.parentNode; // Replace with the appropriate parent class or ID
// e.target.style.display = 'none';
// parentElement.appendChild(quantityDiv);
// }
// })
</script><input type="hidden" name="product-id" value="9135924904209"><input type="hidden" name="section-id" value="template--21711630401809__1658973421c688044f">
</form>
POST /contact#newletter-form-template--21711630401809__edc26ced-e941-4822-91b1-c536789abebe
<form method="post" action="/contact#newletter-form-template--21711630401809__edc26ced-e941-4822-91b1-c536789abebe" id="newletter-form-template--21711630401809__edc26ced-e941-4822-91b1-c536789abebe" accept-charset="UTF-8" class="section-newletter">
<input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓"><input type="hidden" name="contact[tags]" value="newletter">
<!-- -->
<div class="newletter-wrapper">
<input class="field-input" id="input-form-template--21711630401809__edc26ced-e941-4822-91b1-c536789abebe" type="email" name="contact[email]" value="" aria-required="true" autocorrect="off" autocapitalize="off" autocomplete="email"
placeholder=" Your email id " required="">
<div class="icon">
<svg width="17" height="17" viewBox="0 0 17 17" fill="#7E7E7E" xmlns="http://www.w3.org/2000/svg">
<path
d="M1.63849 5.22199C1.41141 5.28424 1.2052 5.40231 1.04028 5.56452C0.875362 5.72672 0.757437 5.92743 0.698178 6.14679C0.638918 6.36615 0.640378 6.59655 0.702413 6.8152C0.764448 7.03385 0.884908 7.23317 1.05187 7.39344L3.36577 9.6111V13.8967H7.83692L10.1664 16.1287C10.2914 16.2498 10.4401 16.346 10.604 16.4117C10.7678 16.4773 10.9437 16.5112 11.1213 16.5113C11.238 16.5111 11.3542 16.4967 11.4671 16.4684C11.6956 16.4132 11.905 16.3011 12.074 16.1436C12.2431 15.9861 12.3659 15.7886 12.4301 15.571L16.9291 0.895996L1.63849 5.22199ZM2.01555 6.47332L13.5633 3.2067L4.72346 11.6752V9.0723L2.01555 6.47332ZM11.1301 15.2086L8.39911 12.5953H5.68645L14.525 4.12162L11.1301 15.2086Z">
</path>
</svg>
</div>
<button type="submit" class="button-newletter" name="commit"> Subscribe </button>
</div>
</form>
GET /search
<form action="/search" method="get" role="search" class="dialog-search-form">
<div class="container">
<div class="dialog-search-inner">
<p class="search-heading">What are you looking for?</p>
<div class="search-field">
<input class="search-input" type="search" name="q" value="" placeholder="I'm looking for..." required="" data-noui="" autocomplete="off">
<label class="sr-only">Search</label>
<input type="hidden" name="options[prefix]" value="last">
<button class="search-button" aria-label="Search">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16.6 16.6" fill="currentColor">
<path d="M16.6,15.87l-5.17-5.18A6.43,6.43,0,0,0,13,6.47,6.5,6.5,0,1,0,6.5,13a6.43,6.43,0,0,0,4.22-1.57l5.18,5.18ZM6.5,12A5.5,5.5,0,1,1,12,6.47,5.5,5.5,0,0,1,6.5,12Z" transform="translate(0 0.03)"></path>
</svg></button>
</div>
<div class="sarch-results"></div>
</div>
</div>
</form>
Text Content
Skip to content Quality, Authenticity, and Convenience, All in One Place Order Today, Pickup Tomorrow! Quality, Authenticity, and Convenience, All in One Place Order Today, Pickup Tomorrow! * Shop All * Frozen Food * Ready to Eat * Facebook * Instagram Search Search Compare items Cart Your cart is currently empty. Sign in Search Search Compare items Cart Your cart is currently empty. Sign in SAVE EXTRA 20% when you spend $150 or more PROMO CODE SAVEMORE Shop Now PROMO CODE SAVEMORE GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP Frozen Food FROZEN FOOD 21 items Ready Meals READY MEALS 40 items Snacks & Namkeen SNACKS & NAMKEEN 97 items Fruit Pulp FRUIT PULP 1 item Bakery & Biscuit BAKERY & BISCUIT 6 items Sugar / Salt / Jaggery SUGAR / SALT / JAGGERY 1 item Sauces & Spreads SAUCES & SPREADS 0 items Beans & Pulses BEANS & PULSES 4 items Beverages BEVERAGES 0 items Dry Fruits & Nuts DRY FRUITS & NUTS 0 items Millets MILLETS 0 items Mukhwas & Churan MUKHWAS & CHURAN 0 items Oil / Ghee OIL / GHEE 0 items Personal Care PERSONAL CARE 0 items Rice & Flour RICE & FLOUR 0 items Spices, Herbs & Masala SPICES, HERBS & MASALA 0 items Sweets SWEETS 0 items Vegetable / Fruits VEGETABLE / FRUITS 0 items DESI DELIGHTS CHOSEN FOR YOU * Makki Ki Roti Add to wishlist Frozen Food MAKKI KI ROTI 400gm Regular price $3.00 * Methi Thepla Add to wishlist Frozen Food METHI THEPLA 240gm Regular price $3.00 * Mix Veg Spring Roll Add to wishlist Frozen Food MIX VEG SPRING ROLL 240gm Regular price $4.00 * Garlic Naan Add to wishlist Frozen Food GARLIC NAAN 340gm Regular price $3.00 * Hara Bhara Kabab Add to wishlist Frozen Food HARA BHARA KABAB 240gm Regular price $4.00 * Punjabi Samosa Add to wishlist Frozen Food PUNJABI SAMOSA 12pcs (900gm)25pcs (1.875kg) Regular price $8.00 * Lachha Paratha Add to wishlist Frozen Food LACHHA PARATHA 400gm Regular price $3.00 * Paneer Kulcha Add to wishlist Frozen Food PANEER KULCHA 400gm Regular price $4.00 * Aloo Paratha Add to wishlist Frozen Food ALOO PARATHA 400gm Regular price $3.00 * Aloo Tikki Add to wishlist Frozen Food ALOO TIKKI 400gm Regular price $4.00 * Tandoori Roti Add to wishlist Frozen Food TANDOORI ROTI 300gm Regular price $3.00 * Chinese Samosa Add to wishlist Frozen Food CHINESE SAMOSA 240gm Regular price $4.00 * Paneer Tikka Frankie Add to wishlist Frozen Food PANEER TIKKA FRANKIE 160gm Regular price $3.00 * Vegetable Frankie with Schezwan Sauce Add to wishlist Frozen Food VEGETABLE FRANKIE WITH SCHEZWAN SAUCE 160gm Regular price $3.00 * Vegetable Frankie Add to wishlist Frozen Food VEGETABLE FRANKIE 160gm Regular price $3.00 Previous Next BRAND SPOTLIGHT FROZEN FOOD View All * Makki Ki Roti Add to wishlist Frozen Food MAKKI KI ROTI 400gm Regular price $3.00 * Methi Thepla Add to wishlist Frozen Food METHI THEPLA 240gm Regular price $3.00 * Mix Veg Spring Roll Add to wishlist Frozen Food MIX VEG SPRING ROLL 240gm Regular price $4.00 * Garlic Naan Add to wishlist Frozen Food GARLIC NAAN 340gm Regular price $3.00 * Hara Bhara Kabab Add to wishlist Frozen Food HARA BHARA KABAB 240gm Regular price $4.00 * Punjabi Samosa Add to wishlist Frozen Food PUNJABI SAMOSA 12pcs (900gm)25pcs (1.875kg) Regular price $8.00 READY TO EAT View All * Amritsari Chole Add to wishlist Ready Meals AMRITSARI CHOLE 285gm Regular price $3.00 * Dal Makhani Add to wishlist Ready Meals DAL MAKHANI 285gm Regular price $3.00 * Dal Tadka Add to wishlist Ready Meals DAL TADKA 285gm Regular price $3.00 * Gujarati Dal Add to wishlist Ready Meals GUJARATI DAL 285gm Regular price $3.00 * Hocco Chana Masala Add to wishlist Ready Meals HOCCO CHANA MASALA 300gm Regular price $3.00 * Hocco Dal Fry Rice Combo Add to wishlist Ready Meals HOCCO DAL FRY RICE COMBO 300gm Regular price $3.00 YOU‘LL DEFINITELY LOVE THIS Pizza Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen PIZZA KHAKHRA (WHEAT CHIPS) 180gm Regular price $2.00 Wheat Chips Methi Add to wishlist Snacks & Namkeen WHEAT CHIPS METHI 90gm Regular price $1.00 Wheat Chips Jeera (Cumin) Add to wishlist Snacks & Namkeen WHEAT CHIPS JEERA (CUMIN) 90gm Regular price $1.00 Kela Wafer Mari Add to wishlist Snacks & Namkeen KELA WAFER MARI 400gm Regular price $4.00 Masala Sing Add to wishlist Snacks & Namkeen MASALA SING 400gm Regular price $4.00 Bundi Moli Add to wishlist Snacks & Namkeen BUNDI MOLI 400gm Regular price $4.00 Kela Wafer Masala Add to wishlist Snacks & Namkeen KELA WAFER MASALA 400gm Regular price $4.00 Namkeen Makkai Chevdo Add to wishlist Snacks & Namkeen NAMKEEN MAKKAI CHEVDO 400 G200 G Regular price $4.00 Garlic Bread Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen GARLIC BREAD KHAKHRA (WHEAT CHIPS) 180gm Regular price $2.00 Sing Chikki Add to wishlist Snacks & Namkeen SING CHIKKI 400gm Regular price $3.00 Sing Bhujia Hot Add to wishlist Snacks & Namkeen SING BHUJIA HOT 400gm Regular price $4.00 Badam Pista Cookies Add to wishlist Bakery & Biscuit, Snacks & Namkeen BADAM PISTA COOKIES 175gm Regular price $2.00 Namkeen Surti Khaja Add to wishlist Snacks & Namkeen NAMKEEN SURTI KHAJA 300gm Regular price $7.00 Namkeen Tikhi Papdi Add to wishlist Snacks & Namkeen NAMKEEN TIKHI PAPDI 275gm Regular price $6.00 Namkeen Fafda With Chilli & Chuteny Add to wishlist Snacks & Namkeen NAMKEEN FAFDA WITH CHILLI & CHUTENY 350gm Regular price $7.00 Namkeen Dry Patra Add to wishlist Snacks & Namkeen NAMKEEN DRY PATRA 300gm Regular price $6.00 Namkeen Vanela Ganthiya Add to wishlist Snacks & Namkeen NAMKEEN VANELA GANTHIYA 400 G200 G Regular price $4.00 Namkeen Lasan Bhel (Garlic) Add to wishlist Snacks & Namkeen NAMKEEN LASAN BHEL (GARLIC) 200 G400 G Regular price $2.00 Papad (Lentil Crackers) Jeera Mari Sold out Add to wishlist Snacks & Namkeen PAPAD (LENTIL CRACKERS) JEERA MARI 200gm Regular price $2.00 Wheat Chips Mexican Hot Add to wishlist Snacks & Namkeen WHEAT CHIPS MEXICAN HOT 90gm Regular price $1.00 Wheat Chips Peri Peri Add to wishlist Snacks & Namkeen WHEAT CHIPS PERI PERI 100gm Regular price $1.00 Wheat Chips Pav Bhaji Add to wishlist Snacks & Namkeen WHEAT CHIPS PAV BHAJI 100gm Regular price $1.00 Wheat Chips Pizza Add to wishlist Snacks & Namkeen WHEAT CHIPS PIZZA 100gm Regular price $1.00 Wheat Chips Ginger Chilli Coriander Add to wishlist Snacks & Namkeen WHEAT CHIPS GINGER CHILLI CORIANDER 90gm Regular price $1.00 Wheat Chips Garlic Bread Add to wishlist Snacks & Namkeen WHEAT CHIPS GARLIC BREAD 90gm Regular price $1.00 Wheat Chips Dabeli Add to wishlist Snacks & Namkeen WHEAT CHIPS DABELI 90gm Regular price $1.00 Plain Khichiya (Rice Crackers) Add to wishlist Snacks & Namkeen PLAIN KHICHIYA (RICE CRACKERS) 200gm Regular price $3.00 Gingy Bajri Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen GINGY BAJRI KHAKHRA (WHEAT CHIPS) 180gm Regular price $2.00 Plain Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen PLAIN KHAKHRA (WHEAT CHIPS) 200gm Regular price $2.00 Jeera Khakhra (Cumin Wheat Chips) Add to wishlist Snacks & Namkeen JEERA KHAKHRA (CUMIN WHEAT CHIPS) 200gm Regular price $2.00 Til Chikki Add to wishlist Snacks & Namkeen TIL CHIKKI 400gm Regular price $3.00 Mawa Chikki Sold out Add to wishlist Snacks & Namkeen MAWA CHIKKI 400gm Regular price $3.00 Farari Chevda Mola Add to wishlist Snacks & Namkeen FARARI CHEVDA MOLA 400gm Regular price $4.00 Mung Dal Add to wishlist Snacks & Namkeen MUNG DAL 400gm Regular price $4.00 Bikaneri Sev Add to wishlist Snacks & Namkeen BIKANERI SEV 400gm Regular price $4.00 Chana Dal Add to wishlist Snacks & Namkeen CHANA DAL 400gm Regular price $4.00 Ratlami Sev Add to wishlist Snacks & Namkeen RATLAMI SEV 400gm Regular price $4.00 Ganthia Add to wishlist Snacks & Namkeen GANTHIA 400gm Regular price $4.00 Dalmoth Add to wishlist Snacks & Namkeen DALMOTH 400gm Regular price $4.00 Khatta Mitha Mix Add to wishlist Snacks & Namkeen KHATTA MITHA MIX 400gm Regular price $4.00 Chocolate Chips Cookies Add to wishlist Bakery & Biscuit, Snacks & Namkeen CHOCOLATE CHIPS COOKIES 175gm Regular price $2.00 Namkeen Papdi Plain Add to wishlist Snacks & Namkeen NAMKEEN PAPDI PLAIN 200gm Regular price $2.00 Namkeen Bhatha kani Sold out Add to wishlist Snacks & Namkeen NAMKEEN BHATHA KANI 400200 Regular price $4.00 Chilli Garlic Khichiya (Rice Crackers) Add to wishlist Snacks & Namkeen CHILLI GARLIC KHICHIYA (RICE CRACKERS) 200gm Regular price $3.00 Namkeen Fulwadi Add to wishlist Snacks & Namkeen NAMKEEN FULWADI 400 G200 G Regular price $4.00 Namkeen Tikha Ganthiya Add to wishlist Snacks & Namkeen NAMKEEN TIKHA GANTHIYA 400 G200 G Regular price $2.00 Namkeen Bhavnagri Ganthiya Add to wishlist Snacks & Namkeen NAMKEEN BHAVNAGRI GANTHIYA 400 G200 G Regular price $2.00 Namkeen Manglori Mix Add to wishlist Snacks & Namkeen NAMKEEN MANGLORI MIX 400 G200 G Regular price $2.00 Bhakhari (Wheat Crisps) Garlic Add to wishlist Snacks & Namkeen BHAKHARI (WHEAT CRISPS) GARLIC 200gm Regular price $3.00 Bhakhari (Wheat Crisps) Plain Add to wishlist Snacks & Namkeen BHAKHARI (WHEAT CRISPS) PLAIN 200gm Regular price $3.00 DAILY BEST SELLS PopularNew addedFeatured Popular Popular * Popular * New added * Featured Badam Pista Cookies Add to wishlist Bakery & Biscuit, Snacks & Namkeen BADAM PISTA COOKIES 175gm Regular price $2.00 Chocolate Chips Cookies Add to wishlist Bakery & Biscuit, Snacks & Namkeen CHOCOLATE CHIPS COOKIES 175gm Regular price $2.00 Khari (Salted Puffs) Plain Add to wishlist Bakery & Biscuit, Snacks & Namkeen KHARI (SALTED PUFFS) PLAIN 180 G400 G Regular price $2.00 Khari (Salted Puffs) Methi Add to wishlist Bakery & Biscuit, Snacks & Namkeen KHARI (SALTED PUFFS) METHI 180 G400 G Regular price $2.00 Khari (Salted Puffs) Masala Add to wishlist Bakery & Biscuit, Snacks & Namkeen KHARI (SALTED PUFFS) MASALA 180 G400 G Regular price $2.00 Khari (Salted Puffs) Jeera Add to wishlist Bakery & Biscuit, Snacks & Namkeen KHARI (SALTED PUFFS) JEERA 180 G400 G Regular price $2.00 Pizza Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen PIZZA KHAKHRA (WHEAT CHIPS) 180gm Regular price $2.00 Wheat Chips Methi Add to wishlist Snacks & Namkeen WHEAT CHIPS METHI 90gm Regular price $1.00 Wheat Chips Jeera (Cumin) Add to wishlist Snacks & Namkeen WHEAT CHIPS JEERA (CUMIN) 90gm Regular price $1.00 Kela Wafer Mari Add to wishlist Snacks & Namkeen KELA WAFER MARI 400gm Regular price $4.00 Masala Sing Add to wishlist Snacks & Namkeen MASALA SING 400gm Regular price $4.00 Bundi Moli Add to wishlist Snacks & Namkeen BUNDI MOLI 400gm Regular price $4.00 Kela Wafer Masala Add to wishlist Snacks & Namkeen KELA WAFER MASALA 400gm Regular price $4.00 Namkeen Makkai Chevdo Add to wishlist Snacks & Namkeen NAMKEEN MAKKAI CHEVDO 400 G200 G Regular price $4.00 Garlic Bread Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen GARLIC BREAD KHAKHRA (WHEAT CHIPS) 180gm Regular price $2.00 Sing Chikki Add to wishlist Snacks & Namkeen SING CHIKKI 400gm Regular price $3.00 Sing Bhujia Hot Add to wishlist Snacks & Namkeen SING BHUJIA HOT 400gm Regular price $4.00 Badam Pista Cookies Add to wishlist Bakery & Biscuit, Snacks & Namkeen BADAM PISTA COOKIES 175gm Regular price $2.00 Namkeen Surti Khaja Add to wishlist Snacks & Namkeen NAMKEEN SURTI KHAJA 300gm Regular price $7.00 Namkeen Tikhi Papdi Add to wishlist Snacks & Namkeen NAMKEEN TIKHI PAPDI 275gm Regular price $6.00 Namkeen Fafda With Chilli & Chuteny Add to wishlist Snacks & Namkeen NAMKEEN FAFDA WITH CHILLI & CHUTENY 350gm Regular price $7.00 Namkeen Dry Patra Add to wishlist Snacks & Namkeen NAMKEEN DRY PATRA 300gm Regular price $6.00 Namkeen Vanela Ganthiya Add to wishlist Snacks & Namkeen NAMKEEN VANELA GANTHIYA 400 G200 G Regular price $4.00 Namkeen Lasan Bhel (Garlic) Add to wishlist Snacks & Namkeen NAMKEEN LASAN BHEL (GARLIC) 200 G400 G Regular price $2.00 Papad (Lentil Crackers) Jeera Mari Sold out Add to wishlist Snacks & Namkeen PAPAD (LENTIL CRACKERS) JEERA MARI 200gm Regular price $2.00 Wheat Chips Mexican Hot Add to wishlist Snacks & Namkeen WHEAT CHIPS MEXICAN HOT 90gm Regular price $1.00 Wheat Chips Peri Peri Add to wishlist Snacks & Namkeen WHEAT CHIPS PERI PERI 100gm Regular price $1.00 Wheat Chips Pav Bhaji Add to wishlist Snacks & Namkeen WHEAT CHIPS PAV BHAJI 100gm Regular price $1.00 Wheat Chips Pizza Add to wishlist Snacks & Namkeen WHEAT CHIPS PIZZA 100gm Regular price $1.00 Wheat Chips Ginger Chilli Coriander Add to wishlist Snacks & Namkeen WHEAT CHIPS GINGER CHILLI CORIANDER 90gm Regular price $1.00 Wheat Chips Garlic Bread Add to wishlist Snacks & Namkeen WHEAT CHIPS GARLIC BREAD 90gm Regular price $1.00 Wheat Chips Dabeli Add to wishlist Snacks & Namkeen WHEAT CHIPS DABELI 90gm Regular price $1.00 Plain Khichiya (Rice Crackers) Add to wishlist Snacks & Namkeen PLAIN KHICHIYA (RICE CRACKERS) 200gm Regular price $3.00 Gingy Bajri Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen GINGY BAJRI KHAKHRA (WHEAT CHIPS) 180gm Regular price $2.00 Plain Khakhra (Wheat Chips) Add to wishlist Snacks & Namkeen PLAIN KHAKHRA (WHEAT CHIPS) 200gm Regular price $2.00 Jeera Khakhra (Cumin Wheat Chips) Add to wishlist Snacks & Namkeen JEERA KHAKHRA (CUMIN WHEAT CHIPS) 200gm Regular price $2.00 Til Chikki Add to wishlist Snacks & Namkeen TIL CHIKKI 400gm Regular price $3.00 Mawa Chikki Sold out Add to wishlist Snacks & Namkeen MAWA CHIKKI 400gm Regular price $3.00 Farari Chevda Mola Add to wishlist Snacks & Namkeen FARARI CHEVDA MOLA 400gm Regular price $4.00 Mung Dal Add to wishlist Snacks & Namkeen MUNG DAL 400gm Regular price $4.00 Bikaneri Sev Add to wishlist Snacks & Namkeen BIKANERI SEV 400gm Regular price $4.00 Chana Dal Add to wishlist Snacks & Namkeen CHANA DAL 400gm Regular price $4.00 Ratlami Sev Add to wishlist Snacks & Namkeen RATLAMI SEV 400gm Regular price $4.00 Ganthia Add to wishlist Snacks & Namkeen GANTHIA 400gm Regular price $4.00 Dalmoth Add to wishlist Snacks & Namkeen DALMOTH 400gm Regular price $4.00 Khatta Mitha Mix Add to wishlist Snacks & Namkeen KHATTA MITHA MIX 400gm Regular price $4.00 Chocolate Chips Cookies Add to wishlist Bakery & Biscuit, Snacks & Namkeen CHOCOLATE CHIPS COOKIES 175gm Regular price $2.00 Namkeen Papdi Plain Add to wishlist Snacks & Namkeen NAMKEEN PAPDI PLAIN 200gm Regular price $2.00 Namkeen Bhatha kani Sold out Add to wishlist Snacks & Namkeen NAMKEEN BHATHA KANI 400200 Regular price $4.00 Chilli Garlic Khichiya (Rice Crackers) Add to wishlist Snacks & Namkeen CHILLI GARLIC KHICHIYA (RICE CRACKERS) 200gm Regular price $3.00 Namkeen Fulwadi Add to wishlist Snacks & Namkeen NAMKEEN FULWADI 400 G200 G Regular price $4.00 Namkeen Tikha Ganthiya Add to wishlist Snacks & Namkeen NAMKEEN TIKHA GANTHIYA 400 G200 G Regular price $2.00 Namkeen Bhavnagri Ganthiya Add to wishlist Snacks & Namkeen NAMKEEN BHAVNAGRI GANTHIYA 400 G200 G Regular price $2.00 Namkeen Manglori Mix Add to wishlist Snacks & Namkeen NAMKEEN MANGLORI MIX 400 G200 G Regular price $2.00 Bhakhari (Wheat Crisps) Garlic Add to wishlist Snacks & Namkeen BHAKHARI (WHEAT CRISPS) GARLIC 200gm Regular price $3.00 Bhakhari (Wheat Crisps) Plain Add to wishlist Snacks & Namkeen BHAKHARI (WHEAT CRISPS) PLAIN 200gm Regular price $3.00 Makki Ki Roti Add to wishlist Frozen Food MAKKI KI ROTI 400gm Regular price $3.00 Methi Thepla Add to wishlist Frozen Food METHI THEPLA 240gm Regular price $3.00 Mix Veg Spring Roll Add to wishlist Frozen Food MIX VEG SPRING ROLL 240gm Regular price $4.00 Garlic Naan Add to wishlist Frozen Food GARLIC NAAN 340gm Regular price $3.00 Hara Bhara Kabab Add to wishlist Frozen Food HARA BHARA KABAB 240gm Regular price $4.00 Punjabi Samosa Add to wishlist Frozen Food PUNJABI SAMOSA 12pcs (900gm)25pcs (1.875kg) Regular price $8.00 Lachha Paratha Add to wishlist Frozen Food LACHHA PARATHA 400gm Regular price $3.00 Paneer Kulcha Add to wishlist Frozen Food PANEER KULCHA 400gm Regular price $4.00 Aloo Paratha Add to wishlist Frozen Food ALOO PARATHA 400gm Regular price $3.00 Aloo Tikki Add to wishlist Frozen Food ALOO TIKKI 400gm Regular price $4.00 Tandoori Roti Add to wishlist Frozen Food TANDOORI ROTI 300gm Regular price $3.00 Chinese Samosa Add to wishlist Frozen Food CHINESE SAMOSA 240gm Regular price $4.00 Paneer Tikka Frankie Add to wishlist Frozen Food PANEER TIKKA FRANKIE 160gm Regular price $3.00 Vegetable Frankie with Schezwan Sauce Add to wishlist Frozen Food VEGETABLE FRANKIE WITH SCHEZWAN SAUCE 160gm Regular price $3.00 Vegetable Frankie Add to wishlist Frozen Food VEGETABLE FRANKIE 160gm Regular price $3.00 Chilli Paneer Frankie Add to wishlist Frozen Food CHILLI PANEER FRANKIE 160gm Regular price $3.00 Bajra Roti Add to wishlist Frozen Food BAJRA ROTI 400gm Regular price $3.00 Tandoori Naan Add to wishlist Frozen Food TANDOORI NAAN 426gm Regular price $3.00 Onion Kulcha Add to wishlist Frozen Food ONION KULCHA 400gm Regular price $4.00 Lilva Kachori Add to wishlist Frozen Food LILVA KACHORI 300gm Regular price $4.00 Veg Cutlet Add to wishlist Frozen Food VEG CUTLET 450gm Regular price $5.00 LET’S MAKE SOMETHING DESILICIOUS TOGETHER Discover a world of flavor and culture at Desi Deli. Our blog is your gateway to all things Desi – from mouthwatering recipes and cooking tips to the latest news and trends in Indian cuisine. Join us on a culinary journey that celebrates the rich tapestry of Indian flavors. Explore, savor, and learn with Desi Deli Blog. View All Recipes by Desi Deli PUNJABI SAMOSA CHAAT Read more Recipes by Desi Deli ALOO TIKKI BURGER Read more Recipes by Desi Deli PANEER TIKKA FRANKIE Read more Recipes by Desi Deli PUNJABI SAMOSA CHAAT Read more Recipes by Desi Deli ALOO TIKKI BURGER Read more Recipes by Desi Deli PANEER TIKKA FRANKIE Read more Recipes by Desi Deli PUNJABI SAMOSA CHAAT Read more Recipes by Desi Deli ALOO TIKKI BURGER Read more Recipes by Desi Deli PANEER TIKKA FRANKIE Read more SUBSCRIBE TO DESI DELI DEALS Be the first to know about new Desi addition and exclusive offers! Subscribe DESIDELI Quality, Authenticity, and Convenience, All in One Place * Facebook * Instagram SHOP * Shop All * Frozen Food * Ready to Eat QUICK LINKS * About * Quick Recipes * Recipes by Desi Deli * Contact SUPPORT * FAQs * Sell with Us * Privacy Policy * Refund Policy * Terms of Service GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP GET DESI DELIGHTS DELIVERED TO YOUR DOORSTEP © 2023 Desi Deli. All rights reserved. We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies Accept Home Shop Me Search Support What are you looking for? Search Close * Choosing a selection results in a full page refresh. US Dollar (USD)Euro (EUR)British Pound (GBP)Canadian Dollar (CAD)United Arab Emirates Dirham (AED)Albanian Lek (ALL)Afghan Afghani (AFN)Armenian Dram (AMD)Angolan Kwanza (AOA)Argentine Peso (ARS)Australian Dollar (AUD)Aruban Florin (AWG)Azerbaijani Manat (AZN)Burundian Franc (BIF)Barbadian Dollar (BBD)Bangladeshi Taka (BDT)Bahamian Dollar (BSD)Bahraini Dinar (BHD)Bermudan Dollar (BMD)Belarusian Ruble (BYN)Belize Dollar (BZD)Bhutanese Ngultrum (BTN)Bosnia-Herzegovina Convertible Mark (BAM)Brazilian Real (BRL)Bolivian Boliviano (BOB)Botswanan Pula (BWP)Brunei Dollar (BND)Bulgarian Lev (BGN)Congolese Franc (CDF)Swiss Franc (CHF)Chilean Peso (CLP)Chinese Yuan (CNY)Colombian Peso (COP)Costa Rican Colon (CRC)Czech Republic Koruna (CZK)Djiboutian Franc (DJF)Danish Krone (DKK)Dominican Peso (DOP)Algerian Dinar (DZD)Egyptian Pound (EGP)Ethiopian Birr (ETB)Fijian Dollar (FJD)Falkland Islands Pound (FKP)Gibraltar Pound (GIP)Ghanaian Cedi (GHS)Gambian Dalasi (GMD)Guinean Franc (GNF)Guatemalan Quetzal (GTQ)Georgian Lari (GEL)Croatian Kuna (HRK)Honduran Lempira (HNL)Hong Kong Dollar (HKD)Haitian Gourde (HTG)Hungarian Forint (HUF)Indonesian Rupiah (IDR)Israeli New Shekel (ILS)Icelandic Krona (ISK)Indian Rupee (INR)Iraqi Dinar (IQD)Iranian Rial (IRR)Jamaican Dollar (JMD)Japanese Yen (JPY)Jordanian Dinar (JOD)Kenyan Shilling (KES)Kyrgystani Som (KGS)Cambodian Riel (KHR)Comorian Franc (KMF)South Korean Won (KRW)Kuwaiti Dinar (KWD)Cayman Islands Dollar (KYD)Kazakhstani Tenge (KZT)Lebanese Pound (LBP)Sri Lankan Rupee (LKR)Liberian Dollar (LRD)Lesotho Loti (LSL)Libyan Dinar (LYD)Moroccan Dirham (MAD)Moldovan Leu (MDL)Malagasy Ariary (MGA)Myanmar Kyat (MMK)Macedonian Denar (MKD)Macanese Pataca (MOP)Mauritian Rupee (MUR)Maldivian Rufiyaa (MVR)Malawian Kwacha (MWK)Mexican Peso (MXN)Malaysian Ringgit (MYR)Mozambican Metical (MZN)Namibian Dollar (NAD)Nepalese Rupee (NPR)New Zealand Dollar (NZD)Nicaraguan Cordoba (NIO)Norwegian Krone (NOK)Omani Rial (OMR)Panamanian Balboa (PAB)Pakistani Rupee (PKR)Papua New Guinean Kina (PGK)Peruvian Nuevo Sol (PEN)Philippine Peso (PHP)Polish Zloty (PLN)Qatari Rial (QAR)Romanian Leu (RON)Russian Ruble (RUB)Rwandan Franc (RWF)Saudi Riyal (SAR)Sao Tome and Principe Dobra (STD)Serbian Dinar (RSD)Seychellois Rupee (SCR)Singapore Dollar (SGD)Syrian Pound (SYP)Swedish Krona (SEK)New Taiwan Dollar (TWD)Thai Baht (THB)Tanzanian Shilling (TZS)Trinidad and Tobago Dollar (TTD)Tunisian Dinar (TND)Turkish Lira (TRY)Solomon Islands Dollar (SBD)Sudanese Pound (SDG)Sierra Leonean Leone (SLL)Surinamese Dollar (SRD)Swazi Lilangeni (SZL)Tajikistani Somoni (TJS)Tongan Paanga (TOP)Turkmenistani Manat (TMT)Ukrainian Hryvnia (UAH)Ugandan Shilling (UGX)Uruguayan Peso (UYU)Uzbekistan Som (UZS)Venezuelan Bolivar (VEF)Vietnamese Dong (VND)Vanuatu Vatu (VUV)Samoan Tala (WST)Central African CFA Franc (XAF)CFP Franc (XPF)Yemeni Rial (YER)South African Rand (ZAR) USD * US Dollar (USD) * Euro (EUR) * British Pound (GBP) * Canadian Dollar (CAD) * United Arab Emirates Dirham (AED) * Albanian Lek (ALL) * Afghan Afghani (AFN) * Armenian Dram (AMD) * Angolan Kwanza (AOA) * Argentine Peso (ARS) * Australian Dollar (AUD) * Aruban Florin (AWG) * Azerbaijani Manat (AZN) * Burundian Franc (BIF) * Barbadian Dollar (BBD) * Bangladeshi Taka (BDT) * Bahamian Dollar (BSD) * Bahraini Dinar (BHD) * Bermudan Dollar (BMD) * Belarusian Ruble (BYN) * Belize Dollar (BZD) * Bhutanese Ngultrum (BTN) * Bosnia-Herzegovina Convertible Mark (BAM) * Brazilian Real (BRL) * Bolivian Boliviano (BOB) * Botswanan Pula (BWP) * Brunei Dollar (BND) * Bulgarian Lev (BGN) * Congolese Franc (CDF) * Swiss Franc (CHF) * Chilean Peso (CLP) * Chinese Yuan (CNY) * Colombian Peso (COP) * Costa Rican Colon (CRC) * Czech Republic Koruna (CZK) * Djiboutian Franc (DJF) * Danish Krone (DKK) * Dominican Peso (DOP) * Algerian Dinar (DZD) * Egyptian Pound (EGP) * Ethiopian Birr (ETB) * Fijian Dollar (FJD) * Falkland Islands Pound (FKP) * Gibraltar Pound (GIP) * Ghanaian Cedi (GHS) * Gambian Dalasi (GMD) * Guinean Franc (GNF) * Guatemalan Quetzal (GTQ) * Georgian Lari (GEL) * Croatian Kuna (HRK) * Honduran Lempira (HNL) * Hong Kong Dollar (HKD) * Haitian Gourde (HTG) * Hungarian Forint (HUF) * Indonesian Rupiah (IDR) * Israeli New Shekel (ILS) * Icelandic Krona (ISK) * Indian Rupee (INR) * Iraqi Dinar (IQD) * Iranian Rial (IRR) * Jamaican Dollar (JMD) * Japanese Yen (JPY) * Jordanian Dinar (JOD) * Kenyan Shilling (KES) * Kyrgystani Som (KGS) * Cambodian Riel (KHR) * Comorian Franc (KMF) * South Korean Won (KRW) * Kuwaiti Dinar (KWD) * Cayman Islands Dollar (KYD) * Kazakhstani Tenge (KZT) * Lebanese Pound (LBP) * Sri Lankan Rupee (LKR) * Liberian Dollar (LRD) * Lesotho Loti (LSL) * Libyan Dinar (LYD) * Moroccan Dirham (MAD) * Moldovan Leu (MDL) * Malagasy Ariary (MGA) * Myanmar Kyat (MMK) * Macedonian Denar (MKD) * Macanese Pataca (MOP) * Mauritian Rupee (MUR) * Maldivian Rufiyaa (MVR) * Malawian Kwacha (MWK) * Mexican Peso (MXN) * Malaysian Ringgit (MYR) * Mozambican Metical (MZN) * Namibian Dollar (NAD) * Nepalese Rupee (NPR) * New Zealand Dollar (NZD) * Nicaraguan Cordoba (NIO) * Norwegian Krone (NOK) * Omani Rial (OMR) * Panamanian Balboa (PAB) * Pakistani Rupee (PKR) * Papua New Guinean Kina (PGK) * Peruvian Nuevo Sol (PEN) * Philippine Peso (PHP) * Polish Zloty (PLN) * Qatari Rial (QAR) * Romanian Leu (RON) * Russian Ruble (RUB) * Rwandan Franc (RWF) * Saudi Riyal (SAR) * Sao Tome and Principe Dobra (STD) * Serbian Dinar (RSD) * Seychellois Rupee (SCR) * Singapore Dollar (SGD) * Syrian Pound (SYP) * Swedish Krona (SEK) * New Taiwan Dollar (TWD) * Thai Baht (THB) * Tanzanian Shilling (TZS) * Trinidad and Tobago Dollar (TTD) * Tunisian Dinar (TND) * Turkish Lira (TRY) * Solomon Islands Dollar (SBD) * Sudanese Pound (SDG) * Sierra Leonean Leone (SLL) * Surinamese Dollar (SRD) * Swazi Lilangeni (SZL) * Tajikistani Somoni (TJS) * Tongan Paanga (TOP) * Turkmenistani Manat (TMT) * Ukrainian Hryvnia (UAH) * Ugandan Shilling (UGX) * Uruguayan Peso (UYU) * Uzbekistan Som (UZS) * Venezuelan Bolivar (VEF) * Vietnamese Dong (VND) * Vanuatu Vatu (VUV) * Samoan Tala (WST) * Central African CFA Franc (XAF) * CFP Franc (XPF) * Yemeni Rial (YER) * South African Rand (ZAR) 25% off your First Order As a welcome gift, you get 25% off and Free Shipping when you sign up for Desi Deals. Enter your email address and start saving today. Claim discount You are signing up to receive communication via email and can unsubscribe at any time.