www.terrashaardshop.be
Open in
urlscan Pro
188.114.96.3
Public Scan
Submitted URL: https://terrashaardshop.be/
Effective URL: https://www.terrashaardshop.be/
Submission: On May 10 via manual from DE — Scanned from NL
Effective URL: https://www.terrashaardshop.be/
Submission: On May 10 via manual from DE — Scanned from NL
Form analysis
19 forms found in the DOMGET https://www.terrashaardshop.be/catalogsearch/result/
<form x-data="initMiniSearchComponent()" class="form minisearch" id="search_mini_form" action="https://www.terrashaardshop.be/catalogsearch/result/" method="get">
<div class="relative xl:w-96">
<input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" type="search" class="input-text rounded-full border-primary text-16 md:text-13 italic h-10 px-6 w-full" autocapitalize="off" autocomplete="off" autocorrect="off"
name="q" value="" placeholder="Vind snel jouw product" maxlength="128">
<div class="hidden md:hidden right-[120px] absolute top-1/2 -translate-y-1/2 cursor-pointer rounded-full border border-secondary h-8 w-8 text-center leading-8" :class="{'hidden': !show}" @click="show = false">
<svg class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 text-secondary" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24.882 24.882">
<path fill="currentColor" d="m24.882 2.5-9.936 9.936 9.936 9.936-2.5 2.5-9.936-9.936L2.5 24.882l-2.5-2.5 9.936-9.936L0 2.5 2.5 0l9.936 9.936L22.372 0Z"></path>
</svg>
</div>
<button type="submit" title="Zoek" class="absolute rounded-full bg-secondary text-white h-8 leading-8 px-2 pr-3 md:pr-4 flex gap-2 right-1 top-1 hover:bg-primary-darker">
<span class="flex flex-col justify-center h-full">
<svg xmlns="http://www.w3.org/2000/svg" width="18.004" height="18.107">
<path fill="#fff"
d="M6.752 2.263a4.525 4.525 0 0 1 3.666 7.143l-.443.626-.622.445a4.444 4.444 0 0 1-2.6.839 4.527 4.527 0 0 1 0-9.054Zm0-2.263a6.79 6.79 0 0 0 0 13.58 6.684 6.684 0 0 0 3.906-1.259l5.422 5.453a1.123 1.123 0 0 0 1.594 0 1.138 1.138 0 0 0 0-1.6l-5.422-5.453A6.791 6.791 0 0 0 6.752 0Z">
</path>
</svg>
</span>
<span>Zoeken</span>
</button>
</div>
<div id="search_autocomplete" class="search-autocomplete relative w-full hidden" :class="{'hidden': !show}" @click.away="show = false">
<div class="absolute -translate-x-1/2 left-1/2 bg-white shadow z-50 w-full autocomplete-grid p-2 mt-2">
<template x-for="searchResultByType in Object.values(searchResultsByType)">
<div class="mb-2 text-13" :class="{
'autocomplete-product': searchResultByType[0] && searchResultByType[0].type === 'product',
'autocomplete-terms': searchResultByType[0] && searchResultByType[0].type === 'terms',
}">
<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" 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" x-text="window[templates[searchResultByType[0].type].titleRenderer](searchResultByType)"></div>
</template>
<template x-for="searchResult in searchResultByType">
<div class="hover:bg-gray-100">
<template x-if="searchResult.type == 'term'">
<a class="w-full block p-2" x-bind:href="'https://www.terrashaardshop.be/catalogsearch/result/?q=' + searchResult.title" :title="searchResult.title">
<span class="text-13" x-text="searchResult.title"></span>
<span class="text-13" x-text="'(' + searchResult.num_results + ')'"></span>
</a>
</template> <template x-if="searchResult.type == 'product'">
<a class="w-full block" :href="searchResult.url" :title="searchResult.title">
<div class="grid grid-cols-4 gap-4 p-3">
<div>
<img :src="searchResult.image" class="inline-block">
</div>
<div class="col-span-3">
<span class="text-13" x-text="searchResult.title"></span>
<template x-if="searchResult.hideprice_scope !== 'Always Hide Price And Buy Button'">
<span class="text-13 font-bold" x-html="searchResult.price"></span>
</template>
</div>
</div>
</a>
</template> <template x-if="searchResult.type == 'category'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm italic block text-gray-500" x-text="searchResult.breadcrumb.join(' > ').concat(' > ')"></span>
<span class="text-sm" x-text="searchResult.title"></span>
</a>
</template> <template x-if="searchResult.type == 'product_attribute'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-13" x-text="searchResult.title"></span>
</a>
</template>
<script>
function renderEsAutocompleteTitleAttribute(data) {
data = data.filter(function(item) {
return item.type === 'product_attribute';
}).map(function(item) {
return item['attribute_label']
}).reduce(function(prev, item) {
if (item in prev) {
prev[item]++;
} else {
prev[item] = 1;
}
return prev;
}, {});
data = Object.entries(data).sort(function(item1, item2) {
return item2[1] - item1[1]
}).map(function(item) {
return item[0]
});
if (data.length > 2) {
data = data.slice(0, 2);
data.push('...');
}
return data.join(', ');
}
</script> <template x-if="searchResult.type == 'cms_page'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
</a>
</template>
</div>
</template>
</div>
</template>
</div>
</div>
</form>
POST
<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form">
<div class="control">
<input type="hidden" value="" class="form-input" name="g-recaptcha-response">
</div>
<div class="fieldset login">
<div class="field email required">
<label class="label" for="customer-email">
<span>E-mail adres</span>
</label>
<div class="control">
<input name="username" x-ref="customer-email" @change="errors = 0" type="email" required="" class="form-input input-text">
</div>
</div>
<div class="field password required">
<label for="pass" class="label">
<span>Wachtwoord</span>
</label>
<div class="control">
<input name="password" type="password" class="form-input input-text" required="" x-ref="customer-password" @change="errors = 0">
</div>
</div>
<input name="context" type="hidden" value="checkout">
<div class="actions-toolbar flex justify-between pt-6 pb-2 items-center">
<button type="submit" class="inline-flex btn btn-primary"> Inloggen </button>
<a href="https://www.terrashaardshop.be/customer/account/forgotpassword/">
Wachtwoord vergeten? </a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/3530/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/3530/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="3530">
<a href="https://www.terrashaardshop.be/the-bastard-urban-medium-complete.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/b/u/png/thumbs/e/b/.webp/ebea09c9b6b29180d836517dfe6de927_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/b/u/png/thumbs/e/b/.webp/ebea09c9b6b29180d836517dfe6de927_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/b/u/png/thumbs/e/b/.webp/ebea09c9b6b29180d836517dfe6de927_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source type="image/png" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/b/u/thumbs/e/b/.png/ebea09c9b6b29180d836517dfe6de927_313_320_99.png 313w, https://www.terrashaardshop.be/media/catalog/product/cache/b/u/thumbs/e/b/.png/ebea09c9b6b29180d836517dfe6de927_360_368_99.png 360w, https://www.terrashaardshop.be/media/catalog/product/cache/b/u/thumbs/e/b/.png/ebea09c9b6b29180d836517dfe6de927_267_273_99.png 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/b/u/bu20033_transparent.png" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/b/u/thumbs/e/b/.png/ebea09c9b6b29180d836517dfe6de927_313_320_99.png 313w, https://www.terrashaardshop.be/media/catalog/product/cache/b/u/thumbs/e/b/.png/ebea09c9b6b29180d836517dfe6de927_360_368_99.png 360w, https://www.terrashaardshop.be/media/catalog/product/cache/b/u/thumbs/e/b/.png/ebea09c9b6b29180d836517dfe6de927_267_273_99.png 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="The Bastard Urban Medium Complete" loading="lazy" class="object-contain" title="The Bastard Urban Medium Complete" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/the-bastard-urban-medium-complete.html">
The Bastard Urban Medium Complete </a>
</div>
<a href="https://www.terrashaardshop.be/the-bastard-urban-medium-complete.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1" title="Wees de eerste die dit product reviewed">
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
0 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 68.2 x B 48 x H 114 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Inclusief onderstel en zijplankjes </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="3530" data-price-box="product-id-3530"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-3530" data-price-amount="1299" data-price-type="finalPrice" class="price-wrapper "><span class="price">1.299,00</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-3530" data-price-amount="1499" data-price-type="oldPrice" class="price-wrapper "><span class="price">1.499,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/the-bastard-urban-medium-complete.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/3310/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/3310/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="3310">
<a href="https://www.terrashaardshop.be/bonfeu-bonbiza-roest-open.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/b/o/jpg/thumbs/d/d/.webp/dd06a25773f1d55c3ac3749e98f0c4d9_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/b/o/jpg/thumbs/d/d/.webp/dd06a25773f1d55c3ac3749e98f0c4d9_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/b/o/jpg/thumbs/d/d/.webp/dd06a25773f1d55c3ac3749e98f0c4d9_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/b/o/thumbs/d/d/.jpg/dd06a25773f1d55c3ac3749e98f0c4d9_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/b/o/thumbs/d/d/.jpg/dd06a25773f1d55c3ac3749e98f0c4d9_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/b/o/thumbs/d/d/.jpg/dd06a25773f1d55c3ac3749e98f0c4d9_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/b/o/bonbiza-open-roest_grill_hout.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/b/o/thumbs/d/d/.jpg/dd06a25773f1d55c3ac3749e98f0c4d9_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/b/o/thumbs/d/d/.jpg/dd06a25773f1d55c3ac3749e98f0c4d9_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/b/o/thumbs/d/d/.jpg/dd06a25773f1d55c3ac3749e98f0c4d9_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="BonBiza Roest" loading="lazy" class="object-contain" title="BonBiza Roest" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/bonfeu-bonbiza-roest-open.html">
BonFeu BonBiza Corten Open </a>
</div>
<a href="https://www.terrashaardshop.be/bonfeu-bonbiza-roest-open.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 20.6 20" width="20.645" height="20">
<use xlink:href="#star-fragment"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
6 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 80 x B 80 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> In de kleuren zwart & Corten </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="3310" data-price-box="product-id-3310"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-3310" data-price-amount="899.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">899,95</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-3310" data-price-amount="949.95" data-price-type="oldPrice" class="price-wrapper "><span class="price">949,95</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/bonfeu-bonbiza-roest-open.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2890/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2890/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="2890">
<a href="https://www.terrashaardshop.be/dimplex-cassette-400-600-led-2-0-eco-opti-myst.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/0/3/jpg/thumbs/c/3/.webp/c3083a8d98712718f2dae4a0cf8ffb82_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/0/3/jpg/thumbs/c/3/.webp/c3083a8d98712718f2dae4a0cf8ffb82_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/0/3/jpg/thumbs/c/3/.webp/c3083a8d98712718f2dae4a0cf8ffb82_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/0/3/thumbs/c/3/.jpg/c3083a8d98712718f2dae4a0cf8ffb82_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/0/3/thumbs/c/3/.jpg/c3083a8d98712718f2dae4a0cf8ffb82_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/0/3/thumbs/c/3/.jpg/c3083a8d98712718f2dae4a0cf8ffb82_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/0/3/03_dimplex_cassette_400_210791_left_flame.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/0/3/thumbs/c/3/.jpg/c3083a8d98712718f2dae4a0cf8ffb82_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/0/3/thumbs/c/3/.jpg/c3083a8d98712718f2dae4a0cf8ffb82_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/0/3/thumbs/c/3/.jpg/c3083a8d98712718f2dae4a0cf8ffb82_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="Dimplex Cassette 400/600 LED 2.0 Eco Opti-Myst" loading="lazy" class="object-contain" title="Dimplex Cassette 400/600 LED 2.0 Eco Opti-Myst" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/dimplex-cassette-400-600-led-2-0-eco-opti-myst.html">
Dimplex Cassette 400/600 LED 2.0 Eco Opti-Myst </a>
</div>
<a href="https://www.terrashaardshop.be/dimplex-cassette-400-600-led-2-0-eco-opti-myst.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 20.6 20" width="20.645" height="20">
<use xlink:href="#star-fragment"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
11 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> B 41 x D 22 x H 20 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Exclusief houtstammen! </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2890" data-price-box="product-id-2890"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-2890" data-price-amount="599" data-price-type="finalPrice" class="price-wrapper "><span class="price">599,00</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-2890" data-price-amount="847" data-price-type="oldPrice" class="price-wrapper "><span class="price">847,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/dimplex-cassette-400-600-led-2-0-eco-opti-myst.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/4726/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/4726/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="4726">
<a href="https://www.terrashaardshop.be/heat-trolle-buitenkeuken-zwart.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/h/e/jpg/thumbs/8/2/.webp/82150316e53e273f722c6a9e0828b2ad_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/jpg/thumbs/8/2/.webp/82150316e53e273f722c6a9e0828b2ad_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/jpg/thumbs/8/2/.webp/82150316e53e273f722c6a9e0828b2ad_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/8/2/.jpg/82150316e53e273f722c6a9e0828b2ad_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/8/2/.jpg/82150316e53e273f722c6a9e0828b2ad_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/8/2/.jpg/82150316e53e273f722c6a9e0828b2ad_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/h/e/heat_trolle_zw_01.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/8/2/.jpg/82150316e53e273f722c6a9e0828b2ad_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/8/2/.jpg/82150316e53e273f722c6a9e0828b2ad_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/8/2/.jpg/82150316e53e273f722c6a9e0828b2ad_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="HEAT Trolle barbecue met bakplaat productfoto
" loading="lazy" class="object-contain" title="HEAT Trolle barbecue met bakplaat productfoto
" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/heat-trolle-buitenkeuken-zwart.html">
HEAT Trolle Buitenkeuken Zwart </a>
</div>
<a href="https://www.terrashaardshop.be/heat-trolle-buitenkeuken-zwart.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
1 Review </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 117 x D 46 x H 106 </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Mobiele buitenkeuken </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="4726" data-price-box="product-id-4726"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-4726" data-price-amount="499.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">499,95</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-4726" data-price-amount="549.95" data-price-type="oldPrice" class="price-wrapper "><span class="price">549,95</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/heat-trolle-buitenkeuken-zwart.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2584/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2584/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="2584">
<a href="https://www.terrashaardshop.be/vuurkorf-bonfeu-bonves-45-roest.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/k/o/jpg/thumbs/d/b/.webp/db25ca4a2fc611b1ed978ad42a19b4a7_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/k/o/jpg/thumbs/d/b/.webp/db25ca4a2fc611b1ed978ad42a19b4a7_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/k/o/jpg/thumbs/d/b/.webp/db25ca4a2fc611b1ed978ad42a19b4a7_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/k/o/thumbs/d/b/.jpg/db25ca4a2fc611b1ed978ad42a19b4a7_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/k/o/thumbs/d/b/.jpg/db25ca4a2fc611b1ed978ad42a19b4a7_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/k/o/thumbs/d/b/.jpg/db25ca4a2fc611b1ed978ad42a19b4a7_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/k/o/kookopties_bonves45r.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/k/o/thumbs/d/b/.jpg/db25ca4a2fc611b1ed978ad42a19b4a7_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/k/o/thumbs/d/b/.jpg/db25ca4a2fc611b1ed978ad42a19b4a7_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/k/o/thumbs/d/b/.jpg/db25ca4a2fc611b1ed978ad42a19b4a7_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="BonFeu BonVes 45 Roest Vuurkorf inclusief grillrooster en optionele plancha " loading="lazy" class="object-contain" title="BonFeu BonVes 45 Roest Vuurkorf inclusief grillrooster en optionele plancha " width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/vuurkorf-bonfeu-bonves-45-roest.html">
BonFeu BonVes 45 Roest Vuurkorf </a>
</div>
<a href="https://www.terrashaardshop.be/vuurkorf-bonfeu-bonves-45-roest.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 20.6 20" width="20.645" height="20">
<use xlink:href="#star-fragment"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
5 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 45 x B 45 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Incl. barbecuerooster </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2584" data-price-box="product-id-2584"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-2584" data-price-amount="229.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">229,95</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-2584" data-price-amount="239.95" data-price-type="oldPrice" class="price-wrapper "><span class="price">239,95</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/vuurkorf-bonfeu-bonves-45-roest.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/4718/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/4718/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="4718">
<a href="https://www.terrashaardshop.be/heat-pizzaoven-ovnhus.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/v/jpg/thumbs/a/5/.webp/a5c049534b3aadc4d80315c3a5572e88_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/v/jpg/thumbs/a/5/.webp/a5c049534b3aadc4d80315c3a5572e88_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/v/jpg/thumbs/a/5/.webp/a5c049534b3aadc4d80315c3a5572e88_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/v/thumbs/a/5/.jpg/a5c049534b3aadc4d80315c3a5572e88_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/v/thumbs/a/5/.jpg/a5c049534b3aadc4d80315c3a5572e88_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/v/thumbs/a/5/.jpg/a5c049534b3aadc4d80315c3a5572e88_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/v/ovnhus_front.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/v/thumbs/a/5/.jpg/a5c049534b3aadc4d80315c3a5572e88_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/v/thumbs/a/5/.jpg/a5c049534b3aadc4d80315c3a5572e88_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/v/thumbs/a/5/.jpg/a5c049534b3aadc4d80315c3a5572e88_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="HEAT Pizzaoven voorkant" loading="lazy" class="object-contain" title="HEAT Pizzaoven voorkant" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/heat-pizzaoven-ovnhus.html">
HEAT Pizza Oven Ovnhus </a>
</div>
<a href="https://www.terrashaardshop.be/heat-pizzaoven-ovnhus.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
2 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 50 x D 36 x H 161 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Ook te gebruiken als BBQ </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="4718" data-price-box="product-id-4718"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-4718" data-price-amount="169.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">169,95</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-4718" data-price-amount="199.95" data-price-type="oldPrice" class="price-wrapper "><span class="price">199,95</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/heat-pizzaoven-ovnhus.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/1616/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/1616/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="1616">
<a href="https://www.terrashaardshop.be/moodz-vuurschaal-cortenstaal-100.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/m/o/jpg/thumbs/6/4/.webp/64374d695e03cd51e6d5e9ffb8507509_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/m/o/jpg/thumbs/6/4/.webp/64374d695e03cd51e6d5e9ffb8507509_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/m/o/jpg/thumbs/6/4/.webp/64374d695e03cd51e6d5e9ffb8507509_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/m/o/thumbs/6/4/.jpg/64374d695e03cd51e6d5e9ffb8507509_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/m/o/thumbs/6/4/.jpg/64374d695e03cd51e6d5e9ffb8507509_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/m/o/thumbs/6/4/.jpg/64374d695e03cd51e6d5e9ffb8507509_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/m/o/moodz_cortenschaal80_vuur_hr_1.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/m/o/thumbs/6/4/.jpg/64374d695e03cd51e6d5e9ffb8507509_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/m/o/thumbs/6/4/.jpg/64374d695e03cd51e6d5e9ffb8507509_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/m/o/thumbs/6/4/.jpg/64374d695e03cd51e6d5e9ffb8507509_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="MOODZ vuurschaal cortenstaal 100" loading="lazy" class="object-contain" title="MOODZ vuurschaal cortenstaal 100" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/moodz-vuurschaal-cortenstaal-100.html">
MOODZ Vuurschaal Ø 100 cm </a>
</div>
<a href="https://www.terrashaardshop.be/moodz-vuurschaal-cortenstaal-100.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 20.6 20" width="20.645" height="20">
<use xlink:href="#star-fragment"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
112 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 100 x B 100 x H 21 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> 3 mm hoogwaardig CortenStaal </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1616" data-price-box="product-id-1616"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-1616" data-price-amount="149.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">149,95</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-1616" data-price-amount="215" data-price-type="oldPrice" class="price-wrapper "><span class="price">215,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/moodz-vuurschaal-cortenstaal-100.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/4065/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/4065/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="4065">
<a href="https://www.terrashaardshop.be/heat-braten-houtskool-barbecue.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/h/e/jpg/thumbs/2/3/.webp/238ced29c1329cd73486b35132081bf8_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/jpg/thumbs/2/3/.webp/238ced29c1329cd73486b35132081bf8_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/jpg/thumbs/2/3/.webp/238ced29c1329cd73486b35132081bf8_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/2/3/.jpg/238ced29c1329cd73486b35132081bf8_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/2/3/.jpg/238ced29c1329cd73486b35132081bf8_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/2/3/.jpg/238ced29c1329cd73486b35132081bf8_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/h/e/heat_bbq_dicht.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/2/3/.jpg/238ced29c1329cd73486b35132081bf8_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/2/3/.jpg/238ced29c1329cd73486b35132081bf8_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/h/e/thumbs/2/3/.jpg/238ced29c1329cd73486b35132081bf8_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="HEAT BRÅTEN Houtskool Barbecue" loading="lazy" class="object-contain" title="HEAT BRÅTEN Houtskool Barbecue" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/heat-braten-houtskool-barbecue.html">
HEAT BRÅTEN Houtskool Barbecue </a>
</div>
<a href="https://www.terrashaardshop.be/heat-braten-houtskool-barbecue.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
1 Review </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Nieuwe houtskool barbecue van HEAT </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Eenvoudig in gebruik </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="4065" data-price-box="product-id-4065"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-4065" data-price-amount="149.95" data-price-type="finalPrice" class="price-wrapper "><span class="price">149,95</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-4065" data-price-amount="229.95" data-price-type="oldPrice" class="price-wrapper "><span class="price">229,95</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/heat-braten-houtskool-barbecue.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/1407/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/1407/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="1407">
<a href="https://www.terrashaardshop.be/ofyr-classic-100-100.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/4/.webp/a4c2ca388d03cd44d8c5d682f67d0517_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/4/.webp/a4c2ca388d03cd44d8c5d682f67d0517_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/4/.webp/a4c2ca388d03cd44d8c5d682f67d0517_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/4/.jpg/a4c2ca388d03cd44d8c5d682f67d0517_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/4/.jpg/a4c2ca388d03cd44d8c5d682f67d0517_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/4/.jpg/a4c2ca388d03cd44d8c5d682f67d0517_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_classic_100-100_oc-100-100_2_2.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/4/.jpg/a4c2ca388d03cd44d8c5d682f67d0517_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/4/.jpg/a4c2ca388d03cd44d8c5d682f67d0517_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/4/.jpg/a4c2ca388d03cd44d8c5d682f67d0517_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR vuurschaal BBQ" loading="lazy" class="object-contain" title="OFYR vuurschaal BBQ" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-classic-100-100.html">
OFYR Classic 100 </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-classic-100-100.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 20.6 20" width="20.645" height="20">
<use xlink:href="#star-fragment"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
15 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 100 x B 100 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig Cortenstaal (103 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1407" data-price-box="product-id-1407"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-1407" data-price-amount="1895" data-price-type="finalPrice" class="price-wrapper "><span class="price">1.895,00</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-1407" data-price-amount="1995" data-price-type="oldPrice" class="price-wrapper "><span class="price">1.995,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-classic-100-100.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2139/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2139/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="2139">
<a href="https://www.terrashaardshop.be/ofyr-classic-storage-black-85.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/9/9/.webp/994983d6f4f18db45b191a5ffa09f771_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/9/9/.webp/994983d6f4f18db45b191a5ffa09f771_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/9/9/.webp/994983d6f4f18db45b191a5ffa09f771_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/9/.jpg/994983d6f4f18db45b191a5ffa09f771_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/9/.jpg/994983d6f4f18db45b191a5ffa09f771_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/9/.jpg/994983d6f4f18db45b191a5ffa09f771_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_classic_storage_black_85-100_kopen_2.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/9/.jpg/994983d6f4f18db45b191a5ffa09f771_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/9/.jpg/994983d6f4f18db45b191a5ffa09f771_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/9/.jpg/994983d6f4f18db45b191a5ffa09f771_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR Classic Storage Black 85-100" loading="lazy" class="object-contain" title="OFYR Classic Storage Black 85-100" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-classic-storage-black-85.html">
OFYR Classic Storage Black 85 </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-classic-storage-black-85.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1" title="Wees de eerste die dit product reviewed">
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
0 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 85 x B 85 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig staal met zwarte coating (96 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2139" data-price-box="product-id-2139"><span class="price-container price-final_price tax weee">
<span id="product-price-2139" data-price-amount="2145" data-price-type="finalPrice" class="price-wrapper "><span class="price">2.145,00</span></span>
</span></div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-classic-storage-black-85.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/1413/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/1413/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="1413">
<a href="https://www.terrashaardshop.be/ofyr-island-85-100-teak-wood.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/6/.webp/a64e1072635f35144b717a2e783f64fc_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/6/.webp/a64e1072635f35144b717a2e783f64fc_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/6/.webp/a64e1072635f35144b717a2e783f64fc_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/6/.jpg/a64e1072635f35144b717a2e783f64fc_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/6/.jpg/a64e1072635f35144b717a2e783f64fc_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/6/.jpg/a64e1072635f35144b717a2e783f64fc_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_island_85-100_oi-85-100.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/6/.jpg/a64e1072635f35144b717a2e783f64fc_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/6/.jpg/a64e1072635f35144b717a2e783f64fc_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/6/.jpg/a64e1072635f35144b717a2e783f64fc_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR Island 85-100" loading="lazy" class="object-contain" title="OFYR Island 85-100" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-island-85-100-teak-wood.html">
OFYR Island 85 Corten Teak Wood </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-island-85-100-teak-wood.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
1 Review </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 45 x B 135 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig CortenStaal (145,5 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1413" data-price-box="product-id-1413"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-1413" data-price-amount="2495" data-price-type="finalPrice" class="price-wrapper "><span class="price">2.495,00</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-1413" data-price-amount="2645" data-price-type="oldPrice" class="price-wrapper "><span class="price">2.645,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-island-85-100-teak-wood.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2532/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2532/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="2532">
<a href="https://www.terrashaardshop.be/ofyr-classic-storage-corten-pro-100.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/png/thumbs/1/e/.webp/1eb645398fdcb46328b010c6d830ba53_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/png/thumbs/1/e/.webp/1eb645398fdcb46328b010c6d830ba53_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/png/thumbs/1/e/.webp/1eb645398fdcb46328b010c6d830ba53_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source type="image/png" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/1/e/.png/1eb645398fdcb46328b010c6d830ba53_313_320_99.png 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/1/e/.png/1eb645398fdcb46328b010c6d830ba53_360_368_99.png 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/1/e/.png/1eb645398fdcb46328b010c6d830ba53_267_273_99.png 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_classic_storage_corten_100_pro.png" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/1/e/.png/1eb645398fdcb46328b010c6d830ba53_313_320_99.png 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/1/e/.png/1eb645398fdcb46328b010c6d830ba53_360_368_99.png 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/1/e/.png/1eb645398fdcb46328b010c6d830ba53_267_273_99.png 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR Classic Storage Pro Corten" loading="lazy" class="object-contain" title="OFYR Classic Storage Pro Corten" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-classic-storage-corten-pro-100.html">
OFYR Classic Storage Corten 100 PRO </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-classic-storage-corten-pro-100.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1">
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #fab700" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 20.6 20" width="20.645" height="20">
<use xlink:href="#star-fragment"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
3 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 100 x B 100 x H 101 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig Cortenstaal (136 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2532" data-price-box="product-id-2532"><span class="special-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Speciale prijs</span>
<span id="product-price-2532" data-price-amount="2495" data-price-type="finalPrice" class="price-wrapper "><span class="price">2.495,00</span></span>
</span> </span>
<span class="old-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-2532" data-price-amount="2545" data-price-type="oldPrice" class="price-wrapper "><span class="price">2.545,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-classic-storage-corten-pro-100.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/3080/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/3080/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="3080">
<a href="https://www.terrashaardshop.be/ofyr-kamado-table-135-pro-tb.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/png/thumbs/5/9/.webp/59ba0aeb5380db40639ea49dcb4ec62e_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/png/thumbs/5/9/.webp/59ba0aeb5380db40639ea49dcb4ec62e_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/png/thumbs/5/9/.webp/59ba0aeb5380db40639ea49dcb4ec62e_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source type="image/png" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/5/9/.png/59ba0aeb5380db40639ea49dcb4ec62e_313_320_99.png 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/5/9/.png/59ba0aeb5380db40639ea49dcb4ec62e_360_368_99.png 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/5/9/.png/59ba0aeb5380db40639ea49dcb4ec62e_267_273_99.png 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_kamado_table_135_corten_bge_concrete_2.png" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/5/9/.png/59ba0aeb5380db40639ea49dcb4ec62e_313_320_99.png 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/5/9/.png/59ba0aeb5380db40639ea49dcb4ec62e_360_368_99.png 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/5/9/.png/59ba0aeb5380db40639ea49dcb4ec62e_267_273_99.png 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR Kamado Table 135 PRO The Bastard" loading="lazy" class="object-contain" title="OFYR Kamado Table 135 PRO The Bastard" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-kamado-table-135-pro-tb.html">
OFYR Kamado Table 135 PRO The Bastard </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-kamado-table-135-pro-tb.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1" title="Wees de eerste die dit product reviewed">
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
0 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 135 x B 65 X H 89,7 cm (incl. wielen) </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig CortenStaal (133/162 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="3080" data-price-box="product-id-3080"><span class="normal-price">
<span class="price-container price-final_price tax weee">
<span class="price-label">v.a.</span>
<span id="product-price-3080" data-price-amount="2795" data-price-type="finalPrice" class="price-wrapper "><span class="price">2.795,00</span></span>
</span></span>
<span class="old-price sly-old-price no-display">
<span class="price-container price-final_price tax weee">
<span class="price-label">Normale prijs</span>
<span id="old-price-3080" data-price-amount="2945" data-price-type="oldPrice" class="price-wrapper "><span class="price">2.945,00</span></span>
</span> </span>
</div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-kamado-table-135-pro-tb.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2141/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2141/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="2141">
<a href="https://www.terrashaardshop.be/ofyr-island-black-100-tw.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/9/f/.webp/9fbe62597f75788c53a73d5da1a1e391_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/9/f/.webp/9fbe62597f75788c53a73d5da1a1e391_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/9/f/.webp/9fbe62597f75788c53a73d5da1a1e391_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/f/.jpg/9fbe62597f75788c53a73d5da1a1e391_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/f/.jpg/9fbe62597f75788c53a73d5da1a1e391_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/f/.jpg/9fbe62597f75788c53a73d5da1a1e391_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_island_black_100-100.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/f/.jpg/9fbe62597f75788c53a73d5da1a1e391_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/f/.jpg/9fbe62597f75788c53a73d5da1a1e391_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/9/f/.jpg/9fbe62597f75788c53a73d5da1a1e391_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR Island Black 100-100 rubberwood" loading="lazy" class="object-contain" title="OFYR Island Black 100-100 rubberwood" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-island-black-100-tw.html">
OFYR Island Black 100 Teak Wood </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-island-black-100-tw.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1" title="Wees de eerste die dit product reviewed">
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
0 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 50 cm x B 135 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig staal met zwarte coating (167 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2141" data-price-box="product-id-2141"><span class="price-container price-final_price tax weee">
<span id="product-price-2141" data-price-amount="3195" data-price-type="finalPrice" class="price-wrapper "><span class="price">3.195,00</span></span>
</span></div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-island-black-100-tw.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
POST https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2540/
<form method="post" action="https://www.terrashaardshop.be/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVycmFzaGFhcmRzaG9wLmJlLw%2C%2C/product/2540/"
class="item product product-item product_addtocart_form flex flex-col w-full border p-2 relative hover:bg-primary">
<input name="form_key" type="hidden" value="FAeVih6QJLmieetN"> <input type="hidden" name="product" value="2540">
<a href="https://www.terrashaardshop.be/ofyr-island-black-100-pro-ceramic-dark-grey.html" class="relative mix-blend-multiply product photo product-item-photo block mx-auto mb-3" tabindex="-1">
<picture><source type="image/webp" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/f/.webp/afaf106df65ed9e069569c3d7ee7bac2_313_320_99.webp 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/f/.webp/afaf106df65ed9e069569c3d7ee7bac2_360_368_99.webp 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/jpg/thumbs/a/f/.webp/afaf106df65ed9e069569c3d7ee7bac2_267_273_99.webp 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><source srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/f/.jpg/afaf106df65ed9e069569c3d7ee7bac2_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/f/.jpg/afaf106df65ed9e069569c3d7ee7bac2_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/f/.jpg/afaf106df65ed9e069569c3d7ee7bac2_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px"><img src="https://www.terrashaardshop.be/media/catalog/product/cache/3256cfd9dbbb5b9091bf85e4afc7812f/o/f/ofyr_island_black_100_pro_ceramic_dark_grey.jpg" srcset="https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/f/.jpg/afaf106df65ed9e069569c3d7ee7bac2_313_320_99.jpg 313w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/f/.jpg/afaf106df65ed9e069569c3d7ee7bac2_360_368_99.jpg 360w, https://www.terrashaardshop.be/media/catalog/product/cache/o/f/thumbs/a/f/.jpg/afaf106df65ed9e069569c3d7ee7bac2_267_273_99.jpg 267w" sizes="(max-width: 400px) 313px, (max-width: 639px) 360px, 267px" alt="OFYR vuurschaal BBQ" loading="lazy" class="object-contain" title="OFYR vuurschaal BBQ" width="360" height="360"></picture>
</a>
<div class="product-info flex flex-col flex-grow">
<div class="mt-2 mb-1 text-primary h-[69px] leading-[23px] text-15 overflow-hidden">
<a class="product-item-link no-underline text-primary font-medium" href="https://www.terrashaardshop.be/ofyr-island-black-100-pro-ceramic-dark-grey.html">
OFYR Island Black 100 PRO Ceramic Dark Grey </a>
</div>
<a href="https://www.terrashaardshop.be/ofyr-island-black-100-pro-ceramic-dark-grey.html#customer-review-list-scroll-to" class="flex justify-start gap-3 mb-1 h-[21px] ">
<div class="rating-summary flex gap-1" title="Wees de eerste die dit product reviewed">
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
<svg style="color: #F3F3F3" xmlns="http://www.w3.org/2000/svg" width="20.645" height="20">
<use xlink:href="#star"></use>
</svg>
</div>
<div class="review-count-text text-14 leading-[21px]">
0 Reviews </div> </a>
<div class="text-14 mt-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> L 65 x B 135 x H 100 cm </div>
<div class="text-14 mb-1 leading-[25px] h-[25px] overflow-hidden" style="color: #646464"> Hoogwaardig staal met zwarte coating (225 kg) </div>
<div class="mt-2 h-[39px] text-action">
<div class="flex text-13 gap-2">
<span class="flex flex-col justify-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20.823" height="17.353">
<path fill="currentColor"
d="M13.015 11.279H1.735V1.735h11.28v9.544Zm1.735-5.206h2.244l2.094 2.094v3.111H14.75Zm-8.677 8.243a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Zm13.015 0a3.025 3.025 0 0 0-.292-1.3h1.16a.868.868 0 0 0 .868-.868V7.809a.865.865 0 0 0-.254-.613l-2.6-2.6a.865.865 0 0 0-.613-.254h-2.6V.868A.868.868 0 0 0 13.882 0H.868A.868.868 0 0 0 0 .868v11.279a.868.868 0 0 0 .868.868h1.16a3.037 3.037 0 1 0 5.489 0h5.791a3.037 3.037 0 1 0 5.781 1.3Zm-1.735 0a1.3 1.3 0 1 1-.381-.921 1.3 1.3 0 0 1 .381.921Z">
</path>
</svg>
</span>
<span>
<span class="uppercase font-bold">OP VOORRAAD</span>, direct leverbaar </span>
</div>
</div>
<div class="text-gray-900 left-2 bottom-2 absolute ">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2540" data-price-box="product-id-2540"><span class="price-container price-final_price tax weee">
<span id="product-price-2540" data-price-amount="3995" data-price-type="finalPrice" class="price-wrapper "><span class="price">3.995,00</span></span>
</span></div>
</div>
<div class="flex flex-wrap justify-end cart-button-container">
<a class="cart-button " href="https://www.terrashaardshop.be/ofyr-island-black-100-pro-ceramic-dark-grey.html">
<svg xmlns="http://www.w3.org/2000/svg" width="26.634" height="25.525" viewBox="0 0 26.634 25.525">
<use xlink:href="#cart"></use>
</svg>
<span class="sr-only">
In winkelwagen </span>
</a>
</div>
</div>
</form>
<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-WxwRiq" novalidate="" tabindex="-1"
style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; border-radius: 50px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 0); background-repeat: no-repeat; background-position-y: 50%; padding: 25px 5px 0px; flex: 1 1 0%;">
<div class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; min-height: 120px; justify-content: center;">
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; flex: 1 0 0px;">
<div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-103922898" style="width: 100%;">
<p style="text-align: center; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400;"><!--StartFragment--><span class="ql-font-tahoma"
style="font-weight: 600; font-family: Poppins, Arial, 'Helvetica Neue', Helvetica, sans-serif; font-style: normal; font-size: 20px;">Mis nooit meer een deal en neem deel aan onze winacties!</span><!--EndFragment--></p>
</div>
</div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 0px 10px 200px; position: relative; flex: 1 0 0px;">
<div class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_103922899" class="needsclick go332648842 kl-private-reset-css-Xuajs1" type="email"
autocomplete="email" name="email" tabindex="0" placeholder="E-mailadres" aria-label="E-mailadres" aria-invalid="false" options="[object Object]"
style="box-sizing: border-box; border-radius: 50px; padding: 0px 0px 0px 16px; height: 45px; text-align: left; color: rgb(0, 0, 0); font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(180, 187, 195);">
<div class="needsclick kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
</div>
</div>
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 200px 10px 25px; position: relative; flex: 0 1 auto;"><button
class="needsclick go3894874857 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
style="background: rgb(177, 19, 34); border-radius: 50px; border-style: none; border-color: rgb(0, 0, 0); border-width: 2px; color: rgb(255, 255, 255); font-family: Poppins, Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding: 0px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: 45px;">Ja,
ik doe mee</button></div>
</div>
</div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>
<form class="amgdprcookie-form-container" id="amgdprcookie-form" data-amcookie-js="form-cookie">
<div class="amgdprcookie-slider-container flex flex-col md:flex-row gap-[2%]">
<template x-for="(item, index) in items" :key="item.groupId">
<div class="amgdprcookie-item mb-2">
<div class="header flex justify-between items-start pb-2">
<h3 class="text-lg font-semibold pr-6" :style="isSidebar ? `color: ${ styles.title_text_color }`:''" x-text="item.name"></h3>
</div>
<div class="flex gap-2">
<div class="amgdprcookie-toggle-cookie flex flex-col justify-center">
<input class="amgdprcookie-input styled-checkbox green" data-amcookie-js="field" type="checkbox" name="groups[]" :id="'switchBox-' + item.groupId" :disabled="item.isEssential" :value="item.groupId" :checked="item.checked">
<label class="amgdprcookie-label bg-white cursor-pointer" :for="'switchBox-' + item.groupId">
<svg xmlns="http://www.w3.org/2000/svg" width="11.387" height="8.224">
<path fill="currentColor" d="M10.307.185 3.796 6.696 1.08 3.98a.633.633 0 0 0-.895.895l3.163 3.163a.632.632 0 0 0 .895 0l6.959-6.959a.633.633 0 1 0-.895-.895Z"></path>
</svg>
</label>
</div>
<div>
<p class="py-2 text-13" x-html="item.description" :style="isSidebar ? `color: ${ styles.description_text_color }`:''"></p>
<button class="btn btn-secondary text-13 underline before:content-none after:content-none" :style="isSidebar ? `border-color: ${ styles.accept_btn_bg }` : ''" type="button" title="Meer informatie" aria-label="Meer informatie"
@click.prevent="openInfoModal(item)"> Meer informatie </button>
</div>
</div>
</div>
</template>
</div>
</form>
Text Content
* Voor 17.00 besteld, MORGEN in huis* * Vanaf € 8,95 verzendkosten * Achteraf betalen Vragen? Bel ons: 03-3691274 Nederlands Nederlands Engels Duits Frans Spaans Menu 4,51 Uitstekend ... Kopers-bescherming 4,51 Uitstekend Zoeken Account 0 Winkelwagen Nederlands Nederlands Engels Duits Frans Spaans Sluiten * Terrashaarden Terug naar TerrashaardenAlle terrashaardenTerrashaard zwartTerrashaard cortenstaal / roestTerrashaard gietijzerTerrashaard RVSHoutkachelMexicaanse haardBuitenhaard op gasAccessoires tuinhaarden * Top merken: BonFeu La Hacienda Esschert Design Sunwood GardenMaxx * Top 5 terrashaarden: 1. BonFeu BonGiano SP Zwart 2. La Hacienda Geometric 3. Sunwood Marino Zwart 4. BonFeu BonTino LP Zwart 5. La Hacienda Colorado Mesh 160 * * Vuurschalen Terug naar VuurschalenAlle vuurschalenVuurschalen cortenstaal/roestVuurschalen gietijzerVuurschalen RVSVuurschalen 60 cmVuurschalen 80 cmVuurschalen 100 cmVuurschalen 120 cmAccessoires vuurschalen * Top merken: MOODZ Outdoor Living BonFeu HEAT Outdoor Living La Hacienda Esschert Design * Top 5 vuurschalen: 1. MOODZ Vuurschaal 2. MOODZ Vuurschaal Feet & Handle 3. BonFeu Vuurschaal Ø 80 cm 4. HEAT Classic Vuurschaal 60 cm 5. Esschert Gietijzeren Vuurschaal Ø60 cm * * Vuurkorven Terug naar VuurkorvenAlle vuurkorvenVierkante vuurkorfRonde vuurkorfAccessoires vuurkorven * Top merken: La Hacienda Cyclus HEAT Outdoor Living BonFeu Esschert Design * Top 5 vuurkorven: 1. HEAT Vuurkorf Straight 2. Cyclus Ecodrum 3. La Hacienda Vancouver 4. BonFeu BonVes 45 Roest 5. HEAT Trommelpot * * Terrasverwarming Terug naar TerrasverwarmingAlle terrasverwarmingElektrische terrasverwarmerTerrasverwarming op gasHangende terrasverwarmingStaande terrasverwarmingAccessoires terrasverwarming * Top merken: Faber Sunwood Heatsail Eurom Sunred * Top 5 terrasverwarming: 1. Eurom Golden Shadow 2500 2. Sunwood Marino 3. Heatsail Dome 4. Sunred Heater Royal Diamond Dark Wall 2500 5. Faber The Buzz * * Vuurtafels Terug naar VuurtafelsAlle vuurtafelsHappy Cocooning vuurtafels Terug naar Happy Cocooning vuurtafelsAlle happy cocooning vuurtafelsVuurtafels Happy Cocooning Terug naar Vuurtafels Happy CocooningAlle vuurtafels happy cocooningComposietAluminiumTeakhoutNice nasty Bartafels Happy CocooningBijzettafelsAccessoires Happy Cocooning Cosi vuurtafels Terug naar Cosi vuurtafelsAlle cosi vuurtafelsVuurtafels CosiBartafels CosiAccessoires FORNO vuurtafels InbouwbrandersAccessoires vuurtafels * Top merken: Cosi Happy Cocooning FORNO * Top 5 vuurtafels: 1. Happy Cocooning Vuurtafel Rechthoek Antraciet 2. Cosi Vuurtafel Cosipure 120 Zwart/Teak 3. FORNO Vuurtafel Brann CortenStaal 4. Cosi Cosiloft 120 Zwart/Zwart 5. Happy Cocooning Vuurtafel Hestia * * Sfeerhaarden Terug naar SfeerhaardenAlle sfeerhaardenVrijstaande haardInbouwhaardHangende haardInzethaardLosse schouw / haardmeubelAccessoires sfeerhaarden * Top merken: Dimplex Livin’Flame Eurom BonFeu * Top 5 sfeerhaarden: 1. Dimplex Cassette 400/600 2. Dimplex Ignite XL 74“ 3. Livin’ Flame Duvin WIFI 4. Dimplex Sunningdale 5. BonFeu Bonflame * * Buitenkoken Terug naar BuitenkokenAlle buitenkokenBarbecueRookovenDriepootPizzaovenBakplaat / planchaAccessoires buitenkoken Terug naar Accessoires buitenkokenAlle accessoires buitenkokenGietijzeren pannenDriepootPlancha'sBBQ roostersBBQ gereedschap * Top merken: OFYR BonFeu Quoco The Bastard * Top 5 buitenkoken: 1. BonFeu BonBiza Open Corten 2. The Bastard Urban Large Complete 3. OFYR Classic 100 Corten 4. BonFeu BonBiza Zwart 5. OFYR Island Corten 100 PRO Ceramic * * Accessoires Terug naar AccessoiresAlle accessoiresAanmaakproductenBeschermhoezen Terug naar BeschermhoezenAlle beschermhoezenTuinhaard en vuurschaal BBQ en buitenkeukenVuurtafelTerrasverwarmerLoungesetTuinmeubelenParasolTuinkussensDekzeilen en overig Buiten koken Terug naar Buiten kokenAlle buiten kokenGietijzeren pannenDriepootPlancha´sBBQ roostersBBQ gereedschap Tuinfakkels & tuinkaarsen Terug naar Tuinfakkels & tuinkaarsenAlle tuinfakkels & tuinkaarsenCosi gaslantaarns HaardhoutHoutkachel accessoires Terug naar Houtkachel accessoiresAlle houtkachel accessoiresKloofbijlenBodemplatenHoutopslagKachelpijpen Zweedse fakkels * Top merken: BonFeu OFYR Esschert Design The Windmill Petromax * Top 5 accessoires: 1. BonFeu BonPlancha Ø80 2. Fire-Up Aanmaakblokjes (616 stuks) 3. Glowbus Growdrop 4. BonFeu BonGrill ½ Ø80 5. Esschert Tuimeltoorts Zwart L * * Merken * Top merken: BonFeu Dimplex OFYR The Bastard Heatsail * Merken van A t/m Z: Barbecook BarrelQ Bon Fire Brusletto CookKing Cosi Cyclus DrumGrill Esschert Design Bekijk alle merken * * Meer * Terrashaarden Terug naar TerrashaardenAlle terrashaardenTerrashaard zwartTerrashaard cortenstaal / roestTerrashaard gietijzerTerrashaard RVSHoutkachelMexicaanse haardBuitenhaard op gasAccessoires tuinhaarden * Top merken: BonFeu La Hacienda Esschert Design Sunwood GardenMaxx * Top 5 terrashaarden: 1. BonFeu BonGiano SP Zwart 2. La Hacienda Geometric 3. Sunwood Marino Zwart 4. BonFeu BonTino LP Zwart 5. La Hacienda Colorado Mesh 160 * * Vuurschalen Terug naar VuurschalenAlle vuurschalenVuurschalen cortenstaal/roestVuurschalen gietijzerVuurschalen RVSVuurschalen 60 cmVuurschalen 80 cmVuurschalen 100 cmVuurschalen 120 cmAccessoires vuurschalen * Top merken: MOODZ Outdoor Living BonFeu HEAT Outdoor Living La Hacienda Esschert Design * Top 5 vuurschalen: 1. MOODZ Vuurschaal 2. MOODZ Vuurschaal Feet & Handle 3. BonFeu Vuurschaal Ø 80 cm 4. HEAT Classic Vuurschaal 60 cm 5. Esschert Gietijzeren Vuurschaal Ø60 cm * * Vuurkorven Terug naar VuurkorvenAlle vuurkorvenVierkante vuurkorfRonde vuurkorfAccessoires vuurkorven * Top merken: La Hacienda Cyclus HEAT Outdoor Living BonFeu Esschert Design * Top 5 vuurkorven: 1. HEAT Vuurkorf Straight 2. Cyclus Ecodrum 3. La Hacienda Vancouver 4. BonFeu BonVes 45 Roest 5. HEAT Trommelpot * * Terrasverwarming Terug naar TerrasverwarmingAlle terrasverwarmingElektrische terrasverwarmerTerrasverwarming op gasHangende terrasverwarmingStaande terrasverwarmingAccessoires terrasverwarming * Top merken: Faber Sunwood Heatsail Eurom Sunred * Top 5 terrasverwarming: 1. Eurom Golden Shadow 2500 2. Sunwood Marino 3. Heatsail Dome 4. Sunred Heater Royal Diamond Dark Wall 2500 5. Faber The Buzz * * Vuurtafels Terug naar VuurtafelsAlle vuurtafelsHappy Cocooning vuurtafels Terug naar Happy Cocooning vuurtafelsAlle happy cocooning vuurtafelsVuurtafels Happy Cocooning Terug naar Vuurtafels Happy CocooningAlle vuurtafels happy cocooningComposietAluminiumTeakhoutNice nasty Bartafels Happy CocooningBijzettafelsAccessoires Happy Cocooning Cosi vuurtafels Terug naar Cosi vuurtafelsAlle cosi vuurtafelsVuurtafels CosiBartafels CosiAccessoires FORNO vuurtafels InbouwbrandersAccessoires vuurtafels * Top merken: Cosi Happy Cocooning FORNO * Top 5 vuurtafels: 1. Happy Cocooning Vuurtafel Rechthoek Antraciet 2. Cosi Vuurtafel Cosipure 120 Zwart/Teak 3. FORNO Vuurtafel Brann CortenStaal 4. Cosi Cosiloft 120 Zwart/Zwart 5. Happy Cocooning Vuurtafel Hestia * * Sfeerhaarden Terug naar SfeerhaardenAlle sfeerhaardenVrijstaande haardInbouwhaardHangende haardInzethaardLosse schouw / haardmeubelAccessoires sfeerhaarden * Top merken: Dimplex Livin’Flame Eurom BonFeu * Top 5 sfeerhaarden: 1. Dimplex Cassette 400/600 2. Dimplex Ignite XL 74“ 3. Livin’ Flame Duvin WIFI 4. Dimplex Sunningdale 5. BonFeu Bonflame * * Buitenkoken Terug naar BuitenkokenAlle buitenkokenBarbecueRookovenDriepootPizzaovenBakplaat / planchaAccessoires buitenkoken Terug naar Accessoires buitenkokenAlle accessoires buitenkokenGietijzeren pannenDriepootPlancha'sBBQ roostersBBQ gereedschap * Top merken: OFYR BonFeu Quoco The Bastard * Top 5 buitenkoken: 1. BonFeu BonBiza Open Corten 2. The Bastard Urban Large Complete 3. OFYR Classic 100 Corten 4. BonFeu BonBiza Zwart 5. OFYR Island Corten 100 PRO Ceramic * * Accessoires Terug naar AccessoiresAlle accessoiresAanmaakproductenBeschermhoezen Terug naar BeschermhoezenAlle beschermhoezenTuinhaard en vuurschaal BBQ en buitenkeukenVuurtafelTerrasverwarmerLoungesetTuinmeubelenParasolTuinkussensDekzeilen en overig Buiten koken Terug naar Buiten kokenAlle buiten kokenGietijzeren pannenDriepootPlancha´sBBQ roostersBBQ gereedschap Tuinfakkels & tuinkaarsen Terug naar Tuinfakkels & tuinkaarsenAlle tuinfakkels & tuinkaarsenCosi gaslantaarns HaardhoutHoutkachel accessoires Terug naar Houtkachel accessoiresAlle houtkachel accessoiresKloofbijlenBodemplatenHoutopslagKachelpijpen Zweedse fakkels * Top merken: BonFeu OFYR Esschert Design The Windmill Petromax * Top 5 accessoires: 1. BonFeu BonPlancha Ø80 2. Fire-Up Aanmaakblokjes (616 stuks) 3. Glowbus Growdrop 4. BonFeu BonGrill ½ Ø80 5. Esschert Tuimeltoorts Zwart L * * Merken * Top merken: BonFeu Dimplex OFYR The Bastard Heatsail * Merken van A t/m Z: Barbecook BarrelQ Bon Fire Brusletto CookKing Cosi Cyclus DrumGrill Esschert Design Bekijk alle merken * Hulp nodig? Telefoon: 03-3691274 Whatsapp: open chat Mail: info@terrashaardshop.be Klantendienst Sluiten MIJN WINKELWAGEN Aantal: Totaal: Naar winkelwagen Naar kassa Checkout using your account E-mail adres Wachtwoord Inloggen Wachtwoord vergeten? Betaal met een nieuw account Het aanmaken van een account heeft veel voordelen: * Bekijk order en verzend status * Bekijk je vorige orders * Betaal sneller Account aanmaken Ga direct door naar de inhoud Op zondag 12 mei vieren we Moederdag. Deze dag draait om alle moederfiguren in ons leven. Een lekker ontbijtje op bed, samen iets maken of een sfeervol cadeau zoals een gasfakkel of een muffinbakvorm. Laat u inspireren door het ruime aanbod aan Moederdag cadeau suggesties. * Voor 17.00 besteld, MORGEN in huis* * Vanaf € 8,95 verzendkosten * Achteraf betalen Sfeerhaarden Bekijk alle Tuinhaarden Bekijk alle Vuurschalen Bekijk alle BonFeu Plancha bakken als een pro Bekijk alle BonFeu Onze meest populaire producten The Bastard Urban Medium Complete 0 Reviews L 68.2 x B 48 x H 114 cm Inclusief onderstel en zijplankjes OP VOORRAAD, direct leverbaar Speciale prijs 1.299,00 Normale prijs 1.499,00 In winkelwagen BonFeu BonBiza Corten Open 6 Reviews L 80 x B 80 x H 100 cm In de kleuren zwart & Corten OP VOORRAAD, direct leverbaar Speciale prijs 899,95 Normale prijs 949,95 In winkelwagen Dimplex Cassette 400/600 LED 2.0 Eco Opti-Myst 11 Reviews B 41 x D 22 x H 20 cm Exclusief houtstammen! OP VOORRAAD, direct leverbaar Speciale prijs 599,00 Normale prijs 847,00 In winkelwagen HEAT Trolle Buitenkeuken Zwart 1 Review L 117 x D 46 x H 106 Mobiele buitenkeuken OP VOORRAAD, direct leverbaar Speciale prijs 499,95 Normale prijs 549,95 In winkelwagen BonFeu BonVes 45 Roest Vuurkorf 5 Reviews L 45 x B 45 x H 100 cm Incl. barbecuerooster OP VOORRAAD, direct leverbaar Speciale prijs 229,95 Normale prijs 239,95 In winkelwagen HEAT Pizza Oven Ovnhus 2 Reviews L 50 x D 36 x H 161 cm Ook te gebruiken als BBQ OP VOORRAAD, direct leverbaar Speciale prijs 169,95 Normale prijs 199,95 In winkelwagen MOODZ Vuurschaal Ø 100 cm 112 Reviews L 100 x B 100 x H 21 cm 3 mm hoogwaardig CortenStaal OP VOORRAAD, direct leverbaar Speciale prijs 149,95 Normale prijs 215,00 In winkelwagen HEAT BRÅTEN Houtskool Barbecue 1 Review Nieuwe houtskool barbecue van HEAT Eenvoudig in gebruik OP VOORRAAD, direct leverbaar Speciale prijs 149,95 Normale prijs 229,95 In winkelwagen OFYR Bekijk alle OFYR OFYR Classic 100 15 Reviews L 100 x B 100 x H 100 cm Hoogwaardig Cortenstaal (103 kg) OP VOORRAAD, direct leverbaar Speciale prijs 1.895,00 Normale prijs 1.995,00 In winkelwagen OFYR Classic Storage Black 85 0 Reviews L 85 x B 85 x H 100 cm Hoogwaardig staal met zwarte coating (96 kg) OP VOORRAAD, direct leverbaar 2.145,00 In winkelwagen OFYR Island 85 Corten Teak Wood 1 Review L 45 x B 135 x H 100 cm Hoogwaardig CortenStaal (145,5 kg) OP VOORRAAD, direct leverbaar Speciale prijs 2.495,00 Normale prijs 2.645,00 In winkelwagen OFYR Classic Storage Corten 100 PRO 3 Reviews L 100 x B 100 x H 101 cm Hoogwaardig Cortenstaal (136 kg) OP VOORRAAD, direct leverbaar Speciale prijs 2.495,00 Normale prijs 2.545,00 In winkelwagen OFYR Kamado Table 135 PRO The Bastard 0 Reviews L 135 x B 65 X H 89,7 cm (incl. wielen) Hoogwaardig CortenStaal (133/162 kg) OP VOORRAAD, direct leverbaar v.a. 2.795,00 Normale prijs 2.945,00 In winkelwagen OFYR Island Black 100 Teak Wood 0 Reviews L 50 cm x B 135 x H 100 cm Hoogwaardig staal met zwarte coating (167 kg) OP VOORRAAD, direct leverbaar 3.195,00 In winkelwagen OFYR Island Black 100 PRO Ceramic Dark Grey 0 Reviews L 65 x B 135 x H 100 cm Hoogwaardig staal met zwarte coating (225 kg) OP VOORRAAD, direct leverbaar 3.995,00 In winkelwagen Onze beste merken Bekijk alle Meer inspiratie Bekijk alle blogs Duurzame materialen gebruiken in de tuin 5 mei De beste barbecue accessoires voor uw barbecue 21 april Hoe u uw huis kunt uitbreiden met uw tuin 12 maart De leukste Valentijnsdag cadeaus voor uw Valentijn 2 februari Energiezuinig warmte creëren in uw horeca onderneming 2 januari Maak uw eigen kerstpakket voor familie of collega's 6 december Black Friday deals 2023 van Terrashaardshop.be 21 november Winterse recepten uit de gietijzeren braadpan 9 oktober Terrashaard, vuurschaal of sfeerhaard kopen? U vindt hier alles voor een sfeervol binnen- & buitenleven! Of u nu een kerstborrel of een tuinfeest organiseert, gezellig wilt barbecueën of ongedwongen wilt relaxen in huis of er buiten, u bent bij Terrashaardshop.be aan het juiste adres. We hebben werkelijk alles om warmte en sfeer te creëren voor binnen en buiten! Ons enorme assortiment bestaat uit de meest uiteenlopende sfeerartikelen variërend van tuinhaarden en vuurtafels tot terrasverwarming en sfeerhaarden. U zult nergens anders een groter en gevarieerder aanbod vinden! • Een vuurschaal of vuurkorf gevuld met brandend hout verhoogt de sfeer in uw tuin wanneer het donker wordt en is een mooi alternatief voor een authentiek kampvuur. • Een tuinhaard siert uw tuin overdag en in de avond. Een terrashaard staat er om bekend dat hij veel warme afgeeft, waardoor u nog tot laat met vrienden en familie buiten kunt zitten. • Heeft u een mooie loungeset en wilt u lekker relaxen? Met een vuurtafel geniet u van een aangename warmte zonder rook of rondspringende vonken. • Wilt u bij wat frisser weer ook nog comfortabel buiten kunnen zitten? Denk dan eens aan een fijne terrasverwarmer. • Voor warmte en sfeer in huis denkt u aan een elegante sfeerhaard. Heerlijk genieten zonder zorgen om kinderen of huisdieren. De kracht van Terrashaardshop.be is de unieke combinatie van kopen via internet tegen eerlijke en scherpe prijzen, maar met de betrouwbaarheid van de traditionele winkel. Lees meer Mis nooit meer een deal en neem deel aan onze winacties! Ja, ik doe mee Klantendienst * Klantendienst * Bestellen * Betalen * Verzenden * Retourneren * Privacy & Beleid * Contact * Veel gestelde vragen Categorieën * Terrashaarden * Vuurschalen * Vuurkorven * Terrasverwarming * Terrasheaters * Vuurtafels * Sfeerhaarden * Buitenkoken * Accessoires Merken * Heatsail * OFYR * BonFeu * Dimplex * Alle merken Zakelijk * Zakelijk bestellen * Maatwerkproducten * Cadeaubonnen Over Terrashaardshop.be * Over ons * Onze showroom * Vacatures & stageplekken * Bedrijfsgegevens & contact * Nieuwsbrief * Tips & advies * Blog Hulp nodig? Bel 03-3691274 of stuur een e-mail Openingstijden: Maandag t/m vrijdag van 08:30 - 17:00u. Zaterdag en zondag gesloten. © 2024 Terrashaard shop | Algemene voorwaarden | Privacy | Cookies Wij gebruiken cookies om uw shopervaring te verbeteren. Met het accepteren van onze cookies wordt uw shopervaring als klant makkelijker en persoonlijker gemaakt. Wilt U uw cookievoorkeuren zelf aanpassen? Dat kan door te klikken op Cookies aanpassen. U kunt dan kiezen welk type cookies U wel of niet wilt accepteren. Wilt U meer weten over onze cookies? Lees dan het cookie beleid. Alle cookies accepteren Cookies aanpassen Meer informatie Naam Aanbieder Beschrijving Vervaltermijn Type Kopers-bescherming 4,51 Uitstekend