www.haengemattengigant.de
Open in
urlscan Pro
86.109.17.246
Public Scan
Submitted URL: https://xn--hngemattegigant-0kb.de/
Effective URL: https://www.haengemattengigant.de/
Submission: On December 13 via api from US — Scanned from DE
Effective URL: https://www.haengemattengigant.de/
Submission: On December 13 via api from US — Scanned from DE
Form analysis
27 forms found in the DOMGET https://www.haengemattengigant.de/catalogsearch/result/
<form class="form minisearch" id="search_mini_form" action="https://www.haengemattengigant.de/catalogsearch/result/" method="get" role="search">
<div class="relative">
<label class="sr-only" for="search"> Wonach suchen Sie? </label>
<input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" x-model="searchText" type="text"
class="block px-2 py-3 pl-8 pr-10 w-full leading-normal transition focus:ring-primary focus:border-primary leading-4 italic border border-default-gray header-search-input" autocapitalize="off" autocomplete="off" autocorrect="off" name="q"
value="" placeholder="Wonach suchen Sie?" maxlength="128" @search-open.window.debounce.10="
$el.focus();
$el.select();
">
<button type="submit" class="absolute left-0 top-1/2 transform -translate-y-1/2 p-2.5 text-sm font-medium flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none" class="text-title-color search-icon" role="img">
<g opacity="0.65" clip-path="url(#clip0_2210_6983)">
<path
d="M11.5 6.5C11.5 5.17392 10.9732 3.90215 10.0355 2.96447C9.09785 2.02678 7.82608 1.5 6.5 1.5C5.17392 1.5 3.90215 2.02678 2.96447 2.96447C2.02678 3.90215 1.5 5.17392 1.5 6.5C1.5 7.82608 2.02678 9.09785 2.96447 10.0355C3.90215 10.9732 5.17392 11.5 6.5 11.5C7.82608 11.5 9.09785 10.9732 10.0355 10.0355C10.9732 9.09785 11.5 7.82608 11.5 6.5ZM10.5344 11.5969C9.42813 12.475 8.025 13 6.5 13C2.90937 13 0 10.0906 0 6.5C0 2.90937 2.90937 0 6.5 0C10.0906 0 13 2.90937 13 6.5C13 8.025 12.475 9.42813 11.5969 10.5344L15.7812 14.7188C16.075 15.0125 16.075 15.4875 15.7812 15.7781C15.4875 16.0688 15.0125 16.0719 14.7219 15.7781L10.5344 11.5969Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6983">
<rect width="16" height="16" fill="white"></rect>
</clipPath>
</defs>
<title>search</title>
</svg>
<span class="sr-only">Suche</span>
</button>
<template x-if="searchText.length > 0">
<button type="button" @click="searchText = ''; show = false;" class="absolute right-0 top-1/2 transform -translate-y-1/2 p-2.5 text-sm font-medium text-white flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-title-color search-close-icon" width="16" height="16" role="img">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"></path>
<title>x</title>
</svg>
<span class="sr-only">Schließen</span>
</button>
</template>
</div>
<div id="search_autocomplete" class="search-autocomplete relative w-full" x-show="show" style="display: none;">
<div class="absolute bg-white z-50 w-full grid grid-cols-1">
<template x-for="searchResultByType in Object.values(searchResultsByType)">
<div class="lg:p-2 border-t border-x border-default-gray last:border-b">
<template x-if="searchResultByType.hasOwnProperty(0) && templates[searchResultByType[0].type].title && templates[searchResultByType[0].type].titleRenderer === undefined">
<div class="font-bold pt-2 pl-2 text-center text-lg" x-text="templates[searchResultByType[0].type].title"></div>
</template>
<template x-if="searchResultByType.hasOwnProperty(0) && templates[searchResultByType[0].type].titleRenderer !== undefined">
<div class="font-bold pt-2 pl-2 text-center text-lg" x-text="window[templates[searchResultByType[0].type].titleRenderer](searchResultByType)"></div>
</template>
<template x-for="searchResult in searchResultByType">
<div>
<template x-if="searchResult.type == 'term'">
<a class="w-full block p-2" x-bind:href="'https://www.haengemattengigant.de/catalogsearch/result/?q=' + searchResult.title" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-sm" x-text="'(' + searchResult.num_results + ')'"></span>
</a>
</template>
<template x-if="searchResult.type == 'product'">
<a class="w-full block" :href="searchResult.url" :title="searchResult.title">
<div class="flex gap-3 p-2">
<div class="flex-none">
<img :src="searchResult.image" class="inline-block w-[50px] h-[50px]" width="200" height="200">
</div>
<div>
<p class="font-bold !leading-4 mb-1" x-text="searchResult.title"></p>
<p x-html="searchResult.price"></p>
</div>
</div>
</a>
</template>
<template x-if="searchResult.type == 'category'">
<a class="w-full p-2 flex gap-2 items-center" :href="searchResult.url" :title="searchResult.title">
<template x-if="searchResult.breadcrumb.length > 0">
<span class="block opacity-50" x-text="searchResult.breadcrumb.join(' > ').concat(' > ')"></span>
</template>
<span x-text="searchResult.title"></span>
</a>
</template>
<template x-if="searchResult.type == 'product_attribute'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-xs uppercase text-gray-500" x-text="searchResult.attribute_label" style="vertical-align: super;"></span>
</a>
</template>
<template x-if="searchResult.type == 'cms_page'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
</a>
</template>
</div>
</template>
</div>
</template>
</div>
</div>
</form>
POST
<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form">
<div class="fieldset login">
<div class="field email required">
<label class="label" for="form-login-username" form="login-form">
<span>E-Mail-Addresse</span>
</label>
<div class="control">
<input name="username" id="form-login-username" x-ref="customer-email" @change="errors = 0" type="email" required="" autocomplete="off" class="form-input input-text">
</div>
</div>
<div class="field password required">
<label for="form-login-password" class="label" form="login-form">
<span>Passwort</span>
</label>
<div class="control">
<input name="password" id="form-login-password" type="password" class="form-input input-text" required="" x-ref="customer-password" autocomplete="off" @change="errors = 0">
</div>
</div>
<input name="context" type="hidden" value="checkout">
<div class="actions-toolbar flex justify-between pt-6 pb-2 items-center">
<button type="submit" class="inline-flex btn btn-primary disabled:opacity-75"> Anmelden </button>
<a href="https://www.haengemattengigant.de/customer/account/forgotpassword/">
Passwort vergessen? </a>
</div>
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1121/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1121/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1121">
<a href="https://www.haengemattengigant.de/hangematte-doppel-salvora-double" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1121.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/QRbNX36k4CFDwwap56uhflRFfg5WVpra7fhYbIuUHpg/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1zYWx2b3JhLWRvdWJsZS0wMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'Salvora' Double" title="Hängematte Doppel 'Salvora' Double" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-salvora-double" :id="`slide-desc-1121-${$id('slider-id')}`">
Hängematte Doppel 'Salvora' Double </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1121675b7acff056a()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027Salvora\u0027\u0020Double\u0020rating.\u00204.8\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027Salvora\u0027\u0020Double\u0020rating.\u00204.8\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="3 0 20 20" fill="currentColor" class="w-6 h-6" aria-hidden="true">
<defs>
<linearGradient id="partialFill1121">
<stop offset="0%" stop-color="var(--color-star)"></stop>
<stop offset="80%" stop-color="var(--color-star)"></stop>
<stop offset="80%" stop-color="var(--default-gray-color)"></stop>
<stop offset="100%" stop-color="var(--default-gray-color)"></stop>
</linearGradient>
</defs>
<g fill="url(#partialFill1121)">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969
0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1
0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</g>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7acfeaef6()" x-defer="intersect" @update-prices-1121.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1121" data-price-box="product-id-1121">
<span x-data="" x-id="['product\u002Dprice\u002D1121']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1121')" data-price-amount="79" data-price-type="finalPrice" class="price-wrapper "><span class="price">79<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;Salvora&#039; Double">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_2)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_2">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1121" data-item_name="Hängematte Doppel 'Salvora' Double" data-item_id="123-0120112" data-price="79" data-product_id="1121" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1120/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1120/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1120">
<a href="https://www.haengemattengigant.de/hangematte-doppel-tura-double" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1120.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/2W_FbpMzf3jpmmL4AGa_dvRHrP2BUifgUro1Uea0YSU/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay10dXJhLWRvdWJsZS0wMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'Tura' Double" title="Hängematte Doppel 'Tura' Double" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-tura-double" :id="`slide-desc-1120-${$id('slider-id')}`">
Hängematte Doppel 'Tura' Double </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1120675b7ad000b17()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027Tura\u0027\u0020Double\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027Tura\u0027\u0020Double\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7acff31d2()" x-defer="intersect" @update-prices-1120.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1120" data-price-box="product-id-1120">
<span x-data="" x-id="['product\u002Dprice\u002D1120']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1120')" data-price-amount="79" data-price-type="finalPrice" class="price-wrapper "><span class="price">79<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;Tura&#039; Double">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_3)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_3">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1120" data-item_name="Hängematte Doppel 'Tura' Double" data-item_id="123-0120111" data-price="79" data-product_id="1120" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1119/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1119/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1119">
<a href="https://www.haengemattengigant.de/hangematte-doppel-gomera-double" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1119.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/ZNlfXy2tFTxPoz9XMvMAfiPgqV66ZcjqoWKNfVJ4Dqo/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1nb21vcmEtZG91YmxlLTAxLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'Gomera' Double" title="Hängematte Doppel 'Gomera' Double" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-gomera-double" :id="`slide-desc-1119-${$id('slider-id')}`">
Hängematte Doppel 'Gomera' Double </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1119675b7ad003dd6()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027Gomera\u0027\u0020Double\u0020rating.\u00204.85\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027Gomera\u0027\u0020Double\u0020rating.\u00204.85\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="3 0 20 20" fill="currentColor" class="w-6 h-6" aria-hidden="true">
<defs>
<linearGradient id="partialFill1119">
<stop offset="0%" stop-color="var(--color-star)"></stop>
<stop offset="85%" stop-color="var(--color-star)"></stop>
<stop offset="85%" stop-color="var(--default-gray-color)"></stop>
<stop offset="100%" stop-color="var(--default-gray-color)"></stop>
</linearGradient>
</defs>
<g fill="url(#partialFill1119)">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969
0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1
0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</g>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad0021a6()" x-defer="intersect" @update-prices-1119.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1119" data-price-box="product-id-1119">
<span x-data="" x-id="['product\u002Dprice\u002D1119']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1119')" data-price-amount="79" data-price-type="finalPrice" class="price-wrapper "><span class="price">79<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;Gomera&#039; Double">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_4)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_4">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1119" data-item_name="Hängematte Doppel 'Gomera' Double" data-item_id="123-0120110" data-price="79" data-product_id="1119" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1118/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1118/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1118">
<a href="https://www.haengemattengigant.de/hangematte-doppel-lobos-double" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1118.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/SFYtp06gdEUI8zpJ17y463g6IBp1JGae1b8jaJTDdk4/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1sb2Jvcy1kb3VibGUtMDEuanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'Lobos' Double" title="Hängematte Doppel 'Lobos' Double" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-lobos-double" :id="`slide-desc-1118-${$id('slider-id')}`">
Hängematte Doppel 'Lobos' Double </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1118675b7ad006ec7()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027Lobos\u0027\u0020Double\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027Lobos\u0027\u0020Double\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad00542f()" x-defer="intersect" @update-prices-1118.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1118" data-price-box="product-id-1118">
<span x-data="" x-id="['product\u002Dprice\u002D1118']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1118')" data-price-amount="79" data-price-type="finalPrice" class="price-wrapper "><span class="price">79<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;Lobos&#039; Double">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_5)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_5">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1118" data-item_name="Hängematte Doppel 'Lobos' Double" data-item_id="123-0120109" data-price="79" data-product_id="1118" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1147/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1147/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1147">
<a href="https://www.haengemattengigant.de/hangesessel-single-salvora-single" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1147.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/lMc2PVNd9kbgDW-y_64YWnqEFG_PWf19GxLEHatMmi8/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZ2NoYWlyLXNhbHZvcmEtMDEuanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Salvora' Single" title="Hängesessel Single 'Salvora' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-salvora-single" :id="`slide-desc-1147-${$id('slider-id')}`">
Hängesessel Single 'Salvora' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1147675b7ad00f822()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngesessel\u0020Single\u0020\u0027Salvora\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngesessel\u0020Single\u0020\u0027Salvora\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad00db4d()" x-defer="intersect" @update-prices-1147.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1147" data-price-box="product-id-1147">
<span x-data="" x-id="['product\u002Dprice\u002D1147']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1147')" data-price-amount="89" data-price-type="finalPrice" class="price-wrapper "><span class="price">89<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Salvora&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_6)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_6">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1147" data-item_name="Hängesessel Single 'Salvora' Single" data-item_id="123-0210112" data-price="89" data-product_id="1147" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1146/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1146/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1146">
<a href="https://www.haengemattengigant.de/hangesessel-single-tura-single" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1146.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/HB44llcLrmZs7xCXum4lra7JUB77C0rxuotiRwMfxFI/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZ2NoYWlyLXR1cmEtMDEuanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Tura' Single" title="Hängesessel Single 'Tura' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-tura-single" :id="`slide-desc-1146-${$id('slider-id')}`">
Hängesessel Single 'Tura' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1146675b7ad012de8()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngesessel\u0020Single\u0020\u0027Tura\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngesessel\u0020Single\u0020\u0027Tura\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad011173()" x-defer="intersect" @update-prices-1146.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1146" data-price-box="product-id-1146">
<span x-data="" x-id="['product\u002Dprice\u002D1146']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1146')" data-price-amount="89" data-price-type="finalPrice" class="price-wrapper "><span class="price">89<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Tura&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_7)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_7">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1146" data-item_name="Hängesessel Single 'Tura' Single" data-item_id="123-0210111" data-price="89" data-product_id="1146" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1145/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1145/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1145">
<a href="https://www.haengemattengigant.de/hangesessel-single-gomera-single" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1145.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/HgS0LmKzfdTuuGDT7gMF88b1KVlNMYhAbgx7HR9bN-M/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZ2NoYWlyLWdvbW9yYS0wMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Gomera' Single" title="Hängesessel Single 'Gomera' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-gomera-single" :id="`slide-desc-1145-${$id('slider-id')}`">
Hängesessel Single 'Gomera' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1145675b7ad01602c()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngesessel\u0020Single\u0020\u0027Gomera\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngesessel\u0020Single\u0020\u0027Gomera\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad0144fb()" x-defer="intersect" @update-prices-1145.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1145" data-price-box="product-id-1145">
<span x-data="" x-id="['product\u002Dprice\u002D1145']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1145')" data-price-amount="89" data-price-type="finalPrice" class="price-wrapper "><span class="price">89<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Gomera&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_8)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_8">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1145" data-item_name="Hängesessel Single 'Gomera' Single" data-item_id="123-0210110" data-price="89" data-product_id="1145" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1144/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1144/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1144">
<a href="https://www.haengemattengigant.de/hangesessel-single-lobos-single" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1144.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/tf5-rTMwy76ilef8ijxb9IW2K8noB_f-z84o2pS4RUA/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZ2NoYWlyLWxvYm9zLTAxLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Lobos' Single" title="Hängesessel Single 'Lobos' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-lobos-single" :id="`slide-desc-1144-${$id('slider-id')}`">
Hängesessel Single 'Lobos' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1144675b7ad01934c()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngesessel\u0020Single\u0020\u0027Lobos\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngesessel\u0020Single\u0020\u0027Lobos\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad01782e()" x-defer="intersect" @update-prices-1144.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1144" data-price-box="product-id-1144">
<span x-data="" x-id="['product\u002Dprice\u002D1144']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1144')" data-price-amount="89" data-price-type="finalPrice" class="price-wrapper "><span class="price">89<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Lobos&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_9)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_9">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1144" data-item_name="Hängesessel Single 'Lobos' Single" data-item_id="123-0210109" data-price="89" data-product_id="1144" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1558/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1558/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1558">
<a href="https://www.haengemattengigant.de/hammock-set-1-person-minorca-single" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1558.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/_6JB7Kaj0U-zSIPlhwfAFyYXp-1aqqQagwjLCwLz0Yg/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1taW5vcmNhLXNpbmdsZS0wNV8xLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenset Single 'Minorca' Single" title="Hängemattenset Single 'Minorca' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hammock-set-1-person-minorca-single" :id="`slide-desc-1558-${$id('slider-id')}`">
Hängemattenset Single 'Minorca' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad02015e()" x-defer="intersect" @update-prices-1558.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1558" data-price-box="product-id-1558">
<span class="special-price">
<span x-data="" x-id="['product\u002Dprice\u002D1558']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Sonderangebot</span>
<span :id="$id('product\u002Dprice\u002D1558')" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">99<span>,-</span></span></span>
</span>
</span>
<span class="old-price">
<span x-data="" x-id="['old\u002Dprice\u002D1558']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Regulärer Preis</span>
<span :id="$id('old\u002Dprice\u002D1558')" data-price-amount="178" data-price-type="oldPrice" class="price-wrapper "><span class="price">178<span>,-</span></span></span>
</span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenset Single &#039;Minorca&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_10)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_10">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1558" data-item_name="Hängemattenset Single 'Minorca' Single" data-item_id="123-1610104" data-price="99" data-product_id="1558" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1075/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1075/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1075">
<a href="https://www.haengemattengigant.de/hammockset-rustic-single-2" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1075.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/VKcSAE5PcAs6sbogaJ-vPwTC-oxWLgdW_1abI__ncEs/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1tdWx0aS1zaW5nbGUtMDVfMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenset Single 'Multi' Single" title="Hängemattenset Single 'Multi' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hammockset-rustic-single-2" :id="`slide-desc-1075-${$id('slider-id')}`">
Hängemattenset Single 'Multi' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1075675b7ad02532f()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngemattenset\u0020Single\u0020\u0027Multi\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngemattenset\u0020Single\u0020\u0027Multi\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad023821()" x-defer="intersect" @update-prices-1075.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1075" data-price-box="product-id-1075">
<span class="special-price">
<span x-data="" x-id="['product\u002Dprice\u002D1075']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Sonderangebot</span>
<span :id="$id('product\u002Dprice\u002D1075')" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">99<span>,-</span></span></span>
</span>
</span>
<span class="old-price">
<span x-data="" x-id="['old\u002Dprice\u002D1075']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Regulärer Preis</span>
<span :id="$id('old\u002Dprice\u002D1075')" data-price-amount="178" data-price-type="oldPrice" class="price-wrapper "><span class="price">178<span>,-</span></span></span>
</span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenset Single &#039;Multi&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_11)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_11">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1075" data-item_name="Hängemattenset Single 'Multi' Single" data-item_id="123-1610103" data-price="99" data-product_id="1075" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1074/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1074/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1074">
<a href="https://www.haengemattengigant.de/hammockset-rustic-single-1" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1074.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/jUrcEtfRZgac3X5_Upm3pQ5jDNAz29Kurao1zFSUDAQ/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1waW5lLXNpbmdsZS0wNl8xLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenset Single 'Pine' Single" title="Hängemattenset Single 'Pine' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hammockset-rustic-single-1" :id="`slide-desc-1074-${$id('slider-id')}`">
Hängemattenset Single 'Pine' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1074675b7ad028583()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngemattenset\u0020Single\u0020\u0027Pine\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngemattenset\u0020Single\u0020\u0027Pine\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad026af3()" x-defer="intersect" @update-prices-1074.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1074" data-price-box="product-id-1074">
<span class="special-price">
<span x-data="" x-id="['product\u002Dprice\u002D1074']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Sonderangebot</span>
<span :id="$id('product\u002Dprice\u002D1074')" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">99<span>,-</span></span></span>
</span>
</span>
<span class="old-price">
<span x-data="" x-id="['old\u002Dprice\u002D1074']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Regulärer Preis</span>
<span :id="$id('old\u002Dprice\u002D1074')" data-price-amount="178" data-price-type="oldPrice" class="price-wrapper "><span class="price">178<span>,-</span></span></span>
</span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenset Single &#039;Pine&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_12)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_12">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1074" data-item_name="Hängemattenset Single 'Pine' Single" data-item_id="123-1610102" data-price="99" data-product_id="1074" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1073/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1073/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1073">
<a href="https://www.haengemattengigant.de/hammockset-rustic-single" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1073.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/wJF9tZdynX-5fQCarhiuyMSu141j3JRj7-aUZk8ko9U/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1ydXN0aWMtc2luZ2xlLTA2XzEuanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenset Single 'Rustic' Single" title="Hängemattenset Single 'Rustic' Single" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hammockset-rustic-single" :id="`slide-desc-1073-${$id('slider-id')}`">
Hängemattenset Single 'Rustic' Single </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1073675b7ad02b909()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngemattenset\u0020Single\u0020\u0027Rustic\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngemattenset\u0020Single\u0020\u0027Rustic\u0027\u0020Single\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad029d5d()" x-defer="intersect" @update-prices-1073.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1073" data-price-box="product-id-1073">
<span class="special-price">
<span x-data="" x-id="['product\u002Dprice\u002D1073']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Sonderangebot</span>
<span :id="$id('product\u002Dprice\u002D1073')" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">99<span>,-</span></span></span>
</span>
</span>
<span class="old-price">
<span x-data="" x-id="['old\u002Dprice\u002D1073']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Regulärer Preis</span>
<span :id="$id('old\u002Dprice\u002D1073')" data-price-amount="178" data-price-type="oldPrice" class="price-wrapper "><span class="price">178<span>,-</span></span></span>
</span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenset Single &#039;Rustic&#039; Single">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_13)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_13">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1073" data-item_name="Hängemattenset Single 'Rustic' Single" data-item_id="123-1610101" data-price="99" data-product_id="1073" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/949/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/949/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="949">
<a href="https://www.haengemattengigant.de/abdeckung-hammock-sleeve" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-949.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/kZVWqlDjHqEj55EUogTXhsC-MeKNdlnn8cJko1KO194/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1zbGVldmUtMDEuanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Abdeckung 'Hammock Sleeve' " title="Abdeckung 'Hammock Sleeve' " x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/abdeckung-hammock-sleeve" :id="`slide-desc-949-${$id('slider-id')}`">
Abdeckung 'Hammock Sleeve' </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating949675b7ad034d2d()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'Abdeckung\u0020\u0027Hammock\u0020Sleeve\u0027\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'Abdeckung\u0020\u0027Hammock\u0020Sleeve\u0027\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad032e5e()" x-defer="intersect" @update-prices-949.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="949" data-price-box="product-id-949">
<span x-data="" x-id="['product\u002Dprice\u002D949']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D949')" data-price-amount="24" data-price-type="finalPrice" class="price-wrapper "><span class="price">24<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Abdeckung &#039;Hammock Sleeve&#039;">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_14)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_14">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-949" data-item_name="Abdeckung 'Hammock Sleeve'" data-item_id="TR-0715301" data-price="24" data-product_id="949" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/944/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/944/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="944">
<a href="https://www.haengemattengigant.de/hangemattenbefestigung-tree-strap" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-944.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/SxWSoBBtIP3StB7rJUdWSaQaH-CNONdUoPS-CYRk268/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1maXhpbmctdHJlZS1zdHJhcC0wMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenbefestigung 'Tree Strap' " title="Hängemattenbefestigung 'Tree Strap' " x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangemattenbefestigung-tree-strap" :id="`slide-desc-944-${$id('slider-id')}`">
Hängemattenbefestigung 'Tree Strap' </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating944675b7a30c3de3()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngemattenbefestigung\u0020\u0027Tree\u0020Strap\u0027\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngemattenbefestigung\u0020\u0027Tree\u0020Strap\u0027\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7a30c19ce()" x-defer="intersect" @update-prices-944.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="944" data-price-box="product-id-944">
<span x-data="" x-id="['product\u002Dprice\u002D944']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D944')" data-price-amount="24" data-price-type="finalPrice" class="price-wrapper "><span class="price">24<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenbefestigung &#039;Tree Strap&#039;">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_24)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_24">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-944" data-item_name="Hängemattenbefestigung 'Tree Strap'" data-item_id="TR-06055101" data-price="24" data-product_id="944" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/773/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/773/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="773">
<a href="https://www.haengemattengigant.de/hangemattenbefestigung-simple-black" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-773.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/9aDphNK7DhxkQ2hyaSb_9fBeQyhzSh2jwnsbkDNnmUU/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1maXhpbmdzZXQtc2ltcGxlLWJsYWNrLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenbefestigung 'Simple' Black" title="Hängemattenbefestigung 'Simple' Black" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangemattenbefestigung-simple-black" :id="`slide-desc-773-${$id('slider-id')}`">
Hängemattenbefestigung 'Simple' Black </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating773675b7a30bd2d2()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngemattenbefestigung\u0020\u0027Simple\u0027\u0020Black\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngemattenbefestigung\u0020\u0027Simple\u0027\u0020Black\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7a30bb00e()" x-defer="intersect" @update-prices-773.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="773" data-price-box="product-id-773">
<span x-data="" x-id="['product\u002Dprice\u002D773']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D773')" data-price-amount="24" data-price-type="finalPrice" class="price-wrapper "><span class="price">24<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenbefestigung &#039;Simple&#039; Black">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_22)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_22">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-773" data-item_name="Hängemattenbefestigung 'Simple' Black" data-item_id="TR-06040102" data-price="24" data-product_id="773" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/772/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/772/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="772">
<a href="https://www.haengemattengigant.de/hangemattenbefestigung-complete-black" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-772.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/G3BNdcjdncXog3hq0r0H2DZtECogMjTBe_oJ35UewQU/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1maXhpbmdzZXQtY29tcGxldGUtYmxhY2suanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängemattenbefestigung 'Complete' Black" title="Hängemattenbefestigung 'Complete' Black" x-ignore="">
</a>
<div class="absolute top-6 left-4">
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangemattenbefestigung-complete-black" :id="`slide-desc-772-${$id('slider-id')}`">
Hängemattenbefestigung 'Complete' Black </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating772675b7a30b2cd6()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngemattenbefestigung\u0020\u0027Complete\u0027\u0020Black\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngemattenbefestigung\u0020\u0027Complete\u0027\u0020Black\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7a30b0998()" x-defer="intersect" @update-prices-772.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="772" data-price-box="product-id-772">
<span x-data="" x-id="['product\u002Dprice\u002D772']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D772')" data-price-amount="29" data-price-type="finalPrice" class="price-wrapper "><span class="price">29<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängemattenbefestigung &#039;Complete&#039; Black">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_19)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_19">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-772" data-item_name="Hängemattenbefestigung 'Complete' Black" data-item_id="TR-06040104" data-price="29" data-product_id="772" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1053/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1053/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1053">
<a href="https://www.haengemattengigant.de/hangesessel-single-organic-natura" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1053.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/549M5dT5CSEvXnB5FNwx_GOC05UfsZjiL--XU00XQuI/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZy1jaGFpci1vcmdhbmljLW5hdHVyYS0wMV8xLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Organic' Natura" title="Hängesessel Single 'Organic' Natura" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-organic-natura" :id="`slide-desc-1053-${$id('slider-id')}`">
Hängesessel Single 'Organic' Natura </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1053675b7ad0a45a5()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngesessel\u0020Single\u0020\u0027Organic\u0027\u0020Natura\u0020rating.\u00204.8\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngesessel\u0020Single\u0020\u0027Organic\u0027\u0020Natura\u0020rating.\u00204.8\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="3 0 20 20" fill="currentColor" class="w-6 h-6" aria-hidden="true">
<defs>
<linearGradient id="partialFill1053">
<stop offset="0%" stop-color="var(--color-star)"></stop>
<stop offset="80%" stop-color="var(--color-star)"></stop>
<stop offset="80%" stop-color="var(--default-gray-color)"></stop>
<stop offset="100%" stop-color="var(--default-gray-color)"></stop>
</linearGradient>
</defs>
<g fill="url(#partialFill1053)">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969
0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1
0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</g>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad0a27b0()" x-defer="intersect" @update-prices-1053.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1053" data-price-box="product-id-1053">
<span x-data="" x-id="['product\u002Dprice\u002D1053']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1053')" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">99<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Organic&#039; Natura">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_15)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_15">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1053" data-item_name="Hängesessel Single 'Organic' Natura" data-item_id="TR-0218101" data-price="99" data-product_id="1053" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1027/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1027/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1027">
<a href="https://www.haengemattengigant.de/hangematte-doppel-rainbow-double" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1027.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/IpsC-dRVjPnic5WRaSgEpaShJXH1Stj3cJrm6NGUFwE/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1yYWluYm93LWRvdWJsZS0wMV8xLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'Rainbow' Double" title="Hängematte Doppel 'Rainbow' Double" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-rainbow-double" :id="`slide-desc-1027-${$id('slider-id')}`">
Hängematte Doppel 'Rainbow' Double </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1027675b7ad0a79ca()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027Rainbow\u0027\u0020Double\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027Rainbow\u0027\u0020Double\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad0a5de5()" x-defer="intersect" @update-prices-1027.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1027" data-price-box="product-id-1027">
<span x-data="" x-id="['product\u002Dprice\u002D1027']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1027')" data-price-amount="89" data-price-type="finalPrice" class="price-wrapper "><span class="price">89<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;Rainbow&#039; Double">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_16)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_16">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1027" data-item_name="Hängematte Doppel 'Rainbow' Double" data-item_id="TR-0128201" data-price="89" data-product_id="1027" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1001/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1001/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1001">
<a href="https://www.haengemattengigant.de/hangematte-doppel-american-grey" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1001.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/WLIOnDy_qoVz-agNPxOrzGVZnlTSyVZNN3p1ExlYeAU/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1hbWVyaWNhbi1ncmV5LTAxeC5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'American' Grey" title="Hängematte Doppel 'American' Grey" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-american-grey" :id="`slide-desc-1001-${$id('slider-id')}`">
Hängematte Doppel 'American' Grey </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1001675b7ad0aac1a()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027American\u0027\u0020Grey\u0020rating.\u00204.75\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027American\u0027\u0020Grey\u0020rating.\u00204.75\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="3 0 20 20" fill="currentColor" class="w-6 h-6" aria-hidden="true">
<defs>
<linearGradient id="partialFill1001">
<stop offset="0%" stop-color="var(--color-star)"></stop>
<stop offset="75%" stop-color="var(--color-star)"></stop>
<stop offset="75%" stop-color="var(--default-gray-color)"></stop>
<stop offset="100%" stop-color="var(--default-gray-color)"></stop>
</linearGradient>
</defs>
<g fill="url(#partialFill1001)">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969
0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1
0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</g>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad0a9071()" x-defer="intersect" @update-prices-1001.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1001" data-price-box="product-id-1001">
<span x-data="" x-id="['product\u002Dprice\u002D1001']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1001')" data-price-amount="139" data-price-type="finalPrice" class="price-wrapper "><span class="price">139<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;American&#039; Grey">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_17)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_17">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1001" data-item_name="Hängematte Doppel 'American' Grey" data-item_id="TR-0125404" data-price="139" data-product_id="1001" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/882/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/882/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="882">
<a href="https://www.haengemattengigant.de/hangematte-familie-rope-natura" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-882.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/DXcUDaz5RwcNfv4evVnyOBoPiXRathTpPaE3HEXaP4s/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1yb3BlLW5hdHVyYS0xLmpwZz93aWR0aD02NjAmaGVpZ2h0PTY2MCZzdG9yZT1oYW1tb2NrZ2lhbnRfY29tX2RlJmltYWdlLXR5cGU9c21hbGxfaW1hZ2U.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Familie 'Rope' Natura" title="Hängematte Familie 'Rope' Natura" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-familie-rope-natura" :id="`slide-desc-882-${$id('slider-id')}`">
Hängematte Familie 'Rope' Natura </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating882675b7ad0cc2df()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Familie\u0020\u0027Rope\u0027\u0020Natura\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Familie\u0020\u0027Rope\u0027\u0020Natura\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675b7ad0ca5a0()" x-defer="intersect" @update-prices-882.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="882" data-price-box="product-id-882">
<span x-data="" x-id="['product\u002Dprice\u002D882']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D882')" data-price-amount="119" data-price-type="finalPrice" class="price-wrapper "><span class="price">119<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Familie &#039;Rope&#039; Natura">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_18)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_18">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-882" data-item_name="Hängematte Familie 'Rope' Natura" data-item_id="TR-0135301" data-price="119" data-product_id="882" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1322/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1322/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1322">
<a href="https://www.haengemattengigant.de/hangesessel-single-egg-black" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1322.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/QMn8WhjH266w8-8s_q10rD8Ar1tXooDTHmW1Ksue4IA/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZy1jaGFpci1lZ2ctYmxhY2stMDFfMi5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Egg' Black" title="Hängesessel Single 'Egg' Black" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-egg-black" :id="`slide-desc-1322-${$id('slider-id')}`">
Hängesessel Single 'Egg' Black </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675be6b6bc9f0()" x-defer="intersect" @update-prices-1322.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1322" data-price-box="product-id-1322">
<span class="special-price">
<span x-data="" x-id="['product\u002Dprice\u002D1322']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Sonderangebot</span>
<span :id="$id('product\u002Dprice\u002D1322')" data-price-amount="179" data-price-type="finalPrice" class="price-wrapper "><span class="price">179<span>,-</span></span></span>
</span>
</span>
<span class="old-price">
<span x-data="" x-id="['old\u002Dprice\u002D1322']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Regulärer Preis</span>
<span :id="$id('old\u002Dprice\u002D1322')" data-price-amount="199" data-price-type="oldPrice" class="price-wrapper "><span class="price">199<span>,-</span></span></span>
</span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Egg&#039; Black">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_14)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_14">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1322" data-item_name="Hängesessel Single 'Egg' Black" data-item_id="TR-0230101" data-price="179" data-product_id="1322" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1101/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1101/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1101">
<a href="https://www.haengemattengigant.de/hangematte-single-patio-small" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1101.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/ktrZZogmCG-0aSa5e33Bkq15y0_y0SiYeYEltpdx-vQ/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1wYXRpby1zbWFsbC0wMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Single 'Patio' Small" title="Hängematte Single 'Patio' Small" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-single-patio-small" :id="`slide-desc-1101-${$id('slider-id')}`">
Hängematte Single 'Patio' Small </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1101675beb6f6cab7()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Single\u0020\u0027Patio\u0027\u0020Small\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Single\u0020\u0027Patio\u0027\u0020Small\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675beb6f69eb6()" x-defer="intersect" @update-prices-1101.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1101" data-price-box="product-id-1101">
<span class="special-price">
<span x-data="" x-id="['product\u002Dprice\u002D1101']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Sonderangebot</span>
<span :id="$id('product\u002Dprice\u002D1101')" data-price-amount="49" data-price-type="finalPrice" class="price-wrapper "><span class="price">49<span>,-</span></span></span>
</span>
</span>
<span class="old-price">
<span x-data="" x-id="['old\u002Dprice\u002D1101']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span class="price-label">Regulärer Preis</span>
<span :id="$id('old\u002Dprice\u002D1101')" data-price-amount="59" data-price-type="oldPrice" class="price-wrapper "><span class="price">59<span>,-</span></span></span>
</span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Single &#039;Patio&#039; Small">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_12)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_12">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1101" data-item_name="Hängematte Single 'Patio' Small" data-item_id="123-0110201" data-price="49" data-product_id="1101" data-item_brand="123 Hammock" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1054/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/1054/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="1054">
<a href="https://www.haengemattengigant.de/hangesessel-single-organic-jeans" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-1054.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/3IIl59HZrl1Dga6E8mpF7BGKEkIbiuxpO3ZkcLmCgNs/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFuZ2luZy1jaGFpci1vcmdhbmljLWplYW5zLTAxXzEuanBnP3dpZHRoPTY2MCZoZWlnaHQ9NjYwJnN0b3JlPWhhbW1vY2tnaWFudF9jb21fZGUmaW1hZ2UtdHlwZT1zbWFsbF9pbWFnZQ.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängesessel Single 'Organic' Jeans" title="Hängesessel Single 'Organic' Jeans" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangesessel-single-organic-jeans" :id="`slide-desc-1054-${$id('slider-id')}`">
Hängesessel Single 'Organic' Jeans </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating1054675bf13d49714()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngesessel\u0020Single\u0020\u0027Organic\u0027\u0020Jeans\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngesessel\u0020Single\u0020\u0027Organic\u0027\u0020Jeans\u0020rating.\u00205\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675bf13d441c6()" x-defer="intersect" @update-prices-1054.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1054" data-price-box="product-id-1054">
<span x-data="" x-id="['product\u002Dprice\u002D1054']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D1054')" data-price-amount="99" data-price-type="finalPrice" class="price-wrapper "><span class="price">99<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängesessel Single &#039;Organic&#039; Jeans">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_2)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_2">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-1054" data-item_name="Hängesessel Single 'Organic' Jeans" data-item_id="TR-0218102" data-price="99" data-product_id="1054" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
POST https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/814/
<form method="post" action="https://www.haengemattengigant.de/checkout/cart/add/uenc/%25uenc%25/product/814/" class="item product product-item product_addtocart_form card flex flex-col relative ">
<input name="form_key" type="hidden" value="2LYEfxefYrDrOiqX"> <input type="hidden" name="product" value="814">
<a href="https://www.haengemattengigant.de/hangematte-doppel-american-green" class="product photo product-item-photo block mb-4 flex-grow flex justify-center items-center
" tabindex="-1">
<img class="object-contain product-image-photo" x-data="" x-defer="intersect" @update-gallery-814.window="$root.src = $event.detail" src="https://www.haengemattengigant.de/img/nSWc-1W3wojNPM58kCKaTE3D1Fj1KIMVDDDoFwN7jlA/resize:fit:660:660/aHR0cHM6Ly93d3cuaGFlbmdlbWF0dGVuZ2lnYW50LmRlL21lZGlhL2NhdGFsb2cvcHJvZHVjdC9oL2EvaGFtbW9jay1hbWVyaWNhbi1kcmVhbS1ncmVlbi0wMS5qcGc_d2lkdGg9NjYwJmhlaWdodD02NjAmc3RvcmU9aGFtbW9ja2dpYW50X2NvbV9kZSZpbWFnZS10eXBlPXNtYWxsX2ltYWdl.jpg?type=catalog" loading="lazy" width="660" height="660" alt="Hängematte Doppel 'American' Green" title="Hängematte Doppel 'American' Green" x-ignore="">
</a>
<div class="absolute top-6 left-4">
<div class="product-labels flex flex-wrap gap-2 items-center">
<div class="product-label product-label-red" style="background-color: #FFE0E4">
<span class="flex items-center gap-1">
<span>Beliebt</span>
</span>
</div>
</div>
</div>
<div class="product-info flex flex-col">
<div class="mb-4 text-title-color font-medium max-sm:text-sm text-lg text-center product-info-title ">
<a class="product-item-link" href="https://www.haengemattengigant.de/hangematte-doppel-american-green" :id="`slide-desc-814-${$id('slider-id')}`">
Hängematte Doppel 'American' Green </a>
</div>
<div class="rating-stock-row">
<div class="flex max-sm:flex-col max-sm:items-center w-full justify-between mb-4 rating-status-row flex-wrap">
<div class="star-rating mb-3 ">
<div x-data="initRating814675bf041100c6()" x-defer="intersect" @keyup.enter="scrollToRatings()" @click="scrollToRatings()" class="rating-summary flex" :class="{'cursor-pointer' : reviewsSection}" tabindex="0" :aria-label="reviewsSection
? 'H\u00E4ngematte\u0020Doppel\u0020\u0027American\u0027\u0020Green\u0020rating.\u00204.8\u0020out\u0020of\u00205\u0020stars.\u0020Click\u0020to\u0020go\u0020to\u0020reviews.'
: 'H\u00E4ngematte\u0020Doppel\u0020\u0027American\u0027\u0020Green\u0020rating.\u00204.8\u0020out\u0020of\u00205\u0020stars'
" role="group" x-ignore="">
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="fill-current w-6 h-6" viewBox="3 0 20 20" style="color: var(--color-star)" fill="currentColor" aria-hidden="true">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371
1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1
1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="3 0 20 20" fill="currentColor" class="w-6 h-6" aria-hidden="true">
<defs>
<linearGradient id="partialFill814">
<stop offset="0%" stop-color="var(--color-star)"></stop>
<stop offset="80%" stop-color="var(--color-star)"></stop>
<stop offset="80%" stop-color="var(--default-gray-color)"></stop>
<stop offset="100%" stop-color="var(--default-gray-color)"></stop>
</linearGradient>
</defs>
<g fill="url(#partialFill814)">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969
0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54
1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1
0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path>
</g>
</svg>
</div>
</div>
<div class="">
<div class="stock-status-wrapper">
<p class="stock-status-in-stock" title="Verfügbarkeit">
<span class="stock-status-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" fill="none">
<path fill="currentColor" d="m14 1.953-.725.687-7.613 7.21-.687.65-.688-.65L.732 6.486l-.725-.688 1.375-1.452.725.687 2.868 2.715 6.925-6.56.725-.688L14 1.953Z"></path>
</svg>
</span>
<span>Auf Lager</span>
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-row xs:flex-col sm:flex-row flex-wrap justify-center items-center item-price-row">
<div class="pt-1 text-gray-900" x-data="initPriceBox__675bf0410d9e4()" x-defer="intersect" @update-prices-814.window="updatePrice($event.detail);" x-ignore="">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="814" data-price-box="product-id-814">
<span x-data="" x-id="['product\u002Dprice\u002D814']" class="price-container price-final_price tax weee" x-defer="intersect" x-ignore="">
<span :id="$id('product\u002Dprice\u002D814')" data-price-amount="139" data-price-type="finalPrice" class="price-wrapper "><span class="price">139<span>,-</span></span></span>
</span>
</div>
</div>
<button class="w-full btn btn-primary justify-center px-3 py-3 gap-0 item-quick-add-to-cart min-w-[70px]
xs:w-full sm:w-auto sm:ml-auto" aria-label="In den Warenkorb Hängematte Doppel &#039;American&#039; Green">
<span class="product-addtocart-icon flex justify-center items-center gap-1">
<span class="product-addtocart-plus-icon flex">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-white" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4v16m8-8H4"></path>
</svg>
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 23 20" fill="currentColor" class="text-white" aria-hidden="true">
<g clip-path="url(#clip0_2210_6980_16)">
<path
d="M1.4375 0H0.5V1.875H1.4375H3.47266L5.82812 14.2383L5.97266 15H6.75H19.5625H20.5V13.125H19.5625H7.52734L7.17188 11.25H19.875L23 1.25H5.26562L5.17188 0.761719L5.02734 0H4.25H1.4375ZM7.375 20C7.87228 20 8.34919 19.8025 8.70083 19.4508C9.05246 19.0992 9.25 18.6223 9.25 18.125C9.25 17.6277 9.05246 17.1508 8.70083 16.7992C8.34919 16.4475 7.87228 16.25 7.375 16.25C6.87772 16.25 6.40081 16.4475 6.04917 16.7992C5.69754 17.1508 5.5 17.6277 5.5 18.125C5.5 18.6223 5.69754 19.0992 6.04917 19.4508C6.40081 19.8025 6.87772 20 7.375 20ZM20.5 18.125C20.5 17.6277 20.3025 17.1508 19.9508 16.7992C19.5992 16.4475 19.1223 16.25 18.625 16.25C18.1277 16.25 17.6508 16.4475 17.2992 16.7992C16.9475 17.1508 16.75 17.6277 16.75 18.125C16.75 18.6223 16.9475 19.0992 17.2992 19.4508C17.6508 19.8025 18.1277 20 18.625 20C19.1223 20 19.5992 19.8025 19.9508 19.4508C20.3025 19.0992 20.5 18.6223 20.5 18.125Z"
fill="currentColor"></path>
</g>
<defs>
<clipPath id="clip0_2210_6980_16">
<rect width="22.5" height="20" fill="currentColor" transform="translate(0.5)"></rect>
</clipPath>
</defs>
</svg>
</span>
</button>
</div>
</div>
<div data-product="" id="product-data-814" data-item_name="Hängematte Doppel 'American' Green" data-item_id="TR-0125402" data-price="139" data-product_id="814" data-item_brand="Tropilex ®" data-item_category=""
data-item_list_name="Item list on cms_index_index" data-item_list_id="item_list_cms_index_index" ,="" class="hidden">
</div>
</form>
<form id="allow-cookie-form" class="cookie-bar-actions flex w-full md:flex-1 self-center text-center">
<input id="allow-functional-cookies" type="radio" hidden="" class="hidden" name="allowed_cookies" value="false" x-model="allowedAllCookies">
<label id="cookie-bar-button" class="allow-all-cookies-button cookiebar-button btn btn-primary w-full mb-0 justify-center cursor-pointer py-3">
<input type="radio" id="allow-all-cookies" hidden="" class="hidden" name="allowed_cookies" value="true" x-model="allowedAllCookies">
<span>Akzeptieren</span>
</label>
</form>
Text Content
%0A%20%20%20%20%0A%0A%0A%0A%0A%3Ctitle%3EH%C3%A4ngematte%20Kaufen?%20%7C%20+200%20Typen%20H%C3%A4ngematten%20%7C%20H%C3%A4ngematten%20Gigant%3C/title%3E%0A%3Clink%20rel=%22stylesheet%22%20type=%22text/css%22%20media=%22all%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fstatic%252Fversion20241209145019%252Ffrontend%252FVendic%252Fhyva_hammockgiant%252Fde_DE%252Fcss%252Fstyles.min.css%22%3E%0A%0A%3Clink%20rel=%22preload%22%20as=%22font%22%20crossorigin=%22anonymous%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fstatic%252Fversion20241209145019%252Ffrontend%252FVendic%252Fhyva_hammockgiant%252Fde_DE%252Ffonts%252FPoppins-Light.woff2%22%3E%0A%3Clink%20rel=%22preload%22%20as=%22font%22%20crossorigin=%22anonymous%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fstatic%252Fversion20241209145019%252Ffrontend%252FVendic%252Fhyva_hammockgiant%252Fde_DE%252Ffonts%252FPoppins-Regular.woff2%22%3E%0A%3Clink%20rel=%22preload%22%20as=%22font%22%20crossorigin=%22anonymous%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fstatic%252Fversion20241209145019%252Ffrontend%252FVendic%252Fhyva_hammockgiant%252Fde_DE%252Ffonts%252FPoppins-Medium.woff2%22%3E%0A%3Clink%20rel=%22preload%22%20as=%22font%22%20crossorigin=%22anonymous%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fstatic%252Fversion20241209145019%252Ffrontend%252FVendic%252Fhyva_hammockgiant%252Fde_DE%252Ffonts%252FPoppins-SemiBold.woff2%22%3E%0A%3Clink%20rel=%22preload%22%20as=%22font%22%20crossorigin=%22anonymous%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fstatic%252Fversion20241209145019%252Ffrontend%252FVendic%252Fhyva_hammockgiant%252Fde_DE%252Ffonts%252FPoppins-Bold.woff2%22%3E%0A%3Clink%20rel=%22canonical%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22de%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22nl%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hangmatgigant.nl%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22nl-be%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hangmatgigant.be%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22fr%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hamacenligne.fr%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22fr-be%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hamacenligne.be%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22de-at%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.at%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22en%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hammockgiant.com%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22it%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.amacagigante.it%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22pt%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.camaderede.pt%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22da%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengekojebutik.dk%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22sv%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hangmattaonline.se%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22pl%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hamakonline.pl%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22cs%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hamakaonline.cz%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22fi%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.riippumattoverkossa.fi%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22es%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hamacagigante.es%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22en-gb%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hammockgiant.co.uk%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22de-ch%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.ch%252F%22%3E%0A%3Clink%20rel=%22alternate%22%20hreflang=%22en-ie%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.hammockgiant.ie%252F%22%3E%0A%3Clink%20rel=%22icon%22%20type=%22image/x-icon%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fmedia%252Ffavicon%252Fdefault%252Flogo_favicon.png%22%3E%0A%3Clink%20rel=%22shortcut%20icon%22%20type=%22image/x-icon%22%20href=%22https://proxy.heatmap.com/sttracker/css/get_file?url=https%253A%252F%252Fwww.haengemattengigant.de%252Fmedia%252Ffavicon%252Fdefault%252Flogo_favicon.png%22%3E%0A%3C!--%20heatmap.com%20snippet%20--%3E%20%20%3C!--%20End%20heatmap.com%20snippet%20Code%20--%3E%20%20%20%20%0A%0A%0A%0A%0A%0A%0A%3Cstyle%3E%0A%20%20%20%20:root%20%7B%0A%20%20%20%20%20%20%20%20--color-primary:%20#83B947;%0A%20%20%20%20%20%20%20%20--color-primary-darker:%20#5a7c43;%0A%20%20%20%20%20%20%20%20--color-body-background:%20#fff;%0A%20%20%20%20%20%20%20%20--default-font-family:%20'Poppins',%20sans-serif;%0A%20%20%20%20%20%20%20%20--default-text-color:%20#6B7280;%0A%20%20%20%20%20%20%20%20--default-title-color:%20#111827;%0A%20%20%20%20%20%20%20%20--default-gray-color:%20#E5E7EB;%0A%20%20%20%20%20%20%20%20--default-border-color:%20var(--default-gray-color);%0A%20%20%20%20%20%20%20%20--color-gray-light:%20#F9FAFB;%0A%20%20%20%20%20%20%20%20--color-stock-status:%20#E7FAE8;%0A%20%20%20%20%20%20%20%20--color-highlight-green:%20#166534;%0A%20%20%20%20%20%20%20%20--color-star:%20#FBBF24;%0A%20%20%20%20%20%20%20%20--color-background-checkout:%20var(--color-gray-light);%0A%20%20%20%20%20%20%20%20--color-background-checkout-header:%20var(--color-body-background);%0A%20%20%20%20%20%20%20%20--color-background-checkout-primary:%20var(--color-primary);%0A%20%20%20%20%20%20%20%20--color-background-checkout-secondary:%20var(--color-gray-light);%0A%20%20%20%20%20%20%20%20--border-color-checkout:%20var(--default-text-color);%0A%20%20%20%20%20%20%20%20--border-radius-checkout:%200;%0A%0A%20%20%20%20--h1-font-size:%2040px;%0A%20%20%20%20%20%20%20%20--h2-font-size:%2034px;%0A%20%20%20%20%20%20%20%20--h3-font-size:%2026px;%0A%20%20%20%20%7D%0A%3C/style%3E%0A JavaScript scheint in Ihrem Browser deaktiviert zu sein. Um unsere Website in bester Weise zu erfahren, aktivieren Sie Javascript in Ihrem Browser. menu x * Top 25 * VERKAUF HängemattenGigant.de * Warum HängemattenGigant.de? * Fairtrade und Öko * Blog lesen Knowledge centre * Alles über Hängematten * Alles über Hängesessel * Hängematte aufhängen * Über Größen und Abmessungen * Über Hängemattenständer Kundensupport * Bestellen * Rücksendung * Lieferzeiten * * awesomeicons6/regular/comments Chatten Sie mit uns * awesomeicons6/regular/envelope-open Senden Sie uns eine E-Mail * awesomeicons6/solid/headset Rufen Sie uns an Socials * awesomeicons6/regular/newspaper * awesomeicons6/brands/instagram * awesomeicons6/brands/youtube * awesomeicons6/brands/facebook * awesomeicons6/brands/tiktok Wonach suchen Sie? search Suche x Schließen Kundenservice globe chevron-down Nederland België (NL) Belgique (FR) Česko Danmark Deutschland España France Ireland Italia Österreich Polska Portugal Schweiz Suomi Sverige United Kingdom United States search Search Toggle minicart, Warenkorb ist leer cart WARENKORB x Warenkorb ist leer Warenkorb ist leer x bin Löschen Summe Zur Kasse arrow-right loader Wird geladen ... Panel schließen Auschecken über Ihr Konto E-Mail-Addresse Passwort Anmelden Passwort vergessen? Als Neukunde auschecken Ein Konto zu erstellen hat viele Vorteile: * Bestellungen und Sendungen verfolgen * Alte Bestellungen einsehen * Schneller zur Kasse gehen Ein Konto erstellen * Hängematten Show submenu for Hängematten category * Single Hängematten * Doppel Hängematten * Familien Hängematten * Reisehängematten * Hängematten mit Gestell * Hängesessel Show submenu for Hängesessel category * Hängesessel aus Stoff * Hängesessel aus Rattan * Hängesessel Spezial * Hängesessel mit Gestell * Gestelle Show submenu for Gestelle category * Hängemattengestell * Hängesesselgestell * Kinder Show submenu for Kinder category * Baby Hängematten * Kinder Hängematten * Kinder Hängesessel * Zubehör Show submenu for Zubehör category * Hängemattenbefestigungen * Hängesesselbefestigungen * Beistelltische * Kissen * Decken * Teile * Top 25 * VERKAUF * awesomeicons6/solid/check 365 Tage kostenlose Rückgabe * awesomeicons6/solid/check Kostenloser Versand ab 25 € * awesomeicons6/solid/check Jetzt bestellen, später bezahlen * awesomeicons6/solid/check An Werktagen bis 16:00 Uhr bestellen, morgen geliefert Laut Trustpilot Der Hängematten Experte #1 in Deutschland Alle Hängematten anzeigen Sie möchten lieber einen Hängesessel? Hängesessel Hängematten mit Gestell Hängematten-Sets Hängematten chevron-right Top 25 chevron-right Hängematten mit Gestell chevron-right Hängesessel chevron-right Gestelle chevron-right Zubehör chevron-right ÜBER 200 HÄNGEMATTEN Alle Hängematten awesomeicons6/solid/chevron-right Hängematte Doppel 'Salvora' Double Auf Lager 79,- Hängematte Doppel 'Tura' Double Auf Lager 79,- Hängematte Doppel 'Gomera' Double Auf Lager 79,- Hängematte Doppel 'Lobos' Double Auf Lager 79,- ÜBER 100 HÄNGESESSEL Alle Hängesessel awesomeicons6/solid/chevron-right Hängesessel Single 'Salvora' Single Auf Lager 89,- Hängesessel Single 'Tura' Single Auf Lager 89,- Hängesessel Single 'Gomera' Single Auf Lager 89,- Hängesessel Single 'Lobos' Single Auf Lager 89,- HÄNGEMATTEN MIT GESTELL Alle Hängematte mit Gestell awesomeicons6/solid/chevron-right Beliebt Hängemattenset Single 'Minorca' Single Auf Lager Sonderangebot 99,- Regulärer Preis 178,- Hängemattenset Single 'Multi' Single Auf Lager Sonderangebot 99,- Regulärer Preis 178,- Hängemattenset Single 'Pine' Single Auf Lager Sonderangebot 99,- Regulärer Preis 178,- Hängemattenset Single 'Rustic' Single Auf Lager Sonderangebot 99,- Regulärer Preis 178,- ZUBEHÖR Alles Zubehör awesomeicons6/solid/chevron-right Abdeckung 'Hammock Sleeve' Auf Lager 24,- Hängemattenbefestigung 'Tree Strap' Auf Lager 24,- Hängemattenbefestigung 'Simple' Black Auf Lager 24,- Hängemattenbefestigung 'Complete' Black Auf Lager 29,- UNSERE BEWERTUNGEN AUF TRUSTPILOT Sehr zufrieden mit dieser Hängematte. Toller Kundenservice. MT MS Thomas Schnelle Lieferung, gute Verpackung und ein tolles Produkt! PI Pieter Superschnelle Lieferung. Einfach zusammenzubauen und wie beschrieben. AB Andrew Bagnall Sehr gut! Kann ich empfehlen, gute Qualität! Meine Frau hat es bisher jeden Tag benutzt. EB E. B. Hervorragender Service, schnelle Lieferung und tolle Hängematte mit Holzständer. PC Paul Crofton Ausgezeichnet! 9,6 2.187 Bewertungen UNSERE HÄNGEMATTEN-EMPFEHLUNGEN Alle sehen awesomeicons6/solid/chevron-right Beliebt Hängesessel Single 'Organic' Natura Auf Lager 99,- Beliebt Hängematte Doppel 'Rainbow' Double Auf Lager 89,- Beliebt Hängematte Doppel 'American' Grey Auf Lager 139,- Beliebt Hängematte Familie 'Rope' Natura Auf Lager 119,- Beliebt Hängesessel Single 'Egg' Black Auf Lager Sonderangebot 179,- Regulärer Preis 199,- Beliebt Hängematte Single 'Patio' Small Auf Lager Sonderangebot 49,- Regulärer Preis 59,- Beliebt Hängesessel Single 'Organic' Jeans Auf Lager 99,- Beliebt Hängematte Doppel 'American' Green Auf Lager 139,- WAS SIE VOR DEM KAUF EINER HÄNGEMATTE WISSEN SOLLTEN Wie hängt man eine Hängematte auf? Abmessungen und Abstand. Was ist der beste Hängemattenständer? Kann ich meine Hängematte draußen lassen? Kann ich in einer Hängematte schlafen? DIE HÄNGEMATTE: DAS ENTSPANNTESTE PRODUKT DER WELT! Warum wir Hängematten lieben? Wir glauben, dass die Hängematte das entspannteste Produkt der Welt ist! Das glauben wir seit Jahren, und niemand hat uns jemals ein entspannteres Produkt vorstellen können. Natürlich gehört das entspannteste Produkt der Welt in einen entspannten Online-Shop: FAIRTRADE- UND ÖKO-HÄNGEMATTEN, DAMIT SIE SICH BEIM ENTSPANNEN WOHLFÜHLEN! Der Ausgangspunkt unseres Sortiments ist, dass jedes Produkt darin Ihnen ein gutes Gefühl geben soll. HängemattenGigant.de verkauft hauptsächlich Hängematten und Hängesessel, die fair gehandelt und/oder umweltfreundlich sind. Denn ein gutes Gewissen ist eine wichtige Voraussetzung für die volle Entspannung in Ihrer Hängematte! BESTMÖGLICHER SERVICE BEI JEDER BESTELLUNG, DAS HABEN SIE SICH VERDIENT! Sie haben die größte Auswahl an Hängematten und Hängesesseln, zahlen immer den günstigsten Preis und wenn Sie werktags vor 16 Uhr bestellen, versenden wir noch am selben Tag! Unser Kundenservice ist von 9 bis 17 Uhr für Sie da. 365 TAGE KOSTENLOSE RÜCKGABE, DENN DIE SONNE LÄSST MANCHMAL ETWAS AUF SICH WARTEN Bei HängemattenGigant.de können Sie bis zu 365 Tage nach Erhalt der Bestellung eine Rückgabe vornehmen. Das ist praktisch, denn in Großbritannien weiß man nie genau, wann das Wetter schön genug ist, um die Hängematte zum ersten Mal auszuprobieren. Zeit. Wenn das Produkt nicht ganz Ihren Erwartungen entspricht, können Sie es kostenlos zurückschicken. Und vergessen Sie nicht: Wir bieten kostenlose Lieferung für jede Bestellung! Nur ein weiterer guter Grund, Ihre neue Hängematte bei HängemattenGigant.de zu kaufen! * awesomeicons6/solid/check 365 Tage kostenlose Rückgabe * awesomeicons6/solid/check Kostenloser Versand ab 25 € * awesomeicons6/solid/check Jetzt bestellen, später bezahlen * awesomeicons6/solid/check An Werktagen bis 16:00 Uhr bestellen, morgen geliefert ABONNIEREN SIE UND ERHALTEN SIE EINEN 5%-RABATTGUTSCHEIN! Abonnieren Sie den Newsletter Beliebte Kategorien awesomeicons6/solid/angle-down * Brasilianische Hängematten * Mexikanische Hängematten * Reise-Hängematten * Hängematten mit Spreizstäben Wissenszentrum awesomeicons6/solid/angle-down * Hängematten * Alles über Hängematten * Hängematte aufhängen * Über Größen und Abmessungen * Über Hängemattengestelle * * Hängesessel * Alles über Hängesessel * Hängesessel aufhängen * Über Größen und Abmessungen * Über Hängestuhlgestelle Kundenbetreuung awesomeicons6/solid/angle-down * Wie kann ich bestellen? * Wie kann ich zurückkehren? * Lieferzeiten * Bestellung als Firma * Alles andere * Warum HängemattenGigant.de? * Fairtrade und Öko * Blog lesen awesomeicons6/regular/comments Chatten Sie mit uns awesomeicons6/regular/envelope-open E-Mail an uns awesomeicons6/solid/headset Rufen Sie uns an Arbeitstage: 09:00 - 17:00 Stunde * awesomeicons6/regular/newspaper * awesomeicons6/brands/instagram * awesomeicons6/brands/youtube * awesomeicons6/brands/facebook * awesomeicons6/brands/tiktok * * * * * * * * * * * * * © HängemattenGigant.de * Impressum * AGB * Datenschutz * Cookies * Sitemap cookie Cookies Ja, wir verwenden Cookies... Wir verwenden Cookies, um Inhalte zu personalisieren und unseren Datenverkehr zu analysieren. Wir geben auch Informationen über Ihre Nutzung unserer Website an unsere Social-Media-, Werbe- und Analysepartner weiter, die diese möglicherweise mit anderen Informationen kombinieren, die Sie ihnen bereitgestellt haben oder die sie durch Ihre Nutzung ihrer Dienste gesammelt haben. Sehen Sie sich unsere Cookie- und Datenschutzrichtlinie an Zurück Notwendig Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem sie grundlegende Funktionen wie die Seitennavigation und den Zugang zu sicheren Bereichen der Website ermöglichen. Ohne diese Cookies kann die Website nicht richtig funktionieren. Weiterlesen Präferenzen Präferenz-Cookies ermöglichen es einer Website, Informationen zu speichern, die das Verhalten oder Aussehen der Website verändern, wie z. B. Ihre bevorzugte Sprache oder die Region, in der Sie sich befinden. Weiterlesen Statistik Statistik-Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit Websites interagieren, indem sie Informationen anonym sammeln und melden. Weiterlesen Marketing Marketing-Cookies werden verwendet, um Besucher auf verschiedenen Websites zu verfolgen. Ziel ist es, Anzeigen zu schalten, die für den einzelnen Nutzer relevant und ansprechend sind und damit für Verlage und dritte Werbetreibende wertvoller sind. Weiterlesen Anpassen Auswahl zulassen Akzeptieren