<!doctype html>
<html lang="nl">
<head >
<meta charset="utf-8"/>
<meta name="title" content="Van Game PC tot Zoutlamp. Een webshop apart! - LalaShops - Uw digitaal winkelcentrum"/>
<meta name="description" content="Prebuild Game PC ➽ Gaming Computer ➽ Videobewerking Desktop ➽ Zakelijke Workstation ➽ Zelf Samenstellen ➽ Webshop online bestellen!"/>
<meta name="keywords" content="Computer, PC, gamecomputer, laptop, refurbished, elektronica, leptop, labtop, goedkoop, kristal, edelsteen, mineralen, wierook, heilighout, satya nag champa, eettafel, dressoir, salontafel, houtwerk."/>
<meta name="robots" content="INDEX,FOLLOW"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Van Game PC tot Zoutlamp. Een webshop apart! - LalaShops - Uw digitaal winkelcentrum</title>
<link rel="stylesheet" type="text/css" media="all" href="https://www.lalashops.nl/static/version1754469272/_cache/merged/c928e12b00a8d4f119a08d2d17b2320d.css" />
<link rel="canonical" href="https://www.lalashops.nl" />
<link rel="icon" type="image/x-icon" href="https://www.lalashops.nl/media/favicon/stores/9/Lalalogo_Square_1.jpeg" />
<link rel="shortcut icon" type="image/x-icon" href="https://www.lalashops.nl/media/favicon/stores/9/Lalalogo_Square_1.jpeg" />
<meta name="p:domain_verify" content="47cc93f4786e941c8e337baa2de54005"/>
<style>
.checkout-cart-index #block-shipping {display:none;}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BWS5WE8M8T"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BWS5WE8M8T');
</script>
<script>
var BASE_URL = 'https://www.lalashops.nl/';
var THEME_PATH = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL';
var COOKIE_CONFIG = {
"expires": null,
"path": "\u002F",
"domain": ".lalashops.nl",
"secure": true,
"lifetime": "360000",
"cookie_restriction_enabled": true };
var CURRENT_STORE_CODE = 'lalashops_webshop_sv';
var CURRENT_WEBSITE_ID = '1';
window.hyva = window.hyva || {}
window.cookie_consent_groups = window.cookie_consent_groups || {}
window.cookie_consent_groups['necessary'] = true;
window.cookie_consent_config = window.cookie_consent_config || {};
window.cookie_consent_config['necessary'] = [].concat(
window.cookie_consent_config['necessary'] || [],
[
'user_allowed_save_cookie',
'form_key',
'mage-messages',
'private_content_version',
'mage-cache-sessid',
'last_visited_store',
'section_data_ids'
]
);
</script>
<script>
'use strict';
(function( hyva, undefined ) {
function lifetimeToExpires(options, defaults) {
const lifetime = options.lifetime || defaults.lifetime;
if (lifetime) {
const date = new Date;
date.setTime(date.getTime() + lifetime * 1000);
return date;
}
return null;
}
function generateRandomString() {
const allowedCharacters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
length = 16;
let formKey = '',
charactersLength = allowedCharacters.length;
for (let i = 0; i < length; i++) {
formKey += allowedCharacters[Math.round(Math.random() * (charactersLength - 1))]
}
return formKey;
}
const sessionCookieMarker = {noLifetime: true}
const cookieTempStorage = {};
const internalCookie = {
get(name) {
const v = document.cookie.match('(^|;) ?' + name + '=([^;]*)(;|$)');
return v ? v[2] : null;
},
set(name, value, days, skipSetDomain) {
let expires,
path,
domain,
secure,
samesite;
const defaultCookieConfig = {
expires: null,
path: '/',
domain: null,
secure: false,
lifetime: null,
samesite: 'lax'
};
const cookieConfig = window.COOKIE_CONFIG || {};
expires = days && days !== sessionCookieMarker
? lifetimeToExpires({lifetime: 24 * 60 * 60 * days, expires: null}, defaultCookieConfig)
: lifetimeToExpires(window.COOKIE_CONFIG, defaultCookieConfig) || defaultCookieConfig.expires;
path = cookieConfig.path || defaultCookieConfig.path;
domain = !skipSetDomain && (cookieConfig.domain || defaultCookieConfig.domain);
secure = cookieConfig.secure || defaultCookieConfig.secure;
samesite = cookieConfig.samesite || defaultCookieConfig.samesite;
document.cookie = name + "=" + encodeURIComponent(value) +
(expires && days !== sessionCookieMarker ? '; expires=' + expires.toGMTString() : '') +
(path ? '; path=' + path : '') +
(domain ? '; domain=' + domain : '') +
(secure ? '; secure' : '') +
(samesite ? '; samesite=' + samesite : 'lax');
},
isWebsiteAllowedToSaveCookie() {
const allowedCookies = this.get('user_allowed_save_cookie');
if (allowedCookies) {
const allowedWebsites = JSON.parse(unescape(allowedCookies));
return allowedWebsites[CURRENT_WEBSITE_ID] === 1;
}
return false;
},
getGroupByCookieName(name) {
const cookieConsentConfig = window.cookie_consent_config || {};
let group = null;
for (let prop in cookieConsentConfig) {
if (!cookieConsentConfig.hasOwnProperty(prop)) continue;
if (cookieConsentConfig[prop].includes(name)) {
group = prop;
break;
}
}
return group;
},
isCookieAllowed(name) {
const cookieGroup = this.getGroupByCookieName(name);
return cookieGroup
? window.cookie_consent_groups[cookieGroup]
: this.isWebsiteAllowedToSaveCookie();
},
saveTempStorageCookies() {
for (const [name, data] of Object.entries(cookieTempStorage)) {
if (this.isCookieAllowed(name)) {
this.set(name, data['value'], data['days'], data['skipSetDomain']);
delete cookieTempStorage[name];
}
}
}
};
hyva.getCookie = (name) => {
const cookieConfig = window.COOKIE_CONFIG || {};
if (cookieConfig.cookie_restriction_enabled && ! internalCookie.isCookieAllowed(name)) {
return cookieTempStorage[name] ? cookieTempStorage[name]['value'] : null;
}
return internalCookie.get(name);
}
hyva.setCookie = (name, value, days, skipSetDomain) => {
const cookieConfig = window.COOKIE_CONFIG || {};
if (cookieConfig.cookie_restriction_enabled && ! internalCookie.isCookieAllowed(name)) {
cookieTempStorage[name] = {value, days, skipSetDomain};
return;
}
return internalCookie.set(name, value, days, skipSetDomain);
}
hyva.setSessionCookie = (name, value, skipSetDomain) => {
return hyva.setCookie(name, value, sessionCookieMarker, skipSetDomain)
}
hyva.getBrowserStorage = () => {
const browserStorage = window.localStorage || window.sessionStorage;
if (!browserStorage) {
console.warn('Browser Storage is unavailable');
return false;
}
try {
browserStorage.setItem('storage_test', '1');
browserStorage.removeItem('storage_test');
} catch (error) {
console.warn('Browser Storage is not accessible', error);
return false;
}
return browserStorage;
}
hyva.postForm = (postParams) => {
const form = document.createElement("form");
let data = postParams.data;
if (! postParams.skipUenc && ! data.uenc) {
data.uenc = btoa(window.location.href);
}
form.method = "POST";
form.action = postParams.action;
Object.keys(postParams.data).map(key => {
const field = document.createElement("input");
field.type = 'hidden'
field.value = postParams.data[key];
field.name = key;
form.appendChild(field);
});
const form_key = document.createElement("input");
form_key.type = 'hidden';
form_key.value = hyva.getFormKey();
form_key.name="form_key";
form.appendChild(form_key);
document.body.appendChild(form);
form.submit();
}
hyva.getFormKey = function () {
let formKey = hyva.getCookie('form_key');
if (!formKey) {
formKey = generateRandomString();
hyva.setCookie('form_key', formKey);
}
return formKey;
}
hyva.formatPrice = (value, showSign, options = {}) => {
const formatter = new Intl.NumberFormat(
'nl\u002DNL',
Object.assign({
style: 'currency',
currency: 'EUR',
signDisplay: showSign ? 'always' : 'auto'
}, options)
);
return (typeof Intl.NumberFormat.prototype.formatToParts === 'function') ?
formatter.formatToParts(value).map(({type, value}) => {
switch (type) {
case 'currency':
return '\u20AC' || value;
case 'minusSign':
return '- ';
case 'plusSign':
return '+ ';
default :
return value;
}
}).reduce((string, part) => string + part) :
formatter.format(value);
}
const formatStr = function (str, nStart) {
const args = Array.from(arguments).slice(2);
return str.replace(/(%+)([0-9]+)/g, (m, p, n) => {
const idx = parseInt(n) - nStart;
if (args[idx] === null || args[idx] === void 0) {
return m;
}
return p.length % 2
? p.slice(0, -1).replace('%%', '%') + args[idx]
: p.replace('%%', '%') + n;
})
}
hyva.str = function (string) {
const args = Array.from(arguments);
args.splice(1, 0, 1);
return formatStr.apply(undefined, args);
}
hyva.strf = function () {
const args = Array.from(arguments);
args.splice(1, 0, 0);
return formatStr.apply(undefined, args);
}
/**
* Take a html string as `content` parameter and
* extract an element from the DOM to replace in
* the current page under the same selector,
* defined by `targetSelector`
*/
hyva.replaceDomElement = (targetSelector, content) => {
// Parse the content and extract the DOM node using the `targetSelector`
const parser = new DOMParser();
const doc = parser.parseFromString(content, 'text/html');
const contentNode = doc.querySelector(targetSelector);
// Bail if content can't be found
if (!contentNode) {
return;
}
hyva.activateScripts(contentNode)
// Replace the old DOM node with the new content
document.querySelector(targetSelector).replaceWith(contentNode);
// Reload customerSectionData and display cookie-messages if present
window.dispatchEvent(new CustomEvent("reload-customer-section-data"));
hyva.initMessages();
}
hyva.activateScripts = (contentNode) => {
// Extract all the script tags from the content.
// Script tags won't execute when inserted into a dom-element directly,
// therefore we need to inject them to the head of the document.
const tmpScripts = contentNode.getElementsByTagName('script');
if (tmpScripts.length > 0) {
// Push all script tags into an array
// (to prevent dom manipulation while iterating over dom nodes)
const scripts = [];
for (let i = 0; i < tmpScripts.length; i++) {
scripts.push(tmpScripts[i]);
}
// Iterate over all script tags and duplicate+inject each into the head
for (let i = 0; i < scripts.length; i++) {
let script = document.createElement('script');
script.innerHTML = scripts[i].innerHTML;
document.head.appendChild(script);
// Remove the original (non-executing) node from the content
scripts[i].parentNode.removeChild(scripts[i]);
}
}
return contentNode;
}
const replace = {['+']: '-', ['/']: '_', ['=']: ','};
hyva.getUenc = () => btoa(window.location.href).replace(/[+/=]/g, match => replace[match]);
let currentTrap;
const focusableElements = (rootElement) => {
const selector = 'button, [href], input, select, textarea, details, [tabindex]:not([tabindex="-1"]';
return Array.from(rootElement.querySelectorAll(selector))
.filter(el => {
return el.style.display !== 'none'
&& !el.disabled
&& el.tabIndex !== -1
&& (el.offsetWidth || el.offsetHeight || el.getClientRects().length)
})
}
const focusTrap = (e) => {
const isTabPressed = e.key === 'Tab' || e.keyCode === 9;
if (!isTabPressed) return;
const focusable = focusableElements(currentTrap)
const firstFocusableElement = focusable[0]
const lastFocusableElement = focusable[focusable.length - 1]
e.shiftKey
? document.activeElement === firstFocusableElement && (lastFocusableElement.focus(), e.preventDefault())
: document.activeElement === lastFocusableElement && (firstFocusableElement.focus(), e.preventDefault())
};
hyva.releaseFocus = (rootElement) => {
if (currentTrap && (!rootElement || rootElement === currentTrap)) {
currentTrap.removeEventListener('keydown', focusTrap)
currentTrap = null
}
}
hyva.trapFocus = (rootElement) => {
if (!rootElement) return;
hyva.releaseFocus()
currentTrap = rootElement
rootElement.addEventListener('keydown', focusTrap)
const firstElement = focusableElements(rootElement)[0]
firstElement && firstElement.focus()
}
hyva.alpineInitialized = (fn) => window.addEventListener('alpine:initialized', fn, {once: true})
window.addEventListener('user-allowed-save-cookie', () => internalCookie.saveTempStorageCookies())
}( window.hyva = window.hyva || {} ));
</script>
<!-- BEGIN GOOGLE ADWORDS CODE -->
<script>
{
(function initGoogleAdwords(){
const config = {
conversionId: "AW\u002D694466228",
gtagSiteSrc: "https\u003A\u002F\u002Fwww.googletagmanager.com\u002Fgtag\u002Fjs\u003Fid\u003DAW\u002D694466228",
conversionLabel: "",
isCookieRestrictionModeEnabled: "1",
cookieName: 'user_allowed_save_cookie',
currentWebsite: '1'
};
const anonymize_ip = true;
let allowServices = false,
allowedCookies,
allowedWebsites;
if (typeof hyva === 'undefined' || (!hyva.getBrowserStorage || !hyva.getCookie || !hyva.setCookie)) {
console.warn("Hyvä helpers are not loaded yet. Make sure they are included before this script");
}
if (config.isCookieRestrictionModeEnabled && typeof hyva !== 'undefined') {
allowedCookies = hyva.getCookie(config.cookieName);
if (allowedCookies !== null) {
allowedWebsites = JSON.parse(unescape(allowedCookies));
if (allowedWebsites[config.currentWebsite] === 1) {
allowServices = true;
}
}
} else {
allowServices = true;
}
if (allowServices) {
if (!window.gtag) {
const gtagScript = document.createElement('script');
gtagScript.type = 'text/javascript';
gtagScript.async = true;
gtagScript.src = config.gtagSiteSrc;
document.head.insertBefore(gtagScript, document.head.children[0]);
window.dataLayer = window.dataLayer || [];
window.gtag = function () {
dataLayer.push(arguments)
};
gtag('js', new Date());
gtag('set', 'developer_id.dYjhlMD', true);
}
gtag('config', config.conversionId, {'anonymize_ip': anonymize_ip});
if (config.conversionLabel) {
gtag(
'event',
'conversion',
{
'send_to': config.conversionId + '/'
+ config.conversionLabel
}
);
}
}
}())
}
</script>
<!-- END GOOGLE ADWORDS CODE -->
<!-- BEGIN GOOGLE ANALYTICS 4 CODE -->
<script>
(function initGoogleGA(){
const config = {"isCookieRestrictionModeEnabled":true,"currentWebsite":1,"cookieName":"user_allowed_save_cookie","pageTrackingData":{"optPageUrl":"","measurementId":"G-BWS5WE8M8T"},"ordersTrackingData":[],"googleAnalyticsAvailable":true};
const anonymize_ip = true;
let allowServices = false,
allowedCookies,
allowedWebsites,
measurementId;
if (typeof hyva === 'undefined' || (!hyva.getBrowserStorage || !hyva.getCookie || !hyva.setCookie)) {
console.warn("Hyvä helpers are not loaded yet. Make sure they are included before this script");
}
if (config.isCookieRestrictionModeEnabled && typeof hyva !== 'undefined') {
allowedCookies = hyva.getCookie(config.cookieName);
if (allowedCookies !== null) {
allowedWebsites = JSON.parse(unescape(allowedCookies));
if (allowedWebsites[config.currentWebsite] === 1) {
allowServices = true;
}
} else {
window.addEventListener('user-allowed-save-cookie', initGoogleGA, { once: true, passive: true });
}
} else {
allowServices = true;
}
if (allowServices) {
measurementId = config.pageTrackingData.measurementId;
if (!window.gtag) {
const gtagScript = document.createElement('script');
gtagScript.type = 'text/javascript';
gtagScript.async = true;
gtagScript.src = 'https://www.googletagmanager.com/gtag/js?id=' + measurementId;
document.head.insertBefore(gtagScript, document.head.children[0]);
window.dataLayer = window.dataLayer || [];
window.gtag = function(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('set', 'developer_id.dYjhlMD', true);
}
gtag('config', measurementId, { 'anonymize_ip': anonymize_ip });
// Purchase Event
if (config.ordersTrackingData.hasOwnProperty('currency')) {
let purchaseObject = config.ordersTrackingData.orders[0];
purchaseObject['items'] = config.ordersTrackingData.products;
gtag('event', 'purchase', purchaseObject);
}
}
}())
</script>
<!-- END GOOGLE ANALYTICS 4 CODE -->
<script>
if (!window.IntersectionObserver) {
window.IntersectionObserver = function (callback) {
this.observe = el => el && callback(this.takeRecords());
this.takeRecords = () => [{isIntersecting: true, intersectionRatio: 1}];
this.disconnect = () => {};
this.unobserve = () => {};
}
}
</script>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Van Game PC tot Zoutlamp. Een webshop apart!"/>
<meta property="og:description" content="Prebuild Game PC ➽ Gaming Computer ➽ Videobewerking Desktop ➽ Zakelijke Workstation ➽ Zelf Samenstellen ➽ Webshop online bestellen!"/>
<meta property="og:url" content="https://www.lalashops.nl"/>
<meta property="og:site_name" content="LaLaShops.nl"/>
<script type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"WebSite","url":"https:\/\/www.lalashops.nl\/","name":"LaLaShops.nl"}</script><script type="application/ld+json">{"@context":"http:\/\/schema.org\/","@type":"WebPage","speakable":{"@type":"SpeakableSpecification","cssSelector":[".cms-content"],"xpath":["\/html\/head\/title"]}}</script>
<script>
window.addEventListener('DOMContentLoaded', () => {
if (window._amSwiperLoaded) {
return;
}
// Load Swiper script asynchronously
const script = document.createElement('script');
script.src = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Amasty_ShopByBrandHyvaCompatibility/js/swiper.min.js';
script.async = true;
document.body.appendChild(script);
window._amSwiperLoaded = true;
script.onload = () => {
// Dispatch custom event when Swiper is loaded
window.dispatchEvent(new CustomEvent('amSwiperLoaded', {}));
}
});
</script></head>
<body id="html-body" class="cms-home cms-index-index page-layout-1column">
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" />
<noscript>
<section class="message global noscript border-b-2 border-blue-500 bg-blue-50 shadow-none m-0 px-0 rounded-none font-normal">
<div class="container text-center">
<p>
<strong>JavaScript lijkt te zijn uitgeschakeld in uw browser.</strong>
<span>
Voor de beste gebruikerservaring, zorg ervoor dat javascript ingeschakeld is voor uw browser. </span>
</p>
</div>
</section>
</noscript>
<script>
document.body.addEventListener('touchstart', () => {}, {passive: true})
</script>
<script>
function initCookieBanner() {
const isUserAllowedSaveCookieName = 'user_allowed_save_cookie';
const currentWebsiteId = 1;
const isAllowedSaveCookie = () => {
const allowedCookies = hyva.getCookie(isUserAllowedSaveCookieName);
if (!allowedCookies) {
return false;
}
let allowedCookieWebsites;
try {
allowedCookieWebsites = JSON.parse(unescape(allowedCookies));
} catch (error) {
return false;
}
return allowedCookieWebsites[currentWebsiteId] !== undefined ?
!!allowedCookieWebsites[currentWebsiteId] :
false;
};
const component = {
showCookieBanner: false,
cookieName: isUserAllowedSaveCookieName,
cookieValue: '{"1":1}',
cookieLifetime: '31536000',
noCookiesUrl: 'https\u003A\u002F\u002Fwww.lalashops.nl\u002Fcookie\u002Findex\u002FnoCookies\u002F',
checkAcceptCookies() {
this.showCookieBanner = !isAllowedSaveCookie();
},
setAcceptCookies() {
const cookieExpires = this.cookieLifetime / 60 / 60 / 24;
hyva.setCookie(this.cookieName, this.cookieValue, cookieExpires);
if (!hyva.getCookie(this.cookieName)) {
window.location.href = this.noCookiesUrl;
} else {
window.dispatchEvent(new CustomEvent('user-allowed-save-cookie'));
}
}
};
component.checkAcceptCookies(); // Trigger this on load to ensure the banner's state is updated immediately
return component;
}
</script>
<section id="notice-cookie-block"
aria-label="Wij gebruiken cookies om uw ervaring beter te maken."
x-data="initCookieBanner();"
x-defer="intersect"
@private-content-loaded.window="checkAcceptCookies()">
<template x-if="showCookieBanner">
<div role="dialog"
aria-modal="true"
class="container fixed py-0 right-0 bottom-0 z-30 flex max-w-full bg-container-darker
border-t-2 border-container-darker">
<button @click="showCookieBanner = false;" aria-label="Close panel"
class="absolute right-0 top-0 p-4">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" role="img">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/>
<title>x</title></svg>
</button>
<div class="p-2 pr-4">
<p class="mb-1">
<span class="font-semibold">
Wij gebruiken cookies om uw ervaring beter te maken. </span>
</p>
<p class="mb-1">
<span>
Om te voldoen aan de cookie wetgeving, vragen we uw toestemming om de cookies te plaatsen. </span>
</p>
<p class="mb-4">
<a href="https://www.lalashops.nl/privacy-policy-cookie-restriction-mode/"
class="underline">
Read our policy </a>
</p>
<div class="my-2">
<button @click="setAcceptCookies(); showCookieBanner = false"
id="btn-cookie-allow"
class="btn btn-primary">
Cookies toestaan </button>
</div>
</div>
</div>
</template>
</section>
<div class="page-wrapper"><header class="page-header"><a class="action skip sr-only focus:not-sr-only focus:absolute focus:z-40 focus:bg-white
contentarea"
href="#contentarea">
<span>
Ga naar de inhoud </span>
</a>
<script>
const isHomepage = true;
function initHeader() {
return {
searchOpen: false,
cart: {},
isCartOpen: false,
isMobile: true,
isHeaderFixed: false,
isTopMenuFixed: false,
headerMainInitialTop: null,
topMenuInitialTop: null,
isPageLoaded: false,
init() {
this.checkIsSearchMobile();
if (!this.isMobile) {
this.headerMainInitialTop = this.$refs.headerMain.getBoundingClientRect().top + window.scrollY;
this.topMenuInitialTop = this.$refs.topMenu.getBoundingClientRect().top + window.scrollY;
if (isHomepage) {
this.isHeaderFixed = false;
this.isTopMenuFixed = false;
} else {
this.isHeaderFixed = false;
this.isTopMenuFixed = false;
}
this.checkPosition();
window.addEventListener('scroll', this.checkPosition.bind(this));
}
if (this.isMobile) {
this.isHeaderFixed = true;
}
setTimeout(() => {
this.isPageLoaded = true;
}, 10);
},
getData(data) {
if (data.cart) {
this.cart = data.cart;
}
},
isCartEmpty() {
return !this.cart.summary_count;
},
checkIsSearchMobile() {
const mobileElement = this.$refs.searchContainerMobile;
this.isMobile = mobileElement ? getComputedStyle(mobileElement).display !== "none" : window.matchMedia('(max-width: 1023px)').matches;
// Prevent moving the search form if an input is focused
const searchInput = this.$refs.searchForm.querySelector('input');
if (document.activeElement === searchInput) {
return; // Don't move the search form if the input is currently focused
}
if (this.isMobile) {
this.$refs.searchContainerMobile.appendChild(this.$refs.searchForm);
} else {
this.$refs.searchContainerDesktop.appendChild(this.$refs.searchForm);
}
},
toggleCart(event) {
if (event.detail && event.detail.isOpen !== undefined) {
this.isCartOpen = event.detail.isOpen;
if (!this.isCartOpen && this.$refs && this.$refs.cartButton) {
this.$refs.cartButton.focus();
}
} else {
this.isCartOpen = true;
}
},
checkPosition() {
if (!this.isMobile) {
const headerMain = this.$refs.headerMain;
const topMenu = this.$refs.topMenu;
const headerMainRect = headerMain.getBoundingClientRect();
const topMenuRect = topMenu.getBoundingClientRect();
const scrollPosition = window.scrollY;
if (isHomepage) {
this.isHeaderFixed = scrollPosition >= this.headerMainInitialTop;
this.isTopMenuFixed = this.isHeaderFixed && topMenuRect.top <= headerMainRect.bottom;
if (scrollPosition < 89) {
this.isTopMenuFixed = false;
}
const topContainer = document.querySelector('.top-container');
const pageMain = document.querySelector('.page-main');
if (window.innerWidth >= 1024) {
if (this.isTopMenuFixed) {
if (topContainer) {
topContainer.style.paddingTop = '51px';
} else if (pageMain) {
pageMain.style.paddingTop = '141px';
}
} else {
if (topContainer) {
topContainer.style.paddingTop = '';
} else if (pageMain) {
pageMain.style.paddingTop = '';
}
}
}
// Update clerk-instant-search-container position
const clerkContainer = document.querySelector('.clerk-instant-search-container');
if (clerkContainer) {
if (this.isHeaderFixed) {
clerkContainer.style.position = 'fixed';
clerkContainer.style.top = '65px';
} else {
clerkContainer.style.position = 'absolute';
clerkContainer.style.top = '108px';
}
}
} else {
this.isHeaderFixed = scrollPosition >= this.headerMainInitialTop;
this.isTopMenuFixed = this.isHeaderFixed;
}
}
},
eventListeners: {
['@private-content-loaded.window'](event) {
this.getData(event.detail.data);
},
['@resize.window.debounce']() {
this.checkIsSearchMobile();
},
['@visibilitychange.window.debounce']() {
this.checkIsSearchMobile();
},
},
}
}
function initCompareHeader() {
return {
compareProducts: null,
itemCount: 0,
receiveCompareData(data) {
if (data['compare-products']) {
this.compareProducts = data['compare-products'];
this.itemCount = this.compareProducts.count;
}
}
}
}
</script>
<div class="border-t-[3px] border-primary fixed top-0 left-0 w-full z-50"></div>
<div id="header" class="bg-white pt-[3px]" x-data="initHeader()" x-bind="eventListeners">
<div class="bg-lala-gray-light-ultra h-10 hidden lg:flex items-center">
<div class="container flex gap-8 2xl:gap-16 justify-between text-lala-gray text-xs font-light text-center items-center">
<div>Welkom in ons digitaal winkelcentrum!</div>
<a href="tel:085 877 0866" class="mr-auto hover:text-lala-black">Bel: 085 877 0866</a>
<div class="flex gap-2">
<div class="icon-user text-base text-black"></div>
<nav class="flex">
<a id="customer.header.sign.in.link" class="hover:text-lala-black" onclick="hyva.setCookie && hyva.setCookie(
'login_redirect',
window.location.href,
1
)" href="https://www.lalashops.nl/customer/account/index/" title="Inloggen">
Inloggen</a>
/ <a id="customer.header.register.link" class="hover:text-lala-black" href="https://www.lalashops.nl/customer/account/create/" title="Account aanmaken">
Account aanmaken </a>
</nav>
</div> <a class="hover:text-lala-black" href="https://www.lalashops.nl/over-ons/">Over ons</a>
</div>
</div>
<div class="header-main">
<div class="bg-white border-b border-b-lala-gray-light lg:border-b-transparent z-50"
:class="{
'fixed top-0 left-0 w-full z-40 bg-lala-blue': isHeaderFixed && isPageLoaded,
'!border-b-lala-gray-light-ultra': isHomepage,
'bg-lala-blue': !isHomepage // Non-homepage starts as blue, but is initially static
}"
x-ref="headerMain"
:style="isPageLoaded ? 'transition: all 300ms ease-in-out;' : ''">
<div class="container h-[60px] lg:h-[90px] flex gap-4 items-center justify-between">
<a class="header-logo inline-block align-middle max-w-[165px] lg:max-w-none -translate-x-1 lg:translate-x-0" href="https://www.lalashops.nl/" title="Go to Home page">
<picture><source type="image/webp" srcset="https://www.lalashops.nl/media/logo/stores/9/Lalashops-logo_portal.webp"><img src="https://www.lalashops.nl/media/logo/stores/9/Lalashops-logo_portal.png" alt="LalaShops Logo" width="300" height="73" loading="eager" fetchpriority="high"></picture>
</a>
<div x-ref="searchContainerDesktop" class="hidden max-w-2xl lg:block min-h-a11y px-6 flex-1 relative"></div>
<div class="hidden lg:block h-9 border-r border-r-lala-gray-light-ultra"></div>
<div class="flex gap-1 lg:gap-8 items-center">
<a id="compare-link" class="fixed bottom-12 hidden w-[70px] h-[70px] border border-lala-gray-light-ultra justify-center lg:flex flex-col items-center gap-0.5 p-1 bg-white rounded-full hover:bg-lala-blue outline-offset-2 invisible" :class="{ 'invisible': !(itemCount > 0) }" href="https://www.lalashops.nl/catalog/product_compare/index/" title="Producten vergelijken" x-data="initCompareHeader()" @private-content-loaded.window="receiveCompareData($event.detail.data)" :aria-label="`
Producten vergelijken,
${itemCount > 1 ? hyva.str('\u00251\u0020producten', itemCount) : hyva.str('\u00251\u0020product', itemCount) }`">
<div class="icon-balance text-3xl"></div>
<div class="hidden text-xxs text-lala-gray font-light">Vergelijken</div>
<!-- <span x-text="itemCount" class="absolute -top-1.5 -right-1.5 px-2 py-0.5 rounded-full bg-yellow-200 text-yellow-800 text-xs font-semibold leading-none text-center uppercase tabular-nums" aria-hidden="true"></span> -->
</a>
<a class="hidden lg:flex flex-col gap-[0.15rem] items-center" href="https://www.lalashops.nl/klantenservice/">
<div class="icon-headset text-3xl"></div>
<div class="text-xxs text-lala-gray font-light">Klantenservice</div>
</a>
<div x-data="{ openSidebarWishlist: false }">
<a id="customer.header.wishlist.link.new" @click.prevent.stop="() => {
$dispatch('toggle-wishlist', { isOpen: true })
}" class="hidden lg:flex flex-col items-center relative gap-[0.15rem]" href="https://www.lalashops.nl/wishlist/" title="Verlanglijst" x-data="{ itemCount: 0 }" @private-content-loaded.window="itemCount = parseInt($event.detail.data.wishlist.counter)">
<div class="icon-heart text-[1.75rem]"></div>
<div class="text-xxs text-lala-gray font-light">Verlanglijst</div>
<template x-if="itemCount">
<span class="absolute -top-1.5 right-1 pt-[5px] pb-[3px] px-[7px] rounded-full bg-primary text-white text-xs font-semibold leading-none text-center uppercase tabular-nums" x-text="`${itemCount}`"></span>
</template>
</a>
<div class="wishlist-sidebar fixed top-0 right-0 z-[60] h-[100vh]">
<script>
function initWishlistOnWishlistSidebar($wishlistJson) {
function wishlistSidebarFetchHandler(body, postUrl, isRemoveAction = true) {
const messages = {
"success": isRemoveAction ?
"\u00251\u0020has\u0020been\u0020removed\u0020from\u0020your\u0020Wish\u0020List." :
"\u00251\u0020is\u0020toegevoegd\u0020aan\u0020uw\u0020verlanglijst.",
"warning": isRemoveAction ?
"Could\u0020not\u0020remove\u0020item\u0020from\u0020your\u0020Wish\u0020List." :
"Could\u0020not\u0020add\u0020item\u0020to\u0020your\u0020Wish\u0020List.",
}
const postHeaders = {
"headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
},
body: body,
"method": "POST",
"mode": "cors",
"credentials": "include"
};
return fetch(postUrl, postHeaders).then(function(response) {
if (response.redirected) {
window.location.href = response.url;
} else if (response.ok) {
return response.json();
} else {
const message = {
type: "warning",
text: messages.warning
};
window.dispatchMessages && window.dispatchMessages([message], 5000);
}
}).then(function(response) {
if (!response) return;
const message = {
type: (response.success) ? "success" : "error",
text: (response.success) ? messages.success : response.error_message
}
window.dispatchMessages && window.dispatchMessages([message], 5000);
window.dispatchEvent(new CustomEvent("reload-customer-section-data"));
}).catch(function(error) {
const message = {
type: "error",
text: error
};
window.dispatchMessages && window.dispatchMessages([message], 5000);
});
}
const test = $wishlistJson
return {
test,
wishlistProducts: null,
itemCount: 0,
wishlistCountLabel: null,
wishlistItems: {},
open: false,
receiveWishlistData: function(data) {
if (data['wishlist']) {
this.wishlistProducts = data['wishlist'];
this.wishlistCountLabel = '(' + this.wishlistProducts.counter + ')';
this.itemCount = this.wishlistProducts.items.length;
this.wishlistItems = this.wishlistProducts.items;
}
},
addToCart: function(json) {
const obj = JSON.parse(json);
const postUrl = obj.action;
const body = "form_key=" + hyva.getFormKey() + "&item=" + obj.data.item + "&qty=" + obj.data.qty + "&uenc=" + hyva.getUenc();
wishlistSidebarFetchHandler(body, postUrl, /* isRemoveAction */ false);
},
removeFromWishlist: function(json) {
const obj = JSON.parse(json);
const postUrl = obj.action;
const body = "form_key=" + hyva.getFormKey() + "&item=" + obj.data.item + "&uenc=" + hyva.getUenc();
wishlistSidebarFetchHandler(body, postUrl);
},
toggleWishlistDrawer(event) {
if (event.detail && event.detail.isOpen !== undefined) {
if (event.detail.isOpen) {
this.openWishlistDrawer();
} else {
this.open = false;
}
} else {
this.openWishlistDrawer()
}
},
openWishlistDrawer() {
this.open = true;
},
closeWishlistDrawer() {
this.$dispatch('toggle-wishlist', {
isOpen: false
})
},
}
}
</script>
<section x-cloak
id="wishlist-section"
x-data="initWishlistOnWishlistSidebar()"
@private-content-loaded.window="receiveWishlistData($event.detail.data)"
x-init="$watch('open', (value, oldValue) => {
if(value) {
document.body.style.overflow = true ? 'hidden' : '';
} else {
document.body.style.overflow = false ? 'hidden' : ''
}
})"
@toggle-wishlist.window="toggleWishlistDrawer($event)">
<div role="dialog"
aria-labelledby="wishlist-title"
aria-modal="true"
:aria-hidden="!open"
class="fixed inset-y-0 right-0 z-[52] flex max-w-full">
<div class="backdrop"
x-show="open"
x-transition:enter="ease-in-out duration-500"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="ease-in-out duration-500"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
role="button"
@click="closeWishlistDrawer()"
aria-label="Close wishlist"></div>
<div class="relative w-screen max-w-md shadow-2xl"
x-show="open"
x-transition:enter="transform transition ease-in-out duration-500 sm:duration-700"
x-transition:enter-start="translate-x-full"
x-transition:enter-end="translate-x-0"
x-transition:leave="transform transition ease-in-out duration-500 sm:duration-700"
x-transition:leave-start="translate-x-0"
x-transition:leave-end="translate-x-full"
role="region"
:tabindex="open ? 0 : -1"
aria-label="Verlanglijst">
<div class="flex flex-col h-full max-h-screen bg-white shadow-xl justify-start">
<header class="relative px-4 py-6 sm:px-6 bg-lala-gray-light-ultra">
<p id="cart-drawer-title" class="text-lg font-medium leading-7 text-gray-900 text-lala-black">
<strong>Verlanglijst</strong>
</p>
</header>
<div class="px-6 mt-2" x-show="itemCount > 0">
<p class="text-base font-bold border-b border-lala-gray-light-ultra text-lala-black pb-2">
<span x-show="itemCount > 0" x-html="itemCount"></span>
<span x-show="itemCount > 1">producten in verlanglijst</span>
<span x-show="itemCount === 1">product in verlanglijst</span>
</p>
</div>
<div class="p-3 overflow-auto max-h-[75vh]">
<template x-for="product in wishlistItems" x-show="itemCount > 0">
<div class="flex items-start p-3 space-x-4 transition duration-150 ease-in-out rounded-lg hover:bg-gray-100 [&:not(:last-child)]:border-b border-container lg:border-none">
<a :href="product.product_url"
class="w-1/4 flex items-center justify-center border rounded-lg border-lala-gray-light-ultra p-2"
:aria-label="hyva.strf('Product\u0020\u0022\u00250\u0022', product.product_name)">
<img
:src="product.image.src"
width="150" height="150" loading="lazy" :alt="product.product_name" />
</a>
<div class="w-3/4">
<div>
<p class="text-sm">
<span x-html="product.product_name"></span>
</p>
</div>
<div class="flex justify-between items-center mt-2">
<div class="text-sm font-bold text-lala-blue" x-html="product.product_price"></div>
<div class="flex items-center gap-3">
<div class="add-to-cart-wrapper flex justify-end" x-show="product.product_is_saleable_and_visible">
<button @click="addToCart(product.add_to_cart_params)" class="btn btn-primary">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
</button>
</div>
<button type="button"
class="inline-flex py-4"
@click="removeFromWishlist(product.delete_item_params)"
:aria-label="hyva.strf('Remove\u0020product\u0020\u0022\u00250\u0022\u0020from\u0020wishlist'), product.product_name">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"/>
</svg>
</button>
</div>
</div>
</div>
</div>
</template>
<p x-show="itemCount === 0">Je verlanglijst is leeg.</p>
</div>
</div>
<button
type="button"
@click="closeWishlistDrawer()"
aria-label="Close wishlist"
class="absolute top-0 right-2 p-4 mt-2 text-gray-300 transition-colors hover:text-black">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
</div>
</section> </div>
</div>
<button id="menu-cart-icon" class="relative flex flex-col items-center gap-[0.15rem]" x-ref="cartButton" :aria-disabled="isCartEmpty()" :aria-label="`
Toggle minicart,
${isCartEmpty() ? 'Je winkelwagen is leeg' : cart.summary_count > 1 ? hyva.str('%1 producten', cart.summary_count) : hyva.str('%1 item', cart.summary_count) }`" @click.prevent.stop="() => {
$dispatch('toggle-cart', { isOpen: true })
}" @toggle-cart.window="toggleCart($event)" :aria-expanded="isCartOpen" aria-haspopup="dialog" >
<div class="icon-cart text-[1.75rem] pr-[1.125rem] lg:pr-1.5"></div>
<span x-text="cart.summary_count" x-show="!isCartEmpty()" x-cloak class="absolute -top-1.5 right-2.5 pt-[5px] pb-[3px] px-[7px] rounded-full bg-primary text-white text-xs font-semibold leading-none text-center uppercase tabular-nums" aria-hidden="true"></span>
<div class="hidden lg:block text-xxs text-lala-gray font-light gap-[0.15rem]">Winkelwagen</div>
</button>
<nav class="navigation lg:hidden" aria-label="Site navigation" x-data="initMenuMobile_68985b5137d3d()" @load.window="setActiveMenu($root)" @keydown.window.escape="closeMenu()">
<button type="button" class="flex items-center justify-center cursor-pointer nav-opener p-0" aria-label="Open menu" :aria-expanded="open" x-ref="mobileMenuTrigger" @click="toggleMenu()" :class="{ 'mobile-menu-active': open }">
<span :class="{ 'opacity-0' : open, 'opacity-1': !open }"></span>
<span :class="{ 'opacity-0' : !open, 'opacity-1': open }"></span>
</button>
<div x-ref="mobileMenuNavLinks" class="
z-50 fixed top-[61px] pt-1 right-0 w-full h-full hidden
flex-col bg-container-lighter
overflow-y-auto overflow-x-hidden max-h-[calc(100vh_-_61px)]
" :class="{ 'flex': open, 'hidden': !open }" :aria-hidden="open ? 'false' : 'true'" role="dialog" aria-modal="true">
<ul class="container !px-8 flex flex-col gap-y-1 h-full" aria-label="Site navigation links">
<li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/elektronica/" title="Elektronica"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 52 42.839" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_721" data-name="Group 721" transform="translate(-410 -205.581)">
<path id="Line_42" data-name="Line 42" d="M1,3H-1V0H1Z" transform="translate(430.577 239.638)" fill="url(#linear-gradient)"/>
<path id="Line_43" data-name="Line 43" d="M1,3H-1V0H1Z" transform="translate(441.422 239.638)" fill="url(#linear-gradient)"/>
<path id="Path_296" data-name="Path 296" d="M36.031,42.281H14.853v-1a5.116,5.116,0,0,1,5.11-5.11H30.921a5.116,5.116,0,0,1,5.11,5.11Zm-19.013-2H33.866a3.116,3.116,0,0,0-2.945-2.11H19.963A3.116,3.116,0,0,0,17.018,40.281Z" transform="translate(410.557 206.138)" fill="#1e84cd"/>
<path id="Rectangle_348" data-name="Rectangle 348" d="M4.424-1H45.577A5.429,5.429,0,0,1,51,4.423V27.94a5.429,5.429,0,0,1-5.423,5.423H4.424A5.43,5.43,0,0,1-1,27.939V4.424A5.43,5.43,0,0,1,4.424-1ZM45.577,31.363A3.427,3.427,0,0,0,49,27.94V4.423A3.427,3.427,0,0,0,45.577,1H4.424A3.428,3.428,0,0,0,1,4.424V27.939a3.428,3.428,0,0,0,3.424,3.424Z" transform="translate(411 206.581)" fill="#1e84cd"/>
</g>
<title>electronica-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 52 42.8" style="enable-background:new 0 0 52 42.8;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M46.6,0H5.4C2.4,0,0,2.4,0,5.4v23.5c0,3,2.4,5.4,5.4,5.4h14.2v2.5c-2.4,0.4-4.2,2.5-4.2,5v1h21.2v-1 c0-2.5-1.8-4.6-4.2-5v-2.5h14.2c3,0,5.4-2.4,5.4-5.4V5.4C52,2.4,49.6,0,46.6,0z M34.4,40.8H17.6c0.4-1.3,1.6-2.1,2.9-2.1h11 C32.8,38.7,34,39.6,34.4,40.8z M30.4,36.7h-8.8v-2.4h8.8V36.7z M50,28.9c0,1.9-1.5,3.4-3.4,3.4H5.4c-1.9,0-3.4-1.5-3.4-3.4V5.4 C2,3.5,3.5,2,5.4,2h41.2C48.5,2,50,3.5,50,5.4V28.9z"/>
<title>electronica-white</title></svg>
</span>Elektronica</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Elektronica subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/" title="Elektronica Nieuw">ELEKTRONICA NIEUW</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/" title="Computers" :class="{ 'text-lala-blue': open }">Computers</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Computers subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/" title="Gaming PC's" :class="{ 'text-lala-blue': open }">Gaming PC's</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Gaming PC's subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-3" title="AMD Ryzen 3" :class="{ 'text-lala-blue': open }">AMD Ryzen 3</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-5/" title="AMD Ryzen 5" :class="{ 'text-lala-blue': open }">AMD Ryzen 5</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-7/" title="AMD Ryzen 7" :class="{ 'text-lala-blue': open }">AMD Ryzen 7</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-9/" title="AMD Ryzen 9" :class="{ 'text-lala-blue': open }">AMD Ryzen 9</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i3/" title="Intel i3" :class="{ 'text-lala-blue': open }">Intel i3</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i5/" title="Intel i5" :class="{ 'text-lala-blue': open }">Intel i5</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i7/" title="Intel i7" :class="{ 'text-lala-blue': open }">Intel i7</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i9/" title="Intel i9" :class="{ 'text-lala-blue': open }">Intel i9</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/complete-sets/" title="Complete Sets" :class="{ 'text-lala-blue': open }">Complete Sets</a></div></li></ul></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/videobewerking-computers/" title="Videobewerking Computers" :class="{ 'text-lala-blue': open }">Videobewerking Computers</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/home-office-pc-s/" title="Home & Office PC's" :class="{ 'text-lala-blue': open }">Home & Office PC's</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/mini-pc" title="Mini PC - Intel NUC Compleet" :class="{ 'text-lala-blue': open }">Mini PC - Intel NUC Compleet</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/all-in-one-pc" title="All-In-One-PC" :class="{ 'text-lala-blue': open }">All-In-One-PC</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/digital-audio-workstation-daw-sound-studio-computers/" title="Digital Audio Workstation (DAW) / Sound Studio Computers" :class="{ 'text-lala-blue': open }">Digital Audio Workstation (DAW) / Sound Studio Computers</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/premium-bitbull-computers" title="Premium BitBull Computers" :class="{ 'text-lala-blue': open }">Premium BitBull Computers</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/19-inch-business-rack-servers" title="19 Inch Business Rack Servers" :class="{ 'text-lala-blue': open }">19 Inch Business Rack Servers</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/laptops" title="Laptops" :class="{ 'text-lala-blue': open }">Laptops</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/" title="Randapparatuur" :class="{ 'text-lala-blue': open }">Randapparatuur</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Randapparatuur subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/monitoren-tv" title="Monitoren / TV's" :class="{ 'text-lala-blue': open }">Monitoren / TV's</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Monitoren / TV's subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/monitoren-tv/monitoren" title="Monitoren" :class="{ 'text-lala-blue': open }">Monitoren</a></div></li></ul></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/gaming-chair-game-stoel" title="Gaming Chair" :class="{ 'text-lala-blue': open }">Gaming Chair</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/toetsenbord-muis/" title="Toetsenbord & Muis" :class="{ 'text-lala-blue': open }">Toetsenbord & Muis</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/data-opslag/" title="Data Opslag" :class="{ 'text-lala-blue': open }">Data Opslag</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/" title="Hardware" :class="{ 'text-lala-blue': open }">Hardware</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Hardware subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/videokaarten/" title="Videokaarten" :class="{ 'text-lala-blue': open }">Videokaarten</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/behuizingen/" title="Behuizingen" :class="{ 'text-lala-blue': open }">Behuizingen</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/voeding/" title="Voeding" :class="{ 'text-lala-blue': open }">Voeding</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/moederborden/" title="Moederborden" :class="{ 'text-lala-blue': open }">Moederborden</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/processoren/" title="Processoren" :class="{ 'text-lala-blue': open }">Processoren</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/processor-koeling/" title="Processor / Behuizing Koeling" :class="{ 'text-lala-blue': open }">Processor / Behuizing Koeling</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/solid-state-drives-ssd/" title="Solid State Drives (SSD)" :class="{ 'text-lala-blue': open }">Solid State Drives (SSD)</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/pc-geheugen-ram/" title="PC Geheugen (RAM)" :class="{ 'text-lala-blue': open }">PC Geheugen (RAM)</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/geluid/" title="Geluid" :class="{ 'text-lala-blue': open }">Geluid</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Geluid subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/geluid/headphones/" title="Headphones" :class="{ 'text-lala-blue': open }">Headphones</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/netwerk-en-internet/" title="Netwerk & Internet" :class="{ 'text-lala-blue': open }">Netwerk & Internet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/" title="Kabels, Adapters en Stekkerdozen" :class="{ 'text-lala-blue': open }">Kabels, Adapters en Stekkerdozen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Kabels, Adapters en Stekkerdozen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/kabels/" title="Kabels" :class="{ 'text-lala-blue': open }">Kabels</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/adapters/" title="Adapters" :class="{ 'text-lala-blue': open }">Adapters</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-nieuw/accessoires/" title="Accessoires" :class="{ 'text-lala-blue': open }">Accessoires</a></div></li></ul></li><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/" title="Elektronica Refurbished">ELEKTRONICA REFURBISHED</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/" title="Computers" :class="{ 'text-lala-blue': open }">Computers</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Computers subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/mini-pc-computer" title="MINI PC / Computer" :class="{ 'text-lala-blue': open }">MINI PC / Computer</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/desktops-en-towers/" title="Desktops & Towers" :class="{ 'text-lala-blue': open }">Desktops & Towers</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/gaming-computers/" title="Gaming Computers" :class="{ 'text-lala-blue': open }">Gaming Computers</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/laag-segment/" title="Laag Segment" :class="{ 'text-lala-blue': open }">Laag Segment</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/midden-segment/" title="Midden Segment" :class="{ 'text-lala-blue': open }">Midden Segment</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/hoog-segment/" title="Hoog Segment" :class="{ 'text-lala-blue': open }">Hoog Segment</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/top-segment/" title="Top Segment" :class="{ 'text-lala-blue': open }">Top Segment</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/laptops/" title="Laptops" :class="{ 'text-lala-blue': open }">Laptops</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/monitoren-tv-s/" title="Monitoren / TV's" :class="{ 'text-lala-blue': open }">Monitoren / TV's</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/videokaart-gebruikt" title="Videokaart / GPU" :class="{ 'text-lala-blue': open }">Videokaart / GPU</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/elektronica/elektronica-refurbished/wat-betekend-refurbished/" title="Wat betekent 'refurbished'?" :class="{ 'text-lala-blue': open }">Wat betekent 'refurbished'?</a></div></li></ul></li></ul></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/aanbiedingen-2955/" title="Aanbiedingen"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 48.013 55.886" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_2" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_753" data-name="Group 753" transform="translate(-478.994 -176.757)">
<path id="Path_385" data-name="Path 385" d="M30.412,51.345l-9.239-4.2L11.05,51.311V39.024h1.168V49.437l8.975-3.7,8.05,3.663V39.024h1.168Z" transform="translate(482.269 181.299)" fill="url(#linear-gradient_2)"/>
<path id="Path_384" data-name="Path 384" d="M19.675-.529l3.8,3.928,3.8-3.928,2.4,4.911,4.83-2.56.767,5.413,5.384-.943-.943,5.384,5.413.767-2.56,4.83,4.911,2.4-3.928,3.8,3.928,3.8-4.911,2.4,2.56,4.83-5.413.767.943,5.384-5.384-.943-.767,5.413-4.83-2.56-2.4,4.911-3.8-3.928-3.8,3.928-2.4-4.911-4.83,2.56-.767-5.413-5.384.943.943-5.384-5.413-.767,2.56-4.83-4.911-2.4,3.928-3.8-3.928-3.8,4.911-2.4-2.56-4.83,5.413-.767L6.291,6.291l5.384.943.767-5.413,4.83,2.56Zm3.8,6.085L20.083,2.05,17.939,6.433,13.628,4.147l-.685,4.831L8.137,8.137l.841,4.806-4.831.685L6.433,17.94,2.05,20.084l3.506,3.394L2.05,26.871l4.383,2.144L4.147,33.327l4.831.685-.841,4.806,4.806-.841.685,4.831,4.312-2.286L20.083,44.9,23.477,41.4,26.871,44.9l2.144-4.383,4.312,2.286.685-4.831,4.806.841-.841-4.806,4.831-.685-2.286-4.312L44.9,26.871,41.4,23.477,44.9,20.084,40.522,17.94l2.286-4.312-4.831-.685.841-4.806-4.806.841-.685-4.831L29.015,6.433,26.871,2.05Z" transform="translate(479.523 177.286)" fill="#1e84cd"/>
</g>
<title>aanbiedingen-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 48 55.9" style="enable-background:new 0 0 48 55.9;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M44.1,24l3.9-3.8l-4.9-2.4l2.6-4.8l-5.4-0.8l0.9-5.4l-5.4,0.9L35,2.4l-4.8,2.6L27.8,0L24,3.9L20.2,0l-2.4,4.9 L13,2.3l-0.8,5.4L6.8,6.8l0.9,5.4L2.4,13l2.6,4.8L0,20.2L3.9,24L0,27.8l4.9,2.4L2.4,35l5.4,0.8l-0.9,5.4l5.4-0.9l0.8,5.4l1.4-0.7 v10.9l10.1-4.2l9.2,4.2l0-10.9l1.3,0.7l0.8-5.4l5.4,0.9l-0.9-5.4l5.4-0.8l-2.6-4.8l4.9-2.4L44.1,24z M32.5,53.9l-8-3.7l-9,3.7v-9.7 l2.3-1.2l2.4,4.9l3.8-3.9l3.8,3.9l2.4-4.9l2.3,1.2V53.9z M43.3,33.9l-4.8,0.7l0.8,4.8l-4.8-0.8l-0.7,4.8L29.5,41l-2.1,4.4L24,41.9 l-3.4,3.5l-2.1-4.4l-4.3,2.3l-0.7-4.8l-4.8,0.8l0.8-4.8l-4.8-0.7L7,29.5l-4.4-2.1L6.1,24l-3.5-3.4L7,18.5l-2.3-4.3l4.8-0.7L8.7,8.7 l4.8,0.8l0.7-4.8L18.5,7l2.1-4.4L24,6.1l3.4-3.5L29.5,7l4.3-2.3l0.7,4.8l4.8-0.8l-0.8,4.8l4.8,0.7l-2.3,4.3l4.4,2.1L41.9,24l3.5,3.4 l-4.4,2.1L43.3,33.9z"/>
<title>aanbiedingen-white</title></svg>
</span>Aanbiedingen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Aanbiedingen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/aanbiedingen/verpakkingsmateriaal" title="Verpakkingsmateriaal">Verpakkingsmateriaal</a></div></li></ul></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/baby-en-kinderspullen" title="Baby en Kinderspullen"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 50.073 43.238" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_3" x1="0.056" y1="0.149" x2="0.917" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_1249" data-name="Group 1249" transform="translate(-410.963 -200.391)">
<path id="Path_505" data-name="Path 505" d="M163.828,46.892a1.739,1.739,0,0,1-1.621-.7l1.3-.745a.292.292,0,0,0-.1-.11c.32.159,2.025-.007,4.282-.9a5,5,0,0,0,.606-.28l-.123-.073-.125-.075a22.341,22.341,0,0,1-2.717-2.772l1.134-.981a23.951,23.951,0,0,0,2.363,2.473l.108.064c.424.251,1.133.67,1.072,1.449-.063.81-.928,1.258-1.766,1.591a16.665,16.665,0,0,1-3.4.97A6.752,6.752,0,0,1,163.828,46.892Z" transform="translate(291.026 170.915)" fill="url(#linear-gradient_3)"/>
<path id="Path_502" data-name="Path 502" d="M29.136,79.3a37.48,37.48,0,0,1-4.155-.231,38.267,38.267,0,0,1-7.434-1.592,30.922,30.922,0,0,1-6.625-2.919,19.117,19.117,0,0,1-7.753-6.692A19.39,19.39,0,0,1,.235,59.894,21.857,21.857,0,0,1,.32,53.219c.156-.886.614-3.032,1.486-3.82a2.035,2.035,0,0,1,2.688.026,18.244,18.244,0,0,1,2.543,2.243,25.984,25.984,0,0,0,5.189,4.246c3.315,1.88,6.524,2.221,9.539,1.013a10.02,10.02,0,0,0,3.53-2.353l1.131.986a11.474,11.474,0,0,1-4.1,2.759,11.147,11.147,0,0,1-4.732.794,13.78,13.78,0,0,1-6.1-1.895,27.182,27.182,0,0,1-5.5-4.481,17.537,17.537,0,0,0-2.3-2.051c-.621-.4-.778-.259-.871-.175A6.785,6.785,0,0,0,1.8,53.48a20.317,20.317,0,0,0-.077,6.2,17.2,17.2,0,0,0,9.9,13.546l.04.02.037.024a29.651,29.651,0,0,0,6.361,2.793A36.487,36.487,0,0,0,34.213,77.44c6.333-.908,11.125-4.736,12.5-9.991,1.192-4.537-.535-9.122-4.618-12.266l.915-1.189c4.577,3.524,6.5,8.7,5.153,13.835a14.072,14.072,0,0,1-4.635,7.177,18.038,18.038,0,0,1-9.108,3.917A37.275,37.275,0,0,1,29.136,79.3Z" transform="translate(410.944 164.328)" fill="#1e84cd"/>
<path id="Path_503" data-name="Path 503" d="M94.151,21.581a8.124,8.124,0,0,1-3.656-1.49,8.526,8.526,0,0,1-2.555-2.958,12.238,12.238,0,0,1-1.3-5.271,12.06,12.06,0,0,1,.717-4.778,10.224,10.224,0,0,1,2.229-3.506A13.574,13.574,0,0,1,99.137-.25,12.063,12.063,0,0,1,107.183,3c.355.288.661.537.944.733,1.359.943,3.05,2.116,4.1,1.9a1.8,1.8,0,0,1,1.785.391,1.378,1.378,0,0,1,.076,1.464l-.021.047a8.9,8.9,0,0,1-7.5,5.347l-.155-1.492a7.432,7.432,0,0,0,6.213-4.305l-.1.019c-1.672.339-3.572-.98-5.248-2.143-.329-.229-.672-.507-1.034-.8A10.61,10.61,0,0,0,99.127,1.25,12.208,12.208,0,0,0,90.67,4.622,9.364,9.364,0,0,0,88.144,11.8c.13,3.241,1.216,5.62,3.229,7.072a6.609,6.609,0,0,0,2.917,1.213Z" transform="translate(346.771 200.641)" fill="#1e84cd"/>
<path id="Path_505-2" data-name="Path 505" d="M150.055,32.453s4.594-.353,3.1-5.885a10.664,10.664,0,0,1,1.751-9.315" transform="translate(300.482 188.267)" fill="none" stroke="#1e84cd" stroke-width="1.5"/>
<path id="Path_506" data-name="Path 506" d="M68.7,104.235a23.367,23.367,0,0,1-4.762-.46,9.069,9.069,0,0,1-3.922-1.647,3.1,3.1,0,0,1-1.146-1.851,3.319,3.319,0,0,1,.535-2.306,7.6,7.6,0,0,1,4.488-3.183,19.567,19.567,0,0,1,5.785-.722,37.518,37.518,0,0,1,7.182.775L76.533,96.3h0a36.677,36.677,0,0,0-6.887-.739c-3.2-.015-7.349.526-8.959,3.182a1.513,1.513,0,0,0,.291,2.229c1.34,1.12,4.526,1.809,8.115,1.755s6.774-.845,8.1-2.015l.993,1.124c-1.626,1.436-5.016,2.329-9.069,2.39Q68.907,104.235,68.7,104.235Z" transform="translate(367.307 130.98)" fill="#1e84cd"/>
<circle id="Ellipse_58" data-name="Ellipse 58" cx="1.463" cy="1.463" r="1.463" transform="translate(443.799 209.155)" fill="#1e84cd" stroke="#1e84cd" stroke-width="1.5"/>
</g>
<title>duck-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 50.1 43.2" style="enable-background:new 0 0 50.1 43.2;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M43.9,17.4c0.3,0,0.7,0,1-0.1c1.2-0.2,2.3-0.5,3.4-1c0.8-0.3,1.7-0.8,1.8-1.6s-0.6-1.2-1.1-1.4l-0.1-0.1 c-0.7-0.6-1.3-1.2-1.8-1.9c1.2-0.9,2.2-2.1,2.8-3.6l0,0c0.3-0.5,0.2-1-0.1-1.5c-0.5-0.4-1.2-0.6-1.8-0.4c-1,0.2-2.7-1-4.1-1.9 c-0.3-0.2-0.6-0.4-0.9-0.7c-2.2-2-5.1-3.2-8-3.2c-3.6,0-7,1.3-9.6,3.8c-1,1-1.7,2.2-2.2,3.5c-0.6,1.5-0.8,3.2-0.7,4.8 c0,1.8,0.5,3.6,1.3,5.3c0.3,0.6,0.7,1.1,1.1,1.6c-0.9,0.8-1.9,1.5-3.1,1.9c-3,1.2-6.2,0.9-9.5-1c-1.9-1.2-3.6-2.6-5.2-4.2 c-0.8-0.8-1.6-1.6-2.5-2.2c-0.8-0.7-1.9-0.7-2.7,0c-0.9,0.8-1.3,2.9-1.5,3.8C0,19.5,0,21.8,0.3,24c0.4,2.8,1.4,5.6,2.9,8 c1.9,2.9,4.6,5.2,7.8,6.7c2.1,1.2,4.3,2.2,6.6,2.9c2.4,0.8,4.9,1.3,7.4,1.6c1.4,0.2,2.8,0.2,4.2,0.2c1.8,0,3.5-0.1,5.3-0.4 c3.3-0.4,6.5-1.8,9.1-3.9c2.3-1.9,3.9-4.4,4.6-7.2c1.3-5-0.5-10-4.7-13.5c0.1-0.3,0.2-0.6,0.2-0.9C43.7,17.4,43.8,17.4,43.9,17.4z M48.1,14.5l0.1,0.1l0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3c-2,0.8-3.5,1-4.1,0.9c0-0.5-0.1-1.1-0.3-1.7c-0.1-0.4-0.2-0.8-0.3-1.2 c0.9-0.2,1.8-0.5,2.6-0.9C46.5,13,47.3,13.8,48.1,14.5z M44.6,6.2c1.3,0.8,2.6,1.4,3.7,1.1h0.1c-1,2.2-3,3.7-5.4,4.2 C43.1,9.7,43.6,7.8,44.6,6.2z M46.7,31.4c-1.4,5.3-6.2,9.1-12.5,10C28.8,42.1,23.3,41.7,18,40c-2.2-0.7-4.4-1.6-6.4-2.8l0,0l0,0 c-5.4-2.5-9.2-7.6-9.9-13.5c-0.3-2.1-0.3-4.1,0.1-6.2c0.1-1.1,0.5-2.1,1-3c0.1-0.1,0.2-0.2,0.9,0.2C4.5,15.3,5.3,16,6,16.8 c1.6,1.7,3.5,3.2,5.5,4.5c1.9,1.1,3.9,1.7,6.1,1.9c1.6,0.1,3.2-0.2,4.7-0.8c1.3-0.5,2.5-1.3,3.6-2.3c0.1,0.1,0.3,0.2,0.4,0.3 c1.1,0.8,2.3,1.3,3.7,1.5l0.1-1.5c-1.1-0.2-2.1-0.6-2.9-1.2c-2-1.5-3.1-3.8-3.2-7.1c-0.2-2.6,0.7-5.3,2.5-7.2 c2.3-2.2,5.3-3.4,8.5-3.4c2.7,0,5.2,1.1,7.1,2.9c0.4,0.3,0.7,0.6,1,0.8c0.1,0.1,0.2,0.1,0.3,0.2c-1.7,2.7-2.3,6.1-1.4,9.2 c0.4,1.6,0.4,2.9-0.2,3.7c-0.8,1.1-2.2,1.2-2.2,1.2l0.1,0.7l0.1,0.7c0.1,0,1.8-0.2,3-1.5C46.3,22.7,47.8,27.1,46.7,31.4z"/>
<path class="st0" d="M25.4,33.3c-3.6,0.1-6.8-0.6-8.1-1.8l-0.1-0.1c-0.6-0.5-0.7-1.5-0.2-2.1c1.6-2.7,5.8-3.2,9-3.2 c2.3,0,4.6,0.3,6.9,0.7l0.3-1.5c-2.4-0.5-4.8-0.7-7.2-0.8c-2,0-3.9,0.2-5.8,0.7c-1.8,0.5-3.4,1.6-4.5,3.2c-0.5,0.7-0.6,1.5-0.5,2.3 c0.1,0.7,0.6,1.4,1.1,1.9c1.2,0.9,2.5,1.4,3.9,1.6c1.6,0.3,3.2,0.5,4.8,0.5c0.1,0,0.3,0,0.4,0c4.1-0.1,7.4-1,9.1-2.4l-1-1.1 C32.2,32.5,29,33.3,25.4,33.3z"/>
<path class="st0" d="M34.3,8c-1.2,0-2.2,1-2.2,2.2s1,2.2,2.2,2.2s2.2-1,2.2-2.2S35.5,8,34.3,8z M34.3,10.9c-0.4,0-0.7-0.3-0.7-0.7 s0.3-0.7,0.7-0.7S35,9.8,35,10.2S34.7,10.9,34.3,10.9z"/>
</g>
<title>duck-white</title></svg>
</span>Baby en Kinderspullen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Baby en Kinderspullen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/geboortelijstjes" title="Geboortelijstjes">Geboortelijstjes</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/knuffeldoekjes" title="Knuffeldoekjes">Knuffeldoekjes</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/brievenbus-cadeau-s" title="Brievenbus Cadeau's">Brievenbus Cadeau's</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/glazen-tegeltjes" title="Glazen  Tegeltjes">Glazen Tegeltjes</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen" title="Leren en Spelen">Leren en Spelen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Leren en Spelen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/speelbakken" title="Speelbakken en Toebehoren" :class="{ 'text-lala-blue': open }">Speelbakken en Toebehoren</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/boeken" title="Boeken" :class="{ 'text-lala-blue': open }">Boeken</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/tikiri-bad-en-bijtspeelgoed" title="Tikiri Bijt- en Badspeelgoed" :class="{ 'text-lala-blue': open }">Tikiri Bijt- en Badspeelgoed</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/mushie-stacking-cups" title="Mushie Stacking Cups" :class="{ 'text-lala-blue': open }">Mushie Stacking Cups</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/mushie-presstoy" title="Mushie Press Toy" :class="{ 'text-lala-blue': open }">Mushie Press Toy</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed" title="Kinderspeelgoed" :class="{ 'text-lala-blue': open }">Kinderspeelgoed</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Kinderspeelgoed subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed/animal-world" title="Animal World / Animal Kingdom" :class="{ 'text-lala-blue': open }">Animal World / Animal Kingdom</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed/mega-size" title="Mega Size" :class="{ 'text-lala-blue': open }">Mega Size</a></div></li></ul></li></ul></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/gepersonaliseerde-cadeau-s" title="Gepersonaliseerde Cadeau's">Gepersonaliseerde Cadeau's</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/decoratie-kinderkamer" title="Decoratie Kinderkamer">Decoratie Kinderkamer</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken" title="Eten en Drinken">Eten en Drinken</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Eten en Drinken subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken/mushie-sippy-cups" title="Mushie Sippy Cups" :class="{ 'text-lala-blue': open }">Mushie Sippy Cups</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken/mushie-place-mats" title="Mushie Place Mats" :class="{ 'text-lala-blue': open }">Mushie Place Mats</a></div></li></ul></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/speenkoorden" title="Speenkoorden">Speenkoorden</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen" title="Frigg Spenen">Frigg Spenen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Frigg Spenen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen/frigg-spenen-t1-0-tot-6-maanden" title="FRIGG Spenen T1 - 0 tot 6 Maanden" :class="{ 'text-lala-blue': open }">FRIGG Spenen T1 - 0 tot 6 Maanden</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen/frigg-spenen-t2-6-tot-12-maanden" title="FRIGG Spenen T2 - 6 tot 12 Maanden" :class="{ 'text-lala-blue': open }">FRIGG Spenen T2 - 6 tot 12 Maanden</a></div></li></ul></li></ul></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/cadeau-artikelen/" title="Cadeau"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 36.446 44.275" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_4" x1="1" y1="1" x2="0.09" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_771" data-name="Group 771" transform="translate(-824.367 231.634)">
<path id="Rectangle_358" data-name="Rectangle 358" d="M-.75-.75H12.567V23.6H-.75ZM11.067.75H.75V22.1H11.067Z" transform="translate(827.301 -210.958)" fill="#1e84cd"/>
<path id="Rectangle_359" data-name="Rectangle 359" d="M-.75-.75H12.287V23.6H-.75ZM10.787.75H.75V22.1H10.787Z" transform="translate(846.118 -210.958)" fill="#1e84cd"/>
<path id="Path_506_2" data-name="Path 506" d="M42.366,12.6l-1.027-.125a25.77,25.77,0,0,1-5.535-1.41,13.106,13.106,0,0,1-3.992-2.294,5.871,5.871,0,0,1-2.135-4.046A4.885,4.885,0,0,1,30.857,1,3.822,3.822,0,0,1,33.682-.213,6.439,6.439,0,0,1,38.52,2.6a21.076,21.076,0,0,1,3.645,8.986ZM33.682,1.287a2.306,2.306,0,0,0-1.729.739,3.413,3.413,0,0,0-.78,2.6c.176,2.586,2.909,4.169,5.171,5.042a24.267,24.267,0,0,0,4.121,1.148,18.706,18.706,0,0,0-3.122-7.284A5.016,5.016,0,0,0,33.682,1.287Z" transform="translate(801.188 -231.42)" fill="#1e84cd"/>
<path id="Path_507" data-name="Path 507" d="M80.245,12.6l.2-1.015A21.076,21.076,0,0,1,84.091,2.6,6.439,6.439,0,0,1,88.93-.213,3.822,3.822,0,0,1,91.755,1a4.885,4.885,0,0,1,1.18,3.727A5.871,5.871,0,0,1,90.8,8.775a13.106,13.106,0,0,1-3.992,2.294,25.77,25.77,0,0,1-5.535,1.41ZM88.93,1.287a5.016,5.016,0,0,0-3.662,2.246,18.7,18.7,0,0,0-3.121,7.283c2.58-.488,9.015-2.11,9.292-6.189a3.413,3.413,0,0,0-.78-2.6A2.306,2.306,0,0,0,88.93,1.287Z" transform="translate(761.435 -231.42)" fill="#1e84cd"/>
<path id="Rectangle_357" data-name="Rectangle 357" d="M-.75-.75H14.695V8.478H-.75ZM13.195.75H.75V6.978H13.195Z" transform="translate(846.118 -218.686)" fill="url(#linear-gradient_4)"/>
<path id="Rectangle_357-2" data-name="Rectangle 357" d="M-.75-.75H14.695V8.478H-.75ZM13.195.75H.75V6.978H13.195Z" transform="translate(839.061 -210.958) rotate(180)" fill="url(#linear-gradient_4)"/>
<path id="Rectangle_360" data-name="Rectangle 360" d="M-.75-.75h8.5V31.328H-.75Zm7,1.5H.75V29.828h5.5Z" transform="translate(839.117 -218.686)" fill="#1e84cd"/>
</g>
<title>cadeau-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 36.4 44.3" style="enable-background:new 0 0 36.4 44.3;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M36.4,12.2H22.5H21h-0.1c1-0.2,2-0.5,3-0.9c1.5-0.5,2.8-1.3,4-2.3c1.2-1,2-2.5,2.1-4c0.1-1.4-0.3-2.7-1.2-3.7 C28.1,0.4,27.1,0,26,0c-2,0.2-3.7,1.2-4.8,2.8c-1.3,1.8-2.3,3.8-2.9,5.9c-0.7-2.1-1.6-4.1-2.9-5.9c-1.1-1.6-2.9-2.7-4.8-2.8 C9.4,0,8.4,0.4,7.7,1.2c-0.9,1-1.3,2.4-1.2,3.7c0.1,1.6,0.9,3,2.1,4c1.2,1,2.5,1.8,4,2.3c1,0.4,2,0.7,3,0.9H14v0H0v9.2h2.2v22.8H14 h1.5H21h1.5H34V21.4h2.4V12.2z M22.3,3.7c0.8-1.3,2.2-2.1,3.7-2.2c0.7,0,1.3,0.3,1.7,0.7c0.6,0.7,0.9,1.7,0.8,2.6 c-0.3,4.1-6.7,5.7-9.3,6.2C19.7,8.4,20.8,5.9,22.3,3.7z M8,4.8C7.9,3.9,8.2,3,8.8,2.2c0.4-0.5,1.1-0.7,1.7-0.7 c1.5,0.2,2.8,1,3.7,2.2c1.5,2.2,2.6,4.7,3.1,7.3c-1.4-0.3-2.8-0.6-4.1-1.1C10.9,9,8.2,7.4,8,4.8z M1.5,19.9v-6.2h12.4v6.2H2.2H1.5z M3.7,42.8V21.4H14v21.3H3.7z M21,42.8h-5.5V19.9h0v-6.2H21V42.8z M32.5,42.8h-10V21.4h10V42.8z M34.9,19.9H34H22.5v-6.2h12.4V19.9z "/>
<title>cadeau-white</title></svg>
</span>Cadeau</a></div></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/kristalhandel/" title="KristalHandel"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 28.366 43.64" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_5" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_775" data-name="Group 775" transform="translate(-864.315 105.955)">
<path id="Path_507_2" data-name="Path 507" d="M14.182,397.253a32.564,32.564,0,0,1-9.732-1.324C1.538,394.977,0,393.656,0,392.11c0-1.88,2.285-3.428,6.434-4.358l.328,1.464c-3.635.815-5.262,2.041-5.262,2.894,0,.617.9,1.57,3.418,2.394a31.052,31.052,0,0,0,9.266,1.25,31.051,31.051,0,0,0,9.266-1.25c2.52-.824,3.418-1.777,3.418-2.394,0-.8-1.484-1.971-4.8-2.786l.358-1.457c3.832.942,5.942,2.448,5.942,4.243,0,1.546-1.539,2.867-4.451,3.819A32.563,32.563,0,0,1,14.182,397.253Z" transform="translate(864.316 -459.569)" fill="url(#linear-gradient_5)"/>
<path id="Path_514" data-name="Path 514" d="M136.123,421.717l-1.611-.383.347-1.459,1.138.27,2.37-.986.576,1.385Z" transform="translate(742.073 -488.198)" fill="#1e84cd"/>
<g id="Group_775-2" data-name="Group 775">
<path id="Path_508" data-name="Path 508" d="M41.17,269.3l-2.981-.542L33.2,255.768l3.46-5.229,4.93,3.148,2.041,13.64Zm-1.883-1.867,1.48.269,1.255-1-1.812-12.111L37.1,252.6l-2.218,3.354Z" transform="translate(833.932 -334.606)" fill="#1e84cd"/>
<path id="Path_509" data-name="Path 509" d="M38.094,283.735l-4.1-.276.1-1.5,3.6.242,2.8-1.844.826,1.252Z" transform="translate(833.932 -361.456)" fill="#1e84cd"/>
<path id="Path_510" data-name="Path 510" d="M69.917,268.679l-3.079-12.4-1.014-4.551,1.464-.326,1.012,4.542,3.073,12.371Z" transform="translate(804.255 -334.605)" fill="#1e84cd"/>
<path id="Path_511" data-name="Path 511" d="M175.577,190.864l-2.954-1.818.943-18.91,6.993-4.227,4.382,6.572-5.564,17.824Zm-1.411-2.63L175.9,189.3l2.328-.342,5.07-16.241-3.188-4.783-5.083,3.072Z" transform="translate(706.743 -257.35)" fill="#1e84cd"/>
<path id="Path_512" data-name="Path 512" d="M200.969,190.227l-1.472-.289,3.268-16.655,1.329-6.511,1.47.3-1.329,6.509Z" transform="translate(682.247 -257.35)" fill="#1e84cd"/>
<path id="Path_513" data-name="Path 513" d="M188.273,212.375l-4.945-3.005.779-1.282,4.472,2.717,4.841-.789.241,1.48Z" transform="translate(697.322 -295.506)" fill="#1e84cd"/>
<path id="Path_515" data-name="Path 515" d="M148.735,38.4l-.09-27.3v0l.09-10.375,1.5.013-.09,10.37.09,27.29Z" transform="translate(728.648 -105.665)" fill="#1e84cd"/>
<path id="Path_516" data-name="Path 516" d="M57.789,23.468,55.7,7.732,64.709-.291,73.3,7.877l-.972,8.688L70.834,16.4l.89-7.948-7.048-6.7L57.288,8.324,59.276,23.27Z" transform="translate(813.44 -105.665)" fill="#1e84cd"/>
<path id="Path_517" data-name="Path 517" d="M64.6,88.218l-8.374-3.175.532-1.4L64.6,86.616l7.644-2.842.523,1.406Z" transform="translate(813.44 -181.978)" fill="#1e84cd"/>
</g>
</g>
<title>kristal-handel-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 28.4 43.6" style="enable-background:new 0 0 28.4 43.6;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M23.2,34.5l4.2-13.4L23,14.5l-1.4,0.8l0.8-7.2L13.8,0l-9,8l1.9,14.1l-0.4-0.3l-3.5,5.2l2.8,7.2 C2,35.3,0,36.8,0,38.5c0,1.5,1.5,2.9,4.5,3.8c3.2,0.9,6.4,1.4,9.7,1.3c3.3,0.1,6.6-0.4,9.7-1.3c2.9-1,4.5-2.3,4.5-3.8 C28.4,36.8,26.5,35.4,23.2,34.5z M23.1,17.4l2.1,3.2l-2.9,0.5L23.1,17.4z M20.9,20.8l-2.7-1.7l3.5-2.1L20.9,20.8z M16.6,36.8 l0.8-16.4l3.2,1.9l-3,15.1L16.6,36.8z M22.1,22.7l3.4-0.6l-4.8,15.4l-1.6,0.2L22.1,22.7z M16,18.7l-0.9,18.6l-0.5,0.2l-0.1-25.7 l6.3-2.3L20,16.3L16,18.7z M7,8.1l6-5.4L13,10.3L7,8.1z M14.6,2.8l5.7,5.4l-5.8,2.1L14.6,2.8z M6.5,9.5l6.5,2.4l0.1,25.5L11.2,25 l-2.9-1.8L6.5,9.5z M9.1,25.5L8,26.2l-0.4-1.7L9.1,25.5z M6.6,26.6L5,26.5l1.1-1.7L6.6,26.6z M6.9,28.2l2.7,10.7l-0.7-0.1L4.8,28 L6.9,28.2z M11,38.5L8.4,27.8l1.6-1l1.7,11.3L11,38.5z M23.5,40.9c-3,0.9-6.1,1.3-9.3,1.2c-3.1,0.1-6.3-0.4-9.3-1.2 c-2.5-0.8-3.4-1.8-3.4-2.4c0-0.8,1.5-1.9,4.6-2.7l1.7,4.3l3,0.5l1.8-1.5l1.3,0.3l2.5-1l1.7,1l3.8-0.6l0.9-3c2.8,0.8,4.1,1.9,4.1,2.6 C26.9,39.1,26,40.1,23.5,40.9z"/>
<title>kristal-handel-white</title></svg>
</span>KristalHandel</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open KristalHandel subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/" title="Kristal/Edelsteen Producten">KRISTAL/EDELSTEEN PRODUCTEN</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/agaat-op-standaard/" title="Agaat op Standaard" :class="{ 'text-lala-blue': open }">Agaat op Standaard</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/geode" title="Geode" :class="{ 'text-lala-blue': open }">Geode</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/getrommelde-stenen/" title="Getrommelde Stenen" :class="{ 'text-lala-blue': open }">Getrommelde Stenen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Getrommelde Stenen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/getrommelde-stenen/rond-natuurlijke-vorm/" title="Rond / Natuurlijke vorm" :class="{ 'text-lala-blue': open }">Rond / Natuurlijke vorm</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/ruw-kristal-edelsteen-of-mineralen/" title="Ruw Kristal, Edelsteen of mineralen" :class="{ 'text-lala-blue': open }">Ruw Kristal, Edelsteen of mineralen</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/speciale-stukken/" title="Speciale Stukken" :class="{ 'text-lala-blue': open }">Speciale Stukken</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/theelichthouders/" title="Theelichthouders" :class="{ 'text-lala-blue': open }">Theelichthouders</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/hangers/" title="Hangers" :class="{ 'text-lala-blue': open }">Hangers</a></div></li></ul></li><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/" title="Kristal/Edelsteen Per Soort">KRISTAL/EDELSTEEN PER SOORT</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/aarbeikwarts" title="Aarbeienkwarts" :class="{ 'text-lala-blue': open }">Aarbeienkwarts</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/agaat/" title="Agaat" :class="{ 'text-lala-blue': open }">Agaat</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/amazoniet" title="Amazoniet" :class="{ 'text-lala-blue': open }">Amazoniet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/amethist/" title="Amethist" :class="{ 'text-lala-blue': open }">Amethist</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/aquamarijn" title="Aquamarijn" :class="{ 'text-lala-blue': open }">Aquamarijn</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/aventurijn" title="Aventurijn" :class="{ 'text-lala-blue': open }">Aventurijn</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/azuriet-malachiet" title="Azuriet / Malachiet" :class="{ 'text-lala-blue': open }">Azuriet / Malachiet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/bergkristal/" title="Bergkristal" :class="{ 'text-lala-blue': open }">Bergkristal</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/calciet/" title="Calciet" :class="{ 'text-lala-blue': open }">Calciet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/chalcedoon" title="Chalcedoon" :class="{ 'text-lala-blue': open }">Chalcedoon</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/citrien/" title="Citrien" :class="{ 'text-lala-blue': open }">Citrien</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/hematiet/" title="Hematiet" :class="{ 'text-lala-blue': open }">Hematiet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/howliet" title="Howliet" :class="{ 'text-lala-blue': open }">Howliet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/jade" title="Jade" :class="{ 'text-lala-blue': open }">Jade</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/labradoriet/" title="Labradoriet" :class="{ 'text-lala-blue': open }">Labradoriet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/lapis-lazuli" title="Lapis Lazuli" :class="{ 'text-lala-blue': open }">Lapis Lazuli</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/magnetiet/" title="Magnetiet" :class="{ 'text-lala-blue': open }">Magnetiet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/opaliet" title="Opaliet" :class="{ 'text-lala-blue': open }">Opaliet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/pink-himalaya-salt/" title="Pink Himalaya Salt" :class="{ 'text-lala-blue': open }">Pink Himalaya Salt</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/pyriet/" title="Pyriet" :class="{ 'text-lala-blue': open }">Pyriet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/rozekwarts/" title="Rozekwarts" :class="{ 'text-lala-blue': open }">Rozekwarts</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/seleniet/" title="Seleniet" :class="{ 'text-lala-blue': open }">Seleniet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/sodaliet" title="Sodaliet" :class="{ 'text-lala-blue': open }">Sodaliet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/tijgeroog" title="Tijgeroog" :class="{ 'text-lala-blue': open }">Tijgeroog</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/toermalijn/" title="Toermalijn" :class="{ 'text-lala-blue': open }">Toermalijn</a></div></li></ul></li><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/" title="Voordeelverpakkingen / Partijen">VOORDEELVERPAKKINGEN / PARTIJEN</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/agaat" title="Agaat" :class="{ 'text-lala-blue': open }">Agaat</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/amethist" title="Amethist" :class="{ 'text-lala-blue': open }">Amethist</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/bergkristal" title="Bergkristal" :class="{ 'text-lala-blue': open }">Bergkristal</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/blauwe-calciet" title="Calciet" :class="{ 'text-lala-blue': open }">Calciet</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/rozekwarts" title="Rozekwarts" :class="{ 'text-lala-blue': open }">Rozekwarts</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/tijgeroog" title="Tijgeroog" :class="{ 'text-lala-blue': open }">Tijgeroog</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/aventurijn" title="Aventurijn" :class="{ 'text-lala-blue': open }">Aventurijn</a></div></li></ul></li></ul></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/sieraden-kunst/" title="Sieraden / Kunst"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 36.11 42.831" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_6" x1="0.541" y1="0.663" x2="0.386" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_778" data-name="Group 778" transform="translate(-1382.53 90.415)">
<path id="Path_511_2" data-name="Path 511" d="M11.243,24.2a.75.75,0,0,1-.75-.75V21.692a7.669,7.669,0,0,1-1.767-.821,4.969,4.969,0,0,1-2.459-4.33,3.664,3.664,0,0,1,1.078-2.653,4.668,4.668,0,0,1,2.381-1.223,5.528,5.528,0,0,1,2.916.177,3.544,3.544,0,0,1,2.147,1.892,16.213,16.213,0,0,1,.767,2.555c.585,2.418,1.042,3.9,2.992,3.9a.75.75,0,1,1,0,1.5,3.651,3.651,0,0,1-3.279-1.738,11.061,11.061,0,0,1-1.171-3.31,15.14,15.14,0,0,0-.688-2.317c-.465-1.084-2.085-1.457-3.383-1.19a2.57,2.57,0,0,0-2.261,2.407c0,3.1,3.583,3.835,3.619,3.842l.607.118v2.951A.75.75,0,0,1,11.243,24.2Z" transform="translate(1380.68 -94.396)" fill="url(#linear-gradient_6)"/>
<path id="Path_511-2" data-name="Path 511" d="M11.243,24.2a.75.75,0,0,1-.75-.75V21.692a7.669,7.669,0,0,1-1.767-.821,4.969,4.969,0,0,1-2.459-4.33,3.664,3.664,0,0,1,1.078-2.653,4.668,4.668,0,0,1,2.381-1.223,5.528,5.528,0,0,1,2.916.177,3.544,3.544,0,0,1,2.147,1.892,16.213,16.213,0,0,1,.767,2.555c.585,2.418,1.042,3.9,2.992,3.9a.75.75,0,1,1,0,1.5,3.651,3.651,0,0,1-3.279-1.738,11.061,11.061,0,0,1-1.171-3.31,15.14,15.14,0,0,0-.688-2.317c-.465-1.084-2.085-1.457-3.383-1.19a2.57,2.57,0,0,0-2.261,2.407c0,3.1,3.583,3.835,3.619,3.842l.607.118v2.951A.75.75,0,0,1,11.243,24.2Z" transform="translate(1398.713 -102.964)" fill="url(#linear-gradient_6)"/>
<path id="Union_3" data-name="Union 3" d="M14.454,24.109H3.225L3.032,23.7q-.011-.021-.02-.043L.179,17.671l-.015-.032L0,17.294l.192-.321q.012-.023.026-.044L4.728,9.382q.012-.022.026-.043l2.33-3.9a3.212,3.212,0,1,1,4.6.022l2.108,3.905q.012.021.023.043l4.073,7.545q.013.023.025.046l.166.307-.152.329-.011.023-2.767,5.985q-.012.029-.026.056l-.188.407Zm-1.636-1.5L9.244,18.461,5.413,22.61ZM3.9,22.034,7.55,18.085H2.034Zm10.36-.046,1.8-3.9H10.9Zm1.72-5.4L12.7,10.495H10.013v6.089Zm-7.469,0V10.495H5.81L2.171,16.584Zm3.372-7.59L10.409,6.259a3.215,3.215,0,0,1-2.061-.011L6.706,8.995Zm-4.2-5.783A1.711,1.711,0,0,0,10.3,4.664l.047-.03A1.711,1.711,0,1,0,7.681,3.211Z" transform="translate(1400.562 -80.262)" fill="#1e84cd"/>
<path id="Union_2" data-name="Union 2" d="M3.225,24.11l-.2-.42-.01-.021L.181,17.676q-.01-.02-.02-.041L0,17.294l.194-.325.023-.038L4.725,9.386q.014-.026.03-.051l2.328-3.9a3.211,3.211,0,1,1,4.6.022L13.792,9.37l.02.036,4.076,7.552L17.91,17l.168.311-.15.324-.015.033-2.769,5.988q-.009.021-.019.042l-.192.415Zm9.594-1.5L9.244,18.461,5.413,22.61ZM3.9,22.035l3.648-3.95H2.033Zm10.36-.047,1.8-3.9H10.9Zm1.72-5.4-3.287-6.089H10.013v6.089Zm-7.468,0V10.495H5.81L2.172,16.584Zm3.372-7.59L10.409,6.259a3.216,3.216,0,0,1-2.061-.011L6.707,8.995Zm-4.2-5.783a1.712,1.712,0,0,0,2.612,1.456q.028-.02.058-.037A1.712,1.712,0,1,0,7.681,3.211Z" transform="translate(1382.53 -71.694)" fill="#1e84cd"/>
</g>
<title>sieraden-kunst-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 36.1 42.8" style="enable-background:new 0 0 36.1 42.8;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M35.9,27.2C35.9,27.1,35.9,27.1,35.9,27.2l-4.1-7.6c0,0,0,0,0,0l-2.1-3.9c1.2-1.2,1.2-3.2,0-4.5 c-0.4-0.5-1-0.7-1.6-0.9V8l-0.6-0.1c0,0-3.6-0.7-3.6-3.8c0.1-1.2,1-2.3,2.3-2.4c1.3-0.3,2.9,0.1,3.4,1.2c0.3,0.8,0.5,1.5,0.7,2.3 c0.2,1.2,0.6,2.3,1.2,3.3c0.7,1.1,2,1.8,3.3,1.7c0.4,0,0.8-0.3,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8c-1.9,0-2.4-1.5-3-3.9 C31.6,3.9,31.3,3,31,2.2c-0.4-0.9-1.2-1.6-2.1-1.9c-0.9-0.3-1.9-0.4-2.9-0.2c-0.9,0.2-1.7,0.6-2.4,1.2C22.8,2,22.4,3,22.5,4 c0,1.8,0.9,3.4,2.5,4.3c0.6,0.3,1.1,0.6,1.8,0.8v1.1c-0.5,0.1-1.1,0.4-1.5,0.8c-1.3,1.2-1.3,3.3-0.1,4.5l-2.3,3.9c0,0,0,0,0,0 l-4.5,7.5c0,0,0,0,0,0L18,27.4l0.2,0.3l0,0l2.8,6c0,0,0,0,0,0l0.2,0.4h11.2l0.5,0l0.2-0.4c0,0,0,0,0-0.1l2.8-6l0,0l0.2-0.3 L35.9,27.2z M34,26.7l-6,0v-6.1h2.7L34,26.7z M26.5,11.9c0.8-0.5,1.8-0.3,2.4,0.5c0.5,0.8,0.3,1.8-0.5,2.4l0,0 c-0.3,0.2-0.6,0.3-0.9,0.3c-0.9,0-1.7-0.8-1.7-1.7l0,0C25.7,12.8,26,12.3,26.5,11.9z M26.4,16.4c0.7,0.2,1.4,0.2,2.1,0l1.5,2.7 l-5.2,0L26.4,16.4z M23.8,20.6h2.7v6.1l-6.3,0L23.8,20.6z M20.1,28.2h5.5l-3.6,3.9L20.1,28.2z M23.4,32.8l3.8-4.1l3.6,4.1 L23.4,32.8z M32.3,32.1l-3.4-3.9h5.2L32.3,32.1z"/>
<path class="st0" d="M17.9,35.7l-4.1-7.6l0,0l-2.1-3.9c1.2-1.2,1.2-3.2,0-4.5c-0.4-0.5-1-0.7-1.6-0.9v-2.3l-0.6-0.1 c0,0-3.6-0.7-3.6-3.8c0.1-1.2,1-2.3,2.3-2.4c1.3-0.3,2.9,0.1,3.4,1.2c0.3,0.8,0.5,1.5,0.7,2.3c0.2,1.2,0.6,2.3,1.2,3.3 c0.7,1.1,2,1.8,3.3,1.7c0.4,0,0.8-0.3,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8c-1.9,0-2.4-1.5-3-3.9c-0.2-0.9-0.4-1.7-0.8-2.6 c-0.4-0.9-1.2-1.6-2.1-1.9C9.9,8.5,8.8,8.5,7.9,8.7C7,8.9,6.2,9.3,5.5,9.9c-0.7,0.7-1.1,1.7-1.1,2.7c0,1.8,0.9,3.4,2.5,4.3 c0.6,0.3,1.1,0.6,1.8,0.8v1.1c-0.5,0.1-1.1,0.4-1.5,0.8c-1.3,1.2-1.3,3.3-0.1,4.5l-2.3,3.9c0,0,0,0,0,0.1l-4.5,7.5l0,0L0,36 l0.2,0.3c0,0,0,0,0,0l2.8,6l0,0l0.2,0.4l11.7,0l0.2-0.4c0,0,0,0,0,0l2.8-6l0,0l0.2-0.3L17.9,35.7L17.9,35.7z M16,35.3h-6v-6.1h2.7 L16,35.3z M8.4,20.5c0.8-0.5,1.8-0.3,2.4,0.5c0.5,0.8,0.3,1.8-0.5,2.4c0,0,0,0-0.1,0c-0.3,0.2-0.6,0.3-0.9,0.3 c-0.9,0-1.7-0.8-1.7-1.7l0,0C7.7,21.4,8,20.8,8.4,20.5z M8.3,25c0.7,0.2,1.4,0.2,2.1,0l1.5,2.7l-5.2,0L8.3,25z M5.8,29.2h2.7v6.1 l-6.3,0L5.8,29.2z M2,36.8h5.5l-3.6,4L2,36.8z M5.4,41.3l3.8-4.1l3.6,4.1H5.4z M14.3,40.7l-3.4-3.9h5.2L14.3,40.7z"/>
</g>
<title>sieraden-kunst-white</title></svg>
</span>Sieraden / Kunst</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Sieraden / Kunst subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/sieraden-kunst/hangers/" title="Hangers">Hangers</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/sieraden-kunst/oorbellen/" title="Oorbellen">Oorbellen</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/sieraden-kunst/koorden" title="Koorden">Koorden</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Koorden subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/sieraden-kunst/koorden/waxed-macrame-koord" title="Waxed Macramé Koord" :class="{ 'text-lala-blue': open }">Waxed Macramé Koord</a></div></li></ul></li></ul></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/welzijn-verzorging/" title="Welzijn / Verzorging"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 52.001 43.919" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_7" x1="0.5" y1="1" x2="-0.107" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_785" data-name="Group 785" transform="translate(-407.999 -190.18)">
<path id="Union_4" data-name="Union 4" d="M10.227,16.532,5.779,18.186l-.7-1.874,5.095-1.9.329.105c7.06,2.26,11.771,3.107,14.4,2.59a85.538,85.538,0,0,0,17.731-5.6c1.57-.86,2.027-1.993,1.569-3.891-.617-1.475-2.029-2.8-3.276-2.4l-12,3.829a4.98,4.98,0,0,1-.106.5,4.821,4.821,0,0,1-1.523,2.426,4.537,4.537,0,0,1-2.968,1.058h-.128L11.794,9.8a1,1,0,1,1,.5-1.935L24.458,11.03a2.586,2.586,0,0,0,2.44-2,2.266,2.266,0,0,0-.82-2.547c-.667-.2-4.027-1.226-7.518-2.237C11.39,2.168,10.114,2,9.894,2c-.134,0-.967.085-4.107,1.742C4.069,4.649,2.53,5.571,2.515,5.58A1,1,0,0,1,1.486,3.865C1.55,3.827,3.08,2.91,4.846,1.977,8.2.205,9.334,0,9.894,0c.328,0,1.2,0,9.211,2.322C23,3.452,26.746,4.6,26.783,4.609l.109.033.1.057A3.973,3.973,0,0,1,28.8,7L40.324,3.319c2.479-.792,4.821,1.275,5.765,3.622L46.114,7l.017.067a5.889,5.889,0,0,1-.031,3.47,5.121,5.121,0,0,1-2.538,2.75l-.062.031a87.53,87.53,0,0,1-18.191,5.75l-.009,0a10.833,10.833,0,0,1-2.1.184C20.228,19.257,16.016,18.368,10.227,16.532Z" transform="translate(413.625 212.319)" fill="url(#linear-gradient_7)"/>
<path id="Path_521" data-name="Path 521" d="M401.677,4a7.725,7.725,0,0,1,5.266,2.053,7.747,7.747,0,0,1,13,5.615v.024c-.044,1.812-1.116,4.057-3.187,6.675a60.573,60.573,0,0,1-9.526,9.145l-.68.545-.633-.6-.884-.837c-3.887-3.675-7.905-7.475-9.837-10.774a7.6,7.6,0,0,1-.96-2.1,5.759,5.759,0,0,1-.29-2.117A7.71,7.71,0,0,1,401.677,4Zm5.266,5.108-.779-.967a5.746,5.746,0,0,0-10.221,3.526v.038l0,.038a3.769,3.769,0,0,0,.2,1.412l.01.033a5.6,5.6,0,0,0,.723,1.577l.03.048c1.782,3.056,5.7,6.765,9.5,10.353l.25.236a56.6,56.6,0,0,0,8.531-8.278c1.74-2.2,2.718-4.141,2.756-5.47a5.746,5.746,0,0,0-10.221-3.513Z" transform="translate(33.416 186.18)" fill="#1e84cd"/>
<path id="Path_518" data-name="Path 518" d="M10.321,513.4a2.5,2.5,0,0,1-2.41-1.832L4.088,497.608a2.482,2.482,0,0,1,1.759-3.05l3.485-.936a2.5,2.5,0,0,1,3.062,1.745l3.824,13.962a2.482,2.482,0,0,1-1.759,3.05l-3.485.936A2.517,2.517,0,0,1,10.321,513.4Zm-.336-17.866a.516.516,0,0,0-.134.018l-3.485.936a.492.492,0,0,0-.3.231.47.47,0,0,0-.046.359l3.824,13.962a.5.5,0,0,0,.481.36.516.516,0,0,0,.134-.018l3.485-.936a.493.493,0,0,0,.3-.231.47.47,0,0,0,.046-.359L10.466,495.9A.5.5,0,0,0,9.985,495.536Z" transform="translate(404 -279.303)" fill="#1e84cd"/>
</g>
<title>welzijn-verzorging-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 52 43.9" style="enable-background:new 0 0 52 43.9;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M51.8,29.2L51.8,29.2l0-0.1c-0.9-2.3-3.3-4.4-5.8-3.6l-11.5,3.7c-0.3-1-0.9-1.8-1.8-2.3l-0.1-0.1l-0.1,0 c0,0-3.8-1.2-7.7-2.3c-8-2.3-8.9-2.3-9.2-2.3c-0.6,0-1.7,0.2-5,2c-0.9,0.5-1.7,0.9-2.3,1.3c-0.5-1-1.7-1.5-2.9-1.2l-3.5,0.9 c0,0,0,0,0,0c-1.3,0.4-2.1,1.7-1.7,3l3.8,14c0.3,1.1,1.3,1.8,2.4,1.8c0.2,0,0.4,0,0.7-0.1l3.5-0.9c0,0,0,0,0,0 c1.3-0.3,2-1.6,1.8-2.9l3.6-1.3c5.8,1.8,10,2.7,13,2.7c0.7,0,1.4-0.1,2.1-0.2h0c6.3-1.2,12.4-3.2,18.2-5.8l0.1,0 c1.2-0.6,2.1-1.5,2.5-2.8C52.1,31.5,52.1,30.3,51.8,29.2z M10.2,40.7c-0.1,0.1-0.2,0.2-0.3,0.2l-3.5,0.9c0,0-0.1,0-0.1,0 c-0.2,0-0.4-0.1-0.5-0.4L2,27.6c0-0.1,0-0.3,0-0.4C2.1,27.1,2.2,27,2.4,27l3.5-0.9c0,0,0.1,0,0.1,0v0c0.2,0,0.4,0.1,0.5,0.4l3.8,14 C10.3,40.5,10.3,40.6,10.2,40.7z M48.3,33.6c-5.7,2.5-11.6,4.4-17.7,5.6c-2.6,0.5-7.3-0.3-14.4-2.6l-0.3-0.1l-4.1,1.5L8.8,27.3 c0.6-0.4,1.6-0.9,2.6-1.5c3.1-1.7,4-1.7,4.1-1.7c0.2,0,1.5,0.2,8.7,2.2c3.5,1,6.9,2,7.5,2.2c0.8,0.6,1.1,1.6,0.8,2.5 c-0.3,1.1-1.3,2-2.4,2L17.9,30c0,0,0,0-0.1,0c-0.5-0.1-1.1,0.2-1.2,0.8c-0.1,0.5,0.2,1.1,0.8,1.2l12.4,3.2H30c1.1,0,2.1-0.4,3-1.1 c0.7-0.6,1.3-1.5,1.5-2.4c0-0.2,0.1-0.3,0.1-0.5l12-3.8c1.2-0.4,2.7,0.9,3.3,2.4C50.3,31.7,49.8,32.8,48.3,33.6z"/>
<path class="st0" d="M20.6,11.8c1.9,3.3,6,7.1,9.8,10.8l0.9,0.8l0.6,0.6l0.7-0.5c3.5-2.7,6.7-5.8,9.5-9.1c2.1-2.6,3.1-4.9,3.2-6.7 v0c0-1.9-0.8-3.8-2.1-5.2c-2.9-3.1-7.8-3.3-10.9-0.4C30.9,0.7,29,0,27.1,0c-4.2,0-7.7,3.4-7.7,7.6c0,0.7,0.1,1.4,0.3,2.1 C19.9,10.5,20.2,11.2,20.6,11.8z M21.4,7.7L21.4,7.7c0-1.7,0.8-3.4,2.1-4.4c2.5-2,6.1-1.6,8.1,0.9l0.8,1l0.8-1 C34.2,2.8,35.8,2,37.5,2c3.2,0,5.8,2.5,5.8,5.7c0,1.3-1,3.3-2.8,5.5c-2.5,3.1-5.4,5.8-8.5,8.3l-0.2-0.2c-3.8-3.6-7.7-7.3-9.5-10.4 l0,0c-0.3-0.5-0.6-1-0.7-1.6l0,0C21.4,8.7,21.3,8.2,21.4,7.7L21.4,7.7z"/>
</g>
<title>welzijn-verzorging-white</title></svg>
</span>Welzijn / Verzorging</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Welzijn / Verzorging subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/welzijn-verzorging/massage-griffels" title="Massage griffels">Massage griffels</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/welzijn-verzorging/zeepdispensers" title="Zeepdispensers">Zeepdispensers</a></div></li><li class="level-1" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/welzijn-verzorging/badzout" title="Badzout">Badzout</a></div></li></ul></li><li class="level-0" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full border-b py-3 cursor-pointer bg-container-lighter level-0" href="https://www.lalashops.nl/wonen/" title="Wonen"><span x-show="!open"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 35.663 42.809" class="w-[30px] h-[24px] mr-5 fill-lala-blue" role="img">
<defs>
<linearGradient id="linear-gradient_8" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_838" data-name="Group 838" transform="translate(-1321.386 96.352)">
<path id="Path_566" data-name="Path 566" d="M116.331,134.459a.75.75,0,0,1-.745-.668c-.011-.1-.282-2.605-.328-5.935a38.742,38.742,0,0,1,1.091-10.884.75.75,0,0,1,1.441.416c-1.784,6.185-.725,16.14-.714,16.24a.75.75,0,0,1-.664.827A.76.76,0,0,1,116.331,134.459Z" transform="translate(1223.449 -194.542)" fill="url(#linear-gradient_8)"/>
<path id="Path_567" data-name="Path 567" d="M82.182,1.75a5.657,5.657,0,0,1,3.584,1.27,5.384,5.384,0,0,1,1.937,3.6l.012.1.1.02a5.522,5.522,0,0,1,1.24,10.43l-.095.044.012.1a5.408,5.408,0,0,1-1.312,4.292,5.723,5.723,0,0,1-4.218,1.9,5.42,5.42,0,0,1-4.006-1.786l-.071-.077-.095.044a5.461,5.461,0,0,1-7.1-2.253,5.369,5.369,0,0,1-.031-5.457l.051-.091-.071-.077A5.436,5.436,0,0,1,71.1,7.875,5.646,5.646,0,0,1,73.039,5.5a5.339,5.339,0,0,1,3.072-.964h0a5.849,5.849,0,0,1,1.135.113l.1.02L77.4,4.58A5.426,5.426,0,0,1,82.182,1.75Zm1.263,20.263a4.2,4.2,0,0,0,3.1-1.393,3.868,3.868,0,0,0,.944-3.118l-.141-1.186,1.084-.5a3.921,3.921,0,0,0,2.308-4.126,3.921,3.921,0,0,0-3.211-3.47l-1.171-.232L86.213,6.8A4,4,0,0,0,82.182,3.25,3.9,3.9,0,0,0,78.71,5.312l-.583,1.042-1.172-.233a4.346,4.346,0,0,0-.843-.085h0a3.946,3.946,0,0,0-3.633,2.438,3.906,3.906,0,0,0,.742,4.323l.811.876-.583,1.042a3.9,3.9,0,0,0,.016,3.965,3.962,3.962,0,0,0,5.179,1.649l1.084-.5.811.876A3.876,3.876,0,0,0,83.444,22.013Z" transform="translate(1260.972 -98.102)" fill="#1e84cd"/>
<path id="Ellipse_76" data-name="Ellipse 76" d="M3.756-.75A4.506,4.506,0,1,1-.75,3.756,4.511,4.511,0,0,1,3.756-.75Zm0,7.512A3.006,3.006,0,1,0,.75,3.756,3.009,3.009,0,0,0,3.756,6.762Z" transform="translate(1338.772 -88.55)" fill="#1e84cd"/>
<path id="Path_568" data-name="Path 568" d="M53.072,228.626a.748.748,0,0,1-.541-.23c-5.595-5.824-12.133-7.607-19.433-5.3a28.326,28.326,0,0,0-9.484,5.333.75.75,0,0,1-1.014-1.106,29.332,29.332,0,0,1,10-5.642,19.981,19.981,0,0,1,10.015-.706,20.88,20.88,0,0,1,11,6.381.75.75,0,0,1-.541,1.27Z" transform="translate(1301.568 -282.169)" fill="#1e84cd"/>
<path id="Path_562" data-name="Path 562" d="M126.087,174.737a.746.746,0,0,1-.426-.133h0a11.757,11.757,0,0,0-3.3-1.423,10.667,10.667,0,0,0-7.509.631.75.75,0,0,1-.642-1.356,12.3,12.3,0,0,1,8.6-.709,13.006,13.006,0,0,1,3.707,1.623.75.75,0,0,1-.428,1.366Z" transform="translate(1224.683 -240.669)" fill="#1e84cd"/>
<path id="Path_563" data-name="Path 563" d="M134.414,147.334h0a4.317,4.317,0,0,1,3.768,1.861c1.6,2.371,3.136,2.725,3.908,2.725a1.9,1.9,0,0,0,.488-.055.736.736,0,0,1,.855.26.757.757,0,0,1-.022.912c-3.106,3.985-6.09,6-8.869,6-2.091,0-4.034-1.156-5.619-3.343a14.128,14.128,0,0,1-1.736-3.223q-.008-.024-.015-.048a2.15,2.15,0,0,1,.529-1.907,8.268,8.268,0,0,1,2.825-2.176A8.99,8.99,0,0,1,134.414,147.334Zm6.816,6a7.012,7.012,0,0,1-4.29-3.3,2.846,2.846,0,0,0-2.526-1.2,8,8,0,0,0-5.519,2.593,1.076,1.076,0,0,0-.281.583c.18.477,2.181,5.531,5.928,5.531C136.56,157.542,138.806,156.127,141.229,153.331Z" transform="translate(1213.474 -220.53)" fill="#1e84cd"/>
<path id="Path_564" data-name="Path 564" d="M41.9,174.736a.75.75,0,0,1-.429-1.366,13.006,13.006,0,0,1,3.707-1.623,12.3,12.3,0,0,1,8.6.709.75.75,0,0,1-.642,1.356,10.667,10.667,0,0,0-7.509-.631,11.757,11.757,0,0,0-3.3,1.423A.748.748,0,0,1,41.9,174.736Z" transform="translate(1285.77 -240.669)" fill="#1e84cd"/>
<path id="Path_565" data-name="Path 565" d="M15.587,147.334a8.991,8.991,0,0,1,3.889,1.011A8.268,8.268,0,0,1,22.3,150.52a2.15,2.15,0,0,1,.529,1.906q-.007.024-.015.048a14.129,14.129,0,0,1-1.736,3.223c-1.585,2.187-3.528,3.343-5.619,3.343-2.779,0-5.763-2.02-8.869-6a.757.757,0,0,1-.022-.912.736.736,0,0,1,.855-.26,1.9,1.9,0,0,0,.488.055c.772,0,2.305-.354,3.908-2.725A4.317,4.317,0,0,1,15.587,147.334Zm5.8,4.677a1.075,1.075,0,0,0-.281-.584,8,8,0,0,0-5.52-2.593,2.846,2.846,0,0,0-2.526,1.2,7.012,7.012,0,0,1-4.29,3.3c2.424,2.8,4.669,4.211,6.688,4.211C19.218,157.542,21.207,152.49,21.387,152.011Z" transform="translate(1314.96 -220.53)" fill="#1e84cd"/>
</g>
<title>wonen-blue</title></svg>
</span><span x-show="open" style="display: none;"><?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 35.7 42.8" style="enable-background:new 0 0 35.7 42.8;" xml:space="preserve" class="w-[30px] h-[24px] mr-5 fill-lala-white" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M25.6,11.6c0-2.5-2-4.5-4.5-4.5c-2.5,0-4.5,2-4.5,4.5c0,2.5,2,4.5,4.5,4.5S25.6,14,25.6,11.6z M18.1,11.6 c0-1.7,1.3-3,3-3c1.7,0,3,1.3,3,3c0,1.7-1.3,3-3,3C19.5,14.6,18.1,13.2,18.1,11.6z"/>
<path class="st0" d="M19.6,28.9c0.4,0.9,0.9,1.8,1.4,2.6c1.6,2.2,3.5,3.3,5.6,3.3c2.8,0,5.8-2,8.9-6c0.2-0.3,0.2-0.6,0-0.9 c-0.2-0.3-0.5-0.4-0.9-0.3c-0.2,0-0.3,0.1-0.5,0.1c-0.8,0-2.3-0.4-3.9-2.7c-0.8-1.2-2.3-1.9-3.8-1.9c-1.4,0-2.7,0.4-3.9,1 c-1.1,0.5-2.1,1.3-2.8,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c-0.1,0-0.3,0.1-0.4,0.1c0-2.4,0.2-4.9,0.7-7.2c1,0.8,2.2,1.3,3.5,1.3 c1.6,0,3.1-0.7,4.2-1.9c1-1.2,1.5-2.7,1.3-4.3l0-0.1l0.1,0c1.6-0.7,2.8-2.2,3.1-3.9c0.6-3-1.4-5.9-4.3-6.5l-0.1,0l0-0.1 c-0.1-1.4-0.8-2.7-1.9-3.6c-1-0.8-2.3-1.3-3.6-1.3c-2,0-3.8,1.1-4.8,2.8l-0.1,0.1l-0.1,0c-0.4-0.1-0.8-0.1-1.1-0.1 c-1.1,0-2.2,0.3-3.1,1c-0.9,0.6-1.5,1.4-1.9,2.4c-0.9,2-0.5,4.3,1,5.9l0.1,0.1l-0.1,0.1c-1,1.7-1,3.8,0,5.5 c1.3,2.3,3.9,3.3,6.4,2.5c-0.5,2.5-0.8,5-0.8,7.6c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1-0.4-0.2-0.8-0.5-1.1c-0.8-0.9-1.7-1.7-2.8-2.2 c-1.2-0.6-2.5-1-3.9-1c-1.5-0.1-2.9,0.6-3.8,1.9c-1.6,2.4-3.1,2.7-3.9,2.7c-0.2,0-0.3,0-0.5-0.1c-0.3-0.1-0.7,0-0.9,0.3 c-0.2,0.3-0.2,0.6,0,0.9c3.1,4,6.1,6,8.9,6c2.1,0,4-1.2,5.6-3.3c0.6-0.8,1-1.7,1.4-2.6c0.4,0.1,0.8,0.3,1.2,0.5c0,0.1,0,0.2,0,0.3 c0,2.3,0.2,4.2,0.3,5.2c-1.6,0.1-3.2,0.5-4.8,1c-3.7,1.2-7.1,3.1-10,5.6c-0.3,0.3-0.3,0.8,0,1.1c0.3,0.3,0.8,0.3,1.1,0 c2.8-2.4,6-4.2,9.5-5.3c7.3-2.3,13.8-0.5,19.4,5.3c0.1,0.1,0.3,0.2,0.5,0.2h0c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.8,0-1.1 c-2.9-3.2-6.8-5.4-11-6.4c-1.2-0.2-2.5-0.3-3.7-0.3c-0.1-1-0.2-3.1-0.3-5.6C19.1,29.1,19.3,29,19.6,28.9z M26.5,24.7 c1-0.1,2,0.4,2.5,1.2c0.9,1.6,2.5,2.8,4.3,3.3c-2.4,2.8-4.7,4.2-6.7,4.2c-3,0-4.9-3.2-5.6-4.8c1.5-0.2,3.1-0.2,4.6,0.3 c1.2,0.3,2.3,0.8,3.3,1.4c0.1,0.1,0.3,0.1,0.4,0.1l0,0c0.2,0,0.5-0.1,0.6-0.3c0.2-0.3,0.2-0.8-0.2-1c-1.1-0.7-2.4-1.3-3.7-1.6 c-1.6-0.5-3.3-0.6-5-0.3C22.6,25.6,24.5,24.8,26.5,24.7z M13.1,16.9c-0.7-1.2-0.7-2.7,0-4l0.6-1L12.8,11c-1.1-1.2-1.4-2.9-0.7-4.3 c0.6-1.5,2-2.4,3.6-2.4c0.3,0,0.6,0,0.8,0.1l1.2,0.2l0.6-1c0.7-1.3,2-2.1,3.5-2.1c2.1,0,3.8,1.5,4,3.6l0.1,1.2l1.2,0.2 c1.7,0.3,3,1.7,3.2,3.5c0.2,1.7-0.7,3.4-2.3,4.1l-1.1,0.5l0.1,1.2c0.2,1.1-0.2,2.3-0.9,3.1c-0.8,0.9-1.9,1.4-3.1,1.4h0 c-1.1,0-2.2-0.5-2.9-1.3l-0.8-0.9l-1.1,0.5C16.3,19.5,14.1,18.8,13.1,16.9z M9,33.4c-2,0-4.3-1.4-6.7-4.2c1.8-0.5,3.4-1.7,4.3-3.3 c0.6-0.8,1.5-1.3,2.5-1.2c2,0.1,3.9,1,5.3,2.4c-1.6-0.2-3.3-0.1-4.9,0.4c-1.3,0.3-2.6,0.9-3.7,1.6c-0.2,0.1-0.3,0.4-0.3,0.6 c0,0.4,0.3,0.7,0.8,0.7c0.2,0,0.3,0,0.4-0.1c1-0.6,2.1-1.1,3.3-1.4c1.5-0.4,3.1-0.5,4.6-0.3C13.9,30.1,12,33.4,9,33.4z"/>
</g>
<title>wonen-white</title></svg>
</span>Wonen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Wonen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-white text-xxs': open, 'text-xxs': !open }"></span></div></button></div><ul x-show="open" x-transition class="mt-2"><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/wonen/interieur/" title="Interieur">INTERIEUR</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/lampen/" title="Lampen" :class="{ 'text-lala-blue': open }">Lampen</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Lampen subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/lampen/zoutlampen-van-himalayazout/" title="Zoutlampen van Himalaya zout" :class="{ 'text-lala-blue': open }">Zoutlampen van Himalaya zout</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/lampen/zoutlamp-met-dimmer/" title="Zoutlampen met Dimmer" :class="{ 'text-lala-blue': open }">Zoutlampen met Dimmer</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/lampen/selenietlampen/" title="Selenietlampen" :class="{ 'text-lala-blue': open }">Selenietlampen</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/lampen/nachtlampen" title="Nachtlampen" :class="{ 'text-lala-blue': open }">Nachtlampen</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/lampen/zoutlampen-individueel-gefotografeerd" title="Zoutlampen individueel gefotografeerd" :class="{ 'text-lala-blue': open }">Zoutlampen individueel gefotografeerd</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/" title="Kaarsen & Theelichthouders" :class="{ 'text-lala-blue': open }">Kaarsen & Theelichthouders</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Kaarsen & Theelichthouders subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/theelichthouders/" title="Theelichthouders" :class="{ 'text-lala-blue': open }">Theelichthouders</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/kaarsen" title="Kaarsen" :class="{ 'text-lala-blue': open }">Kaarsen</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/" title="Wierook & Accessoires" :class="{ 'text-lala-blue': open }">Wierook & Accessoires</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Wierook & Accessoires subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/" title="Wierook" :class="{ 'text-lala-blue': open }">Wierook</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Wierook subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/alle-merken-wierook/" title="Alle Merken Wierook" :class="{ 'text-lala-blue': open }">Alle Merken Wierook</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Alle Merken Wierook subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/alle-merken-wierook/single-package/" title="Single Package" :class="{ 'text-lala-blue': open }">Single Package</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/alle-merken-wierook/slof-voordeelbox/" title="Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Slof / Voordeelbox</a></div></li></ul></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/natuurlijke-wierook/" title="Natuurlijke Wierook" :class="{ 'text-lala-blue': open }">Natuurlijke Wierook</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Natuurlijke Wierook subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/natuurlijke-wierook/single-package/" title="Single Package" :class="{ 'text-lala-blue': open }">Single Package</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/natuurlijke-wierook/slof-voordeelbox/" title="Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Slof / Voordeelbox</a></div></li></ul></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/hem/" title="HEM" :class="{ 'text-lala-blue': open }">HEM</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open HEM subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/hem/wierook-stokjes-single-package" title="Wierook Stokjes - Single Package" :class="{ 'text-lala-blue': open }">Wierook Stokjes - Single Package</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/hem/wierook-stokjes-slof-voordeelbox" title="Wierook Stokjes - Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Wierook Stokjes - Slof / Voordeelbox</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/hem/wierook-kegels-slof-voordeelbox" title="Wierook Kegels - Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Wierook Kegels - Slof / Voordeelbox</a></div></li></ul></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/tulasi/" title="Tulasi" :class="{ 'text-lala-blue': open }">Tulasi</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Tulasi subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/tulasi/single-package/" title="Single Package" :class="{ 'text-lala-blue': open }">Single Package</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/tulasi/slof-voordeelbox/" title="Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Slof / Voordeelbox</a></div></li></ul></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/parimal/" title="Parimal" :class="{ 'text-lala-blue': open }">Parimal</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Parimal subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/parimal/single-package/" title="Single Package" :class="{ 'text-lala-blue': open }">Single Package</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/parimal/slof-voordeelbox/" title="Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Slof / Voordeelbox</a></div></li></ul></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/vijayshree/" title="Vijayshree" :class="{ 'text-lala-blue': open }">Vijayshree</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Vijayshree subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/vijayshree/single-package/" title="Single Package" :class="{ 'text-lala-blue': open }">Single Package</a></div></li><li class="level-5 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-5 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/vijayshree/slof-voordeelbox/" title="Slof / Voordeelbox" :class="{ 'text-lala-blue': open }">Slof / Voordeelbox</a></div></li></ul></li></ul></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/witte-salie/" title="Witte Salie" :class="{ 'text-lala-blue': open }">Witte Salie</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/" title="Wierookbranders" :class="{ 'text-lala-blue': open }">Wierookbranders</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Wierookbranders subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/wierook-branders/" title="Wierook Branders" :class="{ 'text-lala-blue': open }">Wierook Branders</a></div></li><li class="level-4 pl-5" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-4 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/abalone-schelp/" title="Abalone Schelp" :class="{ 'text-lala-blue': open }">Abalone Schelp</a></div></li></ul></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/kooltjes/" title="Kooltjes" :class="{ 'text-lala-blue': open }">Kooltjes</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires" title="Oliën & Accessoires" :class="{ 'text-lala-blue': open }">Oliën & Accessoires</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Oliën & Accessoires subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires/aromatische-olie" title="Aromatische Olie" :class="{ 'text-lala-blue': open }">Aromatische Olie</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires/branders-verdampers" title="Branders / Verdampers" :class="{ 'text-lala-blue': open }">Branders / Verdampers</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/olien-accessoires/essentiele-olie" title="Essentiële Olie" :class="{ 'text-lala-blue': open }">Essentiële Olie</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/klimaatbeheersing/" title="Klimaatbeheersing" :class="{ 'text-lala-blue': open }">Klimaatbeheersing</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/decoratie/" title="Decoratie" :class="{ 'text-lala-blue': open }">Decoratie</a></div></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/aquariumdecoratie/" title="Aquariumdecoratie" :class="{ 'text-lala-blue': open }">Aquariumdecoratie</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Aquariumdecoratie subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/aquariumdecoratie/aquariumgrind-granulaat" title="Aquariumgrind / Granulaat" :class="{ 'text-lala-blue': open }">Aquariumgrind / Granulaat</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/interieur/decoratie" title="Decoratie"" :class="{ 'text-lala-blue': open }">Decoratie"</a></div></li></ul></li><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/wonen/keuken/" title="Keuken">KEUKEN</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/keuken/voeding/" title="Voeding" :class="{ 'text-lala-blue': open }">Voeding</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Voeding subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/keuken/voeding/automatische-kiemer/" title="Automatische Kiemer" :class="{ 'text-lala-blue': open }">Automatische Kiemer</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/keuken/keukenmachines/" title="Keukenmachines" :class="{ 'text-lala-blue': open }">Keukenmachines</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Keukenmachines subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/keuken/keukenmachines/milk-maker/" title="Milk Maker" :class="{ 'text-lala-blue': open }">Milk Maker</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/keuken/keukenmachines/voedsel-droogoven/" title="Voedsel Droogoven" :class="{ 'text-lala-blue': open }">Voedsel Droogoven</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/keuken/koken-bakken/" title="Koken & Bakken" :class="{ 'text-lala-blue': open }">Koken & Bakken</a></div></li></ul></li><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/" title="Tuin, Bloemen en Planten">TUIN, BLOEMEN EN PLANTEN</a></div><ul x-show="open" x-transition class=""><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/" title="Decoratieve Bodembedekking Tuin en Paden" :class="{ 'text-lala-blue': open }">Decoratieve Bodembedekking Tuin en Paden</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Decoratieve Bodembedekking Tuin en Paden subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/kristallen-edelstenen/" title="Kristallen / Edelstenen" :class="{ 'text-lala-blue': open }">Kristallen / Edelstenen</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/sierstenen/" title="Sierstenen" :class="{ 'text-lala-blue': open }">Sierstenen</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/gravel-split-grind/" title="Gravel / Split " :class="{ 'text-lala-blue': open }">Gravel / Split </a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/houtsnippers-decochips/" title="Houtsnippers / Decochips" :class="{ 'text-lala-blue': open }">Houtsnippers / Decochips</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/glas/" title="Glas" :class="{ 'text-lala-blue': open }">Glas</a></div></li></ul></li><li class="level-2" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-2 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/" title="Decoratieve Bodembedekking Bloemen en Planten" :class="{ 'text-lala-blue': open }">Decoratieve Bodembedekking Bloemen en Planten</a><button @click="open = !open" class="absolute right-0 flex items-center justify-center w-6 h-6 cursor-pointer border-container" aria-label="Open Decoratieve Bodembedekking Bloemen en Planten subcategories" :aria-expanded="open.toString()"><div class="w-6 h-6 flex justify-center items-center"><span class="icon-arrow_up" :class="{ 'text-lala-blue text-[8px]': open, 'text-lala-gray text-[8px] -rotate-90': !open }"></span></div></button></div><ul x-show="open" x-transition class=""><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/gekleurd-zand/" title="Gekleurd Zand" :class="{ 'text-lala-blue': open }">Gekleurd Zand</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/gekleurde-steentjes-gekleurd-granulaat" title="Gekleurde Steentjes / Granulaat" :class="{ 'text-lala-blue': open }">Gekleurde Steentjes / Granulaat</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/klei-korrels/" title="Klei Korrels" :class="{ 'text-lala-blue': open }">Klei Korrels</a></div></li><li class="level-3 pl-14" x-data="{ open: false }" ><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-1 cursor-pointer bg-container-lighter level-3 text-lala-gray font-light" href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/houtsnippers/" title="Houtsnippers" :class="{ 'text-lala-blue': open }">Houtsnippers</a></div></li></ul></li></ul></li><li class="level-1" x-data="{ open: true }" x-init="open = true"><div class="flex items-center transition-transform duration-150 ease-in-out transform" :class="{'drop-open': open}"><a class="flex items-center w-full py-2 cursor-pointer bg-container-lighter level-1" href="https://www.lalashops.nl/wonen/tuin" title="Tuin">TUIN</a></div></li></ul></li> <li class="pt-4 pb-2 mt-auto"><a id="compare-link" class="relative flex items-center gap-6 hover:bg-primary/10 outline-offset-2 invisible" :class="{ 'invisible': !(itemCount > 0) }" href="https://www.lalashops.nl/catalog/product_compare/index/" title="Producten vergelijken" x-data="initCompareHeader()" @private-content-loaded.window="receiveCompareData($event.detail.data)" :aria-label="`
Producten vergelijken,
${itemCount > 1 ? hyva.str('\u00251\u0020producten', itemCount) : hyva.str('\u00251\u0020product', itemCount) }`">
<div class="icon-balance text-xl text-black"></div>
<div class="text-base text-lala-gray font-light">Vergelijken</div>
<span x-text="itemCount" class="absolute top-0 right-1 flex items-center px-2 py-1 rounded-full bg-yellow-200 text-yellow-800 text-xs font-semibold leading-none text-center uppercase tabular-nums" aria-hidden="true"></span>
</a></li>
<li class="border-t pt-4 pb-2">
<div x-data="{ openSidebarWishlist: false }">
<a id="customer.header.wishlist.link.mobile" @click.prevent.stop="() => {
$dispatch('toggle-wishlist', { isOpen: true })
}" class="flex items-center relative gap-6" href="https://www.lalashops.nl/wishlist/" title="Verlanglijst" x-data="{ itemCount: 0 }" @private-content-loaded.window="itemCount = parseInt($event.detail.data.wishlist.counter)">
<div class="icon-heart text-xl"></div>
<div class="text-base text-lala-gray font-light">Verlanglijst</div>
<template x-if="itemCount">
<span class="absolute top-0 right-1 pt-[5px] pb-[3px] px-[7px] rounded-full bg-primary text-white text-xs font-semibold leading-none text-center uppercase tabular-nums" x-text="`${itemCount}`"></span>
</template>
</a>
<div x-show="openSidebarWishlist" class="wishlist-sidebar fixed top-0 right-0 z-[60] h-[100vh]">
<script>
function initWishlistOnWishlistSidebar($wishlistJson) {
function wishlistSidebarFetchHandler(body, postUrl, isRemoveAction = true) {
const messages = {
"success": isRemoveAction ?
"\u00251\u0020has\u0020been\u0020removed\u0020from\u0020your\u0020Wish\u0020List." :
"\u00251\u0020is\u0020toegevoegd\u0020aan\u0020uw\u0020verlanglijst.",
"warning": isRemoveAction ?
"Could\u0020not\u0020remove\u0020item\u0020from\u0020your\u0020Wish\u0020List." :
"Could\u0020not\u0020add\u0020item\u0020to\u0020your\u0020Wish\u0020List.",
}
const postHeaders = {
"headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
},
body: body,
"method": "POST",
"mode": "cors",
"credentials": "include"
};
return fetch(postUrl, postHeaders).then(function(response) {
if (response.redirected) {
window.location.href = response.url;
} else if (response.ok) {
return response.json();
} else {
const message = {
type: "warning",
text: messages.warning
};
window.dispatchMessages && window.dispatchMessages([message], 5000);
}
}).then(function(response) {
if (!response) return;
const message = {
type: (response.success) ? "success" : "error",
text: (response.success) ? messages.success : response.error_message
}
window.dispatchMessages && window.dispatchMessages([message], 5000);
window.dispatchEvent(new CustomEvent("reload-customer-section-data"));
}).catch(function(error) {
const message = {
type: "error",
text: error
};
window.dispatchMessages && window.dispatchMessages([message], 5000);
});
}
const test = $wishlistJson
return {
test,
wishlistProducts: null,
itemCount: 0,
wishlistCountLabel: null,
wishlistItems: {},
open: false,
receiveWishlistData: function(data) {
if (data['wishlist']) {
this.wishlistProducts = data['wishlist'];
this.wishlistCountLabel = '(' + this.wishlistProducts.counter + ')';
this.itemCount = this.wishlistProducts.items.length;
this.wishlistItems = this.wishlistProducts.items;
}
},
addToCart: function(json) {
const obj = JSON.parse(json);
const postUrl = obj.action;
const body = "form_key=" + hyva.getFormKey() + "&item=" + obj.data.item + "&qty=" + obj.data.qty + "&uenc=" + hyva.getUenc();
wishlistSidebarFetchHandler(body, postUrl, /* isRemoveAction */ false);
},
removeFromWishlist: function(json) {
const obj = JSON.parse(json);
const postUrl = obj.action;
const body = "form_key=" + hyva.getFormKey() + "&item=" + obj.data.item + "&uenc=" + hyva.getUenc();
wishlistSidebarFetchHandler(body, postUrl);
},
toggleWishlistDrawer(event) {
if (event.detail && event.detail.isOpen !== undefined) {
if (event.detail.isOpen) {
this.openWishlistDrawer();
} else {
this.open = false;
}
} else {
this.openWishlistDrawer()
}
},
openWishlistDrawer() {
this.open = true;
},
closeWishlistDrawer() {
this.$dispatch('toggle-wishlist', {
isOpen: false
})
},
}
}
</script>
<section x-cloak
id="wishlist-section"
x-data="initWishlistOnWishlistSidebar()"
@private-content-loaded.window="receiveWishlistData($event.detail.data)"
x-init="$watch('open', (value, oldValue) => {
if(value) {
document.body.style.overflow = true ? 'hidden' : '';
} else {
document.body.style.overflow = false ? 'hidden' : ''
}
})"
@toggle-wishlist.window="toggleWishlistDrawer($event)">
<div role="dialog"
aria-labelledby="wishlist-title"
aria-modal="true"
:aria-hidden="!open"
class="fixed inset-y-0 right-0 z-[52] flex max-w-full">
<div class="backdrop"
x-show="open"
x-transition:enter="ease-in-out duration-500"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="ease-in-out duration-500"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
role="button"
@click="closeWishlistDrawer()"
aria-label="Close wishlist"></div>
<div class="relative w-screen max-w-md shadow-2xl"
x-show="open"
x-transition:enter="transform transition ease-in-out duration-500 sm:duration-700"
x-transition:enter-start="translate-x-full"
x-transition:enter-end="translate-x-0"
x-transition:leave="transform transition ease-in-out duration-500 sm:duration-700"
x-transition:leave-start="translate-x-0"
x-transition:leave-end="translate-x-full"
role="region"
:tabindex="open ? 0 : -1"
aria-label="Verlanglijst">
<div class="flex flex-col h-full max-h-screen bg-white shadow-xl justify-start">
<header class="relative px-4 py-6 sm:px-6 bg-lala-gray-light-ultra">
<p id="cart-drawer-title" class="text-lg font-medium leading-7 text-gray-900 text-lala-black">
<strong>Verlanglijst</strong>
</p>
</header>
<div class="px-6 mt-2" x-show="itemCount > 0">
<p class="text-base font-bold border-b border-lala-gray-light-ultra text-lala-black pb-2">
<span x-show="itemCount > 0" x-html="itemCount"></span>
<span x-show="itemCount > 1">producten in verlanglijst</span>
<span x-show="itemCount === 1">product in verlanglijst</span>
</p>
</div>
<div class="p-3 overflow-auto max-h-[75vh]">
<template x-for="product in wishlistItems" x-show="itemCount > 0">
<div class="flex items-start p-3 space-x-4 transition duration-150 ease-in-out rounded-lg hover:bg-gray-100 [&:not(:last-child)]:border-b border-container lg:border-none">
<a :href="product.product_url"
class="w-1/4 flex items-center justify-center border rounded-lg border-lala-gray-light-ultra p-2"
:aria-label="hyva.strf('Product\u0020\u0022\u00250\u0022', product.product_name)">
<img
:src="product.image.src"
width="150" height="150" loading="lazy" :alt="product.product_name" />
</a>
<div class="w-3/4">
<div>
<p class="text-sm">
<span x-html="product.product_name"></span>
</p>
</div>
<div class="flex justify-between items-center mt-2">
<div class="text-sm font-bold text-lala-blue" x-html="product.product_price"></div>
<div class="flex items-center gap-3">
<div class="add-to-cart-wrapper flex justify-end" x-show="product.product_is_saleable_and_visible">
<button @click="addToCart(product.add_to_cart_params)" class="btn btn-primary">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
</button>
</div>
<button type="button"
class="inline-flex py-4"
@click="removeFromWishlist(product.delete_item_params)"
:aria-label="hyva.strf('Remove\u0020product\u0020\u0022\u00250\u0022\u0020from\u0020wishlist'), product.product_name">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="20" height="20" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"/>
</svg>
</button>
</div>
</div>
</div>
</div>
</template>
<p x-show="itemCount === 0">Je verlanglijst is leeg.</p>
</div>
</div>
<button
type="button"
@click="closeWishlistDrawer()"
aria-label="Close wishlist"
class="absolute top-0 right-2 p-4 mt-2 text-gray-300 transition-colors hover:text-black">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
</div>
</section> </div>
</div></li>
<li class="border-t pt-4 pb-2"><a class="flex gap-6 items-center" href="https://www.lalashops.nl/klanten-service/">
<div class="icon-headset text-2xl"></div>
<div class="text-base text-lala-gray font-light">Klantenservice</div>
</a></li>
<li class="border-t pt-4 pb-2">
<div class="flex gap-6">
<div class="icon-user text-2xl text-black"></div>
<nav class="flex text-lala-gray font-light">
<a id="customer.mobile.sign.in.link" class="hover:text-lala-black" onclick="hyva.setCookie && hyva.setCookie(
'login_redirect',
window.location.href,
1
)" href="https://www.lalashops.nl/customer/account/index/" title="Inloggen">
Inloggen</a>
/ <a id="customer.mobile.register.link" class="hover:text-lala-black" href="https://www.lalashops.nl/customer/account/create/" title="Account aanmaken">
Account aanmaken </a>
</nav>
</div></li>
<li class="border-t pt-4 pb-4"><a class="text-lala-gray font-light" href="https://www.lalashops.nl/over-ons/">Over ons</a></li>
</ul>
</div>
</nav>
<script>
'use strict';
const initMenuMobile_68985b5137d3d = () => {
return {
open: false,
dropdownOpenId: null,
openSubmenus: {},
setActiveMenu(menuNode) {
Array.from(menuNode.querySelectorAll('a')).forEach(link => {
const categoryElement = link.closest('li');
if (categoryElement) {
const children = categoryElement.querySelectorAll('ul > li');
}
if (link.href === window.location.href.split('?')[0]) {
link.classList.add('!text-lala-blue');
const level0 = link.closest('li.level-0');
// Commented out because I don't see it doing anything other then trowing error for not being able to add empty class
// if (level0) {
// level0.querySelector('a.level-0').classList.add('');
// }
}
});
},
openMenu() {
this.open = true;
this.$nextTick(() => hyva.trapFocus(this.$refs['mobileMenuNavLinks']));
document.body.style.position = 'fixed';
},
closeMenu() {
document.body.style.position = '';
if (this.open) {
this.$nextTick(() => this.$refs['mobileMenuTrigger'].focus() || hyva.releaseFocus());
}
this.open = false;
this.dropdownOpenId = null;
},
toggleMenu() {
this.open = !this.open;
},
toggleDropdown(index) {
this.dropdownOpenId = this.dropdownOpenId === index ? null : index;
},
toggleSubmenu(index) {
this.$set(this.openSubmenus, index, !this.openSubmenus[index]);
},
isSubmenuOpen(index) {
return !!this.openSubmenus[index];
}
}
}
</script>
</div>
</div>
</div>
<template x-if="!isMobile && isHomepage">
<div class="usp-home"
:class="{
'pt-[60px] lg:pt-[90px]': isHeaderFixed || (!isHomepage && isPageLoaded)
}">
<div id="usp-slider-68985b51578a3" class="text-lala-black text-base text-center font-normal border-b border-b-lala-gray-light-ultra lg:border-none">
<div class="lg:container">
<div class="swiper-container overflow-hidden">
<div class="swiper-wrapper lg:gap-4 !h-12 lg:border-b lg:border-b-lala-gray-light-ultra lg:justify-between">
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="0">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Group_856" data-name="Group 856" width="24" height="24" viewBox="0 0 24.619 25" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path">
<rect id="Rectangle_374" data-name="Rectangle 374" width="24.619" height="25" fill="none"/>
</clipPath>
</defs>
<g id="Group_855" data-name="Group 855" clip-path="url(#clip-path)">
<path id="Path_563_2" data-name="Path 563" d="M24.258,5.917a2.029,2.029,0,0,0-1.7-.7H20a5.557,5.557,0,0,0-11.092,0H5.234l-.5-1.97A.644.644,0,0,0,4.424,2.8L.869.751a.594.594,0,0,0-.841.707A.588.588,0,0,0,.315,1.8l3.311,1.91.983,3.864L6.77,16.186a1.467,1.467,0,0,0,.044.144,2.129,2.129,0,0,0,.833,4.089l13.979,0a.585.585,0,0,0,0-1.169H7.647a.959.959,0,1,1,0-1.917H20.941a1.5,1.5,0,0,0,1.41-1.142l2.2-8.607a1.914,1.914,0,0,0-.291-1.666M14.451,1.163a4.394,4.394,0,1,1-4.4,4.4,4.4,4.4,0,0,1,4.4-4.4m8.96,6.14-2.2,8.607a.344.344,0,0,1-.272.25H8.179a.342.342,0,0,1-.27-.25L5.547,6.387H8.955a5.558,5.558,0,0,0,10.991,0h2.615a1.009,1.009,0,0,1,.776.254.775.775,0,0,1,.074.662" fill="#333"/>
<path id="Path_564_2" data-name="Path 564" d="M13.668,7.615a.507.507,0,0,0,.39.182l.014,0a.513.513,0,0,0,.383-.17l2.777-3.151a.511.511,0,0,0-.048-.721.518.518,0,0,0-.338-.126.511.511,0,0,0-.383.172L14.08,6.5,12.89,5.034a.506.506,0,0,0-.391-.183.513.513,0,0,0-.51.467.5.5,0,0,0,.115.37Z" fill="#333"/>
<path id="Path_565_2" data-name="Path 565" d="M9.383,20.926a2.037,2.037,0,1,0,2.037,2.037,2.04,2.04,0,0,0-2.037-2.037m0,3.189a1.152,1.152,0,1,1,1.152-1.152,1.154,1.154,0,0,1-1.152,1.152" fill="#333"/>
<path id="Path_566_2" data-name="Path 566" d="M18.484,20.926a2.037,2.037,0,1,0,2.037,2.037,2.04,2.04,0,0,0-2.037-2.037m0,3.189a1.152,1.152,0,1,1,1.152-1.152,1.154,1.154,0,0,1-1.152,1.152" fill="#333"/>
<path id="Path_567_2" data-name="Path 567" d="M15.508,22.562H12.357a.4.4,0,0,0,0,.8h3.151a.4.4,0,0,0,0-.8" fill="#333"/>
</g>
<title>cart-checked</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Snelle levering</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="1">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 19.661" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_2">
<rect id="Rectangle_375" data-name="Rectangle 375" width="25" height="19.661" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_858" data-name="Group 858" transform="translate(0 0)">
<g id="Group_857" data-name="Group 857" clip-path="url(#clip-path_2)">
<path id="Path_568_2" data-name="Path 568" d="M13.9,12.042c-.579,0-.624-.328-.624-.429,0-.408.52-.429.624-.429.338,0,.624.2.624.429a.448.448,0,1,0,.895,0,1.362,1.362,0,0,0-1.071-1.266V9.939a.448.448,0,0,0-.9,0v.4a1.289,1.289,0,0,0-1.071,1.274A1.369,1.369,0,0,0,13.9,12.938c.12,0,.721.024.721.508s-.647.509-.721.509c-.391,0-.721-.233-.721-.509a.448.448,0,0,0-.9,0A1.451,1.451,0,0,0,13.452,14.8v.4a.448.448,0,0,0,.9,0v-.4a1.392,1.392,0,0,0,1.169-1.355,1.472,1.472,0,0,0-1.617-1.4" fill="#333"/>
<path id="Path_569" data-name="Path 569" d="M13.956,8.209a4.421,4.421,0,1,0,4.421,4.421,4.426,4.426,0,0,0-4.421-4.421m0,7.946a3.525,3.525,0,1,1,3.525-3.525,3.529,3.529,0,0,1-3.525,3.525" fill="#333"/>
<path id="Path_570" data-name="Path 570" d="M24.552,5.747H3.507a.447.447,0,0,0-.448.447V19.213a.448.448,0,0,0,.448.448H24.552A.449.449,0,0,0,25,19.213V6.194a.448.448,0,0,0-.448-.447m-20.6.895H8.038A3.021,3.021,0,0,1,6.207,8.771a1.346,1.346,0,0,0-.927,1.276V15.36a1.346,1.346,0,0,0,.927,1.276,3.023,3.023,0,0,1,1.831,2.129H3.955ZM8.949,18.765a3.871,3.871,0,0,0-2.46-2.979.451.451,0,0,1-.313-.426V10.047a.451.451,0,0,1,.313-.426,3.87,3.87,0,0,0,2.46-2.979H19.064a3.867,3.867,0,0,0,2.459,2.979.451.451,0,0,1,.313.426V15.36a.451.451,0,0,1-.313.426h0a3.868,3.868,0,0,0-2.46,2.979Zm15.155,0H19.975a3.021,3.021,0,0,1,1.831-2.129,1.345,1.345,0,0,0,.926-1.276V10.047a1.345,1.345,0,0,0-.926-1.276,3.019,3.019,0,0,1-1.831-2.129H24.1Z" fill="#333"/>
<path id="Path_571" data-name="Path 571" d="M23.8,3.415a.449.449,0,0,0-.448-.448H1.959a.449.449,0,0,0-.448.448V16.179a.448.448,0,0,0,.9,0V3.863H23.35a.449.449,0,0,0,.448-.448" fill="#333"/>
<path id="Path_572" data-name="Path 572" d="M22.144.448A.449.449,0,0,0,21.7,0H.448A.449.449,0,0,0,0,.448V12.433a.448.448,0,0,0,.9,0V.9H21.7a.449.449,0,0,0,.448-.448" fill="#333"/>
<path id="Path_573" data-name="Path 573" d="M7.863,11.767a.918.918,0,1,0,.918.918.919.919,0,0,0-.918-.918m-.022.918a.022.022,0,0,1,.022-.022.022.022,0,0,1,.022.022c0,.024-.044.024-.044,0" fill="#333"/>
<path id="Path_574" data-name="Path 574" d="M20.956,12.685a.918.918,0,1,0-.918.918.919.919,0,0,0,.918-.918m-.939,0a.021.021,0,0,1,.021-.022.022.022,0,0,1,.023.022c0,.024-.044.024-.044,0" fill="#333"/>
</g>
</g>
<title>money</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Niet tevreden geld terug!</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="2">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 21.968" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_3">
<rect id="Rectangle_376" data-name="Rectangle 376" width="25" height="21.968" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_862" data-name="Group 862" transform="translate(0 0)">
<g id="Group_861" data-name="Group 861" clip-path="url(#clip-path_3)">
<path id="Path_575" data-name="Path 575" d="M20.662,6.387a2.038,2.038,0,0,0,.718-.654.443.443,0,0,0,.062-.227V2.223c0-.735-.859-1.288-2.625-1.692A26.394,26.394,0,0,0,13.22,0a26.394,26.394,0,0,0-5.6.531C5.857.935,5,1.488,5,2.223V3.475c-2.607.408-3.929,1.076-3.929,1.988v.043a.544.544,0,0,0,0,.057c0,.011,0,.022,0,.033V8.729c0,.01,0,.02,0,.03s0,.02,0,.03c0,.768,1.107,1.388,2.633,1.832v.1c-2.623.405-3.7.933-3.7,1.8v3.346c0,.009,0,.018,0,.027s0,.019,0,.028c0,.758.987,1.321,2.012,1.7v1.712a.248.248,0,0,0,0,.027c0,.01,0,.019,0,.028,0,1.543,4.251,2.579,8.222,2.579a34.474,34.474,0,0,0,4.122-.347.377.377,0,0,0,.058-.014,8.273,8.273,0,0,0,6.248-15.22m-3.936-1A8.234,8.234,0,0,0,11.6,7.178c-2.81-.206-5.365-1.146-5.7-1.586V3.333a7.408,7.408,0,0,0,1.731.582,26.328,26.328,0,0,0,5.6.531,26.328,26.328,0,0,0,5.6-.531,7.408,7.408,0,0,0,1.731-.582v2.02a1.945,1.945,0,0,1-1.024.524,8.237,8.237,0,0,0-2.8-.488M13.22.894c5.211,0,7.232,1.039,7.327,1.329-.1.291-2.116,1.329-7.327,1.329C7.982,3.552,5.968,2.5,5.892,2.23v0C5.968,1.943,7.982.894,13.22.894M5,4.38V5.515a.434.434,0,0,0-.013.1c0,.3.153.729,1.26,1.231C4.007,6.439,2.221,5.814,1.964,5.46c.027-.132.642-.686,3.034-1.08m-3.036,4.4,0-.022c0-.01,0-.019,0-.028V6.593a13.2,13.2,0,0,0,4.432,1.18,25.74,25.74,0,0,0,4.088.37h.087A8.305,8.305,0,0,0,9.077,10.51c-4.069-.1-6.958-1.25-7.115-1.731m6.495,5.1A11.826,11.826,0,0,1,5.6,13.144c-.836-.362-1.006-.667-1.006-.729V10.852a24.037,24.037,0,0,0,4.175.542,8.223,8.223,0,0,0-.319,2.27c0,.072,0,.144.005.216M3.7,11.628v.787c0,.768.926,1.361,2.164,1.78A16.044,16.044,0,0,1,2.887,13.6c-1.58-.49-1.975-.981-1.992-1.082.018-.038.278-.484,2.807-.893M.895,15.92c0-.009,0-.018,0-.028s0-.018,0-.027V13.716a7.571,7.571,0,0,0,1.656.719,18.953,18.953,0,0,0,5.54.774c.13,0,.232,0,.34,0l.169,0a8.214,8.214,0,0,0,.893,2.46c-.339.02-.763.039-1.159.039a19.378,19.378,0,0,1-5.318-.7c-1.688-.5-2.1-.993-2.121-1.094m9.339,5.154a20.076,20.076,0,0,1-5.28-.654c-1.638-.463-2.032-.933-2.048-1.031,0-.009,0-.018,0-.028a.248.248,0,0,0,0-.027V17.912a20.4,20.4,0,0,0,5.428.7c.661,0,1.378-.049,1.709-.075a8.327,8.327,0,0,0,2.7,2.381c-.772.081-1.718.158-2.514.158m6.492-.03a7.381,7.381,0,1,1,7.38-7.38,7.388,7.388,0,0,1-7.38,7.38" fill="#333"/>
<path id="Path_576" data-name="Path 576" d="M16.726,7.5a6.162,6.162,0,1,0,6.161,6.162A6.168,6.168,0,0,0,16.726,7.5m0,11.429a5.267,5.267,0,1,1,5.267-5.267,5.273,5.273,0,0,1-5.267,5.267" fill="#333"/>
<path id="Path_577" data-name="Path 577" d="M16.893,13.1c-.193,0-1.157-.042-1.157-.866,0-.639.623-.866,1.157-.866.627,0,1.157.4,1.157.866a.447.447,0,0,0,.894,0,1.847,1.847,0,0,0-1.6-1.717v-.79a.447.447,0,0,0-.894,0v.783a1.748,1.748,0,0,0-1.6,1.724A1.838,1.838,0,0,0,16.893,14c.6,0,1.3.258,1.3.985s-.7.986-1.3.986a1.18,1.18,0,0,1-1.3-.986.447.447,0,0,0-.894,0,1.981,1.981,0,0,0,1.75,1.84v.786a.447.447,0,0,0,.894,0v-.78a1.875,1.875,0,0,0,1.75-1.846,1.967,1.967,0,0,0-2.2-1.879" fill="#333"/>
</g>
</g>
<title>coins</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Betaling & Verzending</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="3">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 15.662" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_4">
<rect id="Rectangle_377" data-name="Rectangle 377" width="25" height="15.662" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_865" data-name="Group 865" transform="translate(0 0)">
<g id="Group_864" data-name="Group 864" clip-path="url(#clip-path_4)">
<path id="Path_578" data-name="Path 578" d="M2.365,5.787H2.129a.236.236,0,0,0-.236.236V7.435l-.553.289.076.147L1.9,7.617a.236.236,0,0,0,.228.177h.194a.111.111,0,0,0,.111-.112V5.856a.069.069,0,0,0-.069-.069" fill="#333"/>
<path id="Path_579" data-name="Path 579" d="M6.111,11.141A2.261,2.261,0,1,0,8.372,13.4a2.261,2.261,0,0,0-2.261-2.26m0,3.722A1.462,1.462,0,1,1,7.573,13.4a1.464,1.464,0,0,1-1.462,1.462" fill="#333"/>
<path id="Path_580" data-name="Path 580" d="M19.1,12.879a.522.522,0,1,0,.522.522.522.522,0,0,0-.522-.522" fill="#333"/>
<path id="Path_581" data-name="Path 581" d="M19.1,11.141a2.261,2.261,0,1,0,2.26,2.261,2.261,2.261,0,0,0-2.26-2.261m0,3.747A1.486,1.486,0,1,1,20.59,13.4,1.486,1.486,0,0,1,19.1,14.888" fill="#333"/>
<path id="Path_582" data-name="Path 582" d="M6.111,12.879a.522.522,0,1,0,.522.522.522.522,0,0,0-.522-.522" fill="#333"/>
<path id="Path_583" data-name="Path 583" d="M24.887.113A.384.384,0,0,0,24.615,0H8.658a.387.387,0,0,0-.272.113.383.383,0,0,0-.112.272V10.524a.384.384,0,0,0,.384.385h8.908a2.921,2.921,0,0,0-.554.443H8.444c-.171-.2-.368-.428-.554-.625V7.667l-.217-.141V3.745a.071.071,0,0,0-.021-.05.07.07,0,0,0-.05-.02l-4.716.053a1.037,1.037,0,0,0-.938.621l-.083.19H1.92A.189.189,0,0,1,2.1,4.8L.942,7.757a.189.189,0,0,1-.175.12H.405L1.2,6.061.258,8.211A1.894,1.894,0,0,0,.1,8.967v1.6a.112.112,0,0,0,.112.112H.264v.5H.472a.181.181,0,0,1,.18.181v.782a.18.18,0,0,1-.18.18H.264v.6H.111A.112.112,0,0,0,0,13.032v.979a.112.112,0,0,0,.111.112H3.355a.112.112,0,0,0,.111-.112V12.542a.694.694,0,0,1,.115-.383c.286-.432,1.058-1.479,1.839-1.479H7.149s1.188,1.053,1.3,1.481a14.774,14.774,0,0,1,.2,1.631h.921V12.443h.238V13.7a.22.22,0,0,0,.064.155.222.222,0,0,0,.155.065h3.511a.223.223,0,0,0,.156-.065.22.22,0,0,0,.064-.155V12.443h2.575a2.852,2.852,0,0,0-.128.515h.217a2.717,2.717,0,0,1,1.6-2.049h2.155a2.715,2.715,0,0,1,1.6,2.049H22a2.937,2.937,0,0,0-.127-.515H23.1v.288h.47v-.607h-.313v-.636h.313v-.136H21.195a2.921,2.921,0,0,0-.554-.443h3.974A.386.386,0,0,0,25,10.524V.385a.384.384,0,0,0-.113-.272M5.935,7.135a.471.471,0,0,1-.336.451l-.917.274a4.7,4.7,0,0,1-1.348.2H1.792a.236.236,0,0,1-.223-.309l.942-2.863a.237.237,0,0,1,.224-.162H5.7a.236.236,0,0,1,.235.236Zm4.7,6.349H10.25V12.128h.384Zm2.092,0H10.847V12.128h1.879Zm.6,0h-.384V12.128h.384Zm10.91-3.345H9.043V.769H24.231Z" fill="#333"/>
</g>
</g>
<title>truck</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Intra-Communautaire levering</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="4">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 24.919" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_5">
<rect id="Rectangle_378" data-name="Rectangle 378" width="25" height="24.919" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_868" data-name="Group 868" transform="translate(0 0)">
<g id="Group_867" data-name="Group 867" clip-path="url(#clip-path_5)">
<path id="Path_584" data-name="Path 584" d="M24.5,11.86a2.4,2.4,0,0,0-1.163-.827l.046-.345a1.339,1.339,0,0,0-1.148-1.5l-.494-.066A9.219,9.219,0,0,0,3.309,9.111l-.548.074a1.339,1.339,0,0,0-1.148,1.5l.046.344A2.413,2.413,0,0,0,.022,13.647l.117.872a2.418,2.418,0,0,0,2.267,2.09l.047.346a1.34,1.34,0,0,0,1.325,1.16,1.357,1.357,0,0,0,.179-.012l2.1-.282a.445.445,0,0,0,.383-.5L5.361,9.286a.447.447,0,0,0-.5-.383L4.2,8.991A8.326,8.326,0,0,1,20.85,9l-.71-.1a.445.445,0,0,0-.5.383L18.562,17.32a.445.445,0,0,0,.382.5l.872.117L19.029,20A4.73,4.73,0,0,1,14.9,23.011a1.455,1.455,0,0,0-1.38-1H11.536a1.454,1.454,0,0,0,0,2.908h1.985A1.456,1.456,0,0,0,14.907,23.9a5.629,5.629,0,0,0,4.956-3.589l.862-2.255.318.043a1.357,1.357,0,0,0,.179.012,1.34,1.34,0,0,0,1.325-1.16l.046-.346a2.419,2.419,0,0,0,2.268-2.09l.117-.871A2.4,2.4,0,0,0,24.5,11.86m-22.9,3.549A1.514,1.514,0,0,1,1.023,14.4l-.117-.872a1.525,1.525,0,0,1,.875-1.589l.5,3.763a1.52,1.52,0,0,1-.677-.294M5.495,17l-1.657.222a.446.446,0,0,1-.5-.383l-.375-2.8L2.6,11.314l-.1-.744a.445.445,0,0,1,.383-.5l1.656-.222Zm8.026,7.031H11.536a.562.562,0,0,1,0-1.124h1.985a.562.562,0,1,1,0,1.124m7.641-6.809L19.5,17l.958-7.15,1.657.222a.445.445,0,0,1,.383.5l-.1.744-.377,2.816-.363,2.706a.445.445,0,0,1-.5.383m2.932-3.69-.117.872a1.528,1.528,0,0,1-1.262,1.3l.5-3.763a1.525,1.525,0,0,1,.875,1.589" fill="#333"/>
<path id="Path_585" data-name="Path 585" d="M16.333,16.326a.446.446,0,0,0-.806-.382,3.193,3.193,0,0,1-2.955,1.574,3.184,3.184,0,0,1-2.95-1.573.446.446,0,0,0-.807.38,4.058,4.058,0,0,0,3.757,2.085,4.066,4.066,0,0,0,3.761-2.084" fill="#333"/>
<path id="Path_586" data-name="Path 586" d="M8.9,11.49a.861.861,0,1,0,.861-.861.862.862,0,0,0-.861.861m.892,0a.031.031,0,1,1-.031-.031.031.031,0,0,1,.031.031" fill="#333"/>
<path id="Path_587" data-name="Path 587" d="M14.524,11.49a.861.861,0,1,0,.861-.861.862.862,0,0,0-.861.861m.892,0a.031.031,0,1,1-.031-.031.031.031,0,0,1,.031.031" fill="#333"/>
<path id="Path_588" data-name="Path 588" d="M12.229,1.8a.445.445,0,0,0-.507.375C11.178,5.823,6.355,7.336,6.3,7.353a.446.446,0,1,0,.259.853A11.86,11.86,0,0,0,9.317,6.877a9.128,9.128,0,0,0,1.644-1.356,12.174,12.174,0,0,0,7.67,2.469.446.446,0,0,0,0-.892,11.481,11.481,0,0,1-7.1-2.261A5.657,5.657,0,0,0,12.6,2.308a.445.445,0,0,0-.375-.507" fill="#333"/>
</g>
</g>
<title>support</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Klantgerichte service</span>
</div>
</li>
</div>
</div>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
const swiperInstanceClass = '#usp-slider-68985b51578a3 .swiper-container';
// Load Swiper CSS if not already loaded
if (!document.querySelector(`link[href="${swiperCssUrl}"]`)) {
const style = document.createElement("link");
style.rel = "stylesheet";
style.href = swiperCssUrl;
document.head.appendChild(style);
}
function initSwiper() {
const elements = document.querySelectorAll(swiperInstanceClass);
Array.from(elements).forEach(element => {
new Swiper(element, {
slidesPerView: 1,
spaceBetween: 16,
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
initialSlide: 0,
centeredSlides: true,
breakpoints: {
0: {
slidesPerView: 1,
centeredSlides: true,
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
},
1024: {
slidesPerView: 4,
centeredSlides: false,
loop: false,
autoplay: false,
},
1536: {
slidesPerView: 5,
centeredSlides: false,
loop: false,
autoplay: false,
},
}
});
});
}
// Load Swiper JS if not already loaded
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === swiperJsUrl);
if (pendingLoadScript) { // Swiper is already being loaded
pendingLoadScript.addEventListener('load', () => initSwiper());
} else {
const script = document.createElement('script');
script.src = swiperJsUrl;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
}
})();
</script> </div>
</template>
<!-- Top menu -->
<div class="lg:bg-primary border-b lg:border-b-transparent"
:class="{
'fixed top-[90px] left-0 w-full z-40 bg-lala-blue': isTopMenuFixed && isPageLoaded,
'top-menu-icons': isHomepage && !isTopMenuFixed
}"
x-ref="topMenu"
:style="isPageLoaded ? 'transition: all 300ms ease-in-out;' : ''" x-cloak>
<div class="relative container hidden lg:block">
<nav class="navigation relative hidden lg:block grow" aria-label="Main menu" x-data="initMenuDesktop_68985b51580e2()" x-ref="nav-desktop" @load.window="setActiveMenu($root)">
<ul class="flex flex-wrap gap-x-8">
<li class="home-link">
<a href="https://www.lalashops.nl/" title="Home" class="level-0 h-[50px] flex uppercase text-white text-sm font-normal border-transparent items-center">
<div class="pt-1">Home</div>
</a>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer " x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/elektronica/" title="Elektronica">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 52 42.839" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_9" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_721_2" data-name="Group 721" transform="translate(-410 -205.581)">
<path id="Line_42_2" data-name="Line 42" d="M1,3H-1V0H1Z" transform="translate(430.577 239.638)" fill="url(#linear-gradient_9)"/>
<path id="Line_43_2" data-name="Line 43" d="M1,3H-1V0H1Z" transform="translate(441.422 239.638)" fill="url(#linear-gradient_9)"/>
<path id="Path_296_2" data-name="Path 296" d="M36.031,42.281H14.853v-1a5.116,5.116,0,0,1,5.11-5.11H30.921a5.116,5.116,0,0,1,5.11,5.11Zm-19.013-2H33.866a3.116,3.116,0,0,0-2.945-2.11H19.963A3.116,3.116,0,0,0,17.018,40.281Z" transform="translate(410.557 206.138)" fill="#1e84cd"/>
<path id="Rectangle_348_2" data-name="Rectangle 348" d="M4.424-1H45.577A5.429,5.429,0,0,1,51,4.423V27.94a5.429,5.429,0,0,1-5.423,5.423H4.424A5.43,5.43,0,0,1-1,27.939V4.424A5.43,5.43,0,0,1,4.424-1ZM45.577,31.363A3.427,3.427,0,0,0,49,27.94V4.423A3.427,3.427,0,0,0,45.577,1H4.424A3.428,3.428,0,0,0,1,4.424V27.939a3.428,3.428,0,0,0,3.424,3.424Z" transform="translate(411 206.581)" fill="#1e84cd"/>
</g>
<title>electronica-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 52 42.8" style="enable-background:new 0 0 52 42.8;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M46.6,0H5.4C2.4,0,0,2.4,0,5.4v23.5c0,3,2.4,5.4,5.4,5.4h14.2v2.5c-2.4,0.4-4.2,2.5-4.2,5v1h21.2v-1 c0-2.5-1.8-4.6-4.2-5v-2.5h14.2c3,0,5.4-2.4,5.4-5.4V5.4C52,2.4,49.6,0,46.6,0z M34.4,40.8H17.6c0.4-1.3,1.6-2.1,2.9-2.1h11 C32.8,38.7,34,39.6,34.4,40.8z M30.4,36.7h-8.8v-2.4h8.8V36.7z M50,28.9c0,1.9-1.5,3.4-3.4,3.4H5.4c-1.9,0-3.4-1.5-3.4-3.4V5.4 C2,3.5,3.5,2,5.4,2h41.2C48.5,2,50,3.5,50,5.4V28.9z"/>
<title>electronica-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-522-desktop-menu-panel">
<div class="top-name pt-1">Elektronica</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-522-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-2 gap-1 py-5 px-6 w-full rounded-3xl bg-white shadow-menu">
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_359: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_359" aria-controls="category-node-359-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Elektronica Nieuw</div>
</div>
</button>
<ul id="category-node-359-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_359" x-ref="childmenuWrappercategory_node_359">
<li class="level-2 " x-data="{ subMenuOpencategory_node_363: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_363 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_363 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_363" aria-controls="category-node-363-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/" class="text-left leading-[19px]">Computers</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-363-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_363" x-ref="childmenuWrappercategory_node_363">
<li class="level-3 " x-data="{ subMenuOpencategory_node_370: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_370 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_370 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_370" aria-controls="category-node-370-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/" class="text-left leading-[19px]">Gaming PC's</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-370-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_370" x-ref="childmenuWrappercategory_node_370">
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-3" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">AMD Ryzen 3</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-5/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">AMD Ryzen 5</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-7/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">AMD Ryzen 7</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/amd-ryzen-9/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">AMD Ryzen 9</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i3/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Intel i3</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i5/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Intel i5</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i7/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Intel i7</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/intel-i9/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Intel i9</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/gaming-computers/complete-sets/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Complete Sets</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/videobewerking-computers/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Videobewerking Computers</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/home-office-pc-s/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Home & Office PC's</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/mini-pc" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Mini PC - Intel NUC Compleet</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/all-in-one-pc" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">All-In-One-PC</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/digital-audio-workstation-daw-sound-studio-computers/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Digital Audio Workstation (DAW) / Sound Studio Computers</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/premium-bitbull-computers" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Premium BitBull Computers</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/19-inch-business-rack-servers" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">19 Inch Business Rack Servers</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/laptops" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Laptops</div>
</div>
</a>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_392: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_392 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_392 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_392" aria-controls="category-node-392-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/" class="text-left leading-[19px]">Randapparatuur</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-392-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_392" x-ref="childmenuWrappercategory_node_392">
<li class="level-3 " x-data="{ subMenuOpencategory_node_395: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_395 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_395 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_395" aria-controls="category-node-395-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/monitoren-tv">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/monitoren-tv" class="text-left leading-[19px]">Monitoren / TV's</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-395-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_395" x-ref="childmenuWrappercategory_node_395">
<li class="level-4">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/monitoren-tv/monitoren" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Monitoren</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/gaming-chair-game-stoel" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Gaming Chair</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/toetsenbord-muis/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Toetsenbord & Muis</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/randapparatuur/data-opslag/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Data Opslag</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_456: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_456 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_456 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_456" aria-controls="category-node-456-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/" class="text-left leading-[19px]">Hardware</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-456-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_456" x-ref="childmenuWrappercategory_node_456">
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/videokaarten/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Videokaarten</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/behuizingen/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Behuizingen</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/voeding/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Voeding</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/moederborden/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Moederborden</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/processoren/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Processoren</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/processor-koeling/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Processor / Behuizing Koeling</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/solid-state-drives-ssd/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Solid State Drives (SSD)</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/hardware/pc-geheugen-ram/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">PC Geheugen (RAM)</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_364: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_364 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_364 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_364" aria-controls="category-node-364-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/geluid/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/geluid/" class="text-left leading-[19px]">Geluid</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-364-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_364" x-ref="childmenuWrappercategory_node_364">
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/geluid/headphones/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Headphones</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/netwerk-en-internet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Netwerk & Internet</div>
</div>
</a>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_513: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_513 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_513 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_513" aria-controls="category-node-513-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/" class="text-left leading-[19px]">Kabels, Adapters en Stekkerdozen</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-513-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_513" x-ref="childmenuWrappercategory_node_513">
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/kabels/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Kabels</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/kabels-adapters-en-stekkerdozen/adapters/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Adapters</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/accessoires/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Accessoires</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_360: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_360" aria-controls="category-node-360-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Elektronica Refurbished</div>
</div>
</button>
<ul id="category-node-360-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_360" x-ref="childmenuWrappercategory_node_360">
<li class="level-2 " x-data="{ subMenuOpencategory_node_374: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_374 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_374 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_374" aria-controls="category-node-374-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/" class="text-left leading-[19px]">Computers</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-374-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_374" x-ref="childmenuWrappercategory_node_374">
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/mini-pc-computer" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">MINI PC / Computer</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/desktops-en-towers/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Desktops & Towers</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/gaming-computers/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Gaming Computers</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/laag-segment/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Laag Segment</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/midden-segment/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Midden Segment</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/hoog-segment/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Hoog Segment</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/top-segment/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Top Segment</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/laptops/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Laptops</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/monitoren-tv-s/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Monitoren / TV's</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/videokaart-gebruikt" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Videokaart / GPU</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/wat-betekend-refurbished/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Wat betekent 'refurbished'?</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</div>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer relative" x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/aanbiedingen-2955/" title="Aanbiedingen">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 48.013 55.886" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_10" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_753_2" data-name="Group 753" transform="translate(-478.994 -176.757)">
<path id="Path_385_2" data-name="Path 385" d="M30.412,51.345l-9.239-4.2L11.05,51.311V39.024h1.168V49.437l8.975-3.7,8.05,3.663V39.024h1.168Z" transform="translate(482.269 181.299)" fill="url(#linear-gradient_10)"/>
<path id="Path_384_2" data-name="Path 384" d="M19.675-.529l3.8,3.928,3.8-3.928,2.4,4.911,4.83-2.56.767,5.413,5.384-.943-.943,5.384,5.413.767-2.56,4.83,4.911,2.4-3.928,3.8,3.928,3.8-4.911,2.4,2.56,4.83-5.413.767.943,5.384-5.384-.943-.767,5.413-4.83-2.56-2.4,4.911-3.8-3.928-3.8,3.928-2.4-4.911-4.83,2.56-.767-5.413-5.384.943.943-5.384-5.413-.767,2.56-4.83-4.911-2.4,3.928-3.8-3.928-3.8,4.911-2.4-2.56-4.83,5.413-.767L6.291,6.291l5.384.943.767-5.413,4.83,2.56Zm3.8,6.085L20.083,2.05,17.939,6.433,13.628,4.147l-.685,4.831L8.137,8.137l.841,4.806-4.831.685L6.433,17.94,2.05,20.084l3.506,3.394L2.05,26.871l4.383,2.144L4.147,33.327l4.831.685-.841,4.806,4.806-.841.685,4.831,4.312-2.286L20.083,44.9,23.477,41.4,26.871,44.9l2.144-4.383,4.312,2.286.685-4.831,4.806.841-.841-4.806,4.831-.685-2.286-4.312L44.9,26.871,41.4,23.477,44.9,20.084,40.522,17.94l2.286-4.312-4.831-.685.841-4.806-4.806.841-.685-4.831L29.015,6.433,26.871,2.05Z" transform="translate(479.523 177.286)" fill="#1e84cd"/>
</g>
<title>aanbiedingen-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 48 55.9" style="enable-background:new 0 0 48 55.9;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M44.1,24l3.9-3.8l-4.9-2.4l2.6-4.8l-5.4-0.8l0.9-5.4l-5.4,0.9L35,2.4l-4.8,2.6L27.8,0L24,3.9L20.2,0l-2.4,4.9 L13,2.3l-0.8,5.4L6.8,6.8l0.9,5.4L2.4,13l2.6,4.8L0,20.2L3.9,24L0,27.8l4.9,2.4L2.4,35l5.4,0.8l-0.9,5.4l5.4-0.9l0.8,5.4l1.4-0.7 v10.9l10.1-4.2l9.2,4.2l0-10.9l1.3,0.7l0.8-5.4l5.4,0.9l-0.9-5.4l5.4-0.8l-2.6-4.8l4.9-2.4L44.1,24z M32.5,53.9l-8-3.7l-9,3.7v-9.7 l2.3-1.2l2.4,4.9l3.8-3.9l3.8,3.9l2.4-4.9l2.3,1.2V53.9z M43.3,33.9l-4.8,0.7l0.8,4.8l-4.8-0.8l-0.7,4.8L29.5,41l-2.1,4.4L24,41.9 l-3.4,3.5l-2.1-4.4l-4.3,2.3l-0.7-4.8l-4.8,0.8l0.8-4.8l-4.8-0.7L7,29.5l-4.4-2.1L6.1,24l-3.5-3.4L7,18.5l-2.3-4.3l4.8-0.7L8.7,8.7 l4.8,0.8l0.7-4.8L18.5,7l2.1-4.4L24,6.1l3.4-3.5L29.5,7l4.3-2.3l0.7,4.8l4.8-0.8l-0.8,4.8l4.8,0.7l-2.3,4.3l4.4,2.1L41.9,24l3.5,3.4 l-4.4,2.1L43.3,33.9z"/>
<title>aanbiedingen-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-432-desktop-menu-panel">
<div class="top-name pt-1">Aanbiedingen</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow_2">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-432-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-1 gap-1 py-5 px-6 w-[334px] rounded-3xl bg-white shadow-menu">
<button class="uppercase px-2 py-1.5 text-left leading-[19px]">Aanbiedingen</button>
<li class="level-2">
<a href="https://www.lalashops.nl/aanbiedingen/verpakkingsmateriaal" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Verpakkingsmateriaal</div>
</div>
</a>
</li>
</ul>
</div>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer relative" x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/baby-en-kinderspullen" title="Baby en Kinderspullen">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 50.073 43.238" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_11" x1="0.056" y1="0.149" x2="0.917" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_1249_2" data-name="Group 1249" transform="translate(-410.963 -200.391)">
<path id="Path_505_2" data-name="Path 505" d="M163.828,46.892a1.739,1.739,0,0,1-1.621-.7l1.3-.745a.292.292,0,0,0-.1-.11c.32.159,2.025-.007,4.282-.9a5,5,0,0,0,.606-.28l-.123-.073-.125-.075a22.341,22.341,0,0,1-2.717-2.772l1.134-.981a23.951,23.951,0,0,0,2.363,2.473l.108.064c.424.251,1.133.67,1.072,1.449-.063.81-.928,1.258-1.766,1.591a16.665,16.665,0,0,1-3.4.97A6.752,6.752,0,0,1,163.828,46.892Z" transform="translate(291.026 170.915)" fill="url(#linear-gradient_11)"/>
<path id="Path_502_2" data-name="Path 502" d="M29.136,79.3a37.48,37.48,0,0,1-4.155-.231,38.267,38.267,0,0,1-7.434-1.592,30.922,30.922,0,0,1-6.625-2.919,19.117,19.117,0,0,1-7.753-6.692A19.39,19.39,0,0,1,.235,59.894,21.857,21.857,0,0,1,.32,53.219c.156-.886.614-3.032,1.486-3.82a2.035,2.035,0,0,1,2.688.026,18.244,18.244,0,0,1,2.543,2.243,25.984,25.984,0,0,0,5.189,4.246c3.315,1.88,6.524,2.221,9.539,1.013a10.02,10.02,0,0,0,3.53-2.353l1.131.986a11.474,11.474,0,0,1-4.1,2.759,11.147,11.147,0,0,1-4.732.794,13.78,13.78,0,0,1-6.1-1.895,27.182,27.182,0,0,1-5.5-4.481,17.537,17.537,0,0,0-2.3-2.051c-.621-.4-.778-.259-.871-.175A6.785,6.785,0,0,0,1.8,53.48a20.317,20.317,0,0,0-.077,6.2,17.2,17.2,0,0,0,9.9,13.546l.04.02.037.024a29.651,29.651,0,0,0,6.361,2.793A36.487,36.487,0,0,0,34.213,77.44c6.333-.908,11.125-4.736,12.5-9.991,1.192-4.537-.535-9.122-4.618-12.266l.915-1.189c4.577,3.524,6.5,8.7,5.153,13.835a14.072,14.072,0,0,1-4.635,7.177,18.038,18.038,0,0,1-9.108,3.917A37.275,37.275,0,0,1,29.136,79.3Z" transform="translate(410.944 164.328)" fill="#1e84cd"/>
<path id="Path_503_2" data-name="Path 503" d="M94.151,21.581a8.124,8.124,0,0,1-3.656-1.49,8.526,8.526,0,0,1-2.555-2.958,12.238,12.238,0,0,1-1.3-5.271,12.06,12.06,0,0,1,.717-4.778,10.224,10.224,0,0,1,2.229-3.506A13.574,13.574,0,0,1,99.137-.25,12.063,12.063,0,0,1,107.183,3c.355.288.661.537.944.733,1.359.943,3.05,2.116,4.1,1.9a1.8,1.8,0,0,1,1.785.391,1.378,1.378,0,0,1,.076,1.464l-.021.047a8.9,8.9,0,0,1-7.5,5.347l-.155-1.492a7.432,7.432,0,0,0,6.213-4.305l-.1.019c-1.672.339-3.572-.98-5.248-2.143-.329-.229-.672-.507-1.034-.8A10.61,10.61,0,0,0,99.127,1.25,12.208,12.208,0,0,0,90.67,4.622,9.364,9.364,0,0,0,88.144,11.8c.13,3.241,1.216,5.62,3.229,7.072a6.609,6.609,0,0,0,2.917,1.213Z" transform="translate(346.771 200.641)" fill="#1e84cd"/>
<path id="Path_505-2_2" data-name="Path 505" d="M150.055,32.453s4.594-.353,3.1-5.885a10.664,10.664,0,0,1,1.751-9.315" transform="translate(300.482 188.267)" fill="none" stroke="#1e84cd" stroke-width="1.5"/>
<path id="Path_506_3" data-name="Path 506" d="M68.7,104.235a23.367,23.367,0,0,1-4.762-.46,9.069,9.069,0,0,1-3.922-1.647,3.1,3.1,0,0,1-1.146-1.851,3.319,3.319,0,0,1,.535-2.306,7.6,7.6,0,0,1,4.488-3.183,19.567,19.567,0,0,1,5.785-.722,37.518,37.518,0,0,1,7.182.775L76.533,96.3h0a36.677,36.677,0,0,0-6.887-.739c-3.2-.015-7.349.526-8.959,3.182a1.513,1.513,0,0,0,.291,2.229c1.34,1.12,4.526,1.809,8.115,1.755s6.774-.845,8.1-2.015l.993,1.124c-1.626,1.436-5.016,2.329-9.069,2.39Q68.907,104.235,68.7,104.235Z" transform="translate(367.307 130.98)" fill="#1e84cd"/>
<circle id="Ellipse_58_2" data-name="Ellipse 58" cx="1.463" cy="1.463" r="1.463" transform="translate(443.799 209.155)" fill="#1e84cd" stroke="#1e84cd" stroke-width="1.5"/>
</g>
<title>duck-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 50.1 43.2" style="enable-background:new 0 0 50.1 43.2;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M43.9,17.4c0.3,0,0.7,0,1-0.1c1.2-0.2,2.3-0.5,3.4-1c0.8-0.3,1.7-0.8,1.8-1.6s-0.6-1.2-1.1-1.4l-0.1-0.1 c-0.7-0.6-1.3-1.2-1.8-1.9c1.2-0.9,2.2-2.1,2.8-3.6l0,0c0.3-0.5,0.2-1-0.1-1.5c-0.5-0.4-1.2-0.6-1.8-0.4c-1,0.2-2.7-1-4.1-1.9 c-0.3-0.2-0.6-0.4-0.9-0.7c-2.2-2-5.1-3.2-8-3.2c-3.6,0-7,1.3-9.6,3.8c-1,1-1.7,2.2-2.2,3.5c-0.6,1.5-0.8,3.2-0.7,4.8 c0,1.8,0.5,3.6,1.3,5.3c0.3,0.6,0.7,1.1,1.1,1.6c-0.9,0.8-1.9,1.5-3.1,1.9c-3,1.2-6.2,0.9-9.5-1c-1.9-1.2-3.6-2.6-5.2-4.2 c-0.8-0.8-1.6-1.6-2.5-2.2c-0.8-0.7-1.9-0.7-2.7,0c-0.9,0.8-1.3,2.9-1.5,3.8C0,19.5,0,21.8,0.3,24c0.4,2.8,1.4,5.6,2.9,8 c1.9,2.9,4.6,5.2,7.8,6.7c2.1,1.2,4.3,2.2,6.6,2.9c2.4,0.8,4.9,1.3,7.4,1.6c1.4,0.2,2.8,0.2,4.2,0.2c1.8,0,3.5-0.1,5.3-0.4 c3.3-0.4,6.5-1.8,9.1-3.9c2.3-1.9,3.9-4.4,4.6-7.2c1.3-5-0.5-10-4.7-13.5c0.1-0.3,0.2-0.6,0.2-0.9C43.7,17.4,43.8,17.4,43.9,17.4z M48.1,14.5l0.1,0.1l0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3c-2,0.8-3.5,1-4.1,0.9c0-0.5-0.1-1.1-0.3-1.7c-0.1-0.4-0.2-0.8-0.3-1.2 c0.9-0.2,1.8-0.5,2.6-0.9C46.5,13,47.3,13.8,48.1,14.5z M44.6,6.2c1.3,0.8,2.6,1.4,3.7,1.1h0.1c-1,2.2-3,3.7-5.4,4.2 C43.1,9.7,43.6,7.8,44.6,6.2z M46.7,31.4c-1.4,5.3-6.2,9.1-12.5,10C28.8,42.1,23.3,41.7,18,40c-2.2-0.7-4.4-1.6-6.4-2.8l0,0l0,0 c-5.4-2.5-9.2-7.6-9.9-13.5c-0.3-2.1-0.3-4.1,0.1-6.2c0.1-1.1,0.5-2.1,1-3c0.1-0.1,0.2-0.2,0.9,0.2C4.5,15.3,5.3,16,6,16.8 c1.6,1.7,3.5,3.2,5.5,4.5c1.9,1.1,3.9,1.7,6.1,1.9c1.6,0.1,3.2-0.2,4.7-0.8c1.3-0.5,2.5-1.3,3.6-2.3c0.1,0.1,0.3,0.2,0.4,0.3 c1.1,0.8,2.3,1.3,3.7,1.5l0.1-1.5c-1.1-0.2-2.1-0.6-2.9-1.2c-2-1.5-3.1-3.8-3.2-7.1c-0.2-2.6,0.7-5.3,2.5-7.2 c2.3-2.2,5.3-3.4,8.5-3.4c2.7,0,5.2,1.1,7.1,2.9c0.4,0.3,0.7,0.6,1,0.8c0.1,0.1,0.2,0.1,0.3,0.2c-1.7,2.7-2.3,6.1-1.4,9.2 c0.4,1.6,0.4,2.9-0.2,3.7c-0.8,1.1-2.2,1.2-2.2,1.2l0.1,0.7l0.1,0.7c0.1,0,1.8-0.2,3-1.5C46.3,22.7,47.8,27.1,46.7,31.4z"/>
<path class="st0" d="M25.4,33.3c-3.6,0.1-6.8-0.6-8.1-1.8l-0.1-0.1c-0.6-0.5-0.7-1.5-0.2-2.1c1.6-2.7,5.8-3.2,9-3.2 c2.3,0,4.6,0.3,6.9,0.7l0.3-1.5c-2.4-0.5-4.8-0.7-7.2-0.8c-2,0-3.9,0.2-5.8,0.7c-1.8,0.5-3.4,1.6-4.5,3.2c-0.5,0.7-0.6,1.5-0.5,2.3 c0.1,0.7,0.6,1.4,1.1,1.9c1.2,0.9,2.5,1.4,3.9,1.6c1.6,0.3,3.2,0.5,4.8,0.5c0.1,0,0.3,0,0.4,0c4.1-0.1,7.4-1,9.1-2.4l-1-1.1 C32.2,32.5,29,33.3,25.4,33.3z"/>
<path class="st0" d="M34.3,8c-1.2,0-2.2,1-2.2,2.2s1,2.2,2.2,2.2s2.2-1,2.2-2.2S35.5,8,34.3,8z M34.3,10.9c-0.4,0-0.7-0.3-0.7-0.7 s0.3-0.7,0.7-0.7S35,9.8,35,10.2S34.7,10.9,34.3,10.9z"/>
</g>
<title>duck-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-611-desktop-menu-panel">
<div class="top-name pt-1">Baby en Kinderspullen</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow_3">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-611-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-1 gap-1 py-5 px-6 w-[334px] rounded-3xl bg-white shadow-menu">
<button class="uppercase px-2 py-1.5 text-left leading-[19px]">Baby en Kinderspullen</button>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/geboortelijstjes" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Geboortelijstjes</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/knuffeldoekjes" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Knuffeldoekjes</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/brievenbus-cadeau-s" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Brievenbus Cadeau's</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/glazen-tegeltjes" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Glazen Tegeltjes</div>
</div>
</a>
</li>
<li class="level-2 relative" x-data="{ subMenuOpencategory_node_620: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_620 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_620 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_620" aria-controls="category-node-620-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen">
<div class="flex items-center">
<div href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen" class="text-left leading-[19px]">Leren en Spelen</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-620-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white pl-3 flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_620" x-ref="childmenuWrappercategory_node_620">
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/speelbakken" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Speelbakken en Toebehoren</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/boeken" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Boeken</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/tikiri-bad-en-bijtspeelgoed" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Tikiri Bijt- en Badspeelgoed</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/mushie-stacking-cups" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Mushie Stacking Cups</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/mushie-presstoy" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Mushie Press Toy</div>
</div>
</a>
</li>
<li class="level-3 relative" x-data="{ subMenuOpencategory_node_657: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_657 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_657 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_657" aria-controls="category-node-657-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed">
<div class="flex items-center">
<div href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed" class="text-left leading-[19px]">Kinderspeelgoed</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-657-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white pl-3 flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_657" x-ref="childmenuWrappercategory_node_657">
<li class="level-4">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed/animal-world" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Animal World / Animal Kingdom</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/leren-en-spelen/kinderspeelgoed/mega-size" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Mega Size</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/gepersonaliseerde-cadeau-s" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Gepersonaliseerde Cadeau's</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/decoratie-kinderkamer" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Decoratie Kinderkamer</div>
</div>
</a>
</li>
<li class="level-2 relative" x-data="{ subMenuOpencategory_node_623: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_623 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_623 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_623" aria-controls="category-node-623-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken">
<div class="flex items-center">
<div href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken" class="text-left leading-[19px]">Eten en Drinken</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-623-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white pl-3 flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_623" x-ref="childmenuWrappercategory_node_623">
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken/mushie-sippy-cups" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Mushie Sippy Cups</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/eten-en-drinken/mushie-place-mats" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Mushie Place Mats</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/speenkoorden" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Speenkoorden</div>
</div>
</a>
</li>
<li class="level-2 relative" x-data="{ subMenuOpencategory_node_626: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_626 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_626 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_626" aria-controls="category-node-626-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen">
<div class="flex items-center">
<div href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen" class="text-left leading-[19px]">Frigg Spenen</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-626-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white pl-3 flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_626" x-ref="childmenuWrappercategory_node_626">
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen/frigg-spenen-t1-0-tot-6-maanden" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">FRIGG Spenen T1 - 0 tot 6 Maanden</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/baby-en-kinderspullen/frigg-spenen/frigg-spenen-t2-6-tot-12-maanden" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">FRIGG Spenen T2 - 6 tot 12 Maanden</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</div>
</li>
<li class="top-links level-0 flex flex-col items-center justify-center hover:cursor-pointer" x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<div class="home-icons">
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 36.4 44.3" style="enable-background:new 0 0 36.4 44.3;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M36.4,12.2H22.5H21h-0.1c1-0.2,2-0.5,3-0.9c1.5-0.5,2.8-1.3,4-2.3c1.2-1,2-2.5,2.1-4c0.1-1.4-0.3-2.7-1.2-3.7 C28.1,0.4,27.1,0,26,0c-2,0.2-3.7,1.2-4.8,2.8c-1.3,1.8-2.3,3.8-2.9,5.9c-0.7-2.1-1.6-4.1-2.9-5.9c-1.1-1.6-2.9-2.7-4.8-2.8 C9.4,0,8.4,0.4,7.7,1.2c-0.9,1-1.3,2.4-1.2,3.7c0.1,1.6,0.9,3,2.1,4c1.2,1,2.5,1.8,4,2.3c1,0.4,2,0.7,3,0.9H14v0H0v9.2h2.2v22.8H14 h1.5H21h1.5H34V21.4h2.4V12.2z M22.3,3.7c0.8-1.3,2.2-2.1,3.7-2.2c0.7,0,1.3,0.3,1.7,0.7c0.6,0.7,0.9,1.7,0.8,2.6 c-0.3,4.1-6.7,5.7-9.3,6.2C19.7,8.4,20.8,5.9,22.3,3.7z M8,4.8C7.9,3.9,8.2,3,8.8,2.2c0.4-0.5,1.1-0.7,1.7-0.7 c1.5,0.2,2.8,1,3.7,2.2c1.5,2.2,2.6,4.7,3.1,7.3c-1.4-0.3-2.8-0.6-4.1-1.1C10.9,9,8.2,7.4,8,4.8z M1.5,19.9v-6.2h12.4v6.2H2.2H1.5z M3.7,42.8V21.4H14v21.3H3.7z M21,42.8h-5.5V19.9h0v-6.2H21V42.8z M32.5,42.8h-10V21.4h10V42.8z M34.9,19.9H34H22.5v-6.2h12.4V19.9z "/>
<title>cadeau-white</title></svg>
</template>
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 36.446 44.275" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_12" x1="1" y1="1" x2="0.09" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_771_2" data-name="Group 771" transform="translate(-824.367 231.634)">
<path id="Rectangle_358_2" data-name="Rectangle 358" d="M-.75-.75H12.567V23.6H-.75ZM11.067.75H.75V22.1H11.067Z" transform="translate(827.301 -210.958)" fill="#1e84cd"/>
<path id="Rectangle_359_2" data-name="Rectangle 359" d="M-.75-.75H12.287V23.6H-.75ZM10.787.75H.75V22.1H10.787Z" transform="translate(846.118 -210.958)" fill="#1e84cd"/>
<path id="Path_506_4" data-name="Path 506" d="M42.366,12.6l-1.027-.125a25.77,25.77,0,0,1-5.535-1.41,13.106,13.106,0,0,1-3.992-2.294,5.871,5.871,0,0,1-2.135-4.046A4.885,4.885,0,0,1,30.857,1,3.822,3.822,0,0,1,33.682-.213,6.439,6.439,0,0,1,38.52,2.6a21.076,21.076,0,0,1,3.645,8.986ZM33.682,1.287a2.306,2.306,0,0,0-1.729.739,3.413,3.413,0,0,0-.78,2.6c.176,2.586,2.909,4.169,5.171,5.042a24.267,24.267,0,0,0,4.121,1.148,18.706,18.706,0,0,0-3.122-7.284A5.016,5.016,0,0,0,33.682,1.287Z" transform="translate(801.188 -231.42)" fill="#1e84cd"/>
<path id="Path_507_3" data-name="Path 507" d="M80.245,12.6l.2-1.015A21.076,21.076,0,0,1,84.091,2.6,6.439,6.439,0,0,1,88.93-.213,3.822,3.822,0,0,1,91.755,1a4.885,4.885,0,0,1,1.18,3.727A5.871,5.871,0,0,1,90.8,8.775a13.106,13.106,0,0,1-3.992,2.294,25.77,25.77,0,0,1-5.535,1.41ZM88.93,1.287a5.016,5.016,0,0,0-3.662,2.246,18.7,18.7,0,0,0-3.121,7.283c2.58-.488,9.015-2.11,9.292-6.189a3.413,3.413,0,0,0-.78-2.6A2.306,2.306,0,0,0,88.93,1.287Z" transform="translate(761.435 -231.42)" fill="#1e84cd"/>
<path id="Rectangle_357_2" data-name="Rectangle 357" d="M-.75-.75H14.695V8.478H-.75ZM13.195.75H.75V6.978H13.195Z" transform="translate(846.118 -218.686)" fill="url(#linear-gradient_12)"/>
<path id="Rectangle_357-2_2" data-name="Rectangle 357" d="M-.75-.75H14.695V8.478H-.75ZM13.195.75H.75V6.978H13.195Z" transform="translate(839.061 -210.958) rotate(180)" fill="url(#linear-gradient_12)"/>
<path id="Rectangle_360_2" data-name="Rectangle 360" d="M-.75-.75h8.5V31.328H-.75Zm7,1.5H.75V29.828h5.5Z" transform="translate(839.117 -218.686)" fill="#1e84cd"/>
</g>
<title>cadeau-blue</title></svg>
</template>
</div>
<a href="https://www.lalashops.nl/cadeau-artikelen/" title="Cadeau" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal
" :class="{'text-white uppercase': isTopMenuFixed}">
<div class="top-name pt-1">Cadeau</div>
</a>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer " x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/kristalhandel/" title="KristalHandel">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 28.366 43.64" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_13" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#1e84cd"/>
</linearGradient>
</defs>
<g id="Group_775_2" data-name="Group 775" transform="translate(-864.315 105.955)">
<path id="Path_507_4" data-name="Path 507" d="M14.182,397.253a32.564,32.564,0,0,1-9.732-1.324C1.538,394.977,0,393.656,0,392.11c0-1.88,2.285-3.428,6.434-4.358l.328,1.464c-3.635.815-5.262,2.041-5.262,2.894,0,.617.9,1.57,3.418,2.394a31.052,31.052,0,0,0,9.266,1.25,31.051,31.051,0,0,0,9.266-1.25c2.52-.824,3.418-1.777,3.418-2.394,0-.8-1.484-1.971-4.8-2.786l.358-1.457c3.832.942,5.942,2.448,5.942,4.243,0,1.546-1.539,2.867-4.451,3.819A32.563,32.563,0,0,1,14.182,397.253Z" transform="translate(864.316 -459.569)" fill="url(#linear-gradient_13)"/>
<path id="Path_514_2" data-name="Path 514" d="M136.123,421.717l-1.611-.383.347-1.459,1.138.27,2.37-.986.576,1.385Z" transform="translate(742.073 -488.198)" fill="#1e84cd"/>
<g id="Group_775-2_2" data-name="Group 775">
<path id="Path_508_2" data-name="Path 508" d="M41.17,269.3l-2.981-.542L33.2,255.768l3.46-5.229,4.93,3.148,2.041,13.64Zm-1.883-1.867,1.48.269,1.255-1-1.812-12.111L37.1,252.6l-2.218,3.354Z" transform="translate(833.932 -334.606)" fill="#1e84cd"/>
<path id="Path_509_2" data-name="Path 509" d="M38.094,283.735l-4.1-.276.1-1.5,3.6.242,2.8-1.844.826,1.252Z" transform="translate(833.932 -361.456)" fill="#1e84cd"/>
<path id="Path_510_2" data-name="Path 510" d="M69.917,268.679l-3.079-12.4-1.014-4.551,1.464-.326,1.012,4.542,3.073,12.371Z" transform="translate(804.255 -334.605)" fill="#1e84cd"/>
<path id="Path_511_3" data-name="Path 511" d="M175.577,190.864l-2.954-1.818.943-18.91,6.993-4.227,4.382,6.572-5.564,17.824Zm-1.411-2.63L175.9,189.3l2.328-.342,5.07-16.241-3.188-4.783-5.083,3.072Z" transform="translate(706.743 -257.35)" fill="#1e84cd"/>
<path id="Path_512_2" data-name="Path 512" d="M200.969,190.227l-1.472-.289,3.268-16.655,1.329-6.511,1.47.3-1.329,6.509Z" transform="translate(682.247 -257.35)" fill="#1e84cd"/>
<path id="Path_513_2" data-name="Path 513" d="M188.273,212.375l-4.945-3.005.779-1.282,4.472,2.717,4.841-.789.241,1.48Z" transform="translate(697.322 -295.506)" fill="#1e84cd"/>
<path id="Path_515_2" data-name="Path 515" d="M148.735,38.4l-.09-27.3v0l.09-10.375,1.5.013-.09,10.37.09,27.29Z" transform="translate(728.648 -105.665)" fill="#1e84cd"/>
<path id="Path_516_2" data-name="Path 516" d="M57.789,23.468,55.7,7.732,64.709-.291,73.3,7.877l-.972,8.688L70.834,16.4l.89-7.948-7.048-6.7L57.288,8.324,59.276,23.27Z" transform="translate(813.44 -105.665)" fill="#1e84cd"/>
<path id="Path_517_2" data-name="Path 517" d="M64.6,88.218l-8.374-3.175.532-1.4L64.6,86.616l7.644-2.842.523,1.406Z" transform="translate(813.44 -181.978)" fill="#1e84cd"/>
</g>
</g>
<title>kristal-handel-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 28.4 43.6" style="enable-background:new 0 0 28.4 43.6;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M23.2,34.5l4.2-13.4L23,14.5l-1.4,0.8l0.8-7.2L13.8,0l-9,8l1.9,14.1l-0.4-0.3l-3.5,5.2l2.8,7.2 C2,35.3,0,36.8,0,38.5c0,1.5,1.5,2.9,4.5,3.8c3.2,0.9,6.4,1.4,9.7,1.3c3.3,0.1,6.6-0.4,9.7-1.3c2.9-1,4.5-2.3,4.5-3.8 C28.4,36.8,26.5,35.4,23.2,34.5z M23.1,17.4l2.1,3.2l-2.9,0.5L23.1,17.4z M20.9,20.8l-2.7-1.7l3.5-2.1L20.9,20.8z M16.6,36.8 l0.8-16.4l3.2,1.9l-3,15.1L16.6,36.8z M22.1,22.7l3.4-0.6l-4.8,15.4l-1.6,0.2L22.1,22.7z M16,18.7l-0.9,18.6l-0.5,0.2l-0.1-25.7 l6.3-2.3L20,16.3L16,18.7z M7,8.1l6-5.4L13,10.3L7,8.1z M14.6,2.8l5.7,5.4l-5.8,2.1L14.6,2.8z M6.5,9.5l6.5,2.4l0.1,25.5L11.2,25 l-2.9-1.8L6.5,9.5z M9.1,25.5L8,26.2l-0.4-1.7L9.1,25.5z M6.6,26.6L5,26.5l1.1-1.7L6.6,26.6z M6.9,28.2l2.7,10.7l-0.7-0.1L4.8,28 L6.9,28.2z M11,38.5L8.4,27.8l1.6-1l1.7,11.3L11,38.5z M23.5,40.9c-3,0.9-6.1,1.3-9.3,1.2c-3.1,0.1-6.3-0.4-9.3-1.2 c-2.5-0.8-3.4-1.8-3.4-2.4c0-0.8,1.5-1.9,4.6-2.7l1.7,4.3l3,0.5l1.8-1.5l1.3,0.3l2.5-1l1.7,1l3.8-0.6l0.9-3c2.8,0.8,4.1,1.9,4.1,2.6 C26.9,39.1,26,40.1,23.5,40.9z"/>
<title>kristal-handel-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-362-desktop-menu-panel">
<div class="top-name pt-1">KristalHandel</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow_4">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-362-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-3 gap-1 py-5 px-6 w-full rounded-3xl bg-white shadow-menu">
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_402: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_402" aria-controls="category-node-402-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Kristal/Edelsteen Producten</div>
</div>
</button>
<ul id="category-node-402-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_402" x-ref="childmenuWrappercategory_node_402">
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/agaat-op-standaard/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Agaat op Standaard</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/geode" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Geode</div>
</div>
</a>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_507: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_507 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_507 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_507" aria-controls="category-node-507-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/getrommelde-stenen/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/getrommelde-stenen/" class="text-left leading-[19px]">Getrommelde Stenen</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-507-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_507" x-ref="childmenuWrappercategory_node_507">
<li class="level-3">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/getrommelde-stenen/rond-natuurlijke-vorm/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Rond / Natuurlijke vorm</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/ruw-kristal-edelsteen-of-mineralen/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Ruw Kristal, Edelsteen of mineralen</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/speciale-stukken/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Speciale Stukken</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/theelichthouders/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Theelichthouders</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-producten/hangers/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Hangers</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_401: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_401" aria-controls="category-node-401-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Kristal/Edelsteen Per Soort</div>
</div>
</button>
<ul id="category-node-401-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_401" x-ref="childmenuWrappercategory_node_401">
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/aarbeikwarts" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Aarbeienkwarts</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/agaat/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Agaat</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/amazoniet" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Amazoniet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/amethist/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Amethist</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/aquamarijn" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Aquamarijn</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/aventurijn" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Aventurijn</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/azuriet-malachiet" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Azuriet / Malachiet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/bergkristal/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Bergkristal</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/calciet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Calciet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/chalcedoon" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Chalcedoon</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/citrien/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Citrien</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/hematiet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Hematiet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/howliet" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Howliet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/jade" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Jade</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/labradoriet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Labradoriet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/lapis-lazuli" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Lapis Lazuli</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/magnetiet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Magnetiet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/opaliet" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Opaliet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/pink-himalaya-salt/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Pink Himalaya Salt</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/pyriet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Pyriet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/rozekwarts/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Rozekwarts</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/seleniet/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Seleniet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/sodaliet" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Sodaliet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/tijgeroog" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Tijgeroog</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/kristal-edelsteen-per-soort/toermalijn/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Toermalijn</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_443: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_443" aria-controls="category-node-443-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Voordeelverpakkingen / Partijen</div>
</div>
</button>
<ul id="category-node-443-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_443" x-ref="childmenuWrappercategory_node_443">
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/agaat" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Agaat</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/amethist" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Amethist</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/bergkristal" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Bergkristal</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/blauwe-calciet" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Calciet</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/rozekwarts" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Rozekwarts</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/tijgeroog" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Tijgeroog</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/kristalhandel/prijs-per-kilo-partijen/aventurijn" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Aventurijn</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</div>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer relative" x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/sieraden-kunst/" title="Sieraden / Kunst">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 36.11 42.831" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_14" x1="0.541" y1="0.663" x2="0.386" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_778_2" data-name="Group 778" transform="translate(-1382.53 90.415)">
<path id="Path_511_4" data-name="Path 511" d="M11.243,24.2a.75.75,0,0,1-.75-.75V21.692a7.669,7.669,0,0,1-1.767-.821,4.969,4.969,0,0,1-2.459-4.33,3.664,3.664,0,0,1,1.078-2.653,4.668,4.668,0,0,1,2.381-1.223,5.528,5.528,0,0,1,2.916.177,3.544,3.544,0,0,1,2.147,1.892,16.213,16.213,0,0,1,.767,2.555c.585,2.418,1.042,3.9,2.992,3.9a.75.75,0,1,1,0,1.5,3.651,3.651,0,0,1-3.279-1.738,11.061,11.061,0,0,1-1.171-3.31,15.14,15.14,0,0,0-.688-2.317c-.465-1.084-2.085-1.457-3.383-1.19a2.57,2.57,0,0,0-2.261,2.407c0,3.1,3.583,3.835,3.619,3.842l.607.118v2.951A.75.75,0,0,1,11.243,24.2Z" transform="translate(1380.68 -94.396)" fill="url(#linear-gradient_14)"/>
<path id="Path_511-2_2" data-name="Path 511" d="M11.243,24.2a.75.75,0,0,1-.75-.75V21.692a7.669,7.669,0,0,1-1.767-.821,4.969,4.969,0,0,1-2.459-4.33,3.664,3.664,0,0,1,1.078-2.653,4.668,4.668,0,0,1,2.381-1.223,5.528,5.528,0,0,1,2.916.177,3.544,3.544,0,0,1,2.147,1.892,16.213,16.213,0,0,1,.767,2.555c.585,2.418,1.042,3.9,2.992,3.9a.75.75,0,1,1,0,1.5,3.651,3.651,0,0,1-3.279-1.738,11.061,11.061,0,0,1-1.171-3.31,15.14,15.14,0,0,0-.688-2.317c-.465-1.084-2.085-1.457-3.383-1.19a2.57,2.57,0,0,0-2.261,2.407c0,3.1,3.583,3.835,3.619,3.842l.607.118v2.951A.75.75,0,0,1,11.243,24.2Z" transform="translate(1398.713 -102.964)" fill="url(#linear-gradient_14)"/>
<path id="Union_3_2" data-name="Union 3" d="M14.454,24.109H3.225L3.032,23.7q-.011-.021-.02-.043L.179,17.671l-.015-.032L0,17.294l.192-.321q.012-.023.026-.044L4.728,9.382q.012-.022.026-.043l2.33-3.9a3.212,3.212,0,1,1,4.6.022l2.108,3.905q.012.021.023.043l4.073,7.545q.013.023.025.046l.166.307-.152.329-.011.023-2.767,5.985q-.012.029-.026.056l-.188.407Zm-1.636-1.5L9.244,18.461,5.413,22.61ZM3.9,22.034,7.55,18.085H2.034Zm10.36-.046,1.8-3.9H10.9Zm1.72-5.4L12.7,10.495H10.013v6.089Zm-7.469,0V10.495H5.81L2.171,16.584Zm3.372-7.59L10.409,6.259a3.215,3.215,0,0,1-2.061-.011L6.706,8.995Zm-4.2-5.783A1.711,1.711,0,0,0,10.3,4.664l.047-.03A1.711,1.711,0,1,0,7.681,3.211Z" transform="translate(1400.562 -80.262)" fill="#1e84cd"/>
<path id="Union_2_2" data-name="Union 2" d="M3.225,24.11l-.2-.42-.01-.021L.181,17.676q-.01-.02-.02-.041L0,17.294l.194-.325.023-.038L4.725,9.386q.014-.026.03-.051l2.328-3.9a3.211,3.211,0,1,1,4.6.022L13.792,9.37l.02.036,4.076,7.552L17.91,17l.168.311-.15.324-.015.033-2.769,5.988q-.009.021-.019.042l-.192.415Zm9.594-1.5L9.244,18.461,5.413,22.61ZM3.9,22.035l3.648-3.95H2.033Zm10.36-.047,1.8-3.9H10.9Zm1.72-5.4-3.287-6.089H10.013v6.089Zm-7.468,0V10.495H5.81L2.172,16.584Zm3.372-7.59L10.409,6.259a3.216,3.216,0,0,1-2.061-.011L6.707,8.995Zm-4.2-5.783a1.712,1.712,0,0,0,2.612,1.456q.028-.02.058-.037A1.712,1.712,0,1,0,7.681,3.211Z" transform="translate(1382.53 -71.694)" fill="#1e84cd"/>
</g>
<title>sieraden-kunst-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 36.1 42.8" style="enable-background:new 0 0 36.1 42.8;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M35.9,27.2C35.9,27.1,35.9,27.1,35.9,27.2l-4.1-7.6c0,0,0,0,0,0l-2.1-3.9c1.2-1.2,1.2-3.2,0-4.5 c-0.4-0.5-1-0.7-1.6-0.9V8l-0.6-0.1c0,0-3.6-0.7-3.6-3.8c0.1-1.2,1-2.3,2.3-2.4c1.3-0.3,2.9,0.1,3.4,1.2c0.3,0.8,0.5,1.5,0.7,2.3 c0.2,1.2,0.6,2.3,1.2,3.3c0.7,1.1,2,1.8,3.3,1.7c0.4,0,0.8-0.3,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8c-1.9,0-2.4-1.5-3-3.9 C31.6,3.9,31.3,3,31,2.2c-0.4-0.9-1.2-1.6-2.1-1.9c-0.9-0.3-1.9-0.4-2.9-0.2c-0.9,0.2-1.7,0.6-2.4,1.2C22.8,2,22.4,3,22.5,4 c0,1.8,0.9,3.4,2.5,4.3c0.6,0.3,1.1,0.6,1.8,0.8v1.1c-0.5,0.1-1.1,0.4-1.5,0.8c-1.3,1.2-1.3,3.3-0.1,4.5l-2.3,3.9c0,0,0,0,0,0 l-4.5,7.5c0,0,0,0,0,0L18,27.4l0.2,0.3l0,0l2.8,6c0,0,0,0,0,0l0.2,0.4h11.2l0.5,0l0.2-0.4c0,0,0,0,0-0.1l2.8-6l0,0l0.2-0.3 L35.9,27.2z M34,26.7l-6,0v-6.1h2.7L34,26.7z M26.5,11.9c0.8-0.5,1.8-0.3,2.4,0.5c0.5,0.8,0.3,1.8-0.5,2.4l0,0 c-0.3,0.2-0.6,0.3-0.9,0.3c-0.9,0-1.7-0.8-1.7-1.7l0,0C25.7,12.8,26,12.3,26.5,11.9z M26.4,16.4c0.7,0.2,1.4,0.2,2.1,0l1.5,2.7 l-5.2,0L26.4,16.4z M23.8,20.6h2.7v6.1l-6.3,0L23.8,20.6z M20.1,28.2h5.5l-3.6,3.9L20.1,28.2z M23.4,32.8l3.8-4.1l3.6,4.1 L23.4,32.8z M32.3,32.1l-3.4-3.9h5.2L32.3,32.1z"/>
<path class="st0" d="M17.9,35.7l-4.1-7.6l0,0l-2.1-3.9c1.2-1.2,1.2-3.2,0-4.5c-0.4-0.5-1-0.7-1.6-0.9v-2.3l-0.6-0.1 c0,0-3.6-0.7-3.6-3.8c0.1-1.2,1-2.3,2.3-2.4c1.3-0.3,2.9,0.1,3.4,1.2c0.3,0.8,0.5,1.5,0.7,2.3c0.2,1.2,0.6,2.3,1.2,3.3 c0.7,1.1,2,1.8,3.3,1.7c0.4,0,0.8-0.3,0.8-0.8c0-0.4-0.3-0.8-0.8-0.8c-1.9,0-2.4-1.5-3-3.9c-0.2-0.9-0.4-1.7-0.8-2.6 c-0.4-0.9-1.2-1.6-2.1-1.9C9.9,8.5,8.8,8.5,7.9,8.7C7,8.9,6.2,9.3,5.5,9.9c-0.7,0.7-1.1,1.7-1.1,2.7c0,1.8,0.9,3.4,2.5,4.3 c0.6,0.3,1.1,0.6,1.8,0.8v1.1c-0.5,0.1-1.1,0.4-1.5,0.8c-1.3,1.2-1.3,3.3-0.1,4.5l-2.3,3.9c0,0,0,0,0,0.1l-4.5,7.5l0,0L0,36 l0.2,0.3c0,0,0,0,0,0l2.8,6l0,0l0.2,0.4l11.7,0l0.2-0.4c0,0,0,0,0,0l2.8-6l0,0l0.2-0.3L17.9,35.7L17.9,35.7z M16,35.3h-6v-6.1h2.7 L16,35.3z M8.4,20.5c0.8-0.5,1.8-0.3,2.4,0.5c0.5,0.8,0.3,1.8-0.5,2.4c0,0,0,0-0.1,0c-0.3,0.2-0.6,0.3-0.9,0.3 c-0.9,0-1.7-0.8-1.7-1.7l0,0C7.7,21.4,8,20.8,8.4,20.5z M8.3,25c0.7,0.2,1.4,0.2,2.1,0l1.5,2.7l-5.2,0L8.3,25z M5.8,29.2h2.7v6.1 l-6.3,0L5.8,29.2z M2,36.8h5.5l-3.6,4L2,36.8z M5.4,41.3l3.8-4.1l3.6,4.1H5.4z M14.3,40.7l-3.4-3.9h5.2L14.3,40.7z"/>
</g>
<title>sieraden-kunst-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-396-desktop-menu-panel">
<div class="top-name pt-1">Sieraden / Kunst</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow_5">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-396-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-1 gap-1 py-5 px-6 w-[334px] rounded-3xl bg-white shadow-menu">
<button class="uppercase px-2 py-1.5 text-left leading-[19px]">Sieraden / Kunst</button>
<li class="level-2">
<a href="https://www.lalashops.nl/sieraden-kunst/hangers/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Hangers</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/sieraden-kunst/oorbellen/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Oorbellen</div>
</div>
</a>
</li>
<li class="level-2 relative" x-data="{ subMenuOpencategory_node_644: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_644 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_644 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_644" aria-controls="category-node-644-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/sieraden-kunst/koorden">
<div class="flex items-center">
<div href="https://www.lalashops.nl/sieraden-kunst/koorden" class="text-left leading-[19px]">Koorden</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-644-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white pl-3 flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_644" x-ref="childmenuWrappercategory_node_644">
<li class="level-3">
<a href="https://www.lalashops.nl/sieraden-kunst/koorden/waxed-macrame-koord" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Waxed Macramé Koord</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</div>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer relative" x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/welzijn-verzorging/" title="Welzijn / Verzorging">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 52.001 43.919" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_15" x1="0.5" y1="1" x2="-0.107" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_785_2" data-name="Group 785" transform="translate(-407.999 -190.18)">
<path id="Union_4_2" data-name="Union 4" d="M10.227,16.532,5.779,18.186l-.7-1.874,5.095-1.9.329.105c7.06,2.26,11.771,3.107,14.4,2.59a85.538,85.538,0,0,0,17.731-5.6c1.57-.86,2.027-1.993,1.569-3.891-.617-1.475-2.029-2.8-3.276-2.4l-12,3.829a4.98,4.98,0,0,1-.106.5,4.821,4.821,0,0,1-1.523,2.426,4.537,4.537,0,0,1-2.968,1.058h-.128L11.794,9.8a1,1,0,1,1,.5-1.935L24.458,11.03a2.586,2.586,0,0,0,2.44-2,2.266,2.266,0,0,0-.82-2.547c-.667-.2-4.027-1.226-7.518-2.237C11.39,2.168,10.114,2,9.894,2c-.134,0-.967.085-4.107,1.742C4.069,4.649,2.53,5.571,2.515,5.58A1,1,0,0,1,1.486,3.865C1.55,3.827,3.08,2.91,4.846,1.977,8.2.205,9.334,0,9.894,0c.328,0,1.2,0,9.211,2.322C23,3.452,26.746,4.6,26.783,4.609l.109.033.1.057A3.973,3.973,0,0,1,28.8,7L40.324,3.319c2.479-.792,4.821,1.275,5.765,3.622L46.114,7l.017.067a5.889,5.889,0,0,1-.031,3.47,5.121,5.121,0,0,1-2.538,2.75l-.062.031a87.53,87.53,0,0,1-18.191,5.75l-.009,0a10.833,10.833,0,0,1-2.1.184C20.228,19.257,16.016,18.368,10.227,16.532Z" transform="translate(413.625 212.319)" fill="url(#linear-gradient_15)"/>
<path id="Path_521_2" data-name="Path 521" d="M401.677,4a7.725,7.725,0,0,1,5.266,2.053,7.747,7.747,0,0,1,13,5.615v.024c-.044,1.812-1.116,4.057-3.187,6.675a60.573,60.573,0,0,1-9.526,9.145l-.68.545-.633-.6-.884-.837c-3.887-3.675-7.905-7.475-9.837-10.774a7.6,7.6,0,0,1-.96-2.1,5.759,5.759,0,0,1-.29-2.117A7.71,7.71,0,0,1,401.677,4Zm5.266,5.108-.779-.967a5.746,5.746,0,0,0-10.221,3.526v.038l0,.038a3.769,3.769,0,0,0,.2,1.412l.01.033a5.6,5.6,0,0,0,.723,1.577l.03.048c1.782,3.056,5.7,6.765,9.5,10.353l.25.236a56.6,56.6,0,0,0,8.531-8.278c1.74-2.2,2.718-4.141,2.756-5.47a5.746,5.746,0,0,0-10.221-3.513Z" transform="translate(33.416 186.18)" fill="#1e84cd"/>
<path id="Path_518_2" data-name="Path 518" d="M10.321,513.4a2.5,2.5,0,0,1-2.41-1.832L4.088,497.608a2.482,2.482,0,0,1,1.759-3.05l3.485-.936a2.5,2.5,0,0,1,3.062,1.745l3.824,13.962a2.482,2.482,0,0,1-1.759,3.05l-3.485.936A2.517,2.517,0,0,1,10.321,513.4Zm-.336-17.866a.516.516,0,0,0-.134.018l-3.485.936a.492.492,0,0,0-.3.231.47.47,0,0,0-.046.359l3.824,13.962a.5.5,0,0,0,.481.36.516.516,0,0,0,.134-.018l3.485-.936a.493.493,0,0,0,.3-.231.47.47,0,0,0,.046-.359L10.466,495.9A.5.5,0,0,0,9.985,495.536Z" transform="translate(404 -279.303)" fill="#1e84cd"/>
</g>
<title>welzijn-verzorging-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 52 43.9" style="enable-background:new 0 0 52 43.9;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M51.8,29.2L51.8,29.2l0-0.1c-0.9-2.3-3.3-4.4-5.8-3.6l-11.5,3.7c-0.3-1-0.9-1.8-1.8-2.3l-0.1-0.1l-0.1,0 c0,0-3.8-1.2-7.7-2.3c-8-2.3-8.9-2.3-9.2-2.3c-0.6,0-1.7,0.2-5,2c-0.9,0.5-1.7,0.9-2.3,1.3c-0.5-1-1.7-1.5-2.9-1.2l-3.5,0.9 c0,0,0,0,0,0c-1.3,0.4-2.1,1.7-1.7,3l3.8,14c0.3,1.1,1.3,1.8,2.4,1.8c0.2,0,0.4,0,0.7-0.1l3.5-0.9c0,0,0,0,0,0 c1.3-0.3,2-1.6,1.8-2.9l3.6-1.3c5.8,1.8,10,2.7,13,2.7c0.7,0,1.4-0.1,2.1-0.2h0c6.3-1.2,12.4-3.2,18.2-5.8l0.1,0 c1.2-0.6,2.1-1.5,2.5-2.8C52.1,31.5,52.1,30.3,51.8,29.2z M10.2,40.7c-0.1,0.1-0.2,0.2-0.3,0.2l-3.5,0.9c0,0-0.1,0-0.1,0 c-0.2,0-0.4-0.1-0.5-0.4L2,27.6c0-0.1,0-0.3,0-0.4C2.1,27.1,2.2,27,2.4,27l3.5-0.9c0,0,0.1,0,0.1,0v0c0.2,0,0.4,0.1,0.5,0.4l3.8,14 C10.3,40.5,10.3,40.6,10.2,40.7z M48.3,33.6c-5.7,2.5-11.6,4.4-17.7,5.6c-2.6,0.5-7.3-0.3-14.4-2.6l-0.3-0.1l-4.1,1.5L8.8,27.3 c0.6-0.4,1.6-0.9,2.6-1.5c3.1-1.7,4-1.7,4.1-1.7c0.2,0,1.5,0.2,8.7,2.2c3.5,1,6.9,2,7.5,2.2c0.8,0.6,1.1,1.6,0.8,2.5 c-0.3,1.1-1.3,2-2.4,2L17.9,30c0,0,0,0-0.1,0c-0.5-0.1-1.1,0.2-1.2,0.8c-0.1,0.5,0.2,1.1,0.8,1.2l12.4,3.2H30c1.1,0,2.1-0.4,3-1.1 c0.7-0.6,1.3-1.5,1.5-2.4c0-0.2,0.1-0.3,0.1-0.5l12-3.8c1.2-0.4,2.7,0.9,3.3,2.4C50.3,31.7,49.8,32.8,48.3,33.6z"/>
<path class="st0" d="M20.6,11.8c1.9,3.3,6,7.1,9.8,10.8l0.9,0.8l0.6,0.6l0.7-0.5c3.5-2.7,6.7-5.8,9.5-9.1c2.1-2.6,3.1-4.9,3.2-6.7 v0c0-1.9-0.8-3.8-2.1-5.2c-2.9-3.1-7.8-3.3-10.9-0.4C30.9,0.7,29,0,27.1,0c-4.2,0-7.7,3.4-7.7,7.6c0,0.7,0.1,1.4,0.3,2.1 C19.9,10.5,20.2,11.2,20.6,11.8z M21.4,7.7L21.4,7.7c0-1.7,0.8-3.4,2.1-4.4c2.5-2,6.1-1.6,8.1,0.9l0.8,1l0.8-1 C34.2,2.8,35.8,2,37.5,2c3.2,0,5.8,2.5,5.8,5.7c0,1.3-1,3.3-2.8,5.5c-2.5,3.1-5.4,5.8-8.5,8.3l-0.2-0.2c-3.8-3.6-7.7-7.3-9.5-10.4 l0,0c-0.3-0.5-0.6-1-0.7-1.6l0,0C21.4,8.7,21.3,8.2,21.4,7.7L21.4,7.7z"/>
</g>
<title>welzijn-verzorging-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-584-desktop-menu-panel">
<div class="top-name pt-1">Welzijn / Verzorging</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow_6">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-584-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-1 gap-1 py-5 px-6 w-[334px] rounded-3xl bg-white shadow-menu">
<button class="uppercase px-2 py-1.5 text-left leading-[19px]">Welzijn / Verzorging</button>
<li class="level-2">
<a href="https://www.lalashops.nl/welzijn-verzorging/massage-griffels" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Massage griffels</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/welzijn-verzorging/zeepdispensers" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Zeepdispensers</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/welzijn-verzorging/badzout" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Badzout</div>
</div>
</a>
</li>
</ul>
</div>
</li>
<li class="top-links !p-0 level-0 hover:cursor-pointer " x-data="{
open: false,
isHovering: false,
canHover(func) {
const isHoverableDevice = window.matchMedia('(hover: hover) and (pointer: fine)').matches;
if (!isHoverableDevice) return;
func();
}
}" @click.outside="open = false" @mouseenter="canHover(() => { open = true; isHovering = true; })" @mouseleave="canHover(() => { open = false; isHovering = false; })" @keydown.escape="open = false">
<a class="top-links flex flex-col items-center" href="https://www.lalashops.nl/wonen/" title="Wonen">
<div class="home-icons">
<template x-if="!isHovering">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 35.663 42.809" class="w-[52px] h-auto" role="img">
<defs>
<linearGradient id="linear-gradient_16" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#1e84cd"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g id="Group_838_2" data-name="Group 838" transform="translate(-1321.386 96.352)">
<path id="Path_566_3" data-name="Path 566" d="M116.331,134.459a.75.75,0,0,1-.745-.668c-.011-.1-.282-2.605-.328-5.935a38.742,38.742,0,0,1,1.091-10.884.75.75,0,0,1,1.441.416c-1.784,6.185-.725,16.14-.714,16.24a.75.75,0,0,1-.664.827A.76.76,0,0,1,116.331,134.459Z" transform="translate(1223.449 -194.542)" fill="url(#linear-gradient_16)"/>
<path id="Path_567_3" data-name="Path 567" d="M82.182,1.75a5.657,5.657,0,0,1,3.584,1.27,5.384,5.384,0,0,1,1.937,3.6l.012.1.1.02a5.522,5.522,0,0,1,1.24,10.43l-.095.044.012.1a5.408,5.408,0,0,1-1.312,4.292,5.723,5.723,0,0,1-4.218,1.9,5.42,5.42,0,0,1-4.006-1.786l-.071-.077-.095.044a5.461,5.461,0,0,1-7.1-2.253,5.369,5.369,0,0,1-.031-5.457l.051-.091-.071-.077A5.436,5.436,0,0,1,71.1,7.875,5.646,5.646,0,0,1,73.039,5.5a5.339,5.339,0,0,1,3.072-.964h0a5.849,5.849,0,0,1,1.135.113l.1.02L77.4,4.58A5.426,5.426,0,0,1,82.182,1.75Zm1.263,20.263a4.2,4.2,0,0,0,3.1-1.393,3.868,3.868,0,0,0,.944-3.118l-.141-1.186,1.084-.5a3.921,3.921,0,0,0,2.308-4.126,3.921,3.921,0,0,0-3.211-3.47l-1.171-.232L86.213,6.8A4,4,0,0,0,82.182,3.25,3.9,3.9,0,0,0,78.71,5.312l-.583,1.042-1.172-.233a4.346,4.346,0,0,0-.843-.085h0a3.946,3.946,0,0,0-3.633,2.438,3.906,3.906,0,0,0,.742,4.323l.811.876-.583,1.042a3.9,3.9,0,0,0,.016,3.965,3.962,3.962,0,0,0,5.179,1.649l1.084-.5.811.876A3.876,3.876,0,0,0,83.444,22.013Z" transform="translate(1260.972 -98.102)" fill="#1e84cd"/>
<path id="Ellipse_76_2" data-name="Ellipse 76" d="M3.756-.75A4.506,4.506,0,1,1-.75,3.756,4.511,4.511,0,0,1,3.756-.75Zm0,7.512A3.006,3.006,0,1,0,.75,3.756,3.009,3.009,0,0,0,3.756,6.762Z" transform="translate(1338.772 -88.55)" fill="#1e84cd"/>
<path id="Path_568_3" data-name="Path 568" d="M53.072,228.626a.748.748,0,0,1-.541-.23c-5.595-5.824-12.133-7.607-19.433-5.3a28.326,28.326,0,0,0-9.484,5.333.75.75,0,0,1-1.014-1.106,29.332,29.332,0,0,1,10-5.642,19.981,19.981,0,0,1,10.015-.706,20.88,20.88,0,0,1,11,6.381.75.75,0,0,1-.541,1.27Z" transform="translate(1301.568 -282.169)" fill="#1e84cd"/>
<path id="Path_562_2" data-name="Path 562" d="M126.087,174.737a.746.746,0,0,1-.426-.133h0a11.757,11.757,0,0,0-3.3-1.423,10.667,10.667,0,0,0-7.509.631.75.75,0,0,1-.642-1.356,12.3,12.3,0,0,1,8.6-.709,13.006,13.006,0,0,1,3.707,1.623.75.75,0,0,1-.428,1.366Z" transform="translate(1224.683 -240.669)" fill="#1e84cd"/>
<path id="Path_563_3" data-name="Path 563" d="M134.414,147.334h0a4.317,4.317,0,0,1,3.768,1.861c1.6,2.371,3.136,2.725,3.908,2.725a1.9,1.9,0,0,0,.488-.055.736.736,0,0,1,.855.26.757.757,0,0,1-.022.912c-3.106,3.985-6.09,6-8.869,6-2.091,0-4.034-1.156-5.619-3.343a14.128,14.128,0,0,1-1.736-3.223q-.008-.024-.015-.048a2.15,2.15,0,0,1,.529-1.907,8.268,8.268,0,0,1,2.825-2.176A8.99,8.99,0,0,1,134.414,147.334Zm6.816,6a7.012,7.012,0,0,1-4.29-3.3,2.846,2.846,0,0,0-2.526-1.2,8,8,0,0,0-5.519,2.593,1.076,1.076,0,0,0-.281.583c.18.477,2.181,5.531,5.928,5.531C136.56,157.542,138.806,156.127,141.229,153.331Z" transform="translate(1213.474 -220.53)" fill="#1e84cd"/>
<path id="Path_564_3" data-name="Path 564" d="M41.9,174.736a.75.75,0,0,1-.429-1.366,13.006,13.006,0,0,1,3.707-1.623,12.3,12.3,0,0,1,8.6.709.75.75,0,0,1-.642,1.356,10.667,10.667,0,0,0-7.509-.631,11.757,11.757,0,0,0-3.3,1.423A.748.748,0,0,1,41.9,174.736Z" transform="translate(1285.77 -240.669)" fill="#1e84cd"/>
<path id="Path_565_3" data-name="Path 565" d="M15.587,147.334a8.991,8.991,0,0,1,3.889,1.011A8.268,8.268,0,0,1,22.3,150.52a2.15,2.15,0,0,1,.529,1.906q-.007.024-.015.048a14.129,14.129,0,0,1-1.736,3.223c-1.585,2.187-3.528,3.343-5.619,3.343-2.779,0-5.763-2.02-8.869-6a.757.757,0,0,1-.022-.912.736.736,0,0,1,.855-.26,1.9,1.9,0,0,0,.488.055c.772,0,2.305-.354,3.908-2.725A4.317,4.317,0,0,1,15.587,147.334Zm5.8,4.677a1.075,1.075,0,0,0-.281-.584,8,8,0,0,0-5.52-2.593,2.846,2.846,0,0,0-2.526,1.2,7.012,7.012,0,0,1-4.29,3.3c2.424,2.8,4.669,4.211,6.688,4.211C19.218,157.542,21.207,152.49,21.387,152.011Z" transform="translate(1314.96 -220.53)" fill="#1e84cd"/>
</g>
<title>wonen-blue</title></svg>
</template>
<template x-if="isHovering">
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 35.7 42.8" style="enable-background:new 0 0 35.7 42.8;" xml:space="preserve" class="w-[52px] h-auto" width="24" height="24" role="img">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<g>
<path class="st0" d="M25.6,11.6c0-2.5-2-4.5-4.5-4.5c-2.5,0-4.5,2-4.5,4.5c0,2.5,2,4.5,4.5,4.5S25.6,14,25.6,11.6z M18.1,11.6 c0-1.7,1.3-3,3-3c1.7,0,3,1.3,3,3c0,1.7-1.3,3-3,3C19.5,14.6,18.1,13.2,18.1,11.6z"/>
<path class="st0" d="M19.6,28.9c0.4,0.9,0.9,1.8,1.4,2.6c1.6,2.2,3.5,3.3,5.6,3.3c2.8,0,5.8-2,8.9-6c0.2-0.3,0.2-0.6,0-0.9 c-0.2-0.3-0.5-0.4-0.9-0.3c-0.2,0-0.3,0.1-0.5,0.1c-0.8,0-2.3-0.4-3.9-2.7c-0.8-1.2-2.3-1.9-3.8-1.9c-1.4,0-2.7,0.4-3.9,1 c-1.1,0.5-2.1,1.3-2.8,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c-0.1,0-0.3,0.1-0.4,0.1c0-2.4,0.2-4.9,0.7-7.2c1,0.8,2.2,1.3,3.5,1.3 c1.6,0,3.1-0.7,4.2-1.9c1-1.2,1.5-2.7,1.3-4.3l0-0.1l0.1,0c1.6-0.7,2.8-2.2,3.1-3.9c0.6-3-1.4-5.9-4.3-6.5l-0.1,0l0-0.1 c-0.1-1.4-0.8-2.7-1.9-3.6c-1-0.8-2.3-1.3-3.6-1.3c-2,0-3.8,1.1-4.8,2.8l-0.1,0.1l-0.1,0c-0.4-0.1-0.8-0.1-1.1-0.1 c-1.1,0-2.2,0.3-3.1,1c-0.9,0.6-1.5,1.4-1.9,2.4c-0.9,2-0.5,4.3,1,5.9l0.1,0.1l-0.1,0.1c-1,1.7-1,3.8,0,5.5 c1.3,2.3,3.9,3.3,6.4,2.5c-0.5,2.5-0.8,5-0.8,7.6c-0.3-0.1-0.6-0.2-0.9-0.3c-0.1-0.4-0.2-0.8-0.5-1.1c-0.8-0.9-1.7-1.7-2.8-2.2 c-1.2-0.6-2.5-1-3.9-1c-1.5-0.1-2.9,0.6-3.8,1.9c-1.6,2.4-3.1,2.7-3.9,2.7c-0.2,0-0.3,0-0.5-0.1c-0.3-0.1-0.7,0-0.9,0.3 c-0.2,0.3-0.2,0.6,0,0.9c3.1,4,6.1,6,8.9,6c2.1,0,4-1.2,5.6-3.3c0.6-0.8,1-1.7,1.4-2.6c0.4,0.1,0.8,0.3,1.2,0.5c0,0.1,0,0.2,0,0.3 c0,2.3,0.2,4.2,0.3,5.2c-1.6,0.1-3.2,0.5-4.8,1c-3.7,1.2-7.1,3.1-10,5.6c-0.3,0.3-0.3,0.8,0,1.1c0.3,0.3,0.8,0.3,1.1,0 c2.8-2.4,6-4.2,9.5-5.3c7.3-2.3,13.8-0.5,19.4,5.3c0.1,0.1,0.3,0.2,0.5,0.2h0c0.2,0,0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.8,0-1.1 c-2.9-3.2-6.8-5.4-11-6.4c-1.2-0.2-2.5-0.3-3.7-0.3c-0.1-1-0.2-3.1-0.3-5.6C19.1,29.1,19.3,29,19.6,28.9z M26.5,24.7 c1-0.1,2,0.4,2.5,1.2c0.9,1.6,2.5,2.8,4.3,3.3c-2.4,2.8-4.7,4.2-6.7,4.2c-3,0-4.9-3.2-5.6-4.8c1.5-0.2,3.1-0.2,4.6,0.3 c1.2,0.3,2.3,0.8,3.3,1.4c0.1,0.1,0.3,0.1,0.4,0.1l0,0c0.2,0,0.5-0.1,0.6-0.3c0.2-0.3,0.2-0.8-0.2-1c-1.1-0.7-2.4-1.3-3.7-1.6 c-1.6-0.5-3.3-0.6-5-0.3C22.6,25.6,24.5,24.8,26.5,24.7z M13.1,16.9c-0.7-1.2-0.7-2.7,0-4l0.6-1L12.8,11c-1.1-1.2-1.4-2.9-0.7-4.3 c0.6-1.5,2-2.4,3.6-2.4c0.3,0,0.6,0,0.8,0.1l1.2,0.2l0.6-1c0.7-1.3,2-2.1,3.5-2.1c2.1,0,3.8,1.5,4,3.6l0.1,1.2l1.2,0.2 c1.7,0.3,3,1.7,3.2,3.5c0.2,1.7-0.7,3.4-2.3,4.1l-1.1,0.5l0.1,1.2c0.2,1.1-0.2,2.3-0.9,3.1c-0.8,0.9-1.9,1.4-3.1,1.4h0 c-1.1,0-2.2-0.5-2.9-1.3l-0.8-0.9l-1.1,0.5C16.3,19.5,14.1,18.8,13.1,16.9z M9,33.4c-2,0-4.3-1.4-6.7-4.2c1.8-0.5,3.4-1.7,4.3-3.3 c0.6-0.8,1.5-1.3,2.5-1.2c2,0.1,3.9,1,5.3,2.4c-1.6-0.2-3.3-0.1-4.9,0.4c-1.3,0.3-2.6,0.9-3.7,1.6c-0.2,0.1-0.3,0.4-0.3,0.6 c0,0.4,0.3,0.7,0.8,0.7c0.2,0,0.3,0,0.4-0.1c1-0.6,2.1-1.1,3.3-1.4c1.5-0.4,3.1-0.5,4.6-0.3C13.9,30.1,12,33.4,9,33.4z"/>
</g>
<title>wonen-white</title></svg>
</template>
</div>
<button type="button" class="level-0 h-[50px] group w-full flex justify-center items-center gap-1 text-sm font-normal" :class="{'text-white uppercase': isTopMenuFixed}" @click="open = !open" aria-expanded="false" :aria-expanded="open" aria-controls="category-node-419-desktop-menu-panel">
<div class="top-name pt-1">Wonen</div>
<div class="hyva-icons"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="24" viewBox="0 0 1024 1024" class="mt-1 ml-1.5 w-[0.6rem] h-[0.6rem] fill-white transition group-aria-expanded:rotate-180 group-aria-expanded:text-inherit flex items-center" role="img">
<title/>
<g id="arrow_7">
</g>
<path d="M17.554 322.56l443.977 425.691c10.317 11.216 24.681 18.571 40.76 19.737l0.2 0.012c0.033 0 0.072 0 0.11 0 14.979 0 28.593-5.848 38.682-15.385l-0.027 0.025 443.977-423.497c10.133-9.96 16.412-23.812 16.412-39.131s-6.279-29.171-16.404-39.124l-0.008-0.008c-10.078-10.174-24.052-16.473-39.497-16.473s-29.419 6.299-39.493 16.468l-0.004 0.004-403.749 381.806-408.137-390.583c-10.158-9.998-24.107-16.171-39.497-16.171s-29.339 6.173-39.505 16.179l0.007-0.007c-9.986 10.047-16.158 23.894-16.158 39.183 0 16.355 7.063 31.060 18.305 41.232l0.048 0.042z"/>
</svg>
</div>
</button>
</a>
<div id="category-node-419-desktop-menu-panel" class="z-30 absolute top-full inset-x-0 flex flex-col min-h-64 overflow-visible pt-5" x-show="open === true" x-transition x-cloak>
<ul class="grid grid-cols-2 gap-1 py-5 px-6 w-full rounded-3xl bg-white shadow-menu">
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_523: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_523" aria-controls="category-node-523-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Interieur</div>
</div>
</button>
<ul id="category-node-523-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_523" x-ref="childmenuWrappercategory_node_523">
<li class="level-2 " x-data="{ subMenuOpencategory_node_365: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_365 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_365 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_365" aria-controls="category-node-365-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/lampen/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/lampen/" class="text-left leading-[19px]">Lampen</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-365-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_365" x-ref="childmenuWrappercategory_node_365">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/lampen/zoutlampen-van-himalayazout/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Zoutlampen van Himalaya zout</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/lampen/zoutlamp-met-dimmer/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Zoutlampen met Dimmer</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/lampen/selenietlampen/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Selenietlampen</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/lampen/nachtlampen" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Nachtlampen</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/lampen/zoutlampen-individueel-gefotografeerd" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Zoutlampen individueel gefotografeerd</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_387: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_387 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_387 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_387" aria-controls="category-node-387-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/" class="text-left leading-[19px]">Kaarsen & Theelichthouders</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-387-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_387" x-ref="childmenuWrappercategory_node_387">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/theelichthouders/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Theelichthouders</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/kaarsen-theelichthouders/kaarsen" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Kaarsen</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_385: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_385 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_385 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_385" aria-controls="category-node-385-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/" class="text-left leading-[19px]">Wierook & Accessoires</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-385-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_385" x-ref="childmenuWrappercategory_node_385">
<li class="level-3 " x-data="{ subMenuOpencategory_node_406: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_406 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_406 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_406" aria-controls="category-node-406-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/" class="text-left leading-[19px]">Wierook</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-406-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_406" x-ref="childmenuWrappercategory_node_406">
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/alle-merken-wierook/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Alle Merken Wierook</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/natuurlijke-wierook/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Natuurlijke Wierook</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/hem/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">HEM</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/tulasi/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Tulasi</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/parimal/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Parimal</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierook/vijayshree/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Vijayshree</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/witte-salie/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Witte Salie</div>
</div>
</a>
</li>
<li class="level-3 " x-data="{ subMenuOpencategory_node_410: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_410 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_410 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_410" aria-controls="category-node-410-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/" class="text-left leading-[19px]">Wierookbranders</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-410-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_410" x-ref="childmenuWrappercategory_node_410">
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/wierook-branders/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Wierook Branders</div>
</div>
</a>
</li>
<li class="level-4">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/wierookbranders/abalone-schelp/" class="level-4 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Abalone Schelp</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/wierook-accessoires/kooltjes/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Kooltjes</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_475: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_475 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_475 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_475" aria-controls="category-node-475-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires" class="text-left leading-[19px]">Oliën & Accessoires</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-475-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_475" x-ref="childmenuWrappercategory_node_475">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires/aromatische-olie" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Aromatische Olie</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/aromatische-olie-accessoires/branders-verdampers" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Branders / Verdampers</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/olien-accessoires/essentiele-olie" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Essentiële Olie</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/wonen/interieur/klimaatbeheersing/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Klimaatbeheersing</div>
</div>
</a>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/wonen/interieur/decoratie/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Decoratie</div>
</div>
</a>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_567: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_567 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_567 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_567" aria-controls="category-node-567-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/interieur/aquariumdecoratie/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/interieur/aquariumdecoratie/" class="text-left leading-[19px]">Aquariumdecoratie</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-567-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_567" x-ref="childmenuWrappercategory_node_567">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/interieur/aquariumdecoratie/aquariumgrind-granulaat" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Aquariumgrind / Granulaat</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/wonen/interieur/decoratie" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Decoratie"</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_366: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_366" aria-controls="category-node-366-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Keuken</div>
</div>
</button>
<ul id="category-node-366-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_366" x-ref="childmenuWrappercategory_node_366">
<li class="level-2 " x-data="{ subMenuOpencategory_node_388: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_388 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_388 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_388" aria-controls="category-node-388-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/keuken/voeding/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/keuken/voeding/" class="text-left leading-[19px]">Voeding</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-388-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_388" x-ref="childmenuWrappercategory_node_388">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/keuken/voeding/automatische-kiemer/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Automatische Kiemer</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_389: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_389 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_389 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_389" aria-controls="category-node-389-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/keuken/keukenmachines/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/keuken/keukenmachines/" class="text-left leading-[19px]">Keukenmachines</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-389-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_389" x-ref="childmenuWrappercategory_node_389">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/keuken/keukenmachines/milk-maker/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Milk Maker</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/keuken/keukenmachines/voedsel-droogoven/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Voedsel Droogoven</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2">
<a href="https://www.lalashops.nl/wonen/keuken/koken-bakken/" class="level-2 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Koken & Bakken</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-1 not-first:border-l not-first:border-lala-gray-light-ultra not-first:pl-8 " x-data="{ subMenuOpencategory_node_421: true, timeoutId: null }" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] aria-expanded:uppercase aria-expanded:text-lala-black" :aria-expanded="subMenuOpencategory_node_421" aria-controls="category-node-421-desktop-menu-panel">
<div class="flex items-center">
<div class="text-left leading-[19px]">Tuin, Bloemen en Planten</div>
</div>
</button>
<ul id="category-node-421-desktop-menu-panel" class=" top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative " x-show.transition.opacity="subMenuOpencategory_node_421" x-ref="childmenuWrappercategory_node_421">
<li class="level-2 " x-data="{ subMenuOpencategory_node_562: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_562 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_562 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_562" aria-controls="category-node-562-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/" class="text-left leading-[19px]">Decoratieve Bodembedekking Tuin en Paden</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-562-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_562" x-ref="childmenuWrappercategory_node_562">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/kristallen-edelstenen/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Kristallen / Edelstenen</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/sierstenen/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Sierstenen</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/gravel-split-grind/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Gravel / Split </div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/houtsnippers-decochips/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Houtsnippers / Decochips</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-tuin-en-paden/glas/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Glas</div>
</div>
</a>
</li>
</ul>
</li>
<li class="level-2 " x-data="{ subMenuOpencategory_node_572: false, timeoutId: null }" @mouseenter="clearTimeout(timeoutId); subMenuOpencategory_node_572 = true" @mouseleave="timeoutId = setTimeout(() => { subMenuOpencategory_node_572 = false }, 500)" >
<button type="button" class="group w-full flex justify-between items-center gap-1 px-2 py-1.5 rounded-md min-h-[36px] text-lala-gray font-light hover:text-lala-blue aria-expanded:text-lala-blue" :aria-expanded="subMenuOpencategory_node_572" aria-controls="category-node-572-desktop-menu-panel">
<div class="flex items-center">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/">
<div class="flex items-center">
<div href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/" class="text-left leading-[19px]">Decoratieve Bodembedekking Bloemen en Planten</div>
</div>
</a>
</div>
<div class="">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="text-lala-gray group-aria-expanded:text-inherit" width="10" height="10" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/>
</svg>
</button>
<ul id="category-node-572-desktop-menu-panel" class="absolute top-0 rounded-3xl bg-white flex flex-col gap-1 py-2.5 pr-2 w-1/3 relative translate-x-[100%] w-full !absolute" x-show.transition.opacity="subMenuOpencategory_node_572" x-ref="childmenuWrappercategory_node_572">
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/gekleurd-zand/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Gekleurd Zand</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/gekleurde-steentjes-gekleurd-granulaat" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Gekleurde Steentjes / Granulaat</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/klei-korrels/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Klei Korrels</div>
</div>
</a>
</li>
<li class="level-3">
<a href="https://www.lalashops.nl/wonen/tuin-bloemen-en-planten/decoratieve-bodembedekking-bloemen-en-planten/houtsnippers/" class="level-3 flex px-2 py-1.5 rounded-md text-lala-gray font-light hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Houtsnippers</div>
</div>
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="level-1">
<a href="https://www.lalashops.nl/wonen/tuin" class="level-1 flex px-2 py-1.5 rounded-md hover:text-lala-blue aria-[current=page]:font-light min-h-[36px]">
<div class="flex items-center">
<div class="text-left leading-[19px]">Tuin</div>
</div>
</a>
</li>
</ul>
</div>
</li>
<li class="over-ons-link">
<a href="https://www.lalashops.nl/over-ons/" title="Over ons" class="level-0 h-[50px] flex uppercase text-white text-sm font-normal border-transparent items-center">
<div class="pt-1">Over ons</div>
</a>
</li>
</ul>
</nav>
<script>
const initMenuDesktop_68985b51580e2 = () => {
return {
setActiveMenu(menuNode) {
Array.from(menuNode.querySelectorAll('a')).filter(link => {
return link.href === window.location.href.split('?')[0];
}).map(item => {
item.setAttribute('aria-current', 'page');
let menuLevelCount = 0;
while (menuLevelCount < 4) {
let selector = `.level-${menuLevelCount}`;
item.closest(selector) &&
item.closest(selector).querySelector('button') &&
item.closest(selector).querySelector('button').setAttribute('data-has-current', '');
menuLevelCount++;
}
});
}
}
}
</script> </div>
<div x-ref="searchContainerMobile" class="container lg:hidden lg:py-4 pt-[61px] lg:pt-0">
<div x-ref="searchForm">
<script>
'use strict';
function initMiniSearch() {
return {
minSearchLength: 1,
suggestions: [],
suggest() {
const search = this.$refs.searchInput;
if (search.value.length >= this.minSearchLength) {
search.setCustomValidity('');
search.reportValidity();
this.fetchSuggestions(search.value);
} else {
this.suggestions = [];
}
},
fetchSuggestions(term) {
fetch(
window.BASE_URL + 'search/ajax/suggest?' + new URLSearchParams({
q: term
}), {
headers: {
'X-Requested-With': 'XMLHttpRequest'
}
}
)
.then(response => response.json())
.then(result => this.suggestions = result);
},
search(term) {
const search = this.$refs.searchInput;
term = term || search.value;
if (term.length < this.minSearchLength) {
search.setCustomValidity('Minimale\u0020lengte\u0020zoekopdracht\u0020is\u00201');
search.reportValidity();
} else {
search.setCustomValidity('');
search.value = term;
this.$refs.form.submit();
}
},
focusElement(element) {
if (element && element.nodeName === "DIV") {
element.focus();
return true;
} else {
return false;
}
}
}
}
</script>
<search x-data="initMiniSearch()">
<form class="form minisearch" id="search_mini_form" x-ref="form" @submit.prevent="search()" action="https://www.lalashops.nl/catalogsearch/result/" method="get">
<div class="flex">
<label class="sr-only" for="search" data-role="minisearch-label">
<span>Search</span>
</label>
<input id="search" x-ref="searchInput" type="search" autocomplete="off" name="q" value="" placeholder="Doorzoek de hele winkel" maxlength="128" class="w-full lg:max-w-xl lg:border-b lg:border-b-lala-gray-light-ultra placeholder:text-sm placeholder:font-light placeholder:text-lala-gray focus:border-x-transparent focus:border-y-transparent focus:lg:border-b-lala-gray-light-ultra" @focus.once="suggest" @input.debounce.300="suggest" @keydown.arrow-down.prevent="focusElement($root.querySelector('[tabindex]'))" @search-open.window.debounce.10="$el.focus(); $el.select()">
<button type="submit" title="Search" class="action search justify-center px-3 text-base shadow-none transition
text-lala-black disabled:text-slate-50 disabled:opacity-70 lg:border-b lg:border-b-lala-gray-light-ultra" aria-label="Search">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"/>
</svg>
</button>
</div>
</form>
</search> </div>
</div>
</div>
</div>
<template x-if="!isHomepage || (isHomepage && isMobile)">
<div class="usp-rest" :class="{'lg:pt-[143px]': isHeaderFixed}">
<div id="usp-slider-68985b51578a3" class="text-lala-black text-base text-center font-normal border-b border-b-lala-gray-light-ultra lg:border-none">
<div class="lg:container">
<div class="swiper-container overflow-hidden">
<div class="swiper-wrapper lg:gap-4 !h-12 lg:border-b lg:border-b-lala-gray-light-ultra lg:justify-between">
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="0">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Group_856" data-name="Group 856" width="24" height="24" viewBox="0 0 24.619 25" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path">
<rect id="Rectangle_374" data-name="Rectangle 374" width="24.619" height="25" fill="none"/>
</clipPath>
</defs>
<g id="Group_855" data-name="Group 855" clip-path="url(#clip-path)">
<path id="Path_563_2" data-name="Path 563" d="M24.258,5.917a2.029,2.029,0,0,0-1.7-.7H20a5.557,5.557,0,0,0-11.092,0H5.234l-.5-1.97A.644.644,0,0,0,4.424,2.8L.869.751a.594.594,0,0,0-.841.707A.588.588,0,0,0,.315,1.8l3.311,1.91.983,3.864L6.77,16.186a1.467,1.467,0,0,0,.044.144,2.129,2.129,0,0,0,.833,4.089l13.979,0a.585.585,0,0,0,0-1.169H7.647a.959.959,0,1,1,0-1.917H20.941a1.5,1.5,0,0,0,1.41-1.142l2.2-8.607a1.914,1.914,0,0,0-.291-1.666M14.451,1.163a4.394,4.394,0,1,1-4.4,4.4,4.4,4.4,0,0,1,4.4-4.4m8.96,6.14-2.2,8.607a.344.344,0,0,1-.272.25H8.179a.342.342,0,0,1-.27-.25L5.547,6.387H8.955a5.558,5.558,0,0,0,10.991,0h2.615a1.009,1.009,0,0,1,.776.254.775.775,0,0,1,.074.662" fill="#333"/>
<path id="Path_564_2" data-name="Path 564" d="M13.668,7.615a.507.507,0,0,0,.39.182l.014,0a.513.513,0,0,0,.383-.17l2.777-3.151a.511.511,0,0,0-.048-.721.518.518,0,0,0-.338-.126.511.511,0,0,0-.383.172L14.08,6.5,12.89,5.034a.506.506,0,0,0-.391-.183.513.513,0,0,0-.51.467.5.5,0,0,0,.115.37Z" fill="#333"/>
<path id="Path_565_2" data-name="Path 565" d="M9.383,20.926a2.037,2.037,0,1,0,2.037,2.037,2.04,2.04,0,0,0-2.037-2.037m0,3.189a1.152,1.152,0,1,1,1.152-1.152,1.154,1.154,0,0,1-1.152,1.152" fill="#333"/>
<path id="Path_566_2" data-name="Path 566" d="M18.484,20.926a2.037,2.037,0,1,0,2.037,2.037,2.04,2.04,0,0,0-2.037-2.037m0,3.189a1.152,1.152,0,1,1,1.152-1.152,1.154,1.154,0,0,1-1.152,1.152" fill="#333"/>
<path id="Path_567_2" data-name="Path 567" d="M15.508,22.562H12.357a.4.4,0,0,0,0,.8h3.151a.4.4,0,0,0,0-.8" fill="#333"/>
</g>
<title>cart-checked</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Snelle levering</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="1">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 19.661" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_2">
<rect id="Rectangle_375" data-name="Rectangle 375" width="25" height="19.661" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_858" data-name="Group 858" transform="translate(0 0)">
<g id="Group_857" data-name="Group 857" clip-path="url(#clip-path_2)">
<path id="Path_568_2" data-name="Path 568" d="M13.9,12.042c-.579,0-.624-.328-.624-.429,0-.408.52-.429.624-.429.338,0,.624.2.624.429a.448.448,0,1,0,.895,0,1.362,1.362,0,0,0-1.071-1.266V9.939a.448.448,0,0,0-.9,0v.4a1.289,1.289,0,0,0-1.071,1.274A1.369,1.369,0,0,0,13.9,12.938c.12,0,.721.024.721.508s-.647.509-.721.509c-.391,0-.721-.233-.721-.509a.448.448,0,0,0-.9,0A1.451,1.451,0,0,0,13.452,14.8v.4a.448.448,0,0,0,.9,0v-.4a1.392,1.392,0,0,0,1.169-1.355,1.472,1.472,0,0,0-1.617-1.4" fill="#333"/>
<path id="Path_569" data-name="Path 569" d="M13.956,8.209a4.421,4.421,0,1,0,4.421,4.421,4.426,4.426,0,0,0-4.421-4.421m0,7.946a3.525,3.525,0,1,1,3.525-3.525,3.529,3.529,0,0,1-3.525,3.525" fill="#333"/>
<path id="Path_570" data-name="Path 570" d="M24.552,5.747H3.507a.447.447,0,0,0-.448.447V19.213a.448.448,0,0,0,.448.448H24.552A.449.449,0,0,0,25,19.213V6.194a.448.448,0,0,0-.448-.447m-20.6.895H8.038A3.021,3.021,0,0,1,6.207,8.771a1.346,1.346,0,0,0-.927,1.276V15.36a1.346,1.346,0,0,0,.927,1.276,3.023,3.023,0,0,1,1.831,2.129H3.955ZM8.949,18.765a3.871,3.871,0,0,0-2.46-2.979.451.451,0,0,1-.313-.426V10.047a.451.451,0,0,1,.313-.426,3.87,3.87,0,0,0,2.46-2.979H19.064a3.867,3.867,0,0,0,2.459,2.979.451.451,0,0,1,.313.426V15.36a.451.451,0,0,1-.313.426h0a3.868,3.868,0,0,0-2.46,2.979Zm15.155,0H19.975a3.021,3.021,0,0,1,1.831-2.129,1.345,1.345,0,0,0,.926-1.276V10.047a1.345,1.345,0,0,0-.926-1.276,3.019,3.019,0,0,1-1.831-2.129H24.1Z" fill="#333"/>
<path id="Path_571" data-name="Path 571" d="M23.8,3.415a.449.449,0,0,0-.448-.448H1.959a.449.449,0,0,0-.448.448V16.179a.448.448,0,0,0,.9,0V3.863H23.35a.449.449,0,0,0,.448-.448" fill="#333"/>
<path id="Path_572" data-name="Path 572" d="M22.144.448A.449.449,0,0,0,21.7,0H.448A.449.449,0,0,0,0,.448V12.433a.448.448,0,0,0,.9,0V.9H21.7a.449.449,0,0,0,.448-.448" fill="#333"/>
<path id="Path_573" data-name="Path 573" d="M7.863,11.767a.918.918,0,1,0,.918.918.919.919,0,0,0-.918-.918m-.022.918a.022.022,0,0,1,.022-.022.022.022,0,0,1,.022.022c0,.024-.044.024-.044,0" fill="#333"/>
<path id="Path_574" data-name="Path 574" d="M20.956,12.685a.918.918,0,1,0-.918.918.919.919,0,0,0,.918-.918m-.939,0a.021.021,0,0,1,.021-.022.022.022,0,0,1,.023.022c0,.024-.044.024-.044,0" fill="#333"/>
</g>
</g>
<title>money</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Niet tevreden geld terug!</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="2">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 21.968" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_3">
<rect id="Rectangle_376" data-name="Rectangle 376" width="25" height="21.968" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_862" data-name="Group 862" transform="translate(0 0)">
<g id="Group_861" data-name="Group 861" clip-path="url(#clip-path_3)">
<path id="Path_575" data-name="Path 575" d="M20.662,6.387a2.038,2.038,0,0,0,.718-.654.443.443,0,0,0,.062-.227V2.223c0-.735-.859-1.288-2.625-1.692A26.394,26.394,0,0,0,13.22,0a26.394,26.394,0,0,0-5.6.531C5.857.935,5,1.488,5,2.223V3.475c-2.607.408-3.929,1.076-3.929,1.988v.043a.544.544,0,0,0,0,.057c0,.011,0,.022,0,.033V8.729c0,.01,0,.02,0,.03s0,.02,0,.03c0,.768,1.107,1.388,2.633,1.832v.1c-2.623.405-3.7.933-3.7,1.8v3.346c0,.009,0,.018,0,.027s0,.019,0,.028c0,.758.987,1.321,2.012,1.7v1.712a.248.248,0,0,0,0,.027c0,.01,0,.019,0,.028,0,1.543,4.251,2.579,8.222,2.579a34.474,34.474,0,0,0,4.122-.347.377.377,0,0,0,.058-.014,8.273,8.273,0,0,0,6.248-15.22m-3.936-1A8.234,8.234,0,0,0,11.6,7.178c-2.81-.206-5.365-1.146-5.7-1.586V3.333a7.408,7.408,0,0,0,1.731.582,26.328,26.328,0,0,0,5.6.531,26.328,26.328,0,0,0,5.6-.531,7.408,7.408,0,0,0,1.731-.582v2.02a1.945,1.945,0,0,1-1.024.524,8.237,8.237,0,0,0-2.8-.488M13.22.894c5.211,0,7.232,1.039,7.327,1.329-.1.291-2.116,1.329-7.327,1.329C7.982,3.552,5.968,2.5,5.892,2.23v0C5.968,1.943,7.982.894,13.22.894M5,4.38V5.515a.434.434,0,0,0-.013.1c0,.3.153.729,1.26,1.231C4.007,6.439,2.221,5.814,1.964,5.46c.027-.132.642-.686,3.034-1.08m-3.036,4.4,0-.022c0-.01,0-.019,0-.028V6.593a13.2,13.2,0,0,0,4.432,1.18,25.74,25.74,0,0,0,4.088.37h.087A8.305,8.305,0,0,0,9.077,10.51c-4.069-.1-6.958-1.25-7.115-1.731m6.495,5.1A11.826,11.826,0,0,1,5.6,13.144c-.836-.362-1.006-.667-1.006-.729V10.852a24.037,24.037,0,0,0,4.175.542,8.223,8.223,0,0,0-.319,2.27c0,.072,0,.144.005.216M3.7,11.628v.787c0,.768.926,1.361,2.164,1.78A16.044,16.044,0,0,1,2.887,13.6c-1.58-.49-1.975-.981-1.992-1.082.018-.038.278-.484,2.807-.893M.895,15.92c0-.009,0-.018,0-.028s0-.018,0-.027V13.716a7.571,7.571,0,0,0,1.656.719,18.953,18.953,0,0,0,5.54.774c.13,0,.232,0,.34,0l.169,0a8.214,8.214,0,0,0,.893,2.46c-.339.02-.763.039-1.159.039a19.378,19.378,0,0,1-5.318-.7c-1.688-.5-2.1-.993-2.121-1.094m9.339,5.154a20.076,20.076,0,0,1-5.28-.654c-1.638-.463-2.032-.933-2.048-1.031,0-.009,0-.018,0-.028a.248.248,0,0,0,0-.027V17.912a20.4,20.4,0,0,0,5.428.7c.661,0,1.378-.049,1.709-.075a8.327,8.327,0,0,0,2.7,2.381c-.772.081-1.718.158-2.514.158m6.492-.03a7.381,7.381,0,1,1,7.38-7.38,7.388,7.388,0,0,1-7.38,7.38" fill="#333"/>
<path id="Path_576" data-name="Path 576" d="M16.726,7.5a6.162,6.162,0,1,0,6.161,6.162A6.168,6.168,0,0,0,16.726,7.5m0,11.429a5.267,5.267,0,1,1,5.267-5.267,5.273,5.273,0,0,1-5.267,5.267" fill="#333"/>
<path id="Path_577" data-name="Path 577" d="M16.893,13.1c-.193,0-1.157-.042-1.157-.866,0-.639.623-.866,1.157-.866.627,0,1.157.4,1.157.866a.447.447,0,0,0,.894,0,1.847,1.847,0,0,0-1.6-1.717v-.79a.447.447,0,0,0-.894,0v.783a1.748,1.748,0,0,0-1.6,1.724A1.838,1.838,0,0,0,16.893,14c.6,0,1.3.258,1.3.985s-.7.986-1.3.986a1.18,1.18,0,0,1-1.3-.986.447.447,0,0,0-.894,0,1.981,1.981,0,0,0,1.75,1.84v.786a.447.447,0,0,0,.894,0v-.78a1.875,1.875,0,0,0,1.75-1.846,1.967,1.967,0,0,0-2.2-1.879" fill="#333"/>
</g>
</g>
<title>coins</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Betaling & Verzending</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="3">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 15.662" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_4">
<rect id="Rectangle_377" data-name="Rectangle 377" width="25" height="15.662" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_865" data-name="Group 865" transform="translate(0 0)">
<g id="Group_864" data-name="Group 864" clip-path="url(#clip-path_4)">
<path id="Path_578" data-name="Path 578" d="M2.365,5.787H2.129a.236.236,0,0,0-.236.236V7.435l-.553.289.076.147L1.9,7.617a.236.236,0,0,0,.228.177h.194a.111.111,0,0,0,.111-.112V5.856a.069.069,0,0,0-.069-.069" fill="#333"/>
<path id="Path_579" data-name="Path 579" d="M6.111,11.141A2.261,2.261,0,1,0,8.372,13.4a2.261,2.261,0,0,0-2.261-2.26m0,3.722A1.462,1.462,0,1,1,7.573,13.4a1.464,1.464,0,0,1-1.462,1.462" fill="#333"/>
<path id="Path_580" data-name="Path 580" d="M19.1,12.879a.522.522,0,1,0,.522.522.522.522,0,0,0-.522-.522" fill="#333"/>
<path id="Path_581" data-name="Path 581" d="M19.1,11.141a2.261,2.261,0,1,0,2.26,2.261,2.261,2.261,0,0,0-2.26-2.261m0,3.747A1.486,1.486,0,1,1,20.59,13.4,1.486,1.486,0,0,1,19.1,14.888" fill="#333"/>
<path id="Path_582" data-name="Path 582" d="M6.111,12.879a.522.522,0,1,0,.522.522.522.522,0,0,0-.522-.522" fill="#333"/>
<path id="Path_583" data-name="Path 583" d="M24.887.113A.384.384,0,0,0,24.615,0H8.658a.387.387,0,0,0-.272.113.383.383,0,0,0-.112.272V10.524a.384.384,0,0,0,.384.385h8.908a2.921,2.921,0,0,0-.554.443H8.444c-.171-.2-.368-.428-.554-.625V7.667l-.217-.141V3.745a.071.071,0,0,0-.021-.05.07.07,0,0,0-.05-.02l-4.716.053a1.037,1.037,0,0,0-.938.621l-.083.19H1.92A.189.189,0,0,1,2.1,4.8L.942,7.757a.189.189,0,0,1-.175.12H.405L1.2,6.061.258,8.211A1.894,1.894,0,0,0,.1,8.967v1.6a.112.112,0,0,0,.112.112H.264v.5H.472a.181.181,0,0,1,.18.181v.782a.18.18,0,0,1-.18.18H.264v.6H.111A.112.112,0,0,0,0,13.032v.979a.112.112,0,0,0,.111.112H3.355a.112.112,0,0,0,.111-.112V12.542a.694.694,0,0,1,.115-.383c.286-.432,1.058-1.479,1.839-1.479H7.149s1.188,1.053,1.3,1.481a14.774,14.774,0,0,1,.2,1.631h.921V12.443h.238V13.7a.22.22,0,0,0,.064.155.222.222,0,0,0,.155.065h3.511a.223.223,0,0,0,.156-.065.22.22,0,0,0,.064-.155V12.443h2.575a2.852,2.852,0,0,0-.128.515h.217a2.717,2.717,0,0,1,1.6-2.049h2.155a2.715,2.715,0,0,1,1.6,2.049H22a2.937,2.937,0,0,0-.127-.515H23.1v.288h.47v-.607h-.313v-.636h.313v-.136H21.195a2.921,2.921,0,0,0-.554-.443h3.974A.386.386,0,0,0,25,10.524V.385a.384.384,0,0,0-.113-.272M5.935,7.135a.471.471,0,0,1-.336.451l-.917.274a4.7,4.7,0,0,1-1.348.2H1.792a.236.236,0,0,1-.223-.309l.942-2.863a.237.237,0,0,1,.224-.162H5.7a.236.236,0,0,1,.235.236Zm4.7,6.349H10.25V12.128h.384Zm2.092,0H10.847V12.128h1.879Zm.6,0h-.384V12.128h.384Zm10.91-3.345H9.043V.769H24.231Z" fill="#333"/>
</g>
</g>
<title>truck</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Intra-Communautaire levering</span>
</div>
</li>
<li class="swiper-slide flex items-center justify-center lg:justify-start !w-full lg:!w-auto" data-swiper-slide-index="4">
<div class="flex gap-3 mx-auto">
<div class="w-[25px] mx-auto lg:mx-0"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="24" viewBox="0 0 25 24.919" class="text-lala-black" role="img">
<defs>
<clipPath id="clip-path_5">
<rect id="Rectangle_378" data-name="Rectangle 378" width="25" height="24.919" transform="translate(0 0)" fill="none"/>
</clipPath>
</defs>
<g id="Group_868" data-name="Group 868" transform="translate(0 0)">
<g id="Group_867" data-name="Group 867" clip-path="url(#clip-path_5)">
<path id="Path_584" data-name="Path 584" d="M24.5,11.86a2.4,2.4,0,0,0-1.163-.827l.046-.345a1.339,1.339,0,0,0-1.148-1.5l-.494-.066A9.219,9.219,0,0,0,3.309,9.111l-.548.074a1.339,1.339,0,0,0-1.148,1.5l.046.344A2.413,2.413,0,0,0,.022,13.647l.117.872a2.418,2.418,0,0,0,2.267,2.09l.047.346a1.34,1.34,0,0,0,1.325,1.16,1.357,1.357,0,0,0,.179-.012l2.1-.282a.445.445,0,0,0,.383-.5L5.361,9.286a.447.447,0,0,0-.5-.383L4.2,8.991A8.326,8.326,0,0,1,20.85,9l-.71-.1a.445.445,0,0,0-.5.383L18.562,17.32a.445.445,0,0,0,.382.5l.872.117L19.029,20A4.73,4.73,0,0,1,14.9,23.011a1.455,1.455,0,0,0-1.38-1H11.536a1.454,1.454,0,0,0,0,2.908h1.985A1.456,1.456,0,0,0,14.907,23.9a5.629,5.629,0,0,0,4.956-3.589l.862-2.255.318.043a1.357,1.357,0,0,0,.179.012,1.34,1.34,0,0,0,1.325-1.16l.046-.346a2.419,2.419,0,0,0,2.268-2.09l.117-.871A2.4,2.4,0,0,0,24.5,11.86m-22.9,3.549A1.514,1.514,0,0,1,1.023,14.4l-.117-.872a1.525,1.525,0,0,1,.875-1.589l.5,3.763a1.52,1.52,0,0,1-.677-.294M5.495,17l-1.657.222a.446.446,0,0,1-.5-.383l-.375-2.8L2.6,11.314l-.1-.744a.445.445,0,0,1,.383-.5l1.656-.222Zm8.026,7.031H11.536a.562.562,0,0,1,0-1.124h1.985a.562.562,0,1,1,0,1.124m7.641-6.809L19.5,17l.958-7.15,1.657.222a.445.445,0,0,1,.383.5l-.1.744-.377,2.816-.363,2.706a.445.445,0,0,1-.5.383m2.932-3.69-.117.872a1.528,1.528,0,0,1-1.262,1.3l.5-3.763a1.525,1.525,0,0,1,.875,1.589" fill="#333"/>
<path id="Path_585" data-name="Path 585" d="M16.333,16.326a.446.446,0,0,0-.806-.382,3.193,3.193,0,0,1-2.955,1.574,3.184,3.184,0,0,1-2.95-1.573.446.446,0,0,0-.807.38,4.058,4.058,0,0,0,3.757,2.085,4.066,4.066,0,0,0,3.761-2.084" fill="#333"/>
<path id="Path_586" data-name="Path 586" d="M8.9,11.49a.861.861,0,1,0,.861-.861.862.862,0,0,0-.861.861m.892,0a.031.031,0,1,1-.031-.031.031.031,0,0,1,.031.031" fill="#333"/>
<path id="Path_587" data-name="Path 587" d="M14.524,11.49a.861.861,0,1,0,.861-.861.862.862,0,0,0-.861.861m.892,0a.031.031,0,1,1-.031-.031.031.031,0,0,1,.031.031" fill="#333"/>
<path id="Path_588" data-name="Path 588" d="M12.229,1.8a.445.445,0,0,0-.507.375C11.178,5.823,6.355,7.336,6.3,7.353a.446.446,0,1,0,.259.853A11.86,11.86,0,0,0,9.317,6.877a9.128,9.128,0,0,0,1.644-1.356,12.174,12.174,0,0,0,7.67,2.469.446.446,0,0,0,0-.892,11.481,11.481,0,0,1-7.1-2.261A5.657,5.657,0,0,0,12.6,2.308a.445.445,0,0,0-.375-.507" fill="#333"/>
</g>
</g>
<title>support</title></svg>
</div>
<span class="whitespace-nowrap text-center lg:text-left mx-auto lg:mx-0"> Klantgerichte service</span>
</div>
</li>
</div>
</div>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
const swiperInstanceClass = '#usp-slider-68985b51578a3 .swiper-container';
// Load Swiper CSS if not already loaded
if (!document.querySelector(`link[href="${swiperCssUrl}"]`)) {
const style = document.createElement("link");
style.rel = "stylesheet";
style.href = swiperCssUrl;
document.head.appendChild(style);
}
function initSwiper() {
const elements = document.querySelectorAll(swiperInstanceClass);
Array.from(elements).forEach(element => {
new Swiper(element, {
slidesPerView: 1,
spaceBetween: 16,
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
initialSlide: 0,
centeredSlides: true,
breakpoints: {
0: {
slidesPerView: 1,
centeredSlides: true,
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
},
1024: {
slidesPerView: 4,
centeredSlides: false,
loop: false,
autoplay: false,
},
1536: {
slidesPerView: 5,
centeredSlides: false,
loop: false,
autoplay: false,
},
}
});
});
}
// Load Swiper JS if not already loaded
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === swiperJsUrl);
if (pendingLoadScript) { // Swiper is already being loaded
pendingLoadScript.addEventListener('load', () => initSwiper());
} else {
const script = document.createElement('script');
script.src = swiperJsUrl;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
}
})();
</script></div>
</template>
<script>
function initCartDrawer() {
return {
open: false,
isLoading: false,
cart: {},
maxItemsToDisplay: 10,
itemsCount: 0,
totalQtyInCart: 0,
getData(data) {
if (data.cart) {
this.cart = data.cart;
this.itemsCount = data.cart.items && data.cart.items.length || 0;
this.totalQtyInCart = data.cart.summary_count
this.setCartItems();
}
this.isLoading = false;
},
cartItems: [],
getItemCountTitle() {
return hyva.strf('\u00250\u0020of\u0020\u00251\u0020products\u0020in\u0020cart\u0020displayed', this.maxItemsToDisplay, this.itemsCount)
},
setCartItems() {
this.cartItems = this.cart.items && this.cart.items.sort((a, b) => b.item_id - a.item_id) || [];
if (this.maxItemsToDisplay > 0) {
this.cartItems = this.cartItems.slice(0, parseInt(this.maxItemsToDisplay, 10));
}
},
deleteItemFromCart(itemId) {
this.isLoading = true;
const formKey = hyva.getFormKey();
const postUrl = BASE_URL + 'checkout/sidebar/removeItem/';
fetch(postUrl, {
"headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
},
"body": "form_key=" + formKey + "&item_id=" + itemId,
"method": "POST",
"mode": "cors",
"credentials": "include"
}).then(response => {
if (response.redirected) {
window.location.href = response.url;
} else if (response.ok) {
return response.json();
} else {
window.dispatchMessages && window.dispatchMessages([{
type: 'warning',
text: 'Could\u0020not\u0020remove\u0020item\u0020from\u0020quote.'
}]);
this.isLoading = false;
}
}).then(result => {
window.dispatchMessages && window.dispatchMessages([{
type: result.success ? 'success' : 'error',
text: result.success
? 'U\u0020heeft\u0020het\u0020product\u0020verwijderd.'
: result.error_message
}], result.success ? 5000 : 0)
window.dispatchEvent(new CustomEvent('reload-customer-section-data'));
});
},
updateItemQuantityInCart(itemId, qty, way) {
let parsedQty = qty
if(way === 'down') {
parsedQty--
} else if (way === 'up') {
parsedQty++
}
this.isLoading = true;
const formKey = hyva.getFormKey();
const postUrl = BASE_URL + 'checkout/sidebar/updateItemQty/';
fetch(postUrl, {
"headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
},
"body": "form_key=" + formKey + "&item_id=" + itemId + "&item_qty=" + parsedQty,
"method": "POST",
"mode": "cors",
"credentials": "include"
}).then(response => {
if (response.redirected) {
window.location.href = response.url;
} else if (response.ok) {
return response.json();
} else {
window.dispatchMessages && window.dispatchMessages([{
type: 'warning',
text: 'Could\u0020not\u0020update\u0020item\u0020quantity.'
}]);
this.isLoading = false;
}
}).then(result => {
window.dispatchMessages && window.dispatchMessages([{
type: result.success ? 'success' : 'error',
text: result.success
? 'You\u0020updated\u0020the\u0020item\u0020quantity.'
: result.error_message
}], result.success ? 5000 : 0)
window.dispatchEvent(new CustomEvent('reload-customer-section-data'));
});
},
scrollLock(use = true) {
document.body.style.overflow = use ? "hidden" : "";
},
toggleCartDrawer(event) {
if (event.detail && event.detail.isOpen !== undefined) {
if (event.detail.isOpen) {
this.openCartDrawer();
} else {
this.open = false;
this.scrollLock(false);
this.$refs && this.$refs.cartDialogContent && hyva.releaseFocus(this.$refs.cartDialogContent);
}
} else {
this.openCartDrawer()
}
},
openCartDrawer() {
this.open = true;
this.scrollLock(true);
this.$nextTick(() => {
this.$refs && this.$refs.cartDialogContent && hyva.trapFocus(this.$refs.cartDialogContent)
})
},
closeCartDrawer() {
this.$dispatch('toggle-cart', { isOpen: false })
},
getSectionDataExtraActions() {
if (!this.cart.extra_actions) {
return '';
}
const contentNode = document.createElement('div');
contentNode.innerHTML = this.cart.extra_actions;
hyva.activateScripts(contentNode);
return contentNode.innerHTML;
}
}
}
</script>
<section x-cloak
x-show="cart"
id="cart-drawer"
x-data="initCartDrawer()"
@private-content-loaded.window="getData($event.detail.data)"
@toggle-cart.window="toggleCartDrawer($event)"
@keydown.escape="closeCartDrawer"
>
<div role="dialog"
aria-labelledby="cart-drawer-title"
aria-modal="true"
:aria-hidden="!open"
class="fixed inset-y-0 right-0 z-[52] flex max-w-full">
<div class="backdrop"
x-show="open"
x-transition:enter="ease-in-out duration-500"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="ease-in-out duration-500"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
role="button"
@click="closeCartDrawer"
aria-label="Close minicart"></div>
<div class="relative w-screen max-w-md shadow-2xl"
x-show="open"
x-transition:enter="transform transition ease-in-out duration-500 sm:duration-700"
x-transition:enter-start="translate-x-full"
x-transition:enter-end="translate-x-0"
x-transition:leave="transform transition ease-in-out duration-500 sm:duration-700"
x-transition:leave-start="translate-x-0"
x-transition:leave-end="translate-x-full"
x-ref="cartDialogContent"
role="region"
:tabindex="open ? 0 : -1"
aria-label="Winkelwagen"
>
<div class="flex flex-col h-full max-h-screen bg-white shadow-xl justify-between">
<div>
<header class="relative px-4 py-6 sm:px-6 bg-lala-gray-light-ultra">
<p id="cart-drawer-title" class="text-lg font-medium leading-7 text-gray-900 text-lala-black">
<strong>Winkelwagen</strong>
<span class="items-total text-xs"
x-show="maxItemsToDisplay && maxItemsToDisplay < itemsCount"
x-text="getItemCountTitle()">
</span>
</p>
</header>
<template x-if="!itemsCount">
<div class="relative px-4 py-6 bg-white border-bs sm:px-6 border-container text-lala-black">
Je winkelwagen is leeg </div>
</template>
<template x-if="itemsCount">
<div class="px-6 mt-2">
<p class="text-base font-bold border-b border-lala-gray-light-ultra text-lala-black pb-2">
<span x-html="totalQtyInCart"></span>
<span x-show="totalQtyInCart > 1">producten in winkelwagen</span>
<span x-show="totalQtyInCart === 1">product in winkelwagen</span>
</p>
</div>
</template>
<template x-if="itemsCount">
<div class="relative grid gap-2 px-1 py-3 sm:px-3 bg-white overflow-y-auto overscroll-y-contain max-h-[75vh] pb-[133px]">
<template x-for="item in cartItems">
<div class="flex items-start p-3 space-x-4 transition duration-150 ease-in-out rounded-lg hover:bg-gray-100 [&:not(:last-child)]:border-b border-container lg:border-none">
<a :href="item.product_url"
class="w-1/4 flex items-center justify-center border rounded-lg border-lala-gray-light-ultra p-2"
:aria-label="hyva.strf('Product\u0020\u0022\u00250\u0022', item.product_name)"
>
<img
:src="item.product_image.src"
:width="item.product_image.width"
:height="item.product_image.height"
loading="lazy"
alt=""
/>
</a>
<div class="w-3/4">
<div>
<p class="text-sm">
<span x-html="item.product_name"></span>
</p>
</div>
<template x-for="option in item.options">
<div class="pt-2">
<p class="font-semibold" x-text="option.label + ':'"></p>
<p class="text-secondary" x-html="option.value"></p>
</div>
</template>
<div class="flex justify-between items-center mt-2">
<p class="text-sm font-normal text-lala-blue"><span x-html="item.product_price"></span></p>
<div class="flex items-center gap-3">
<div class="update-qty-minicart flex gap-1">
<span class="text-xl font-bold cursor-pointer" @click="updateItemQuantityInCart(item.item_id, item.qty, 'down')">-</span>
<input class="max-w-[80px] py-0 px-4 border rounded-lg border-lala-gray-light-ultra text-sm text-center" type="number" x-model="item.qty" @change="updateItemQuantityInCart(item.item_id, item.qty, 'nothing')">
<span class="text-lg font-bold cursor-pointer" @click="updateItemQuantityInCart(item.item_id, item.qty++, 'up')">+</span>
</div>
<button type="button"
class="inline-flex mb-[5px]"
@click="deleteItemFromCart(item.item_id)"
:aria-label="hyva.strf('Remove\u0020product\u0020\u0022\u00250\u0022\u0020from\u0020cart', item.product_name)"
>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="15" height="15" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"/>
</svg>
</button>
</div>
</div>
</div>
</div>
</template>
</div>
</template>
</div>
<template x-if="itemsCount">
<div class="absolute bottom-0 w-full">
<div class="relative grid py-3 px-1 sm:px-3 bg-white">
<div class="w-full flex justify-between p-3 space-x-4 transition duration-150 ease-in-out rounded-lg text-sm border-t border-lala-gray-light-ultra text-lala-black">
<p>Subtotaal: </p>
<p><span x-html="cart.subtotal"></span></p>
</div>
<div class="w-full p-3 space-x-4 transition duration-150 ease-in-out rounded-lg">
<a href="https://www.lalashops.nl/checkout/cart/"
class="inline-flex justify-center underline text-lala-blue w-full text-center mb-4"
>
Bekijk en bewerk winkelwagen </a>
<!-- IMPORTANT .prevent.stop removed from click element bellow, since dispatch method wasn't doing anything, return if needed -->
<a @click="closeCartDrawer; $dispatch('toggle-authentication',
{url: 'https://www.lalashops.nl/checkout/'});"
href="https://www.lalashops.nl/checkout/"
class="inline-flex justify-center btn btn-primary-rounded lala-gradient-background w-full text-center !ml-0"
>
Ga door naar afrekenen </a>
</div>
<div x-html="getSectionDataExtraActions()"></div>
</div>
</div>
</template>
</div>
<button
type="button"
@click="closeCartDrawer"
aria-label="Close minicart"
class="absolute top-0 right-2 p-4 mt-2 text-gray-300 transition-colors hover:text-black"
>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
<div class="flex flex-row justify-center items-center w-full h-full fixed select-none z-50"
style="left: 50%;top: 50%;transform: translateX(-50%) translateY(-50%);background: rgba(255,255,255,0.7);"
x-show="isLoading"
x-cloak
x-transition:enter="ease-out duration-200"
x-transition:enter-start="opacity-0"
x-transition:enter-end="opacity-100"
x-transition:leave="ease-in duration-200"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0">
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57 57" stroke="currentColor" class="text-primary" width="57" height="57" role="img">
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)" stroke-width="2">
<circle cx="5" cy="50" r="5">
<animate attributeName="cy" begin="0s" dur="2.2s" values="50;5;50;50" calcMode="linear" repeatCount="indefinite"/>
<animate attributeName="cx" begin="0s" dur="2.2s" values="5;27;49;5" calcMode="linear" repeatCount="indefinite"/>
</circle>
<circle cx="27" cy="5" r="5">
<animate attributeName="cy" begin="0s" dur="2.2s" from="5" to="5" values="5;50;50;5" calcMode="linear" repeatCount="indefinite"/>
<animate attributeName="cx" begin="0s" dur="2.2s" from="27" to="27" values="27;49;5;27" calcMode="linear" repeatCount="indefinite"/>
</circle>
<circle cx="49" cy="50" r="5">
<animate attributeName="cy" begin="0s" dur="2.2s" values="50;50;5;50" calcMode="linear" repeatCount="indefinite"/>
<animate attributeName="cx" from="49" to="49" begin="0s" dur="2.2s" values="49;5;27;49" calcMode="linear" repeatCount="indefinite"/>
</circle>
</g>
</g>
<title>loader</title></svg>
<div class="ml-10 text-primary text-xl">
Bezig met laden... </div>
</div>
</div>
</section>
</div></header><main id="maincontent" class="page-main"><div id="contentarea" tabindex="-1"></div>
<div class="page messages"><script>
function initMessages() {
"use strict";
return {
messages: window.mageMessages || [],
isEmpty() {
return this.messages.reduce(
function (isEmpty, message) {
return isEmpty && message === undefined
}, true
)
},
removeMessage(messageIndex) {
this.messages[messageIndex] = undefined;
},
addMessages(messages, hideAfter) {
messages.map((message) => {
this.messages = this.messages.concat(message);
if (hideAfter === undefined && message.type === 'success' && window.defaultSuccessMessageTimeout) {
hideAfter = window.defaultSuccessMessageTimeout;
}
if (hideAfter) {
this.setHideTimeOut(this.messages.length -1, hideAfter);
}
});
},
setHideTimeOut(messageIndex, hideAfter) {
setTimeout((messageIndex) => {
this.removeMessage(messageIndex);
}, hideAfter, messageIndex);
},
eventListeners: {
['@messages-loaded.window'](event) {
this.addMessages(event.detail.messages, event.detail.hideAfter)
},
['@private-content-loaded.window'](event) {
const data = event.detail.data;
if (
data.messages &&
data.messages.messages &&
data.messages.messages.length
) {
this.addMessages(data.messages.messages);
}
},
['@clear-messages.window']() {
this.messages = [];
}
}
}
}
</script>
<section id="messages"
x-data="initMessages()"
x-bind="eventListeners"
aria-live="assertive"
role="alert"
>
<template x-if="!isEmpty()">
<div class="w-full">
<div class="messages container mx-auto py-3">
<template x-for="(message, index) in messages" :key="index">
<div>
<template x-if="message">
<div class="message" :class="message.type"
:ui-id="'message-' + message.type"
>
<span x-html="message.text"></span>
<button
type="button"
class="text-gray-600 hover:text-black"
aria-label="Close message"
@click.prevent="removeMessage(index)"
>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" class="stroke-current" width="18" height="18" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
</template>
</div>
</template>
</div>
</div>
</template>
</section>
</div><div class="columns"><div class="column main"> <div class="container flex flex-col md:flex-row flex-wrap my-6 font-bold lg:mt-8 text-3xl">
<h1 class=""
>
<div class="font-light text-xl" data-ui-id="page-title-wrapper" >Van Game PC tot Zoutlamp.</div> <div class="font-bold text-5xl mt-2" data-ui-id="page-title-wrapper" >Een webshop apart!</div> </h1>
</div>
<script nonce="NmdtcGVtYjJlcjNmd3Jtd2pnNGhncTJ0ejN4aGNtNnU=">
function hasWebP() {
var elem = document.createElement('canvas');
if (!!(elem.getContext && elem.getContext('2d'))) {
return elem.toDataURL('image/webp').indexOf('data:image/webp') === 0;
}
return false;
}
if (hasWebP()) {
document.body.classList.add("webp");
} else {
document.body.classList.add("no-webp");
}</script>
<ul class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 md:grid-rows-2 gap-5 lg:pb-8">
<li class="bg-gray-light-gradient rounded-20 col-span-1 row-span-2 min-h-[381px] xl:h-[492px] overflow-hidden flex flex-col">
<div class="block sm:hidden mx-5 mt-4 h3 uppercase text-lala-black mb-3">Computers voor Gaming, Videobewerking of Zakelijk gebruik</div>
<div class="flex h-full">
<div class="max-w-[45%] w-full flex items-center py-4">
<picture class="w-full object-contain object-left max-h-[350px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/1_Homepage/msi-frontside-main_1-removebg-preview.webp"><img src="https://www.lalashops.nl/media/wysiwyg/1_Homepage/msi-frontside-main_1-removebg-preview.png" alt="Computers voor Gaming, Videobewerking of Zakelijk gebruik" class="w-full object-contain object-left max-h-[350px]"></picture>
</div> <div class="flex flex-col justify-between max-w-[55%] w-full h-full p-6 gap-3">
<div class="flex flex-col">
<div class="hidden sm:block h3 uppercase text-lala-black mb-3">Computers voor Gaming, Videobewerking of Zakelijk gebruik</div>
<div class="font-light text-lala-gray">Altijd de scherpste aanbiedingen! Of u nu een computer zoekt voor gaming, videobewerking of zakelijk gebruik, wij bieden u de beste 'Bang for the Buck'. Van budget systemen tot de allersnelste setups, voorzien van de allernieuwste AI READY technologie!</div>
</div>
<a href="https://www.lalashops.nl/elektronica/elektronica-nieuw/computers/" class="action-category text-lala-black flex items-center gap-3 ml-auto"><span>Computers</span><span class="rounded-full bg-white h-7 w-7 flex justify-center items-center icon-arrow_right text-sm -rotate-45 hover:no-underline p-3"></span></a>
</div>
</div>
</li>
<li class="bg-blue-gradient rounded-20 col-span-1 row-span-2 min-h-[381px] xl:h-[492px] overflow-hidden flex flex-col">
<div class="block sm:hidden mx-5 mt-4 h3 uppercase text-lala-black mb-3">Refurbished Mini PC's</div>
<div class="flex h-full">
<div class="max-w-[45%] w-full flex items-center py-4">
<picture class="w-full object-contain object-left max-h-[350px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/1_Homepage/compie-removebg-preview.webp"><img src="https://www.lalashops.nl/media/wysiwyg/1_Homepage/compie-removebg-preview.png" alt="Refurbished Mini PC's" class="w-full object-contain object-left max-h-[350px]"></picture>
</div> <div class="flex flex-col justify-between max-w-[55%] w-full h-full p-6 gap-3">
<div class="flex flex-col">
<div class="hidden sm:block h3 uppercase text-lala-black mb-3">Refurbished Mini PC's</div>
<div class="font-light text-white">Wij bieden u refurbished Mini PC's voor de absolute bodemprijs! Voor de allerlaagste prijs haalt u hiermee een compacte, snelle en betrouwbare mini PC in huis.</div>
</div>
<a href="https://www.lalashops.nl/elektronica/elektronica-refurbished/computers/mini-pc-computer" class="action-category text-lala-black flex items-center gap-3 ml-auto"><span>MINI PC / Computer</span><span class="rounded-full bg-white h-7 w-7 flex justify-center items-center icon-arrow_right text-sm -rotate-45 hover:no-underline p-3"></span></a>
</div>
</div>
</li>
<li class="bg-gray-light-gradient rounded-20 col-span-1 row-span-2 min-h-[381px] xl:h-[492px] overflow-hidden flex flex-col">
<div class="block sm:hidden mx-5 mt-4 h3 uppercase text-lala-black mb-3">Zoutlampen van klein tot super groot!</div>
<div class="flex h-full">
<div class="max-w-[45%] w-full flex items-center py-4">
<picture class="w-full object-contain object-left max-h-[350px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/1_Homepage/saltlamp_main_1_1-removebg-preview.webp"><img src="https://www.lalashops.nl/media/wysiwyg/1_Homepage/saltlamp_main_1_1-removebg-preview.png" alt="Zoutlampen van klein tot super groot!" class="w-full object-contain object-left max-h-[350px]"></picture>
</div> <div class="flex flex-col justify-between max-w-[55%] w-full h-full p-6 gap-3">
<div class="flex flex-col">
<div class="hidden sm:block h3 uppercase text-lala-black mb-3">Zoutlampen van klein tot super groot!</div>
<div class="font-light text-lala-gray">Wij bieden u de grootste collectie echte, 100% natuurlijke zoutlampen. Van klein tot groot en allerlei bijzondere vormen!</div>
</div>
<a href="https://www.lalashops.nl/wonen/interieur/lampen/" class="action-category text-lala-black flex items-center gap-3 ml-auto"><span>Lampen</span><span class="rounded-full bg-white h-7 w-7 flex justify-center items-center icon-arrow_right text-sm -rotate-45 hover:no-underline p-3"></span></a>
</div>
</div>
</li>
</ul>
<style>
.action-category:hover span:first-child {
text-decoration: underline;
}
.action-category:hover span:last-child {
background-color: #dddddd;
}
</style><div class="usp-kiyoh text-lala-black text-sm sm:text-base font-normal leading-4 sm:leading-5 py-4 md:py-8 xl:py-12 text-left">
<div class="container border border-lala-gray-light-ultra rounded-2xl py-8 px-5 flex flex-col sm:flex-row gap-5 lg:gap-10">
<ul class="px-5 sm:pr-0 grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 gap-6 lg:gap-12">
<li class="flex items-start gap-x-3 flex-col">
<div class="flex gap-4">
<div>
<picture class="mb-2 min-w-[55px] lg:min-w-[70px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-01.webp"><img class="mb-2 min-w-[55px] lg:min-w-[70px]" src="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-01.png" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-01.png 1x, https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-01_2x.png 2x" alt="NIEUW EN REFURBISHED" width="70" height="70" /></picture>
</div>
<div class="flex flex-col gap-[10px] justify-center lg:justify-start">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6">
NIEUW EN REFURBISHED </h3>
<div class="hidden lg:block text-lala-gray font-light text-xs sm:text-sm !leading-6">
Wij bieden u zowel nieuwe- als refurbished producten van uitsluitend topmerken. </div>
</div>
</div>
<div class="text-lala-gray font-light text-xs sm:text-sm !leading-6 lg:hidden">
Wij bieden u zowel nieuwe- als refurbished producten van uitsluitend topmerken. </div>
</li>
<li class="flex items-start gap-x-3 flex-col">
<div class="flex gap-4">
<div>
<picture class="mb-2 min-w-[55px] lg:min-w-[70px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-02.webp"><img class="mb-2 min-w-[55px] lg:min-w-[70px]" src="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-02.png" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-02.png 1x, https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-02_2x.png 2x" alt="BESTE PRIJS" width="70" height="70" /></picture>
</div>
<div class="flex flex-col gap-[10px] justify-center lg:justify-start">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6">
BESTE PRIJS </h3>
<div class="hidden lg:block text-lala-gray font-light text-xs sm:text-sm !leading-6">
Door inkoop van grote partijen en onze besparing op winkelkosten kunnen wij u de beste prijzen bieden. </div>
</div>
</div>
<div class="text-lala-gray font-light text-xs sm:text-sm !leading-6 lg:hidden">
Door inkoop van grote partijen en onze besparing op winkelkosten kunnen wij u de beste prijzen bieden. </div>
</li>
<li class="flex items-start gap-x-3 flex-col">
<div class="flex gap-4">
<div>
<picture class="mb-2 min-w-[55px] lg:min-w-[70px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-03.webp"><img class="mb-2 min-w-[55px] lg:min-w-[70px]" src="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-03.png" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-03.png 1x, https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-03_2x.png 2x" alt="GARANTIE" width="70" height="70" /></picture>
</div>
<div class="flex flex-col gap-[10px] justify-center lg:justify-start">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6">
GARANTIE </h3>
<div class="hidden lg:block text-lala-gray font-light text-xs sm:text-sm !leading-6">
Al onze producten worden met garantie geleverd. De garantieduur wordt per product aangegeven. </div>
</div>
</div>
<div class="text-lala-gray font-light text-xs sm:text-sm !leading-6 lg:hidden">
Al onze producten worden met garantie geleverd. De garantieduur wordt per product aangegeven. </div>
</li>
<li class="flex items-start gap-x-3 flex-col">
<div class="flex gap-4">
<div>
<picture class="mb-2 min-w-[55px] lg:min-w-[70px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-04.webp"><img class="mb-2 min-w-[55px] lg:min-w-[70px]" src="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-04.png" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-04.png 1x, https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-04_2x.png 2x" alt="PERSOONLIJK CONTACT" width="70" height="70" /></picture>
</div>
<div class="flex flex-col gap-[10px] justify-center lg:justify-start">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6">
PERSOONLIJK CONTACT </h3>
<div class="hidden lg:block text-lala-gray font-light text-xs sm:text-sm !leading-6">
Via ons contactformulier of telefonisch: <a href="tel:+31858770866">+31 (0)85 877 0866</a> of per mail: <a href="mailto:info@lalashops.nl">info@lalashops.nl</a> </div>
</div>
</div>
<div class="text-lala-gray font-light text-xs sm:text-sm !leading-6 lg:hidden">
Via ons contactformulier of telefonisch: <a href="tel:+31858770866">+31 (0)85 877 0866</a> of per mail: <a href="mailto:info@lalashops.nl">info@lalashops.nl</a> </div>
</li>
<li class="flex items-start gap-x-3 flex-col">
<div class="flex gap-4">
<div>
<picture class="mb-2 min-w-[55px] lg:min-w-[70px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-05.webp"><img class="mb-2 min-w-[55px] lg:min-w-[70px]" src="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-05.png" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-05.png 1x, https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-05_2x.png 2x" alt="SNELLE LEVERING" width="70" height="70" /></picture>
</div>
<div class="flex flex-col gap-[10px] justify-center lg:justify-start">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6">
SNELLE LEVERING </h3>
<div class="hidden lg:block text-lala-gray font-light text-xs sm:text-sm !leading-6">
Voor 12:30 besteld, is meestal de volgende dag al in huis. Wij streven naar een levertijd van maximaal 2 werkdagen tussen het moment van bestelling en levering. </div>
</div>
</div>
<div class="text-lala-gray font-light text-xs sm:text-sm !leading-6 lg:hidden">
Voor 12:30 besteld, is meestal de volgende dag al in huis. Wij streven naar een levertijd van maximaal 2 werkdagen tussen het moment van bestelling en levering. </div>
</li>
<li class="flex items-start gap-x-3 flex-col">
<div class="flex gap-4">
<div>
<picture class="mb-2 min-w-[55px] lg:min-w-[70px]"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-06.webp"><img class="mb-2 min-w-[55px] lg:min-w-[70px]" src="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-06.png" srcset="https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-06.png 1x, https://www.lalashops.nl/media/wysiwyg/Icons/icons-home-06_2x.png 2x" alt="NIET GOED, GELD TERUG" width="70" height="70" /></picture>
</div>
<div class="flex flex-col gap-[10px] justify-center lg:justify-start">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6">
NIET GOED, GELD TERUG </h3>
<div class="hidden lg:block text-lala-gray font-light text-xs sm:text-sm !leading-6">
Niet 100% tevreden? Stuur het product binnen 2 weken retour en u krijgt uw aankoopbedrag terug. </div>
</div>
</div>
<div class="text-lala-gray font-light text-xs sm:text-sm !leading-6 lg:hidden">
Niet 100% tevreden? Stuur het product binnen 2 weken retour en u krijgt uw aankoopbedrag terug. </div>
</li>
</ul>
<div class="flex flex-col pl-5 md:pl-0 pr-5 items-center">
<h3 class="text-lala-black text-base md:text-lg font-bold md:!leading-6 uppercase whitespace-nowrap">DIT ZEGGEN ONZE KLANTEN:</h3>
<iframe class="scale-125 md:scale-100 xl:scale-125 mt-6 md:mt-0 xl:mt-8" src="https://www.kiyoh.com/retrieve-widget.html?color=white&button=false&lang=nl&tenantId=98&locationId=1047859" width="185" height="222" frameborder="0"></iframe>
</div>
</div>
</div></div></div></main><div class="page-bottom"><div class="content"><div class="product-slider py-6 px-8 xs:p-8 md:pl-6 lg:py-12 xs:pr-0">
<section
class="super-margin hyva-category
">
<div class="">
<link rel="stylesheet" href="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css" />
<div class="swiper-container pb-8" data-id-category="efw5h866e2jkepdcb3utcnzzuyyzm9yn">
<div class="container flex justify-between ml-0 pl-0 pr-0 xs:pr-12 lg:pr-12 mb-4 lg:mb-8">
<h2 class="text-2xl lg:text-4xl font-light ">
Nieuwste <span class="font-bold">Producten</span> </h2>
<!-- Add Navigation Arrows -->
<div class="flex gap-4 lg:gap-12">
<div id="swiper-button-prev-efw5h866e2jkepdcb3utcnzzuyyzm9yn" class="swiper-button-prev !static"></div>
<div id="swiper-button-next-efw5h866e2jkepdcb3utcnzzuyyzm9yn" class="swiper-button-next !static"></div>
</div>
</div>
<div class="hyva-category-content ">
</div>
<div class="swiper-wrapper list-none">
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10867/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10867-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10867-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10867" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060ti-r7-37x-a18"
title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frontside_main_atlas_m1_white.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case" title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frontside_main_atlas_m1_white.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10867)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10867)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060ti-r7-37x-a18"
:id="`slide-desc-10867-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10867.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10867" data-price-box="product-id-10867">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10867']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10867')" data-price-amount="1259"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.259,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10867']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10867')" data-price-amount="1399"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.399,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10866/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10866-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10866-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10866" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060ti-r7-37x-a17"
title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1_1_5.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" title="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1_1_5.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10866)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10866)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060ti-r7-37x-a17"
:id="`slide-desc-10866-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10866.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10866" data-price-box="product-id-10866">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10866']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10866')" data-price-amount="1259"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.259,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10866']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10866')" data-price-amount="1399"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.399,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 ti 8GB - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10863/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10863-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10863-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10863" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5070-r7-37x-a16"
title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frontside_main_atlas_m1_white_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case" title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frontside_main_atlas_m1_white_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10863)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10863)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5070-r7-37x-a16"
:id="`slide-desc-10863-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10863.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10863" data-price-box="product-id-10863">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10863']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10863')" data-price-amount="1449"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.449,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10863']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10863')" data-price-amount="1599"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.599,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10862/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10862-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10862-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10862" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5070-r7-37x-a15"
title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1_1_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" title="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1_1_2.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10862)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10862)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5070-r7-37x-a15"
:id="`slide-desc-10862-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10862.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10862" data-price-box="product-id-10862">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10862']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10862')" data-price-amount="1449"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.449,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10862']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10862')" data-price-amount="1599"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.599,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5070 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10856/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10856-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10856-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10856" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060-r7-37x-a14"
title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/h/photo_2024-08-21_13-27-01_2__1_7_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case" title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/h/photo_2024-08-21_13-27-01_2__1_7_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10856)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10856)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060-r7-37x-a14"
:id="`slide-desc-10856-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10856.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10856" data-price-box="product-id-10856">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10856']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10856')" data-price-amount="1169"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.169,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10856']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10856')" data-price-amount="1299"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.299,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 White Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10855/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10855-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10855-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10855" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060-r7-37x-a1"
title="AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" title="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1_1.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10855)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10855)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-b650-gaming-x-ax-computer-rtx-5060-r7-37x-a1"
:id="`slide-desc-10855-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10855.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10855" data-price-box="product-id-10855">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10855']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10855')" data-price-amount="1169"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.169,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10855']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10855')" data-price-amount="1299"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.299,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5060 - 32GB DDR5 RGB - 1TB SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8666/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8666-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8666-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8666" />
<a href="https://www.lalashops.nl/mushie-stacking-retro-pastel-kleuren-baby-mushistackrpk"
title="Mushie Stacking - Retro Pastel Kleuren"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_stacking_-_retro_pastel_kleuren_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Stacking - Retro Pastel Kleuren" title="Mushie Stacking - Retro Pastel Kleuren" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_stacking_-_retro_pastel_kleuren_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8666)"
aria-label="Voeg toe aan verlanglijst Mushie Stacking - Retro Pastel Kleuren"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8666)"
aria-label="Toevoegen om te vergelijken Mushie Stacking - Retro Pastel Kleuren"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-stacking-retro-pastel-kleuren-baby-mushistackrpk"
:id="`slide-desc-8666-${$id('slider-id')}`">
Mushie Stacking - Retro Pastel Kleuren </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8666.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8666" data-price-box="product-id-8666">
<span
x-data x-id="['product\u002Dprice\u002D8666']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8666')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Stacking - Retro Pastel Kleuren"
aria-label="In Winkelwagen Mushie Stacking - Retro Pastel Kleuren"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8319/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8319-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8319-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8319" />
<a href="https://www.lalashops.nl/hem-copal-rose-wierook-pakje-a-20-stokjes-kh_hemcopalrosesp"
title="HEM Copal Rose Wierook (pakje a 20 stokjes)"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/c/o/copal_rose-1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="HEM Copal Rose Wierook (pakje a 20 stokjes)" title="HEM Copal Rose Wierook (pakje a 20 stokjes)" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/c/o/copal_rose-1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8319)"
aria-label="Voeg toe aan verlanglijst HEM Copal Rose Wierook (pakje a 20 stokjes)"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8319)"
aria-label="Toevoegen om te vergelijken HEM Copal Rose Wierook (pakje a 20 stokjes)"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hem-copal-rose-wierook-pakje-a-20-stokjes-kh_hemcopalrosesp"
:id="`slide-desc-8319-${$id('slider-id')}`">
HEM Copal Rose Wierook (pakje a 20 stokjes) </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8319.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8319" data-price-box="product-id-8319">
<span
x-data x-id="['product\u002Dprice\u002D8319']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8319')" data-price-amount="1.25"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1,25</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen HEM Copal Rose Wierook (pakje a 20 stokjes)"
aria-label="In Winkelwagen HEM Copal Rose Wierook (pakje a 20 stokjes)"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8022/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8022-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8022-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8022" />
<a href="https://www.lalashops.nl/intel-basic-gaming-computer-i3-10100-i3-gam-a10"
title="Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_1_2_5.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1" title="Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_1_2_5.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8022)"
aria-label="Voeg toe aan verlanglijst Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8022)"
aria-label="Toevoegen om te vergelijken Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-basic-gaming-computer-i3-10100-i3-gam-a10"
:id="`slide-desc-8022-${$id('slider-id')}`">
Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8022.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8022" data-price-box="product-id-8022">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8022']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8022')" data-price-amount="625"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 625,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8022']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8022')" data-price-amount="649"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 649,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1"
aria-label="In Winkelwagen Intel Power Game PC (300 FPS Fortnite Performance Mode) - RTX 3050 8GB - 512GB M2.0 SSD - 2TB HDD - 16GB RAM - Athena E1"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/7500/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-7500-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-7500-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="7500" />
<a href="https://www.lalashops.nl/amd-ryzen-9-7900x-game-pc-b650-gaming-x-ax-computer-rtx-5080-r9-gam-a9"
title="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" title="AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/game_pc_main_purple_1.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(7500)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(7500)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-9-7900x-game-pc-b650-gaming-x-ax-computer-rtx-5080-r9-gam-a9"
:id="`slide-desc-7500-${$id('slider-id')}`">
AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display - RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-7500.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="7500" data-price-box="product-id-7500">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D7500']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D7500')" data-price-amount="2499"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.499,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D7500']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D7500')" data-price-amount="2750"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.750,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 9 7900X High-End Game PC WATERKOELING Met Temperatuur Display -  RTX 5080 - 32GB DDR5 RGB - 2TB Gen4 SSD - B650 Gaming X AX - WiFi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gamdias Atlas M1 Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/7057/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-7057-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-7057-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="7057" />
<a href="https://www.lalashops.nl/sac-aromatische-olie-eucalyptus-flesje-10ml-oliesaceuca"
title="SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/e/u/eucalyptus.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml" title="SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/e/u/eucalyptus.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(7057)"
aria-label="Voeg toe aan verlanglijst SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(7057)"
aria-label="Toevoegen om te vergelijken SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/sac-aromatische-olie-eucalyptus-flesje-10ml-oliesaceuca"
:id="`slide-desc-7057-${$id('slider-id')}`">
SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-7057.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="7057" data-price-box="product-id-7057">
<span
x-data x-id="['product\u002Dprice\u002D7057']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D7057')" data-price-amount="4.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 4,95</span></span>
</span>
<a href="https://www.lalashops.nl/sac-aromatische-olie-eucalyptus-flesje-10ml-oliesaceuca" class="minimal-price-link">
<span
x-data x-id="['7057']" class="price-container price-final_price tax weee"
>
<span class="price-label">Vanaf</span>
<span :id="$id('7057')" data-price-amount="2.95"
data-price-type=""
class="price-wrapper "
>€ 2,95</span>
</span>
</a>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml"
aria-label="In Winkelwagen SAC Aromatische olie - Eucaliptus / Eucalyptus - Flesje 10ml"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/1640/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-1640-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-1640-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="1640" />
<a href="https://www.lalashops.nl/vijayshree-nag-champa-gold-wierook-pakje-a-20-stokjes"
title="Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nag-champa.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)" title="Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nag-champa.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(1640)"
aria-label="Voeg toe aan verlanglijst Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(1640)"
aria-label="Toevoegen om te vergelijken Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/vijayshree-nag-champa-gold-wierook-pakje-a-20-stokjes"
:id="`slide-desc-1640-${$id('slider-id')}`">
Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram) </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-1640.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1640" data-price-box="product-id-1640">
<span
x-data x-id="['product\u002Dprice\u002D1640']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D1640')" data-price-amount="1.2"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1,20</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)"
aria-label="In Winkelwagen Vijayshree Wierook - Golden Nag Champa - Agarbathi (pakje a 15 gram)"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/1598/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-1598-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-1598-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="1598" />
<a href="https://www.lalashops.nl/hem-aloe-vera-wierook-pakje-a-20-stokjes"
title="HEM Aloe Vera wierook (pakje á 20 stokjes)"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080706-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="HEM Aloe Vera wierook (pakje á 20 stokjes)" title="HEM Aloe Vera wierook (pakje á 20 stokjes)" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080706-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(1598)"
aria-label="Voeg toe aan verlanglijst HEM Aloe Vera wierook (pakje á 20 stokjes)"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(1598)"
aria-label="Toevoegen om te vergelijken HEM Aloe Vera wierook (pakje á 20 stokjes)"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hem-aloe-vera-wierook-pakje-a-20-stokjes"
:id="`slide-desc-1598-${$id('slider-id')}`">
HEM Aloe Vera wierook (pakje á 20 stokjes) </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-1598.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1598" data-price-box="product-id-1598">
<span
x-data x-id="['product\u002Dprice\u002D1598']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D1598')" data-price-amount="1.25"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1,25</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen HEM Aloe Vera wierook (pakje á 20 stokjes)"
aria-label="In Winkelwagen HEM Aloe Vera wierook (pakje á 20 stokjes)"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
// Load Swiper CSS
if (typeof window.SwiperCSS === 'undefined') {
const style = document.createElement("link");
style.rel = "stylesheet";
style.type = "text/css";
style.href = swiperCssUrl;
const insertAt = document.getElementsByTagName('link')[0];
if (insertAt) {
insertAt.parentNode.insertBefore(style, insertAt);
} else {
document.head.appendChild(style);
}
window.SwiperCSS = 'loaded';
}
function initSwiper() {
new Swiper('.swiper-container', {
loop: false,
slidesPerView: 1,
spaceBetween: 16,
autoplay: false,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
480: {
slidesPerView: 1.6,
spaceBetween: 16,
},
768: {
slidesPerView: 2.6,
spaceBetween: 16,
},
1024: {
slidesPerView: 3.6,
spaceBetween: 16,
},
1280: {
slidesPerView: 4.6,
spaceBetween: 16,
}
},
});
}
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
// Load Swiper JS
const scriptSource = swiperJsUrl;
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === scriptSource);
if (pendingLoadScript) {
pendingLoadScript.addEventListener('load', () => initSwiper());
return;
}
const script = document.createElement('script');
script.src = scriptSource;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
})();
window.addEventListener("load", function() {
if (window.innerWidth > 479) {
let maxHeight = 0;
// Get all slides
const slides = document.querySelectorAll('.product-slider .swiper-slide');
// Find the tallest slide
slides.forEach(slide => {
const slideHeight = slide.offsetHeight;
if (slideHeight > maxHeight) {
maxHeight = slideHeight;
}
});
// Set the height of all slides and the swiper-wrapper to the max height
slides.forEach(slide => {
slide.style.height = `${maxHeight}px`;
});
const swiperWrapper = document.querySelector('.product-slider .swiper-wrapper');
if (swiperWrapper) {
swiperWrapper.style.height = `${maxHeight}px`;
}
}
});
</script>
</div>
</section>
</div>
<template x-data="initAmWidgetLabels__68985b5184589" x-init="initLabels($el)"></template>
<script>
function initAmWidgetLabels__68985b5184589() {
return {
initLabels($el) {
const labels = ["","","","","","","","","","","","",""];
const widgetContainer = $el?.previousElementSibling;
labels.forEach((productLabel, index) => {
const productSelector = `li:nth-child(${index + 1})`;
const productContainer = widgetContainer?.querySelector(productSelector);
if (productContainer) {
const labelClass = 'am-label_68985b5184589' + index;
productContainer.innerHTML += productLabel;
productContainer.classList.add(labelClass);
hyva.replaceDomElement(
'.' + labelClass,
productContainer?.outerHTML
);
}
});
}
}
}
</script><div class="product-slider py-6 px-8 xs:p-8 md:pl-6 lg:py-12 xs:pr-0">
<section
class="super-margin hyva-category
">
<div class="">
<link rel="stylesheet" href="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css" />
<div class="swiper-container pb-8" data-id-category="ltxoqyneiwnwpnrqosi2at23vm32oktz">
<div class="container flex justify-between ml-0 pl-0 pr-0 xs:pr-12 lg:pr-12 mb-4 lg:mb-8">
<h2 class="text-2xl lg:text-4xl font-light ">
Gaming <span class="font-bold">Computers</span> </h2>
<!-- Add Navigation Arrows -->
<div class="flex gap-4 lg:gap-12">
<div id="swiper-button-prev-ltxoqyneiwnwpnrqosi2at23vm32oktz" class="swiper-button-prev !static"></div>
<div id="swiper-button-next-ltxoqyneiwnwpnrqosi2at23vm32oktz" class="swiper-button-next !static"></div>
</div>
</div>
<div class="hyva-category-content ">
</div>
<div class="swiper-wrapper list-none">
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10935/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10935-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10935-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10935" />
<a href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-64gb-rtx-5080-r7-gam-a83"
title="AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 64GB DDR5 RAM - 4TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1_1_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Gaming PC Ryzen 7 5060 DDR5" title="Gaming PC Ryzen 7 5060 DDR5" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1_1_1_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10935)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 64GB DDR5 RAM - 4TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10935)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 64GB DDR5 RAM - 4TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-64gb-rtx-5080-r7-gam-a83"
:id="`slide-desc-10935-${$id('slider-id')}`">
AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 64GB DDR5 RAM - 4TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10935.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10935" data-price-box="product-id-10935">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10935']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10935')" data-price-amount="2449"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.449,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10935']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10935')" data-price-amount="2750"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.750,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 64GB DDR5 RAM - 4TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 64GB DDR5 RAM - 4TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10934/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10934-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10934-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10934" />
<a href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5080-r7-gam-a82"
title="AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 32GB DDR5 RAM - 2TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Gaming PC Ryzen 7 5060 DDR5" title="Gaming PC Ryzen 7 5060 DDR5" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1_1_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10934)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 32GB DDR5 RAM - 2TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10934)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 32GB DDR5 RAM - 2TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5080-r7-gam-a82"
:id="`slide-desc-10934-${$id('slider-id')}`">
AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 32GB DDR5 RAM - 2TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10934.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10934" data-price-box="product-id-10934">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10934']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10934')" data-price-amount="2199"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.199,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10934']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10934')" data-price-amount="2350"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.350,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 32GB DDR5 RAM - 2TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5080 16GB - 32GB DDR5 RAM - 2TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10933/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10933-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10933-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10933" />
<a href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5070ti-r7-gam-a81"
title="AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Gaming PC Ryzen 7 5060 DDR5" title="Gaming PC Ryzen 7 5060 DDR5" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10933)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10933)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5070ti-r7-gam-a81"
:id="`slide-desc-10933-${$id('slider-id')}`">
AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10933.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10933" data-price-box="product-id-10933">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10933']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10933')" data-price-amount="1755"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.755,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10933']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10933')" data-price-amount="1999"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.999,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur en GOLD PSU - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10932/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10932-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10932-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10932" />
<a href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5070-r7-gam-a80"
title="AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Gaming PC Ryzen 7 5060 DDR5" title="Gaming PC Ryzen 7 5060 DDR5" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10932)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10932)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5070-r7-gam-a80"
:id="`slide-desc-10932-${$id('slider-id')}`">
AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10932.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10932" data-price-box="product-id-10932">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10932']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10932')" data-price-amount="1449"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.449,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10932']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10932')" data-price-amount="1650"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.650,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10931/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10931-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10931-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10931" />
<a href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5060-r7-gam-a79"
title="AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Gaming PC Ryzen 7 5060 DDR5" title="Gaming PC Ryzen 7 5060 DDR5" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10931)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10931)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-7800x3d-game-pc-32gb-rtx-5060-r7-gam-a79"
:id="`slide-desc-10931-${$id('slider-id')}`">
AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10931.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10931" data-price-box="product-id-10931">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10931']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10931')" data-price-amount="1159"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.159,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10931']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10931')" data-price-amount="1299"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.299,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 7800X3D High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10860/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10860-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10860-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10860" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-32gb-rtx-5060-r7-gam-a98"
title="AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_image_large_10.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M" title="AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_image_large_10.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10860)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10860)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-32gb-rtx-5060-r7-gam-a98"
:id="`slide-desc-10860-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10860.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10860" data-price-box="product-id-10860">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10860']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10860')" data-price-amount="965"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 965,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10860']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10860')" data-price-amount="1125"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.125,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Windows 11 PRO - Gamdias Aura GC10M"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10857/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10857-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10857-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10857" />
<a href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-32gb-rtx-5060-r7-gam-a97"
title="AMD Ryzen 7 8700 High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Gaming PC Ryzen 7 5060 DDR5" title="Gaming PC Ryzen 7 5060 DDR5" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10857)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 8700 High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10857)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 8700 High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-8700f-game-pc-32gb-rtx-5060-r7-gam-a97"
:id="`slide-desc-10857-${$id('slider-id')}`">
AMD Ryzen 7 8700 High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10857.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10857" data-price-box="product-id-10857">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10857']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10857')" data-price-amount="925"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 925,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10857']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10857')" data-price-amount="1099"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.099,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 8700 High-End Game PC - GeForce RTX 5060 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10833/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10833-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10833-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10833" />
<a href="https://www.lalashops.nl/amd-ryzen-5-7600x-game-pc-b650-computer-rtx-5070ti-r5-gam-a96"
title="AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 White Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/h/photo_2024-08-21_13-27-01_2__1_7.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 5900X High-End Game PC - RTX 4080 - 32GB RAM - 2TB Gen4 SSD - B550 TUF Gaming WIFI II" title="AMD Ryzen 9 5900X High-End Game PC - RTX 4080 - 32GB RAM - 2TB Gen4 SSD - B550 TUF Gaming WIFI II" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/h/photo_2024-08-21_13-27-01_2__1_7.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10833)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10833)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-5-7600x-game-pc-b650-computer-rtx-5070ti-r5-gam-a96"
:id="`slide-desc-10833-${$id('slider-id')}`">
AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 White Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10833.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10833" data-price-box="product-id-10833">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10833']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10833')" data-price-amount="2049"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.049,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10833']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10833')" data-price-amount="2249"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.249,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 White Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 White Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10832/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10832-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10832-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10832" />
<a href="https://www.lalashops.nl/amd-ryzen-5-7600x-game-pc-b650-computer-rtx-5070ti-r5-gam-a95"
title="AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Black Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/gamdias_x_2_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 5900X High-End Game PC - RTX 4080 - 32GB RAM - 2TB Gen4 SSD - B550 TUF Gaming WIFI II" title="AMD Ryzen 9 5900X High-End Game PC - RTX 4080 - 32GB RAM - 2TB Gen4 SSD - B550 TUF Gaming WIFI II" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/gamdias_x_2_1_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10832)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Black Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10832)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Black Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-5-7600x-game-pc-b650-computer-rtx-5070ti-r5-gam-a95"
:id="`slide-desc-10832-${$id('slider-id')}`">
AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Black Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10832.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10832" data-price-box="product-id-10832">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10832']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10832')" data-price-amount="2049"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.049,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10832']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10832')" data-price-amount="2249"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.249,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Black Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 5 7600X High-End Game PC - RTX 5070 ti 16GB - 32GB DDR5 RAM - 1TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Black Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10722/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10722-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10722-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10722" />
<a href="https://www.lalashops.nl/stindu-m57-ergonomische-gaming-bureaustoel-sti-m57"
title="Stindu M57 Ergonomische Bureaustoel / Gaming stoel / Gaming chair"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/t/stoel-voorkant.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Stindu M57 Ergonomische (Gaming) Bureaustoel" title="Stindu M57 Ergonomische (Gaming) Bureaustoel" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/t/stoel-voorkant.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10722)"
aria-label="Voeg toe aan verlanglijst Stindu M57 Ergonomische Bureaustoel / Gaming stoel / Gaming chair"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10722)"
aria-label="Toevoegen om te vergelijken Stindu M57 Ergonomische Bureaustoel / Gaming stoel / Gaming chair"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/stindu-m57-ergonomische-gaming-bureaustoel-sti-m57"
:id="`slide-desc-10722-${$id('slider-id')}`">
Stindu M57 Ergonomische Bureaustoel / Gaming stoel / Gaming chair </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10722.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10722" data-price-box="product-id-10722">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10722']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10722')" data-price-amount="199"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 199,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10722']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10722')" data-price-amount="275"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 275,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Stindu M57 Ergonomische Bureaustoel / Gaming stoel / Gaming chair"
aria-label="In Winkelwagen Stindu M57 Ergonomische Bureaustoel / Gaming stoel / Gaming chair"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10670/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10670-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10670-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10670" />
<a href="https://www.lalashops.nl/amd-ryzen-5-8400f-game-pc-32gb-rtx-5070-r5-gam-a43"
title="AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070426_1_1_3_2_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 5700X High-End RGB Game PC - RTX 3050 - 32GB RAM - 1TB SSD - WIN11 PRO - Gamdias Talos E2 Elite " title="AMD Ryzen 7 5700X High-End RGB Game PC - RTX 3050 - 32GB RAM - 1TB SSD - WIN11 PRO - Gamdias Talos E2 Elite " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070426_1_1_3_2_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10670)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur  - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10670)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur  - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-5-8400f-game-pc-32gb-rtx-5070-r5-gam-a43"
:id="`slide-desc-10670-${$id('slider-id')}`">
AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10670.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10670" data-price-box="product-id-10670">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10670']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10670')" data-price-amount="1229"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.229,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10670']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10670')" data-price-amount="1399"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.399,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur  - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5070 12GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur  - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10668/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10668-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10668-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10668" />
<a href="https://www.lalashops.nl/amd-ryzen-5-8400f-game-pc-32gb-rtx-5060ti-r5-gam-a42"
title="AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5060 ti 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070426_1_1_3_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 5700X High-End RGB Game PC - RTX 3050 - 32GB RAM - 1TB SSD - WIN11 PRO - Gamdias Talos E2 Elite " title="AMD Ryzen 7 5700X High-End RGB Game PC - RTX 3050 - 32GB RAM - 1TB SSD - WIN11 PRO - Gamdias Talos E2 Elite " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070426_1_1_3_2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10668)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5060 ti 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10668)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5060 ti 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-5-8400f-game-pc-32gb-rtx-5060ti-r5-gam-a42"
:id="`slide-desc-10668-${$id('slider-id')}`">
AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5060 ti 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10668.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10668" data-price-box="product-id-10668">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10668']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10668')" data-price-amount="975"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 975,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10668']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10668')" data-price-amount="1099"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.099,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5060 ti 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 5 8400F 8e Generatie High-End Game PC - GeForce RTX 5060 ti 8GB - 32GB DDR5 RAM - 1TB SSD - Met Magneetdeur - Windows 11 PRO - ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10048/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10048-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10048-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10048" />
<a href="https://www.lalashops.nl/amd-ryzen-7-5700x3d-game-pc-streaming-computer-rtx-3060-12gb-r7-37x-a1-1"
title="AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer met Temperatuur Display - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 SSD - 750W GOLD PSU - ASUS Rog Strix - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/h/photo_2024-08-21_13-27-01_2__1_4.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 NVMe SSD - 750W GOLD PSU - ASUS B550 TUF Gaming WIFI II - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case" title="AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 NVMe SSD - 750W GOLD PSU - ASUS B550 TUF Gaming WIFI II - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/h/photo_2024-08-21_13-27-01_2__1_4.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10048)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer met Temperatuur Display - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 SSD - 750W GOLD PSU - ASUS Rog Strix - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10048)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer met Temperatuur Display - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 SSD - 750W GOLD PSU - ASUS Rog Strix - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-7-5700x3d-game-pc-streaming-computer-rtx-3060-12gb-r7-37x-a1-1"
:id="`slide-desc-10048-${$id('slider-id')}`">
AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer met Temperatuur Display - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 SSD - 750W GOLD PSU - ASUS Rog Strix - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10048.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10048" data-price-box="product-id-10048">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10048']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10048')" data-price-amount="1199"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.199,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10048']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10048')" data-price-amount="1349"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.349,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer met Temperatuur Display - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 SSD - 750W GOLD PSU - ASUS Rog Strix - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 7 5700X3D High-End RGB Game PC / AIO 360 Waterkoeling Computer met Temperatuur Display - RTX 3060 12GB - 32GB RGB RAM - 1TB M.2 SSD - 750W GOLD PSU - ASUS Rog Strix - WiFi 6| Bluetooth 5.2 - Gamdias Atlas M1 White Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9983/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9983-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9983-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9983" />
<a href="https://www.lalashops.nl/msi-intel-game-pc-rtx-5070ti-16gb-i5-13600kf-32gb-ddr4-1tb-ssd-2tb-ssd-i9-gam-a31"
title="Full MSI i5 13600K Intel Game PC - GeForce RTX 5070 Ti 16GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/r/5/r5_56x_a7_-_i9_gam_a8_-_i9_gam_a23_45_met_glas__2_4.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="MSI i9 13900K Intel Game PC - GeForce RTX 4090 24GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO" title="MSI i9 13900K Intel Game PC - GeForce RTX 4090 24GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/r/5/r5_56x_a7_-_i9_gam_a8_-_i9_gam_a23_45_met_glas__2_4.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9983)"
aria-label="Voeg toe aan verlanglijst Full MSI i5 13600K Intel Game PC - GeForce RTX 5070 Ti 16GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9983)"
aria-label="Toevoegen om te vergelijken Full MSI i5 13600K Intel Game PC - GeForce RTX 5070 Ti 16GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/msi-intel-game-pc-rtx-5070ti-16gb-i5-13600kf-32gb-ddr4-1tb-ssd-2tb-ssd-i9-gam-a31"
:id="`slide-desc-9983-${$id('slider-id')}`">
Full MSI i5 13600K Intel Game PC - GeForce RTX 5070 Ti 16GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9983.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9983" data-price-box="product-id-9983">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9983']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9983')" data-price-amount="2299"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.299,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9983']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9983')" data-price-amount="2499"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.499,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Full MSI i5 13600K Intel Game PC - GeForce RTX 5070 Ti 16GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
aria-label="In Winkelwagen Full MSI i5 13600K Intel Game PC - GeForce RTX 5070 Ti 16GB - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9980/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9980-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9980-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9980" />
<a href="https://www.lalashops.nl/msi-intel-game-pc-rtx-5080-16gb-i7-14700k-32gb-ddr4-1tb-ssd-2tb-ssd-i9-gam-a31"
title="Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/s/msi-frontside-main_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO" title="Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/s/msi-frontside-main_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9980)"
aria-label="Voeg toe aan verlanglijst Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9980)"
aria-label="Toevoegen om te vergelijken Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/msi-intel-game-pc-rtx-5080-16gb-i7-14700k-32gb-ddr4-1tb-ssd-2tb-ssd-i9-gam-a31"
:id="`slide-desc-9980-${$id('slider-id')}`">
Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9980.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9980" data-price-box="product-id-9980">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9980']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9980')" data-price-amount="2945"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.945,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9980']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9980')" data-price-amount="3249"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 3.249,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
aria-label="In Winkelwagen Full MSI i7 14700K Game PC - GeForce RTX 5080 - 32GB DDR5 RGB - 1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD - WiFi 6E|Bluetooth 5.3 - Win11 PRO"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9973/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9973-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9973-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9973" />
<a href="https://www.lalashops.nl/intel-12400-allround-game-pc-i5-gam-a40"
title="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 32GB RAM - 1TB M.2 SSD - i5-12400 - Windows 11 - Aura GC2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_10_1_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GTX 1650 - 16GB RAM - 500GB SSD - i5-10400 - Windows 11" title="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GTX 1650 - 16GB RAM - 500GB SSD - i5-10400 - Windows 11" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_10_1_2.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9973)"
aria-label="Voeg toe aan verlanglijst Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 32GB RAM - 1TB M.2 SSD - i5-12400 - Windows 11 - Aura GC2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9973)"
aria-label="Toevoegen om te vergelijken Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 32GB RAM - 1TB M.2 SSD - i5-12400 - Windows 11 - Aura GC2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-12400-allround-game-pc-i5-gam-a40"
:id="`slide-desc-9973-${$id('slider-id')}`">
Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 32GB RAM - 1TB M.2 SSD - i5-12400 - Windows 11 - Aura GC2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9973.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9973" data-price-box="product-id-9973">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9973']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9973')" data-price-amount="769"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 769,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9973']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9973')" data-price-amount="849"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 849,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 32GB RAM - 1TB M.2 SSD - i5-12400 - Windows 11 - Aura GC2"
aria-label="In Winkelwagen Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 32GB RAM - 1TB M.2 SSD - i5-12400 - Windows 11 - Aura GC2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9971/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9971-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9971-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9971" />
<a href="https://www.lalashops.nl/intel-12400-allround-game-pc-i5-gam-a39"
title="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 - Aura GC2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_10_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3060 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11" title="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3060 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_10_1_1.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9971)"
aria-label="Voeg toe aan verlanglijst Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 - Aura GC2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9971)"
aria-label="Toevoegen om te vergelijken Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 - Aura GC2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-12400-allround-game-pc-i5-gam-a39"
:id="`slide-desc-9971-${$id('slider-id')}`">
Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 - Aura GC2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9971.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9971" data-price-box="product-id-9971">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9971']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9971')" data-price-amount="725"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 725,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9971']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9971')" data-price-amount="799"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 799,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 - Aura GC2"
aria-label="In Winkelwagen Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 5060 8GB - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 - Aura GC2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9800/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9800-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9800-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9800" />
<a href="https://www.lalashops.nl/r5-5500-rgb-game-computer-rtx-3060-r5-gam-a77"
title="AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 3060 12GB - 32GB RAM - 500GB SSD - 2TB HDD - Win11 Pro - Kolink Void Rift"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/2/0/2004757960_1_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 1650 4GB - 16GB RAM - 500GB SSD - Win11 Pro - Kolink Void Rift" title="AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 1650 4GB - 16GB RAM - 500GB SSD - Win11 Pro - Kolink Void Rift" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/2/0/2004757960_1_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9800)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 3060 12GB - 32GB RAM - 500GB SSD - 2TB HDD - Win11 Pro - Kolink Void Rift"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9800)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 3060 12GB - 32GB RAM - 500GB SSD - 2TB HDD - Win11 Pro - Kolink Void Rift"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/r5-5500-rgb-game-computer-rtx-3060-r5-gam-a77"
:id="`slide-desc-9800-${$id('slider-id')}`">
AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 3060 12GB - 32GB RAM - 500GB SSD - 2TB HDD - Win11 Pro - Kolink Void Rift </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9800.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9800" data-price-box="product-id-9800">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9800']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9800')" data-price-amount="899"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 899,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9800']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9800')" data-price-amount="999"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 999,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 3060 12GB - 32GB RAM - 500GB SSD - 2TB HDD - Win11 Pro - Kolink Void Rift"
aria-label="In Winkelwagen AMD Ryzen 5 5500 RGB Game Computer / Gaming PC - RTX 3060 12GB - 32GB RAM - 500GB SSD - 2TB HDD - Win11 Pro - Kolink Void Rift"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9726/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9726-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9726-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9726" />
<a href="https://www.lalashops.nl/intel-11400-allround-game-pc-i5-gam-a37-1"
title="Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GeForce RTX 3050 - 16GB RAM - 500GB M2 SSD - i5-11400 - Windows 11 Pro"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070408_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GTX 1650 - 16GB RAM - 500GB SSD - i5-10400 - Windows 11" title="Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GTX 1650 - 16GB RAM - 500GB SSD - i5-10400 - Windows 11" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070408_2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9726)"
aria-label="Voeg toe aan verlanglijst Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GeForce RTX 3050 - 16GB RAM - 500GB M2 SSD - i5-11400 - Windows 11 Pro"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9726)"
aria-label="Toevoegen om te vergelijken Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GeForce RTX 3050 - 16GB RAM - 500GB M2 SSD - i5-11400 - Windows 11 Pro"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-11400-allround-game-pc-i5-gam-a37-1"
:id="`slide-desc-9726-${$id('slider-id')}`">
Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GeForce RTX 3050 - 16GB RAM - 500GB M2 SSD - i5-11400 - Windows 11 Pro </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9726.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9726" data-price-box="product-id-9726">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9726']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9726')" data-price-amount="609"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 609,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9726']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9726')" data-price-amount="699"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 699,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GeForce RTX 3050 - 16GB RAM - 500GB M2 SSD - i5-11400 - Windows 11 Pro"
aria-label="In Winkelwagen Intel i5 6-Core Allround RGB Game PC met Magneetdeur - GeForce RTX 3050 - 16GB RAM - 500GB M2 SSD - i5-11400 - Windows 11 Pro"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9723/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9723-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9723-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9723" />
<a href="https://www.lalashops.nl/intel-12400f-allround-game-pc-i5-gam-a37"
title="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3050 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_8.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GTX 1650 - 16GB RAM - 500GB SSD - i5-11400 - Windows 11" title="Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GTX 1650 - 16GB RAM - 500GB SSD - i5-11400 - Windows 11" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_8.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9723)"
aria-label="Voeg toe aan verlanglijst Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3050 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9723)"
aria-label="Toevoegen om te vergelijken Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3050 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-12400f-allround-game-pc-i5-gam-a37"
:id="`slide-desc-9723-${$id('slider-id')}`">
Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3050 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9723.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9723" data-price-box="product-id-9723">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9723']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9723')" 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
x-data x-id="['old\u002Dprice\u002D9723']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9723')" data-price-amount="659"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 659,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3050 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11"
aria-label="In Winkelwagen Intel i5 6-Core Allround RGB MESH Game PC (Minecraft, Roblox en Fortnite op hoge settings) - RTX 3050 - 16GB RAM - 500GB SSD - i5-12400 - Windows 11"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9665/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9665-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9665-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9665" />
<a href="https://www.lalashops.nl/intel-11400-allround-game-pc-i5-gam-a36"
title="Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GeForce RTX 3050 6GB - 16GB RAM - 500GB SSD - i5-11400 - Windows 11"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GTX 1650 - 16GB RAM - 500GB SSD - i5-10400 - Windows 11" title="Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GTX 1650 - 16GB RAM - 500GB SSD - i5-10400 - Windows 11" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9665)"
aria-label="Voeg toe aan verlanglijst Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GeForce RTX 3050 6GB - 16GB RAM - 500GB SSD - i5-11400 - Windows 11"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9665)"
aria-label="Toevoegen om te vergelijken Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GeForce RTX 3050 6GB - 16GB RAM - 500GB SSD - i5-11400 - Windows 11"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-11400-allround-game-pc-i5-gam-a36"
:id="`slide-desc-9665-${$id('slider-id')}`">
Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GeForce RTX 3050 6GB - 16GB RAM - 500GB SSD - i5-11400 - Windows 11 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9665.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9665" data-price-box="product-id-9665">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9665']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9665')" data-price-amount="579"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 579,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9665']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9665')" data-price-amount="645"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 645,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GeForce RTX 3050 6GB - 16GB RAM - 500GB SSD - i5-11400 - Windows 11"
aria-label="In Winkelwagen Intel i5 6-Core Allround RGB Game PC (Minecraft, Roblox en Fortnite op hoge settings) - GeForce RTX 3050 6GB - 16GB RAM - 500GB SSD - i5-11400 - Windows 11"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9554/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9554-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9554-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9554" />
<a href="https://www.lalashops.nl/amd-ryzen-5-7600x-game-pc-b650-computer-rtx-5070ti-r5-gam-a24-1"
title="AMD Ryzen 5 7600X High-End 360 LIQUID COOLED Game PC - RTX 5070 ti 16GB - 32GB DDR5 RGB RAM - 2TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Aquarium Case"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/gamdias_x_2_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 9 5900X High-End Game PC - RTX 4080 - 32GB RAM - 2TB Gen4 SSD - B550 TUF Gaming WIFI II" title="AMD Ryzen 9 5900X High-End Game PC - RTX 4080 - 32GB RAM - 2TB Gen4 SSD - B550 TUF Gaming WIFI II" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/a/gamdias_x_2_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9554)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 7600X High-End 360 LIQUID COOLED Game PC - RTX 5070 ti 16GB - 32GB DDR5 RGB RAM - 2TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Aquarium Case"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9554)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 7600X High-End 360 LIQUID COOLED Game PC - RTX 5070 ti 16GB - 32GB DDR5 RGB RAM - 2TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Aquarium Case"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-5-7600x-game-pc-b650-computer-rtx-5070ti-r5-gam-a24-1"
:id="`slide-desc-9554-${$id('slider-id')}`">
AMD Ryzen 5 7600X High-End 360 LIQUID COOLED Game PC - RTX 5070 ti 16GB - 32GB DDR5 RGB RAM - 2TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Aquarium Case </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9554.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9554" data-price-box="product-id-9554">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9554']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9554')" data-price-amount="2049"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 2.049,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9554']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9554')" data-price-amount="2349"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.349,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 7600X High-End 360 LIQUID COOLED Game PC - RTX 5070 ti 16GB - 32GB DDR5 RGB RAM - 2TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Aquarium Case"
aria-label="In Winkelwagen AMD Ryzen 5 7600X High-End 360 LIQUID COOLED Game PC - RTX 5070 ti 16GB - 32GB DDR5 RGB RAM - 2TB M2.0 NVMe SSD - Wifi 6E|Bluetooth 5.3|LAN 2.5Gbps - Gigabyte B650 Gaming X AX - Win11 PRO - Gamdias Atlas M1 Aquarium Case"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9403/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9403-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9403-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9403" />
<a href="https://www.lalashops.nl/intel-i7-12700k-game-pc-rtx-5070-12gb-i7-gam-a20"
title="Intel i7 12700K 12-Core Game PC / Streaming PC - RTX 5070 12GB - 32GB RAM - 1TB M2.0 SSD - Xilent Flow"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_transparent_1_1_6_1_7.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i7 10700 Game PC / Streaming PC - RTX 3050 8GB - 32GB RAM - 1TB M2.0 SSD - Breeze" title="Intel i7 10700 Game PC / Streaming PC - RTX 3050 8GB - 32GB RAM - 1TB M2.0 SSD - Breeze" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_transparent_1_1_6_1_7.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9403)"
aria-label="Voeg toe aan verlanglijst Intel i7 12700K 12-Core Game PC / Streaming PC - RTX 5070 12GB - 32GB RAM - 1TB M2.0 SSD - Xilent Flow"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9403)"
aria-label="Toevoegen om te vergelijken Intel i7 12700K 12-Core Game PC / Streaming PC - RTX 5070 12GB - 32GB RAM - 1TB M2.0 SSD - Xilent Flow"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-i7-12700k-game-pc-rtx-5070-12gb-i7-gam-a20"
:id="`slide-desc-9403-${$id('slider-id')}`">
Intel i7 12700K 12-Core Game PC / Streaming PC - RTX 5070 12GB - 32GB RAM - 1TB M2.0 SSD - Xilent Flow </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9403.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9403" data-price-box="product-id-9403">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9403']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9403')" data-price-amount="1425"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.425,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9403']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9403')" data-price-amount="1599"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.599,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i7 12700K 12-Core Game PC / Streaming PC - RTX 5070 12GB - 32GB RAM - 1TB M2.0 SSD - Xilent Flow"
aria-label="In Winkelwagen Intel i7 12700K 12-Core Game PC / Streaming PC - RTX 5070 12GB - 32GB RAM - 1TB M2.0 SSD - Xilent Flow"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9012/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9012-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9012-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9012" />
<a href="https://www.lalashops.nl/msi-intel-game-pc-rtx-5070-12gb-i9-12900kf-32gb-1tb-ssd-2tb-i9-gam-a8"
title="BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB PCIe 4.0 SSD + 2TB PCIe 3.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/s/msi-frontside-main.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO" title="BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB M2.0 PCI4.0 SSD+2TB M2.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/s/msi-frontside-main.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9012)"
aria-label="Voeg toe aan verlanglijst BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB PCIe 4.0 SSD + 2TB PCIe 3.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9012)"
aria-label="Toevoegen om te vergelijken BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB PCIe 4.0 SSD + 2TB PCIe 3.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/msi-intel-game-pc-rtx-5070-12gb-i9-12900kf-32gb-1tb-ssd-2tb-i9-gam-a8"
:id="`slide-desc-9012-${$id('slider-id')}`">
BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB PCIe 4.0 SSD + 2TB PCIe 3.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9012.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9012" data-price-box="product-id-9012">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9012']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9012')" data-price-amount="1859"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.859,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9012']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9012')" data-price-amount="2099"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 2.099,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB PCIe 4.0 SSD + 2TB PCIe 3.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO"
aria-label="In Winkelwagen BitBull 16-Core i9 12900K Full MSI Game PC|GeForce RTX 5070 12GB|32GB DDR5 6000 RGB|1TB PCIe 4.0 SSD + 2TB PCIe 3.0 SSD|WiFi 6E|Bluetooth 5.3|Win 11 PRO"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8222/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8222-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8222-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8222" />
<a href="https://www.lalashops.nl/intel-11400-allround-game-pc-i5-gam-a35"
title="Intel i5 Allround RGB Game PC (geschikt voor Fortnite) - RTX 3050 - 16GB RAM - 512GB SSD NVMe - Windows 11"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_transparent_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Allround RGB Game PC / Basic Gaming Computer - Intel i5 10400 - GTX 1650 - 16GB RAM - 512GB SSD NVMe - WIFI - Windows 11" title="Allround RGB Game PC / Basic Gaming Computer - Intel i5 10400 - GTX 1650 - 16GB RAM - 512GB SSD NVMe - WIFI - Windows 11" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_transparent_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8222)"
aria-label="Voeg toe aan verlanglijst Intel i5 Allround RGB Game PC (geschikt voor Fortnite) - RTX 3050 - 16GB RAM - 512GB SSD NVMe - Windows 11"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8222)"
aria-label="Toevoegen om te vergelijken Intel i5 Allround RGB Game PC (geschikt voor Fortnite) - RTX 3050 - 16GB RAM - 512GB SSD NVMe - Windows 11"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-11400-allround-game-pc-i5-gam-a35"
:id="`slide-desc-8222-${$id('slider-id')}`">
Intel i5 Allround RGB Game PC (geschikt voor Fortnite) - RTX 3050 - 16GB RAM - 512GB SSD NVMe - Windows 11 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8222.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8222" data-price-box="product-id-8222">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8222']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8222')" 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
x-data x-id="['old\u002Dprice\u002D8222']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8222')" data-price-amount="719"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 719,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 Allround RGB Game PC (geschikt voor Fortnite) - RTX 3050 - 16GB RAM - 512GB SSD NVMe - Windows 11"
aria-label="In Winkelwagen Intel i5 Allround RGB Game PC (geschikt voor Fortnite) - RTX 3050 - 16GB RAM - 512GB SSD NVMe - Windows 11"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8152/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8152-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8152-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8152" />
<a href="https://www.lalashops.nl/r5-5500-rtx-3050-16gb-1-tb-nvme-ssd-r5-gam-a5"
title="Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - RTX 3050 6GB - 1 TB NVMe SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1060116_3_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - GTX 1650 - 960GB SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1" title="Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - GTX 1650 - 960GB SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1060116_3_2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8152)"
aria-label="Voeg toe aan verlanglijst Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - RTX 3050 6GB - 1 TB NVMe SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8152)"
aria-label="Toevoegen om te vergelijken Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - RTX 3050 6GB - 1 TB NVMe SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/r5-5500-rtx-3050-16gb-1-tb-nvme-ssd-r5-gam-a5"
:id="`slide-desc-8152-${$id('slider-id')}`">
Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - RTX 3050 6GB - 1 TB NVMe SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8152.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8152" data-price-box="product-id-8152">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8152']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8152')" data-price-amount="579"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 579,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8152']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8152')" data-price-amount="699"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 699,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - RTX 3050 6GB - 1 TB NVMe SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1"
aria-label="In Winkelwagen Ryzen 5 5500 6-Core Game PC - Geschikt voor Fortnite High Settings - RTX 3050 6GB - 1 TB NVMe SSD - 16GB RAM - Windows 11 PRO - Athena Elite E1"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10851/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10851-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10851-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10851" />
<a href="https://www.lalashops.nl/intel-i5-12400f-rgb-game-pc-rtx-5060-8gb-i5-gam-a56"
title="Intel i5 12400F - Game PC/Streaming Computer - RTX 5060 8GB - 4TB M.2 SSD - 32GB RAM - Aura GC2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_10_1_3_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i5 12400F - Game PC/Streaming Computer - RTX 3060 12GB - 960GB SSD - 16GB RAM - Aura GC2" title="Intel i5 12400F - Game PC/Streaming Computer - RTX 3060 12GB - 960GB SSD - 16GB RAM - Aura GC2" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/a/u/aura_gc2_slogan_10_1_3_1.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10851)"
aria-label="Voeg toe aan verlanglijst Intel i5 12400F - Game PC/Streaming Computer - RTX 5060 8GB - 4TB M.2 SSD - 32GB RAM - Aura GC2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10851)"
aria-label="Toevoegen om te vergelijken Intel i5 12400F - Game PC/Streaming Computer - RTX 5060 8GB - 4TB M.2 SSD - 32GB RAM - Aura GC2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-i5-12400f-rgb-game-pc-rtx-5060-8gb-i5-gam-a56"
:id="`slide-desc-10851-${$id('slider-id')}`">
Intel i5 12400F - Game PC/Streaming Computer - RTX 5060 8GB - 4TB M.2 SSD - 32GB RAM - Aura GC2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10851.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10851" data-price-box="product-id-10851">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10851']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10851')" data-price-amount="999"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 999,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10851']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10851')" data-price-amount="1099"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.099,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i5 12400F - Game PC/Streaming Computer - RTX 5060 8GB - 4TB M.2 SSD - 32GB RAM - Aura GC2"
aria-label="In Winkelwagen Intel i5 12400F - Game PC/Streaming Computer - RTX 5060 8GB - 4TB M.2 SSD - 32GB RAM - Aura GC2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10850/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10850-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10850-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10850" />
<a href="https://www.lalashops.nl/intel-i9-12900k-game-pc-rtx-5060-16gb-1tb-nvme-ssd-i9-gam-a35"
title="Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_3.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite " title="Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_3.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10850)"
aria-label="Voeg toe aan verlanglijst Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10850)"
aria-label="Toevoegen om te vergelijken Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-i9-12900k-game-pc-rtx-5060-16gb-1tb-nvme-ssd-i9-gam-a35"
:id="`slide-desc-10850-${$id('slider-id')}`">
Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10850.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10850" data-price-box="product-id-10850">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10850']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10850')" data-price-amount="1059"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.059,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10850']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10850')" data-price-amount="1299"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.299,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
aria-label="In Winkelwagen Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5060 8GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10848/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10848-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10848-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10848" />
<a href="https://www.lalashops.nl/intel-i9-12900k-game-pc-rtx-5070-16gb-1tb-nvme-ssd-i9-gam-a34"
title="Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite " title="Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10848)"
aria-label="Voeg toe aan verlanglijst Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10848)"
aria-label="Toevoegen om te vergelijken Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/intel-i9-12900k-game-pc-rtx-5070-16gb-1tb-nvme-ssd-i9-gam-a34"
:id="`slide-desc-10848-${$id('slider-id')}`">
Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10848.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10848" data-price-box="product-id-10848">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10848']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10848')" data-price-amount="1359"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.359,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10848']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10848')" data-price-amount="1555"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.555,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
aria-label="In Winkelwagen Intel i9 12900K 16-Core High-End Game PC met aRGb Towercooler - GeForce RTX 5070 12GB - 1TB NVMe SSD - 32GB RAM - Gamdias Talos E2 Elite "
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10829/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10829-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10829-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10829" />
<a href="https://www.lalashops.nl/ryzen-7-7800x3d-rtx5090-32gb-32gb-ram-1tb-m2-0-ssd-tg6-r7-gam-a25-1"
title="AMD Ryzen 7 7800X3D RGB DDR5 PRO Game PC / Computer|RTX 5090 32GB|32GB DDR5 RGB RAM|1TB M.0 SSD|Gigabyte B650 Gaming X AX|WIFI 6/Bluetooth 5.2|ELITE E2"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_10.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 7 7700X RGB DDR5 PRO Gaming X PC / Computer- RTX 4090 24GB - 32GB RGB RAM - 2TB M2.0 PCI4.0 SSD - WIFI 6/Bluetooth 5.2 - ELITE E2" title="AMD Ryzen 7 7700X RGB DDR5 PRO Gaming X PC / Computer- RTX 4090 24GB - 32GB RGB RAM - 2TB M2.0 PCI4.0 SSD - WIFI 6/Bluetooth 5.2 - ELITE E2" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/i/sidefrontopentalose2-rgb_1_10.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10829)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 7 7800X3D RGB DDR5 PRO Game PC / Computer|RTX 5090 32GB|32GB DDR5 RGB RAM|1TB M.0 SSD|Gigabyte B650 Gaming X AX|WIFI 6/Bluetooth 5.2|ELITE E2"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10829)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 7 7800X3D RGB DDR5 PRO Game PC / Computer|RTX 5090 32GB|32GB DDR5 RGB RAM|1TB M.0 SSD|Gigabyte B650 Gaming X AX|WIFI 6/Bluetooth 5.2|ELITE E2"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/ryzen-7-7800x3d-rtx5090-32gb-32gb-ram-1tb-m2-0-ssd-tg6-r7-gam-a25-1"
:id="`slide-desc-10829-${$id('slider-id')}`">
AMD Ryzen 7 7800X3D RGB DDR5 PRO Game PC / Computer|RTX 5090 32GB|32GB DDR5 RGB RAM|1TB M.0 SSD|Gigabyte B650 Gaming X AX|WIFI 6/Bluetooth 5.2|ELITE E2 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10829.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10829" data-price-box="product-id-10829">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10829']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10829')" data-price-amount="3555"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3.555,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10829']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10829')" data-price-amount="3999"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 3.999,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 7 7800X3D RGB DDR5 PRO Game PC / Computer|RTX 5090 32GB|32GB DDR5 RGB RAM|1TB M.0 SSD|Gigabyte B650 Gaming X AX|WIFI 6/Bluetooth 5.2|ELITE E2"
aria-label="In Winkelwagen AMD Ryzen 7 7800X3D RGB DDR5 PRO Game PC / Computer|RTX 5090 32GB|32GB DDR5 RGB RAM|1TB M.0 SSD|Gigabyte B650 Gaming X AX|WIFI 6/Bluetooth 5.2|ELITE E2"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10826/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10826-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10826-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10826" />
<a href="https://www.lalashops.nl/12700k-videobewerking-cad-pc-rtx5060-ti-1tb-m2-64gb-wifi-bluetooth-vid-i7-a4"
title="Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/2/0/2007060218.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro" title="Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/2/0/2007060218.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10826)"
aria-label="Voeg toe aan verlanglijst Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10826)"
aria-label="Toevoegen om te vergelijken Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/12700k-videobewerking-cad-pc-rtx5060-ti-1tb-m2-64gb-wifi-bluetooth-vid-i7-a4"
:id="`slide-desc-10826-${$id('slider-id')}`">
Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10826.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10826" data-price-box="product-id-10826">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10826']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10826')" data-price-amount="1499"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 1.499,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10826']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10826')" data-price-amount="1649"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 1.649,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro"
aria-label="In Winkelwagen Intel i7 12700K - Videobewerking computer / Workstation - RTX 5060 Ti 16GB - 1TB Gen4 SSD - 64GB RAM - Extra Stil - Wifi / Bluetooth - Win11 Pro"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10772/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10772-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10772-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10772" />
<a href="https://www.lalashops.nl/amd-ryzen-5-5600x-rtx-4060-8gb-32gb-1tb-ssd-r5-gam-a94"
title="AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 4060 8GB - 32GB RAM - 1TB M2.0 SSD"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_image_large_8_2_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 3050 6GB - 16GB RAM - 500GB M2.0 SSD" title="AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 3050 6GB - 16GB RAM - 500GB M2.0 SSD" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/main_image_large_8_2_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10772)"
aria-label="Voeg toe aan verlanglijst AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 4060 8GB - 32GB RAM - 1TB M2.0 SSD"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10772)"
aria-label="Toevoegen om te vergelijken AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 4060 8GB - 32GB RAM - 1TB M2.0 SSD"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/amd-ryzen-5-5600x-rtx-4060-8gb-32gb-1tb-ssd-r5-gam-a94"
:id="`slide-desc-10772-${$id('slider-id')}`">
AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 4060 8GB - 32GB RAM - 1TB M2.0 SSD </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10772.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10772" data-price-box="product-id-10772">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10772']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10772')" data-price-amount="799"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 799,00</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10772']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10772')" data-price-amount="899"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 899,00</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 4060 8GB - 32GB RAM - 1TB M2.0 SSD"
aria-label="In Winkelwagen AMD Ryzen 5 5600X Basic Allround Game PC - Aquariumcase met aRGb Towercooler (+25% CPU Performance) - RTX 4060 8GB - 32GB RAM - 1TB M2.0 SSD"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
// Load Swiper CSS
if (typeof window.SwiperCSS === 'undefined') {
const style = document.createElement("link");
style.rel = "stylesheet";
style.type = "text/css";
style.href = swiperCssUrl;
const insertAt = document.getElementsByTagName('link')[0];
if (insertAt) {
insertAt.parentNode.insertBefore(style, insertAt);
} else {
document.head.appendChild(style);
}
window.SwiperCSS = 'loaded';
}
function initSwiper() {
new Swiper('.swiper-container', {
loop: false,
slidesPerView: 1,
spaceBetween: 16,
autoplay: false,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
480: {
slidesPerView: 1.6,
spaceBetween: 16,
},
768: {
slidesPerView: 2.6,
spaceBetween: 16,
},
1024: {
slidesPerView: 3.6,
spaceBetween: 16,
},
1280: {
slidesPerView: 4.6,
spaceBetween: 16,
}
},
});
}
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
// Load Swiper JS
const scriptSource = swiperJsUrl;
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === scriptSource);
if (pendingLoadScript) {
pendingLoadScript.addEventListener('load', () => initSwiper());
return;
}
const script = document.createElement('script');
script.src = scriptSource;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
})();
window.addEventListener("load", function() {
if (window.innerWidth > 479) {
let maxHeight = 0;
// Get all slides
const slides = document.querySelectorAll('.product-slider .swiper-slide');
// Find the tallest slide
slides.forEach(slide => {
const slideHeight = slide.offsetHeight;
if (slideHeight > maxHeight) {
maxHeight = slideHeight;
}
});
// Set the height of all slides and the swiper-wrapper to the max height
slides.forEach(slide => {
slide.style.height = `${maxHeight}px`;
});
const swiperWrapper = document.querySelector('.product-slider .swiper-wrapper');
if (swiperWrapper) {
swiperWrapper.style.height = `${maxHeight}px`;
}
}
});
</script>
</div>
</section>
</div>
<template x-data="initAmWidgetLabels__68985b51b4336" x-init="initLabels($el)"></template>
<script>
function initAmWidgetLabels__68985b51b4336() {
return {
initLabels($el) {
const labels = ["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""];
const widgetContainer = $el?.previousElementSibling;
labels.forEach((productLabel, index) => {
const productSelector = `li:nth-child(${index + 1})`;
const productContainer = widgetContainer?.querySelector(productSelector);
if (productContainer) {
const labelClass = 'am-label_68985b51b4336' + index;
productContainer.innerHTML += productLabel;
productContainer.classList.add(labelClass);
hyva.replaceDomElement(
'.' + labelClass,
productContainer?.outerHTML
);
}
});
}
}
}
</script><div class="product-slider py-6 px-8 xs:p-8 md:pl-6 lg:py-12 xs:pr-0">
<section
class="super-margin hyva-category
">
<div class="">
<link rel="stylesheet" href="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css" />
<div class="swiper-container pb-8" data-id-category="nzzb1lksj8l3c5ajtwmlighqfnl12byl">
<div class="container flex justify-between ml-0 pl-0 pr-0 xs:pr-12 lg:pr-12 mb-4 lg:mb-8">
<h2 class="text-2xl lg:text-4xl font-light ">
Lampen en <span class="font-bold">Decoratie</span> </h2>
<!-- Add Navigation Arrows -->
<div class="flex gap-4 lg:gap-12">
<div id="swiper-button-prev-nzzb1lksj8l3c5ajtwmlighqfnl12byl" class="swiper-button-prev !static"></div>
<div id="swiper-button-next-nzzb1lksj8l3c5ajtwmlighqfnl12byl" class="swiper-button-next !static"></div>
</div>
</div>
<div class="hyva-category-content ">
</div>
<div class="swiper-wrapper list-none">
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10870/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10870-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10870-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10870" />
<a href="https://www.lalashops.nl/nachtlampje-raket-himalayazout-energiezuinig-1"
title="nachtlampje-raket-himalayazout-energiezuinig"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_raket_s.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Nachtlampje Raket" title="Nachtlampje Raket" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_raket_s.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10870)"
aria-label="Voeg toe aan verlanglijst nachtlampje-raket-himalayazout-energiezuinig"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10870)"
aria-label="Toevoegen om te vergelijken nachtlampje-raket-himalayazout-energiezuinig"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/nachtlampje-raket-himalayazout-energiezuinig-1"
:id="`slide-desc-10870-${$id('slider-id')}`">
nachtlampje-raket-himalayazout-energiezuinig </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10870.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10870" data-price-box="product-id-10870">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10870']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10870')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10870']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10870')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen nachtlampje-raket-himalayazout-energiezuinig"
aria-label="In Winkelwagen nachtlampje-raket-himalayazout-energiezuinig"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10869/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10869-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10869-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10869" />
<a href="https://www.lalashops.nl/nachtlampje-planeet-himalayazout-energiezuinig"
title="nachtlampje-planeet-himalayazout-energiezuinig"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_planeet_s.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Nachtlampje Planeet" title="Nachtlampje Planeet" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_planeet_s.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10869)"
aria-label="Voeg toe aan verlanglijst nachtlampje-planeet-himalayazout-energiezuinig"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10869)"
aria-label="Toevoegen om te vergelijken nachtlampje-planeet-himalayazout-energiezuinig"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/nachtlampje-planeet-himalayazout-energiezuinig"
:id="`slide-desc-10869-${$id('slider-id')}`">
nachtlampje-planeet-himalayazout-energiezuinig </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10869.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10869" data-price-box="product-id-10869">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10869']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10869')" data-price-amount="16.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 16,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10869']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10869')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen nachtlampje-planeet-himalayazout-energiezuinig"
aria-label="In Winkelwagen nachtlampje-planeet-himalayazout-energiezuinig"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10868/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10868-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10868-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10868" />
<a href="https://www.lalashops.nl/nachtlampje-dino-himalayazout-energiezuinig"
title="nachtlampje-dino-himalayazout-energiezuinig"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_dino_s.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Nachtlampje Dino" title="Nachtlampje Dino" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_dino_s.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10868)"
aria-label="Voeg toe aan verlanglijst nachtlampje-dino-himalayazout-energiezuinig"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10868)"
aria-label="Toevoegen om te vergelijken nachtlampje-dino-himalayazout-energiezuinig"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/nachtlampje-dino-himalayazout-energiezuinig"
:id="`slide-desc-10868-${$id('slider-id')}`">
nachtlampje-dino-himalayazout-energiezuinig </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10868.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10868" data-price-box="product-id-10868">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10868']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10868')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10868']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10868')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen nachtlampje-dino-himalayazout-energiezuinig"
aria-label="In Winkelwagen nachtlampje-dino-himalayazout-energiezuinig"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9760/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9760-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9760-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9760" />
<a href="https://www.lalashops.nl/zoutlamp-maan-wit-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energiezuinig-lampnachtmaanwit"
title="Zoutlamp MAAN - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080344.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!" title="Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080344.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9760)"
aria-label="Voeg toe aan verlanglijst Zoutlamp MAAN - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9760)"
aria-label="Toevoegen om te vergelijken Zoutlamp MAAN - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-maan-wit-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energiezuinig-lampnachtmaanwit"
:id="`slide-desc-9760-${$id('slider-id')}`">
Zoutlamp MAAN - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig! </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9760.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9760" data-price-box="product-id-9760">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9760']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9760')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9760']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9760')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp MAAN - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
aria-label="In Winkelwagen Zoutlamp MAAN - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9312/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9312-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9312-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9312" />
<a href="https://www.lalashops.nl/seleniet-stukken-wit-gezaagd-voordeelzak-1kg-selstukgez1kg"
title="Seleniet Stukken - 1,5 - 5cm - Wit - Gezaagd - Voordeelzak van 1kg"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1040117-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Witte Seleniet Stukjes (1,5 - 5cm) - Gezaagd - Voordeelzak van 1kg" title="Witte Seleniet Stukjes (1,5 - 5cm) - Gezaagd - Voordeelzak van 1kg" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1040117-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9312)"
aria-label="Voeg toe aan verlanglijst Seleniet Stukken - 1,5 - 5cm - Wit - Gezaagd - Voordeelzak van 1kg"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9312)"
aria-label="Toevoegen om te vergelijken Seleniet Stukken - 1,5 - 5cm - Wit - Gezaagd - Voordeelzak van 1kg"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/seleniet-stukken-wit-gezaagd-voordeelzak-1kg-selstukgez1kg"
:id="`slide-desc-9312-${$id('slider-id')}`">
Seleniet Stukken - 1,5 - 5cm - Wit - Gezaagd - Voordeelzak van 1kg </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9312.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9312" data-price-box="product-id-9312">
<span
x-data x-id="['product\u002Dprice\u002D9312']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9312')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Seleniet Stukken - 1,5 - 5cm - Wit - Gezaagd - Voordeelzak van 1kg"
aria-label="In Winkelwagen Seleniet Stukken - 1,5 - 5cm - Wit - Gezaagd - Voordeelzak van 1kg"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8975/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8975-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8975-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8975" />
<a href="https://www.lalashops.nl/zoutlamp-1-tot-2kg-haliet-himalaya-gebergte-ca-15x10cm-kh-lamphaliet1tot2kg-2"
title="Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 15x10cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_2-3kg_2__2_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 17x10cm" title="Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 17x10cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_2-3kg_2__2_2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8975)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 15x10cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8975)"
aria-label="Toevoegen om te vergelijken Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 15x10cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-1-tot-2kg-haliet-himalaya-gebergte-ca-15x10cm-kh-lamphaliet1tot2kg-2"
:id="`slide-desc-8975-${$id('slider-id')}`">
Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 15x10cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8975.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8975" data-price-box="product-id-8975">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8975']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8975')" data-price-amount="9.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 9,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8975']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8975')" data-price-amount="12.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 12,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 15x10cm"
aria-label="In Winkelwagen Zoutlamp 1 tot 2kg - Haliet Zoutsteen uit Himalaya Gebergte - ca. 15x10cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8760/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8760-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8760-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8760" />
<a href="https://www.lalashops.nl/zoutlamp-himalaya-zoutstenen-metalen-korfje-hartjes-kh_lampkorfviermh"
title="Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes "
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_-_himalaya_zoutstenen_in_vierkant_metaal_korfje_-_hartjes_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes " title="Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_-_himalaya_zoutstenen_in_vierkant_metaal_korfje_-_hartjes_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8760)"
aria-label="Voeg toe aan verlanglijst Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes "
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8760)"
aria-label="Toevoegen om te vergelijken Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes "
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-himalaya-zoutstenen-metalen-korfje-hartjes-kh_lampkorfviermh"
:id="`slide-desc-8760-${$id('slider-id')}`">
Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8760.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8760" data-price-box="product-id-8760">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8760']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8760')" data-price-amount="19.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,50</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8760']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8760')" data-price-amount="29.5"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 29,50</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes "
aria-label="In Winkelwagen Zoutlamp - Himalaya Zoutstenen - Metalen Korfje - Hartjes "
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8759/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8759-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8759-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8759" />
<a href="https://www.lalashops.nl/zoutlamp-himalaya-zoutstenen-houten-korfje-vierkant-kh_lampkorfvierh"
title="Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Vierkant "
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_-_himalaya_zoutstenen_in_vierkant_houten_korfje_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp - Himalaya Zoutstenen - Houten Korfje  - Vierkant " title="Zoutlamp - Himalaya Zoutstenen - Houten Korfje  - Vierkant " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_-_himalaya_zoutstenen_in_vierkant_houten_korfje_2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8759)"
aria-label="Voeg toe aan verlanglijst Zoutlamp - Himalaya Zoutstenen - Houten Korfje  - Vierkant "
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8759)"
aria-label="Toevoegen om te vergelijken Zoutlamp - Himalaya Zoutstenen - Houten Korfje  - Vierkant "
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-himalaya-zoutstenen-houten-korfje-vierkant-kh_lampkorfvierh"
:id="`slide-desc-8759-${$id('slider-id')}`">
Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Vierkant </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8759.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8759" data-price-box="product-id-8759">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8759']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8759')" data-price-amount="16.99"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 16,99</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8759']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8759')" data-price-amount="24.5"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 24,50</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp - Himalaya Zoutstenen - Houten Korfje  - Vierkant "
aria-label="In Winkelwagen Zoutlamp - Himalaya Zoutstenen - Houten Korfje  - Vierkant "
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8758/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8758-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8758-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8758" />
<a href="https://www.lalashops.nl/zoutlamp-himalaya-zoutstenen-houten-korfje-cilinder-kh_lampkorfcilin"
title="Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder "
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1020738_wit.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder " title="Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1020738_wit.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8758)"
aria-label="Voeg toe aan verlanglijst Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder "
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8758)"
aria-label="Toevoegen om te vergelijken Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder "
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-himalaya-zoutstenen-houten-korfje-cilinder-kh_lampkorfcilin"
:id="`slide-desc-8758-${$id('slider-id')}`">
Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8758.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8758" data-price-box="product-id-8758">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8758']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8758')" data-price-amount="16.99"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 16,99</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8758']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8758')" data-price-amount="24.5"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 24,50</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder "
aria-label="In Winkelwagen Zoutlamp - Himalaya Zoutstenen - Houten Korfje - Cilinder "
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8622/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8622-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8622-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8622" />
<a href="https://www.lalashops.nl/zoutlamp-6-tot-8-kg-met-led-lamp-energiezuinig-himalayazout-ca-32x17cm--1"
title="Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__5.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm" title="Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__5.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8622)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8622)"
aria-label="Toevoegen om te vergelijken Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-6-tot-8-kg-met-led-lamp-energiezuinig-himalayazout-ca-32x17cm--1"
:id="`slide-desc-8622-${$id('slider-id')}`">
Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8622.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8622" data-price-box="product-id-8622">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8622']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8622')" data-price-amount="23.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 23,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8622']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8622')" data-price-amount="26.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 26,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm"
aria-label="In Winkelwagen Zoutlamp 6 tot 8 kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 32x17cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8620/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8620-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8620-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8620" />
<a href="https://www.lalashops.nl/zoutlamp-6-tot-8kg-haliet-zoutsteen-uit-himalaya-gebergte-ca-32x17cm-kh_lamphaliet6tot8kg-1"
title="Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__3.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm" title="Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__3.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8620)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8620)"
aria-label="Toevoegen om te vergelijken Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-6-tot-8kg-haliet-zoutsteen-uit-himalaya-gebergte-ca-32x17cm-kh_lamphaliet6tot8kg-1"
:id="`slide-desc-8620-${$id('slider-id')}`">
Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8620.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8620" data-price-box="product-id-8620">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8620']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8620')" data-price-amount="21.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 21,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8620']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8620')" data-price-amount="24.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 24,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm"
aria-label="In Winkelwagen Zoutlamp 6 tot 8kg - Haliet Zoutsteen uit Himalaya gebergte - ca. 28x17cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8577/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8577-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8577-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8577" />
<a href="https://www.lalashops.nl/zoutlamp-maan-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energiezuinig-lampnachtmaanroze"
title="Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_maan_roze_ledlamp_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!" title="Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_maan_roze_ledlamp_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8577)"
aria-label="Voeg toe aan verlanglijst Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8577)"
aria-label="Toevoegen om te vergelijken Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-maan-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energiezuinig-lampnachtmaanroze"
:id="`slide-desc-8577-${$id('slider-id')}`">
Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig! </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8577.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8577" data-price-box="product-id-8577">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8577']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8577')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8577']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8577')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
aria-label="In Winkelwagen Zoutlamp MAAN - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8383/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8383-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8383-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8383" />
<a href="https://www.lalashops.nl/theelichthouder-seleniet-wit-rond-b-kwaliteit-ca-850gr-ca8x8cm-theelselerond-b"
title="Theelichthouder Seleniet - Wit - Rond - B-kwaliteit - ca. 850gr - ca. 8x8cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070252.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Theelichthouder Seleniet Rond - B-kwaliteit - ca. 850gr - 8x8cm" title="Theelichthouder Seleniet Rond - B-kwaliteit - ca. 850gr - 8x8cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070252.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8383)"
aria-label="Voeg toe aan verlanglijst Theelichthouder Seleniet - Wit - Rond - B-kwaliteit - ca. 850gr - ca. 8x8cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8383)"
aria-label="Toevoegen om te vergelijken Theelichthouder Seleniet - Wit - Rond - B-kwaliteit - ca. 850gr - ca. 8x8cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/theelichthouder-seleniet-wit-rond-b-kwaliteit-ca-850gr-ca8x8cm-theelselerond-b"
:id="`slide-desc-8383-${$id('slider-id')}`">
Theelichthouder Seleniet - Wit - Rond - B-kwaliteit - ca. 850gr - ca. 8x8cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8383.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8383" data-price-box="product-id-8383">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8383']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8383')" data-price-amount="11.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 11,50</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8383']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8383')" data-price-amount="13.5"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 13,50</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Theelichthouder Seleniet - Wit - Rond - B-kwaliteit - ca. 850gr - ca. 8x8cm"
aria-label="In Winkelwagen Theelichthouder Seleniet - Wit - Rond - B-kwaliteit - ca. 850gr - ca. 8x8cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8237/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8237-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8237-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8237" />
<a href="https://www.lalashops.nl/zoutlamp-haliet-uit-himalaya-gebergte-7-tot-10-kg-1"
title="Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__10.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm" title="Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__10.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8237)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8237)"
aria-label="Toevoegen om te vergelijken Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-haliet-uit-himalaya-gebergte-7-tot-10-kg-1"
:id="`slide-desc-8237-${$id('slider-id')}`">
Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8237.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8237" data-price-box="product-id-8237">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8237']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8237')" data-price-amount="21.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 21,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8237']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8237')" data-price-amount="24.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 24,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm"
aria-label="In Winkelwagen Zoutlamp 6 tot 8 kg - Himalayazout / Zoutsteen (Haliet) - c.a. 32x17cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6634/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6634-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6634-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6634" />
<a href="https://www.lalashops.nl/zoutlamp-himalaya-4-tot-6-kg-wholezlamp4_6kg"
title="Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_2-3kg_1__19.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm" title="Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_2-3kg_1__19.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6634)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6634)"
aria-label="Toevoegen om te vergelijken Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-himalaya-4-tot-6-kg-wholezlamp4_6kg"
:id="`slide-desc-6634-${$id('slider-id')}`">
Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6634.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6634" data-price-box="product-id-6634">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D6634']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D6634')" data-price-amount="16.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 16,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D6634']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D6634')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm"
aria-label="In Winkelwagen Zoutlamp 4 tot 6kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 24x14cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/2179/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-2179-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-2179-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="2179" />
<a href="https://www.lalashops.nl/seleniet-torentje-klein"
title="Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1030086.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm" title="Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1030086.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(2179)"
aria-label="Voeg toe aan verlanglijst Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(2179)"
aria-label="Toevoegen om te vergelijken Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/seleniet-torentje-klein"
:id="`slide-desc-2179-${$id('slider-id')}`">
Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-2179.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2179" data-price-box="product-id-2179">
<span
x-data x-id="['product\u002Dprice\u002D2179']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D2179')" data-price-amount="7.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 7,50</span></span>
</span>
<a href="https://www.lalashops.nl/seleniet-torentje-klein" class="minimal-price-link">
<span
x-data x-id="['2179']" class="price-container price-final_price tax weee"
>
<span class="price-label">Vanaf</span>
<span :id="$id('2179')" data-price-amount="6.45"
data-price-type=""
class="price-wrapper "
>€ 6,45</span>
</span>
</a>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm"
aria-label="In Winkelwagen Seleniet Torentje - Witte Seleniet - ca. 275gr - 10x5cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/2086/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-2086-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-2086-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="2086" />
<a href="https://www.lalashops.nl/theelichthouder-seleniet-wit-rond-ca-850gr-ca-8x8cm-theelselerond"
title="Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070244-2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm" title="Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1070244-2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(2086)"
aria-label="Voeg toe aan verlanglijst Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(2086)"
aria-label="Toevoegen om te vergelijken Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/theelichthouder-seleniet-wit-rond-ca-850gr-ca-8x8cm-theelselerond"
:id="`slide-desc-2086-${$id('slider-id')}`">
Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-2086.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="2086" data-price-box="product-id-2086">
<span
x-data x-id="['product\u002Dprice\u002D2086']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D2086')" data-price-amount="13.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 13,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm"
aria-label="In Winkelwagen Theelichthouder Seleniet - Wit - Rond - ca. 850gr - ca. 8x8cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10798/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10798-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10798-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10798" />
<a href="https://www.lalashops.nl/zoutlamp-10-tot-15-kg-met-led-lamp-energiezuinig-himalayazout-ca-35x20cm-kh-lamproze10-15led-1"
title="Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1050286_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm" title="Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1050286_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10798)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10798)"
aria-label="Toevoegen om te vergelijken Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-10-tot-15-kg-met-led-lamp-energiezuinig-himalayazout-ca-35x20cm-kh-lamproze10-15led-1"
:id="`slide-desc-10798-${$id('slider-id')}`">
Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10798.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10798" data-price-box="product-id-10798">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10798']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10798')" data-price-amount="36.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 36,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10798']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10798')" data-price-amount="41.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 41,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
aria-label="In Winkelwagen Zoutlamp 10 tot 12kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10715/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10715-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10715-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10715" />
<a href="https://www.lalashops.nl/zoutlamp-19-tot-25-kg-met-led-lamp-energiezuinig-himalayazout-ca-45x30cm-kh-lamproze19-25led"
title="Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 45x30cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/x/x/xxl_zoutlamp_met_ledlamp_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm" title="Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/x/x/xxl_zoutlamp_met_ledlamp_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10715)"
aria-label="Voeg toe aan verlanglijst Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 45x30cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10715)"
aria-label="Toevoegen om te vergelijken Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 45x30cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-19-tot-25-kg-met-led-lamp-energiezuinig-himalayazout-ca-45x30cm-kh-lamproze19-25led"
:id="`slide-desc-10715-${$id('slider-id')}`">
Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 45x30cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10715.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10715" data-price-box="product-id-10715">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10715']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10715')" data-price-amount="74.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 74,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10715']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10715')" data-price-amount="91.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 91,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 45x30cm"
aria-label="In Winkelwagen Zoutlamp GROOT XXL 18-21kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 45x30cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10714/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10714-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10714-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10714" />
<a href="https://www.lalashops.nl/zoutlamp-6-tot-8-kg-met-led-lamp-energiezuinig-himalayazout-ca-28x17cm-1"
title="Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_1x_led_2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm" title="Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_1x_led_2.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10714)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10714)"
aria-label="Toevoegen om te vergelijken Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-6-tot-8-kg-met-led-lamp-energiezuinig-himalayazout-ca-28x17cm-1"
:id="`slide-desc-10714-${$id('slider-id')}`">
Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10714.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10714" data-price-box="product-id-10714">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10714']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10714')" data-price-amount="23.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 23,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10714']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10714')" data-price-amount="26.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 26,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm"
aria-label="In Winkelwagen Zoutlamp 6-8kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 28x17cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/10711/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-10711-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-10711-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="10711" />
<a href="https://www.lalashops.nl/zoutlamp-2-4kg-himalayazout-kh-lamp-sti-haliet2tot4kg"
title="Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_2x_glow.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm" title="Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_2x_glow.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(10711)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(10711)"
aria-label="Toevoegen om te vergelijken Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-2-4kg-himalayazout-kh-lamp-sti-haliet2tot4kg"
:id="`slide-desc-10711-${$id('slider-id')}`">
Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-10711.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="10711" data-price-box="product-id-10711">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D10711']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D10711')" data-price-amount="12.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 12,50</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D10711']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D10711')" data-price-amount="14.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 14,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
aria-label="In Winkelwagen Zoutlamp 2-4kg met 2x Gloeilamp - 100% Himalaya Zout - Tafellamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9873/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9873-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9873-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9873" />
<a href="https://www.lalashops.nl/zoutlamp-ster-wit-100-natuurlijk-himalaya-zout-extra-lange-kabel-1-8mtr-met-led-lampje-ca-21x7-5x22cm-energiezuinig-lampzoutsterwit-led-1"
title="Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig "
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1120355-2.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig " title="Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig " src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1120355-2.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9873)"
aria-label="Voeg toe aan verlanglijst Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig "
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9873)"
aria-label="Toevoegen om te vergelijken Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig "
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-ster-wit-100-natuurlijk-himalaya-zout-extra-lange-kabel-1-8mtr-met-led-lampje-ca-21x7-5x22cm-energiezuinig-lampzoutsterwit-led-1"
:id="`slide-desc-9873-${$id('slider-id')}`">
Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9873.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9873" data-price-box="product-id-9873">
<span
x-data x-id="['product\u002Dprice\u002D9873']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9873')" data-price-amount="39.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 39,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig "
aria-label="In Winkelwagen Zoutlamp Ster - Wit - 100% Natuurlijk Himalaya Zout - Extra Lange Kabel 1,8mtr met Led Lampje - ca. 21x7,5x22cm - Energiezuinig "
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9761/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9761-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9761-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9761" />
<a href="https://www.lalashops.nl/zoutlamp-rots-wit-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energie-zuinig-lampnachtrotswit"
title="Zoutlamp ROTS - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080326.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energie zuinig!" title="Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energie zuinig!" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080326.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9761)"
aria-label="Voeg toe aan verlanglijst Zoutlamp ROTS - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9761)"
aria-label="Toevoegen om te vergelijken Zoutlamp ROTS - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-rots-wit-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energie-zuinig-lampnachtrotswit"
:id="`slide-desc-9761-${$id('slider-id')}`">
Zoutlamp ROTS - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig! </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9761.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9761" data-price-box="product-id-9761">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9761']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9761')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9761']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9761')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp ROTS - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
aria-label="In Winkelwagen Zoutlamp ROTS - Wit - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9759/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9759-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9759-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9759" />
<a href="https://www.lalashops.nl/zoutlamp-bol-nachtlampje-met-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energie-zuinig-lampnachtbolroze"
title="Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080287.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energie zuinig!" title="Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energie zuinig!" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1080287.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9759)"
aria-label="Voeg toe aan verlanglijst Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9759)"
aria-label="Toevoegen om te vergelijken Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-bol-nachtlampje-met-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energie-zuinig-lampnachtbolroze"
:id="`slide-desc-9759-${$id('slider-id')}`">
Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig! </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9759.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9759" data-price-box="product-id-9759">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9759']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9759')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9759']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9759')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
aria-label="In Winkelwagen Zoutlamp BOL - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9532/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9532-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9532-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9532" />
<a href="https://www.lalashops.nl/seleniet-lamp-incl-snoer-met-aan-uit-schakelaar-wit-35-40cm-lampselwit35-40cm"
title="Seleniet Lamp - Incl. Snoer met Aan/Uit Schakelaar - Wit - ca. 35-40cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1050297.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Seleniet Lamp - Wit - ca. 35-40cm" title="Seleniet Lamp - Wit - ca. 35-40cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1050297.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9532)"
aria-label="Voeg toe aan verlanglijst Seleniet Lamp - Incl. Snoer met Aan/Uit Schakelaar - Wit - ca. 35-40cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9532)"
aria-label="Toevoegen om te vergelijken Seleniet Lamp - Incl. Snoer met Aan/Uit Schakelaar - Wit - ca. 35-40cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/seleniet-lamp-incl-snoer-met-aan-uit-schakelaar-wit-35-40cm-lampselwit35-40cm"
:id="`slide-desc-9532-${$id('slider-id')}`">
Seleniet Lamp - Incl. Snoer met Aan/Uit Schakelaar - Wit - ca. 35-40cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9532.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9532" data-price-box="product-id-9532">
<span
x-data x-id="['product\u002Dprice\u002D9532']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9532')" data-price-amount="69.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 69,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Seleniet Lamp - Incl. Snoer met Aan/Uit Schakelaar - Wit - ca. 35-40cm"
aria-label="In Winkelwagen Seleniet Lamp - Incl. Snoer met Aan/Uit Schakelaar - Wit - ca. 35-40cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9504/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9504-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9504-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9504" />
<a href="https://www.lalashops.nl/zoutlamp-rots-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energiezuinig-lampnachtrotsroze"
title="Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_rots_roze_ledlamp_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!" title="Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/n/a/nachtlamp_rots_roze_ledlamp_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9504)"
aria-label="Voeg toe aan verlanglijst Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9504)"
aria-label="Toevoegen om te vergelijken Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-rots-nachtlampje-met-aan-uit-schakelaar-en-ledlampje-kinderkamer-hal-slaapkamer-himalayazout-energiezuinig-lampnachtrotsroze"
:id="`slide-desc-9504-${$id('slider-id')}`">
Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig! </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9504.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9504" data-price-box="product-id-9504">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D9504']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D9504')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D9504']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D9504')" data-price-amount="19.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
aria-label="In Winkelwagen Zoutlamp ROTS - Nachtlampje met Aan / Uit Schakelaar en Ledlampje - Kinderkamer - Hal - Slaapkamer - Himalayazout - Energiezuinig!"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8303/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8303-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8303-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8303" />
<a href="https://www.lalashops.nl/zoutlamp-15-tot-19-kg-met-led-lamp-energiezuinig-himalayazout-ca-37x23cm-kh-lamproze15-19led"
title="Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/x/x/xxl_zoutlamp_met_ledlamp.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm" title="Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/x/x/xxl_zoutlamp_met_ledlamp.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8303)"
aria-label="Voeg toe aan verlanglijst Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8303)"
aria-label="Toevoegen om te vergelijken Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-15-tot-19-kg-met-led-lamp-energiezuinig-himalayazout-ca-37x23cm-kh-lamproze15-19led"
:id="`slide-desc-8303-${$id('slider-id')}`">
Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8303.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8303" data-price-box="product-id-8303">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8303']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8303')" data-price-amount="56.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 56,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8303']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8303')" data-price-amount="66.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 66,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm"
aria-label="In Winkelwagen Zoutlamp GROOT XXL 15-18kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met led lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - c.a. 37x24cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8302/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8302-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8302-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8302" />
<a href="https://www.lalashops.nl/zoutlamp-10-tot-15-kg-met-led-lamp-energiezuinig-himalayazout-ca-35x20cm-kh_lamproze10_15led"
title="Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1050286.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm" title="Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1050286.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8302)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8302)"
aria-label="Toevoegen om te vergelijken Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-10-tot-15-kg-met-led-lamp-energiezuinig-himalayazout-ca-35x20cm-kh_lamproze10_15led"
:id="`slide-desc-8302-${$id('slider-id')}`">
Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8302.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8302" data-price-box="product-id-8302">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8302']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8302')" data-price-amount="41.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 41,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8302']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8302')" data-price-amount="44.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 44,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
aria-label="In Winkelwagen Zoutlamp 12 tot 15kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 35x20cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8301/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8301-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8301-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8301" />
<a href="https://www.lalashops.nl/zoutlamp-8-tot-10-kg-met-led-lamp-energiezuinig-himalayazout-ca-31x17cm"
title="Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm" title="Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_6-8kg_3__1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8301)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8301)"
aria-label="Toevoegen om te vergelijken Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-8-tot-10-kg-met-led-lamp-energiezuinig-himalayazout-ca-31x17cm"
:id="`slide-desc-8301-${$id('slider-id')}`">
Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8301.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8301" data-price-box="product-id-8301">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8301']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8301')" data-price-amount="31.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 31,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8301']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8301')" data-price-amount="36.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 36,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm"
aria-label="In Winkelwagen Zoutlamp 8 tot 10kg - MET LED LAMP - Energiezuinig - Himalayazout - ca. 31x17cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8300/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8300-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8300-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8300" />
<a href="https://www.lalashops.nl/zoutlamp-4-6-kg-100-natuurlijk-himalaya-zout-licht-extra-lange-kabel-1-8mtr-met-led-lampje-ca-25x15cm-energiezuinig-lampzout4-6kglichtled"
title="Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_1x_led_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm" title="Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_1x_led_1.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8300)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8300)"
aria-label="Toevoegen om te vergelijken Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-4-6-kg-100-natuurlijk-himalaya-zout-licht-extra-lange-kabel-1-8mtr-met-led-lampje-ca-25x15cm-energiezuinig-lampzout4-6kglichtled"
:id="`slide-desc-8300-${$id('slider-id')}`">
Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8300.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8300" data-price-box="product-id-8300">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8300']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8300')" data-price-amount="18.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 18,95</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8300']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8300')" data-price-amount="21.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 21,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm"
aria-label="In Winkelwagen Zoutlamp 4-6kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 25x15cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8296/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8296-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8296-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8296" />
<a href="https://www.lalashops.nl/zoutlamp-2-tot-4-kg-met-led-lamp-energiezuinig-himalayazout-ca-19x12cm-kh_lamproze2_4led"
title="Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_1x_led.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm" title="Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/s/a/saltlamp_main_1x_led.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8296)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8296)"
aria-label="Toevoegen om te vergelijken Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-2-tot-4-kg-met-led-lamp-energiezuinig-himalayazout-ca-19x12cm-kh_lamproze2_4led"
:id="`slide-desc-8296-${$id('slider-id')}`">
Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8296.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8296" data-price-box="product-id-8296">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8296']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8296')" data-price-amount="14.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 14,50</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8296']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8296')" data-price-amount="16.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 16,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
aria-label="In Winkelwagen Zoutlamp 2-4kg met LEDLAMP - Himalaya Zout 100% Natuurlijk - Tafellamp met LED Lamp van Natuurlijk Haliet Zoutkristal met Sfeervol Warm Licht - Extra Lange Kabel 1.8mtr - ca. 20x13cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8132/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8132-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8132-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8132" />
<a href="https://www.lalashops.nl/zoutlamp-lamphaliet2tot3kgc1"
title="Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_2-3kg_2__7.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm" title="Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_roze_2-3kg_2__7.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8132)"
aria-label="Voeg toe aan verlanglijst Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8132)"
aria-label="Toevoegen om te vergelijken Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-lamphaliet2tot3kgc1"
:id="`slide-desc-8132-${$id('slider-id')}`">
Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8132.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8132" data-price-box="product-id-8132">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D8132']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D8132')" data-price-amount="12.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 12,50</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D8132']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D8132')" data-price-amount="14.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 14,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm"
aria-label="In Winkelwagen Zoutlamp 2 tot 3 kg - Haliet Zoutsteen uit Himalaya gebergte - c.a. 22x12cm"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
// Load Swiper CSS
if (typeof window.SwiperCSS === 'undefined') {
const style = document.createElement("link");
style.rel = "stylesheet";
style.type = "text/css";
style.href = swiperCssUrl;
const insertAt = document.getElementsByTagName('link')[0];
if (insertAt) {
insertAt.parentNode.insertBefore(style, insertAt);
} else {
document.head.appendChild(style);
}
window.SwiperCSS = 'loaded';
}
function initSwiper() {
new Swiper('.swiper-container', {
loop: false,
slidesPerView: 1,
spaceBetween: 16,
autoplay: false,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
480: {
slidesPerView: 1.6,
spaceBetween: 16,
},
768: {
slidesPerView: 2.6,
spaceBetween: 16,
},
1024: {
slidesPerView: 3.6,
spaceBetween: 16,
},
1280: {
slidesPerView: 4.6,
spaceBetween: 16,
}
},
});
}
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
// Load Swiper JS
const scriptSource = swiperJsUrl;
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === scriptSource);
if (pendingLoadScript) {
pendingLoadScript.addEventListener('load', () => initSwiper());
return;
}
const script = document.createElement('script');
script.src = scriptSource;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
})();
window.addEventListener("load", function() {
if (window.innerWidth > 479) {
let maxHeight = 0;
// Get all slides
const slides = document.querySelectorAll('.product-slider .swiper-slide');
// Find the tallest slide
slides.forEach(slide => {
const slideHeight = slide.offsetHeight;
if (slideHeight > maxHeight) {
maxHeight = slideHeight;
}
});
// Set the height of all slides and the swiper-wrapper to the max height
slides.forEach(slide => {
slide.style.height = `${maxHeight}px`;
});
const swiperWrapper = document.querySelector('.product-slider .swiper-wrapper');
if (swiperWrapper) {
swiperWrapper.style.height = `${maxHeight}px`;
}
}
});
</script>
</div>
</section>
</div>
<template x-data="initAmWidgetLabels__68985b51ddd7f" x-init="initLabels($el)"></template>
<script>
function initAmWidgetLabels__68985b51ddd7f() {
return {
initLabels($el) {
const labels = ["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""];
const widgetContainer = $el?.previousElementSibling;
labels.forEach((productLabel, index) => {
const productSelector = `li:nth-child(${index + 1})`;
const productContainer = widgetContainer?.querySelector(productSelector);
if (productContainer) {
const labelClass = 'am-label_68985b51ddd7f' + index;
productContainer.innerHTML += productLabel;
productContainer.classList.add(labelClass);
hyva.replaceDomElement(
'.' + labelClass,
productContainer?.outerHTML
);
}
});
}
}
}
</script><div class="product-slider py-6 px-8 xs:p-8 md:pl-6 lg:py-12 xs:pr-0">
<section
class="super-margin hyva-category
">
<div class="">
<link rel="stylesheet" href="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css" />
<div class="swiper-container pb-8" data-id-category="evuhwmwubnov1dmvzwiydde9hst4dsll">
<div class="container flex justify-between ml-0 pl-0 pr-0 xs:pr-12 lg:pr-12 mb-4 lg:mb-8">
<h2 class="text-2xl lg:text-4xl font-light ">
Sieraden en <span class="font-bold">Kunst</span> </h2>
<!-- Add Navigation Arrows -->
<div class="flex gap-4 lg:gap-12">
<div id="swiper-button-prev-evuhwmwubnov1dmvzwiydde9hst4dsll" class="swiper-button-prev !static"></div>
<div id="swiper-button-next-evuhwmwubnov1dmvzwiydde9hst4dsll" class="swiper-button-next !static"></div>
</div>
</div>
<div class="hyva-category-content ">
</div>
<div class="swiper-wrapper list-none">
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9870/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9870-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9870-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9870" />
<a href="https://www.lalashops.nl/hanger-jade-edelsteen-hangerjade"
title="Hanger Jade Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110989-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Jade Edelsteen" title="Hanger Jade Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110989-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9870)"
aria-label="Voeg toe aan verlanglijst Hanger Jade Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9870)"
aria-label="Toevoegen om te vergelijken Hanger Jade Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-jade-edelsteen-hangerjade"
:id="`slide-desc-9870-${$id('slider-id')}`">
Hanger Jade Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9870.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9870" data-price-box="product-id-9870">
<span
x-data x-id="['product\u002Dprice\u002D9870']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9870')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Jade Edelsteen"
aria-label="In Winkelwagen Hanger Jade Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9869/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9869-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9869-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9869" />
<a href="https://www.lalashops.nl/hanger-gele-calciet-edelsteen-hangergelecalciet"
title="Hanger Gele Calciet Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110957-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Gele Calciet Edelsteen" title="Hanger Gele Calciet Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110957-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9869)"
aria-label="Voeg toe aan verlanglijst Hanger Gele Calciet Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9869)"
aria-label="Toevoegen om te vergelijken Hanger Gele Calciet Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-gele-calciet-edelsteen-hangergelecalciet"
:id="`slide-desc-9869-${$id('slider-id')}`">
Hanger Gele Calciet Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9869.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9869" data-price-box="product-id-9869">
<span
x-data x-id="['product\u002Dprice\u002D9869']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9869')" data-price-amount="4.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 4,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Gele Calciet Edelsteen"
aria-label="In Winkelwagen Hanger Gele Calciet Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9868/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9868-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9868-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9868" />
<a href="https://www.lalashops.nl/hanger-agaat-edelsteen-hangeragaat"
title="Hanger Agaat Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110922-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Agaat Edelsteen" title="Hanger Agaat Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110922-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9868)"
aria-label="Voeg toe aan verlanglijst Hanger Agaat Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9868)"
aria-label="Toevoegen om te vergelijken Hanger Agaat Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-agaat-edelsteen-hangeragaat"
:id="`slide-desc-9868-${$id('slider-id')}`">
Hanger Agaat Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9868.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9868" data-price-box="product-id-9868">
<span
x-data x-id="['product\u002Dprice\u002D9868']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9868')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Agaat Edelsteen"
aria-label="In Winkelwagen Hanger Agaat Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9867/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9867-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9867-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9867" />
<a href="https://www.lalashops.nl/hanger-aventurijn-edelsteen-hangergroeneaventurijn"
title="Hanger Groene Aventurijn Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110871-2-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Aventurijn Edelsteen" title="Hanger Aventurijn Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110871-2-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9867)"
aria-label="Voeg toe aan verlanglijst Hanger Groene Aventurijn Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9867)"
aria-label="Toevoegen om te vergelijken Hanger Groene Aventurijn Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-aventurijn-edelsteen-hangergroeneaventurijn"
:id="`slide-desc-9867-${$id('slider-id')}`">
Hanger Groene Aventurijn Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9867.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9867" data-price-box="product-id-9867">
<span
x-data x-id="['product\u002Dprice\u002D9867']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9867')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Groene Aventurijn Edelsteen"
aria-label="In Winkelwagen Hanger Groene Aventurijn Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9866/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9866-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9866-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9866" />
<a href="https://www.lalashops.nl/hanger-hematiet-edelsteen-hangerhematiet"
title="Hanger Hematiet Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110857-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Hematiet Edelsteen" title="Hanger Hematiet Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110857-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9866)"
aria-label="Voeg toe aan verlanglijst Hanger Hematiet Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9866)"
aria-label="Toevoegen om te vergelijken Hanger Hematiet Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-hematiet-edelsteen-hangerhematiet"
:id="`slide-desc-9866-${$id('slider-id')}`">
Hanger Hematiet Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9866.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9866" data-price-box="product-id-9866">
<span
x-data x-id="['product\u002Dprice\u002D9866']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9866')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Hematiet Edelsteen"
aria-label="In Winkelwagen Hanger Hematiet Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9865/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9865-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9865-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9865" />
<a href="https://www.lalashops.nl/hanger-opaliet-edelsteen-klein-hangeropalietklein"
title="Hanger Opaliet Edelsteen - Klein"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110746.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Opaliet Edelsteen - Klein" title="Hanger Opaliet Edelsteen - Klein" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110746.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9865)"
aria-label="Voeg toe aan verlanglijst Hanger Opaliet Edelsteen - Klein"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9865)"
aria-label="Toevoegen om te vergelijken Hanger Opaliet Edelsteen - Klein"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-opaliet-edelsteen-klein-hangeropalietklein"
:id="`slide-desc-9865-${$id('slider-id')}`">
Hanger Opaliet Edelsteen - Klein </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9865.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9865" data-price-box="product-id-9865">
<span
x-data x-id="['product\u002Dprice\u002D9865']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9865')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Opaliet Edelsteen - Klein"
aria-label="In Winkelwagen Hanger Opaliet Edelsteen - Klein"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9864/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9864-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9864-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9864" />
<a href="https://www.lalashops.nl/hanger-opaliet-edelsteen-middel-hangeropalietmiddel"
title="Hanger Opaliet Edelsteen - Middel"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110811-2-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Opaliet Edelsteen - Middel" title="Hanger Opaliet Edelsteen - Middel" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110811-2-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9864)"
aria-label="Voeg toe aan verlanglijst Hanger Opaliet Edelsteen - Middel"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9864)"
aria-label="Toevoegen om te vergelijken Hanger Opaliet Edelsteen - Middel"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-opaliet-edelsteen-middel-hangeropalietmiddel"
:id="`slide-desc-9864-${$id('slider-id')}`">
Hanger Opaliet Edelsteen - Middel </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9864.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9864" data-price-box="product-id-9864">
<span
x-data x-id="['product\u002Dprice\u002D9864']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9864')" data-price-amount="4.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 4,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Opaliet Edelsteen - Middel"
aria-label="In Winkelwagen Hanger Opaliet Edelsteen - Middel"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9863/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9863-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9863-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9863" />
<a href="https://www.lalashops.nl/hanger-bergkristal-edelsteen-hangerbergkristal"
title="Hanger Bergkristal Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110714-photoroom.png-photoroom_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Bergkristal Edelsteen" title="Hanger Bergkristal Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110714-photoroom.png-photoroom_1_.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9863)"
aria-label="Voeg toe aan verlanglijst Hanger Bergkristal Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9863)"
aria-label="Toevoegen om te vergelijken Hanger Bergkristal Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-bergkristal-edelsteen-hangerbergkristal"
:id="`slide-desc-9863-${$id('slider-id')}`">
Hanger Bergkristal Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9863.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9863" data-price-box="product-id-9863">
<span
x-data x-id="['product\u002Dprice\u002D9863']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9863')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Bergkristal Edelsteen"
aria-label="In Winkelwagen Hanger Bergkristal Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9862/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9862-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9862-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9862" />
<a href="https://www.lalashops.nl/hanger-band-amethist-chevron-hangerbandamethist"
title="Hanger Band Amethist - Chevron Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110564-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Band Amethist - Chevron Edelsteen" title="Hanger Band Amethist - Chevron Edelsteen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110564-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9862)"
aria-label="Voeg toe aan verlanglijst Hanger Band Amethist - Chevron Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9862)"
aria-label="Toevoegen om te vergelijken Hanger Band Amethist - Chevron Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-band-amethist-chevron-hangerbandamethist"
:id="`slide-desc-9862-${$id('slider-id')}`">
Hanger Band Amethist - Chevron Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9862.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9862" data-price-box="product-id-9862">
<span
x-data x-id="['product\u002Dprice\u002D9862']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9862')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Band Amethist - Chevron Edelsteen"
aria-label="In Winkelwagen Hanger Band Amethist - Chevron Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9861/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9861-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9861-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9861" />
<a href="https://www.lalashops.nl/hanger-amethist-uruguay-hangeramethisturuguay"
title="Hanger Amethist Uruguay Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110649-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Amethist Uruguay" title="Hanger Amethist Uruguay" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110649-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9861)"
aria-label="Voeg toe aan verlanglijst Hanger Amethist Uruguay Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9861)"
aria-label="Toevoegen om te vergelijken Hanger Amethist Uruguay Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-amethist-uruguay-hangeramethisturuguay"
:id="`slide-desc-9861-${$id('slider-id')}`">
Hanger Amethist Uruguay Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9861.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9861" data-price-box="product-id-9861">
<span
x-data x-id="['product\u002Dprice\u002D9861']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9861')" data-price-amount="4.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 4,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Amethist Uruguay Edelsteen"
aria-label="In Winkelwagen Hanger Amethist Uruguay Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/9860/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-9860-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-9860-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="9860" />
<a href="https://www.lalashops.nl/hanger-amethist-hangeramethist"
title="Hanger Amethist Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110630-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Amethist" title="Hanger Amethist" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110630-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(9860)"
aria-label="Voeg toe aan verlanglijst Hanger Amethist Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(9860)"
aria-label="Toevoegen om te vergelijken Hanger Amethist Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-amethist-hangeramethist"
:id="`slide-desc-9860-${$id('slider-id')}`">
Hanger Amethist Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-9860.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="9860" data-price-box="product-id-9860">
<span
x-data x-id="['product\u002Dprice\u002D9860']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D9860')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Amethist Edelsteen"
aria-label="In Winkelwagen Hanger Amethist Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/1855/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-1855-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-1855-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="1855" />
<a href="https://www.lalashops.nl/hanger-rozekwarts-hangerrozekwarts"
title="Hanger Rozekwarts Edelsteen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110548-2-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Hanger Rozekwarts" title="Hanger Rozekwarts" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/p/1/p1110548-2-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(1855)"
aria-label="Voeg toe aan verlanglijst Hanger Rozekwarts Edelsteen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(1855)"
aria-label="Toevoegen om te vergelijken Hanger Rozekwarts Edelsteen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/hanger-rozekwarts-hangerrozekwarts"
:id="`slide-desc-1855-${$id('slider-id')}`">
Hanger Rozekwarts Edelsteen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-1855.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="1855" data-price-box="product-id-1855">
<span
x-data x-id="['product\u002Dprice\u002D1855']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D1855')" data-price-amount="3.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 3,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Hanger Rozekwarts Edelsteen"
aria-label="In Winkelwagen Hanger Rozekwarts Edelsteen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/7032/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-7032-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-7032-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="7032" />
<a href="https://www.lalashops.nl/macrame-cord-waxed-polyester-28m-kelly-green-macrkelly28m_1045"
title="Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/_/1/_1045-photoroom.png-photoroom.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik" title="Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/_/1/_1045-photoroom.png-photoroom.png" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(7032)"
aria-label="Voeg toe aan verlanglijst Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(7032)"
aria-label="Toevoegen om te vergelijken Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-cord-waxed-polyester-28m-kelly-green-macrkelly28m_1045"
:id="`slide-desc-7032-${$id('slider-id')}`">
Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-7032.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="7032" data-price-box="product-id-7032">
<span class="special-price">
<span
x-data x-id="['product\u002Dprice\u002D7032']" class="price-container price-final_price tax weee"
>
<span class="price-label">Special Price</span>
<span :id="$id('product\u002Dprice\u002D7032')" data-price-amount="6.75"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 6,75</span></span>
</span>
</span>
<span class="old-price">
<span
x-data x-id="['old\u002Dprice\u002D7032']" class="price-container price-final_price tax weee"
>
<span class="price-label">Regular Price</span>
<span :id="$id('old\u002Dprice\u002D7032')" data-price-amount="9.95"
data-price-type="oldPrice"
class="price-wrapper "
><span class="price">€ 9,95</span></span>
</span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik"
aria-label="In Winkelwagen Macramé Koord - GRAS GROEN / KELLY GREEN - Waxed Polyester Cord - Klos 2800 cm - 1mm Dik"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6697/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6697-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6697-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6697" />
<a href="https://www.lalashops.nl/macrame-oorhangers-brown-copper-tan-yellow-handgemaakt-van-duurzaam-waxed-polyester-h06"
title="Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H06"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_6_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van duurzaam Waxed Polyester - Model H06" title="Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van duurzaam Waxed Polyester - Model H06" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_6_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6697)"
aria-label="Voeg toe aan verlanglijst Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H06"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6697)"
aria-label="Toevoegen om te vergelijken Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H06"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorhangers-brown-copper-tan-yellow-handgemaakt-van-duurzaam-waxed-polyester-h06"
:id="`slide-desc-6697-${$id('slider-id')}`">
Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H06 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6697.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6697" data-price-box="product-id-6697">
<span
x-data x-id="['product\u002Dprice\u002D6697']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6697')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H06"
aria-label="In Winkelwagen Macramé Oorhangers - Bruin/Koper/Beige/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H06"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6696/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6696-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6696-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6696" />
<a href="https://www.lalashops.nl/macrame-oorhangers-brown-green-white-red-handgemaakt-van-duurzaam-waxed-polyester-h05"
title="Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H05"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_5_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van duurzaam Waxed Polyester - Model H05" title="Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van duurzaam Waxed Polyester - Model H05" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_5_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6696)"
aria-label="Voeg toe aan verlanglijst Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H05"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6696)"
aria-label="Toevoegen om te vergelijken Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H05"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorhangers-brown-green-white-red-handgemaakt-van-duurzaam-waxed-polyester-h05"
:id="`slide-desc-6696-${$id('slider-id')}`">
Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H05 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6696.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6696" data-price-box="product-id-6696">
<span
x-data x-id="['product\u002Dprice\u002D6696']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6696')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H05"
aria-label="In Winkelwagen Macramé Oorhangers - Bruin/Groen/Wit/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H05"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6695/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6695-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6695-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6695" />
<a href="https://www.lalashops.nl/macrame-oorhangers-grey-olive-forest-red-handgemaakt-van-duurzaam-waxed-polyester-h04"
title="Macramé Oorhangers - Grijs/Groen/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H04"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_4_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorhang - Grijs/Groen/Rood - Handgemaakt van duurzaam Waxed Polyester - Model H04" title="Macramé Oorhang - Grijs/Groen/Rood - Handgemaakt van duurzaam Waxed Polyester - Model H04" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_4_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6695)"
aria-label="Voeg toe aan verlanglijst Macramé Oorhangers - Grijs/Groen/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H04"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6695)"
aria-label="Toevoegen om te vergelijken Macramé Oorhangers - Grijs/Groen/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H04"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorhangers-grey-olive-forest-red-handgemaakt-van-duurzaam-waxed-polyester-h04"
:id="`slide-desc-6695-${$id('slider-id')}`">
Macramé Oorhangers - Grijs/Groen/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H04 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6695.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6695" data-price-box="product-id-6695">
<span
x-data x-id="['product\u002Dprice\u002D6695']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6695')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorhangers - Grijs/Groen/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H04"
aria-label="In Winkelwagen Macramé Oorhangers - Grijs/Groen/Rood - Handgemaakt van Duurzaam Waxed Polyester - Model H04"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6694/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6694-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6694-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6694" />
<a href="https://www.lalashops.nl/macrame-oorhangers-royal-petrol-turquoise-yellow-handgemaakt-van-duurzaam-waxed-polyester-h03"
title="Macramé Oorhangers - Blauw/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H03"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_3_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorhangers - Blauw/Geel - Handgemaakt van duurzaam Waxed Polyester - Model H03" title="Macramé Oorhangers - Blauw/Geel - Handgemaakt van duurzaam Waxed Polyester - Model H03" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_3_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6694)"
aria-label="Voeg toe aan verlanglijst Macramé Oorhangers - Blauw/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H03"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6694)"
aria-label="Toevoegen om te vergelijken Macramé Oorhangers - Blauw/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H03"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorhangers-royal-petrol-turquoise-yellow-handgemaakt-van-duurzaam-waxed-polyester-h03"
:id="`slide-desc-6694-${$id('slider-id')}`">
Macramé Oorhangers - Blauw/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H03 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6694.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6694" data-price-box="product-id-6694">
<span
x-data x-id="['product\u002Dprice\u002D6694']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6694')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorhangers - Blauw/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H03"
aria-label="In Winkelwagen Macramé Oorhangers - Blauw/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H03"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6693/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6693-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6693-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6693" />
<a href="https://www.lalashops.nl/macrame-oorhangers-brown-red-orange-yellow-handgemaakt-van-duurzaam-waxed-polyester-h02"
title="Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H02"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_2_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van duurzaam Waxed Polyester - Model H02" title="Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van duurzaam Waxed Polyester - Model H02" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_2_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6693)"
aria-label="Voeg toe aan verlanglijst Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H02"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6693)"
aria-label="Toevoegen om te vergelijken Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H02"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorhangers-brown-red-orange-yellow-handgemaakt-van-duurzaam-waxed-polyester-h02"
:id="`slide-desc-6693-${$id('slider-id')}`">
Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H02 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6693.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6693" data-price-box="product-id-6693">
<span
x-data x-id="['product\u002Dprice\u002D6693']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6693')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H02"
aria-label="In Winkelwagen Macramé Oorhangers - Bruin/Rood/Oranje/Geel - Handgemaakt van Duurzaam Waxed Polyester - Model H02"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6692/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6692-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6692-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6692" />
<a href="https://www.lalashops.nl/macrame-oorhangers-black-grey-purple-pink-handgemaakt-van-duurzaam-waxed-polyester-h01"
title="Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van Duurzaam Waxed Polyester - Model H01"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_1_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van duurzaam Waxed Polyester - Model H01" title="Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van duurzaam Waxed Polyester - Model H01" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorhanger_groot_1_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6692)"
aria-label="Voeg toe aan verlanglijst Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van Duurzaam Waxed Polyester - Model H01"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6692)"
aria-label="Toevoegen om te vergelijken Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van Duurzaam Waxed Polyester - Model H01"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorhangers-black-grey-purple-pink-handgemaakt-van-duurzaam-waxed-polyester-h01"
:id="`slide-desc-6692-${$id('slider-id')}`">
Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van Duurzaam Waxed Polyester - Model H01 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6692.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6692" data-price-box="product-id-6692">
<span
x-data x-id="['product\u002Dprice\u002D6692']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6692')" data-price-amount="27.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 27,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van Duurzaam Waxed Polyester - Model H01"
aria-label="In Winkelwagen Macramé Oorhangers - Zwart/Grijs/Paars/Roze - Handgemaakt van Duurzaam Waxed Polyester - Model H01"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6681/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6681-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6681-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6681" />
<a href="https://www.lalashops.nl/macrame-oorringen-dark-brown-dark-tan-handgemaakt-van-duurzaam-waxed-polyester-22"
title="Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van Duurzaam Waxed Polyester - Model 22"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_22_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van duurzaam Waxed Polyester - Model 22" title="Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van duurzaam Waxed Polyester - Model 22" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_22_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6681)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van Duurzaam Waxed Polyester - Model 22"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6681)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van Duurzaam Waxed Polyester - Model 22"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-dark-brown-dark-tan-handgemaakt-van-duurzaam-waxed-polyester-22"
:id="`slide-desc-6681-${$id('slider-id')}`">
Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van Duurzaam Waxed Polyester - Model 22 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6681.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6681" data-price-box="product-id-6681">
<span
x-data x-id="['product\u002Dprice\u002D6681']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6681')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van Duurzaam Waxed Polyester - Model 22"
aria-label="In Winkelwagen Macramé Oorringen - Donker Bruin / Beige - Handgemaakt van Duurzaam Waxed Polyester - Model 22"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6680/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6680-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6680-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6680" />
<a href="https://www.lalashops.nl/macrame-oorringen-dark-brown-turquoise-handgemaakt-van-duurzaam-waxed-polyester-21"
title="Macramé Oorringen - Donker Bruin / Turkoois Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 21"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_21_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Donker Bruin / Turquoise Blauw - Handgemaakt van duurzaam Waxed Polyester - Model 21" title="Macramé Oorringen - Donker Bruin / Turquoise Blauw - Handgemaakt van duurzaam Waxed Polyester - Model 21" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_21_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6680)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Donker Bruin / Turkoois Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 21"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6680)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Donker Bruin / Turkoois Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 21"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-dark-brown-turquoise-handgemaakt-van-duurzaam-waxed-polyester-21"
:id="`slide-desc-6680-${$id('slider-id')}`">
Macramé Oorringen - Donker Bruin / Turkoois Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 21 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6680.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6680" data-price-box="product-id-6680">
<span
x-data x-id="['product\u002Dprice\u002D6680']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6680')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Donker Bruin / Turkoois Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 21"
aria-label="In Winkelwagen Macramé Oorringen - Donker Bruin / Turkoois Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 21"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6679/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6679-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6679-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6679" />
<a href="https://www.lalashops.nl/macrame-oorringen-olive-forest-green-handgemaakt-van-duurzaam-waxed-polyester-20"
title="Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van Duurzaam Waxed Polyester - Model 20"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_20_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van duurzaam Waxed Polyester - Model 20" title="Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van duurzaam Waxed Polyester - Model 20" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_20_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6679)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van Duurzaam Waxed Polyester - Model 20"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6679)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van Duurzaam Waxed Polyester - Model 20"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-olive-forest-green-handgemaakt-van-duurzaam-waxed-polyester-20"
:id="`slide-desc-6679-${$id('slider-id')}`">
Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van Duurzaam Waxed Polyester - Model 20 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6679.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6679" data-price-box="product-id-6679">
<span
x-data x-id="['product\u002Dprice\u002D6679']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6679')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van Duurzaam Waxed Polyester - Model 20"
aria-label="In Winkelwagen Macramé Oorringen - Olijf Groen / Mos Groen - Handgemaakt van Duurzaam Waxed Polyester - Model 20"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6678/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6678-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6678-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6678" />
<a href="https://www.lalashops.nl/macrame-oorringen-olive-orange-handgemaakt-van-duurzaam-waxed-polyester-19"
title="Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 19"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_19_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van duurzaam Waxed Polyester - Model 19" title="Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van duurzaam Waxed Polyester - Model 19" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_19_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6678)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 19"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6678)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 19"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-olive-orange-handgemaakt-van-duurzaam-waxed-polyester-19"
:id="`slide-desc-6678-${$id('slider-id')}`">
Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 19 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6678.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6678" data-price-box="product-id-6678">
<span
x-data x-id="['product\u002Dprice\u002D6678']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6678')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 19"
aria-label="In Winkelwagen Macramé Oorringen - Olijf Groen / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 19"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6677/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6677-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6677-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6677" />
<a href="https://www.lalashops.nl/macrame-oorringen-olive-plum-purple-handgemaakt-van-duurzaam-waxed-polyester-18"
title="Macramé Oorringen - Olijf Groen / Pruim Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 18"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_18_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Olijf Groen / Pruimen Paars - Handgemaakt van duurzaam Waxed Polyester - Model 18" title="Macramé Oorringen - Olijf Groen / Pruimen Paars - Handgemaakt van duurzaam Waxed Polyester - Model 18" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_18_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6677)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Olijf Groen / Pruim Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 18"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6677)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Olijf Groen / Pruim Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 18"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-olive-plum-purple-handgemaakt-van-duurzaam-waxed-polyester-18"
:id="`slide-desc-6677-${$id('slider-id')}`">
Macramé Oorringen - Olijf Groen / Pruim Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 18 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6677.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6677" data-price-box="product-id-6677">
<span
x-data x-id="['product\u002Dprice\u002D6677']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6677')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Olijf Groen / Pruim Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 18"
aria-label="In Winkelwagen Macramé Oorringen - Olijf Groen / Pruim Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 18"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6676/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6676-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6676-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6676" />
<a href="https://www.lalashops.nl/macrame-oorringen-petrol-blue-light-blue-handgemaakt-van-duurzaam-waxed-polyester-17"
title="Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 17"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_17_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van duurzaam Waxed Polyester - Model 17" title="Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van duurzaam Waxed Polyester - Model 17" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_17_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6676)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 17"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6676)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 17"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-petrol-blue-light-blue-handgemaakt-van-duurzaam-waxed-polyester-17"
:id="`slide-desc-6676-${$id('slider-id')}`">
Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 17 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6676.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6676" data-price-box="product-id-6676">
<span
x-data x-id="['product\u002Dprice\u002D6676']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6676')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 17"
aria-label="In Winkelwagen Macramé Oorringen - Petrol Blauw / Licht Blauw - Handgemaakt van Duurzaam Waxed Polyester - Model 17"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6675/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6675-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6675-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6675" />
<a href="https://www.lalashops.nl/macrame-oorringen-eggplant-soft-pink-handgemaakt-van-duurzaam-waxed-polyester-16"
title="Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 16"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_16_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van duurzaam Waxed Polyester - Model 16" title="Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van duurzaam Waxed Polyester - Model 16" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_16_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6675)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 16"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6675)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 16"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-eggplant-soft-pink-handgemaakt-van-duurzaam-waxed-polyester-16"
:id="`slide-desc-6675-${$id('slider-id')}`">
Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 16 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6675.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6675" data-price-box="product-id-6675">
<span
x-data x-id="['product\u002Dprice\u002D6675']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6675')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 16"
aria-label="In Winkelwagen Macramé Oorringen - Aubergine / Zacht Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 16"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6674/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6674-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6674-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6674" />
<a href="https://www.lalashops.nl/macrame-oorringen-soft-purple-purple-handgemaakt-van-duurzaam-waxed-polyester-15"
title="Macramé Oorringen - Zacht Paars / Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 15"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_15_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Paars / Paars - Handgemaakt van duurzaam Waxed Polyester - Model 15" title="Macramé Oorringen - Paars / Paars - Handgemaakt van duurzaam Waxed Polyester - Model 15" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_15_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6674)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Zacht Paars / Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 15"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6674)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Zacht Paars / Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 15"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-soft-purple-purple-handgemaakt-van-duurzaam-waxed-polyester-15"
:id="`slide-desc-6674-${$id('slider-id')}`">
Macramé Oorringen - Zacht Paars / Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 15 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6674.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6674" data-price-box="product-id-6674">
<span
x-data x-id="['product\u002Dprice\u002D6674']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6674')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Zacht Paars / Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 15"
aria-label="In Winkelwagen Macramé Oorringen - Zacht Paars / Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 15"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6659/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6659-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6659-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6659" />
<a href="https://www.lalashops.nl/macrame-oorringen-grijs-fel-roze-handgemaakt-van-duurzaam-waxed-polyester-model-01"
title="Macramé Oorringen - Grijs / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 01"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_1_2_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Grijs / Roze - Handgemaakt van duurzaam Waxed Polyester - Model 01" title="Macramé Oorringen - Grijs / Roze - Handgemaakt van duurzaam Waxed Polyester - Model 01" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_1_2_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6659)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Grijs / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 01"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6659)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Grijs / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 01"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-grijs-fel-roze-handgemaakt-van-duurzaam-waxed-polyester-model-01"
:id="`slide-desc-6659-${$id('slider-id')}`">
Macramé Oorringen - Grijs / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 01 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6659.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6659" data-price-box="product-id-6659">
<span
x-data x-id="['product\u002Dprice\u002D6659']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6659')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Grijs / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 01"
aria-label="In Winkelwagen Macramé Oorringen - Grijs / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 01"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6660/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6660-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6660-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6660" />
<a href="https://www.lalashops.nl/macrame-oorringen-grijs-donker-paars-handgemaakt-van-duurzaam-waxed-polyester-02"
title="Macramé Oorringen - Grijs / Donker Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 02"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_2_3_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Grijs / Paars - Handgemaakt van duurzaam Waxed Polyester - Model 02" title="Macramé Oorringen - Grijs / Paars - Handgemaakt van duurzaam Waxed Polyester - Model 02" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_2_3_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6660)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Grijs / Donker Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 02"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6660)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Grijs / Donker Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 02"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-grijs-donker-paars-handgemaakt-van-duurzaam-waxed-polyester-02"
:id="`slide-desc-6660-${$id('slider-id')}`">
Macramé Oorringen - Grijs / Donker Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 02 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6660.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6660" data-price-box="product-id-6660">
<span
x-data x-id="['product\u002Dprice\u002D6660']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6660')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Grijs / Donker Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 02"
aria-label="In Winkelwagen Macramé Oorringen - Grijs / Donker Paars - Handgemaakt van Duurzaam Waxed Polyester - Model 02"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6662/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6662-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6662-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6662" />
<a href="https://www.lalashops.nl/macrame-oorringen-ashgrey-dark-red-handgemaakt-van-duurzaam-waxed-polyester-03"
title="Macramé Oorringen - Grijs / Donker Rood - Handgemaakt van Duurzaam Waxed Polyester - Model 03"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_3_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Grijs / Rood - Handgemaakt van duurzaam Waxed Polyester - Model 03" title="Macramé Oorringen - Grijs / Rood - Handgemaakt van duurzaam Waxed Polyester - Model 03" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_3_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6662)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Grijs / Donker Rood - Handgemaakt van Duurzaam Waxed Polyester - Model 03"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6662)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Grijs / Donker Rood - Handgemaakt van Duurzaam Waxed Polyester - Model 03"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-ashgrey-dark-red-handgemaakt-van-duurzaam-waxed-polyester-03"
:id="`slide-desc-6662-${$id('slider-id')}`">
Macramé Oorringen - Grijs / Donker Rood - Handgemaakt van Duurzaam Waxed Polyester - Model 03 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6662.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6662" data-price-box="product-id-6662">
<span
x-data x-id="['product\u002Dprice\u002D6662']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6662')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Grijs / Donker Rood - Handgemaakt van Duurzaam Waxed Polyester - Model 03"
aria-label="In Winkelwagen Macramé Oorringen - Grijs / Donker Rood - Handgemaakt van Duurzaam Waxed Polyester - Model 03"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6663/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6663-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6663-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6663" />
<a href="https://www.lalashops.nl/macrame-oorringen-black-hot-pink-handgemaakt-van-duurzaam-waxed-polyester-04"
title="Macramé Oorringen - Zwart / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 04"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_4_2_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Zwart / Roze - Handgemaakt van duurzaam Waxed Polyester - Model 04" title="Macramé Oorringen - Zwart / Roze - Handgemaakt van duurzaam Waxed Polyester - Model 04" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_4_2_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6663)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Zwart / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 04"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6663)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Zwart / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 04"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-black-hot-pink-handgemaakt-van-duurzaam-waxed-polyester-04"
:id="`slide-desc-6663-${$id('slider-id')}`">
Macramé Oorringen - Zwart / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 04 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6663.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6663" data-price-box="product-id-6663">
<span
x-data x-id="['product\u002Dprice\u002D6663']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6663')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Zwart / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 04"
aria-label="In Winkelwagen Macramé Oorringen - Zwart / Fel Roze - Handgemaakt van Duurzaam Waxed Polyester - Model 04"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/6664/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-6664-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-6664-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="6664" />
<a href="https://www.lalashops.nl/macrame-oorringen-black-orange-handgemaakt-van-duurzaam-waxed-polyester-05"
title="Macramé Oorringen - Zwart / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 05"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_5_1_.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Macramé Oorringen - Zwart / Oranje - Handgemaakt van duurzaam Waxed Polyester - Model 05" title="Macramé Oorringen - Zwart / Oranje - Handgemaakt van duurzaam Waxed Polyester - Model 05" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/a/macram_oorring_5_1_.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(6664)"
aria-label="Voeg toe aan verlanglijst Macramé Oorringen - Zwart / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 05"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(6664)"
aria-label="Toevoegen om te vergelijken Macramé Oorringen - Zwart / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 05"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/macrame-oorringen-black-orange-handgemaakt-van-duurzaam-waxed-polyester-05"
:id="`slide-desc-6664-${$id('slider-id')}`">
Macramé Oorringen - Zwart / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 05 </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-6664.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="6664" data-price-box="product-id-6664">
<span
x-data x-id="['product\u002Dprice\u002D6664']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D6664')" data-price-amount="22.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 22,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Macramé Oorringen - Zwart / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 05"
aria-label="In Winkelwagen Macramé Oorringen - Zwart / Oranje - Handgemaakt van Duurzaam Waxed Polyester - Model 05"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
// Load Swiper CSS
if (typeof window.SwiperCSS === 'undefined') {
const style = document.createElement("link");
style.rel = "stylesheet";
style.type = "text/css";
style.href = swiperCssUrl;
const insertAt = document.getElementsByTagName('link')[0];
if (insertAt) {
insertAt.parentNode.insertBefore(style, insertAt);
} else {
document.head.appendChild(style);
}
window.SwiperCSS = 'loaded';
}
function initSwiper() {
new Swiper('.swiper-container', {
loop: false,
slidesPerView: 1,
spaceBetween: 16,
autoplay: false,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
480: {
slidesPerView: 1.6,
spaceBetween: 16,
},
768: {
slidesPerView: 2.6,
spaceBetween: 16,
},
1024: {
slidesPerView: 3.6,
spaceBetween: 16,
},
1280: {
slidesPerView: 4.6,
spaceBetween: 16,
}
},
});
}
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
// Load Swiper JS
const scriptSource = swiperJsUrl;
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === scriptSource);
if (pendingLoadScript) {
pendingLoadScript.addEventListener('load', () => initSwiper());
return;
}
const script = document.createElement('script');
script.src = scriptSource;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
})();
window.addEventListener("load", function() {
if (window.innerWidth > 479) {
let maxHeight = 0;
// Get all slides
const slides = document.querySelectorAll('.product-slider .swiper-slide');
// Find the tallest slide
slides.forEach(slide => {
const slideHeight = slide.offsetHeight;
if (slideHeight > maxHeight) {
maxHeight = slideHeight;
}
});
// Set the height of all slides and the swiper-wrapper to the max height
slides.forEach(slide => {
slide.style.height = `${maxHeight}px`;
});
const swiperWrapper = document.querySelector('.product-slider .swiper-wrapper');
if (swiperWrapper) {
swiperWrapper.style.height = `${maxHeight}px`;
}
}
});
</script>
</div>
</section>
</div>
<template x-data="initAmWidgetLabels__68985b521418a" x-init="initLabels($el)"></template>
<script>
function initAmWidgetLabels__68985b521418a() {
return {
initLabels($el) {
const labels = ["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""];
const widgetContainer = $el?.previousElementSibling;
labels.forEach((productLabel, index) => {
const productSelector = `li:nth-child(${index + 1})`;
const productContainer = widgetContainer?.querySelector(productSelector);
if (productContainer) {
const labelClass = 'am-label_68985b521418a' + index;
productContainer.innerHTML += productLabel;
productContainer.classList.add(labelClass);
hyva.replaceDomElement(
'.' + labelClass,
productContainer?.outerHTML
);
}
});
}
}
}
</script><div class="product-slider py-6 px-8 xs:p-8 md:pl-6 lg:py-12 xs:pr-0">
<section
class="super-margin hyva-category
">
<div class="">
<link rel="stylesheet" href="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css" />
<div class="swiper-container pb-8" data-id-category="wi6tzddfdduihlcmo7b4j2fmpsqtqgnf">
<div class="container flex justify-between ml-0 pl-0 pr-0 xs:pr-12 lg:pr-12 mb-4 lg:mb-8">
<h2 class="text-2xl lg:text-4xl font-light ">
Baby en <span class="font-bold">Kinderspullen</span> </h2>
<!-- Add Navigation Arrows -->
<div class="flex gap-4 lg:gap-12">
<div id="swiper-button-prev-wi6tzddfdduihlcmo7b4j2fmpsqtqgnf" class="swiper-button-prev !static"></div>
<div id="swiper-button-next-wi6tzddfdduihlcmo7b4j2fmpsqtqgnf" class="swiper-button-next !static"></div>
</div>
</div>
<div class="hyva-category-content ">
</div>
<div class="swiper-wrapper list-none">
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8803/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8803-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8803-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8803" />
<a href="https://www.lalashops.nl/zoutlamp-maan-wit-met-aan-uit-schakelaar-led-lampje-wit-baby-deckkzoutlmaanwit"
title="Zoutlamp Maan - Wit - Met Aan/Uit Schakelaar - Led Lampje"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_maan_-_wit_2_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Zoutlamp Maan - Wit" title="Zoutlamp Maan - Wit" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/z/o/zoutlamp_maan_-_wit_2_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8803)"
aria-label="Voeg toe aan verlanglijst Zoutlamp Maan - Wit - Met Aan/Uit Schakelaar - Led Lampje"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8803)"
aria-label="Toevoegen om te vergelijken Zoutlamp Maan - Wit - Met Aan/Uit Schakelaar - Led Lampje"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/zoutlamp-maan-wit-met-aan-uit-schakelaar-led-lampje-wit-baby-deckkzoutlmaanwit"
:id="`slide-desc-8803-${$id('slider-id')}`">
Zoutlamp Maan - Wit - Met Aan/Uit Schakelaar - Led Lampje </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8803.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8803" data-price-box="product-id-8803">
<span
x-data x-id="['product\u002Dprice\u002D8803']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8803')" data-price-amount="35.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 35,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Zoutlamp Maan - Wit - Met Aan/Uit Schakelaar - Led Lampje"
aria-label="In Winkelwagen Zoutlamp Maan - Wit - Met Aan/Uit Schakelaar - Led Lampje"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8705/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8705-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8705-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8705" />
<a href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-star-yellow-baby-knufdmuchisyellow"
title="Mushie Knuffeldoekje - Lovely Blanket - Star Yellow"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_star_yellow_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Knuffeldoekje - Lovely Blanket - Star Yellow" title="Mushie Knuffeldoekje - Lovely Blanket - Star Yellow" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_star_yellow_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8705)"
aria-label="Voeg toe aan verlanglijst Mushie Knuffeldoekje - Lovely Blanket - Star Yellow"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8705)"
aria-label="Toevoegen om te vergelijken Mushie Knuffeldoekje - Lovely Blanket - Star Yellow"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-star-yellow-baby-knufdmuchisyellow"
:id="`slide-desc-8705-${$id('slider-id')}`">
Mushie Knuffeldoekje - Lovely Blanket - Star Yellow </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8705.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8705" data-price-box="product-id-8705">
<span
x-data x-id="['product\u002Dprice\u002D8705']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8705')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Star Yellow"
aria-label="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Star Yellow"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8704/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8704-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8704-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8704" />
<a href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-star-roze-baby-knufdmuchisroze"
title="Mushie Knuffeldoekje - Lovely Blanket - Star Roze"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_star_roze_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Knuffeldoekje - Lovely Blanket - Star Roze" title="Mushie Knuffeldoekje - Lovely Blanket - Star Roze" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_star_roze_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8704)"
aria-label="Voeg toe aan verlanglijst Mushie Knuffeldoekje - Lovely Blanket - Star Roze"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8704)"
aria-label="Toevoegen om te vergelijken Mushie Knuffeldoekje - Lovely Blanket - Star Roze"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-star-roze-baby-knufdmuchisroze"
:id="`slide-desc-8704-${$id('slider-id')}`">
Mushie Knuffeldoekje - Lovely Blanket - Star Roze </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8704.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8704" data-price-box="product-id-8704">
<span
x-data x-id="['product\u002Dprice\u002D8704']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8704')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Star Roze"
aria-label="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Star Roze"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8703/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8703-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8703-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8703" />
<a href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-moon-green-baby-knufdmuchimgreen"
title="Mushie Knuffeldoekje - Lovely Blanket - Moon Green"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_moon_green_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Knuffeldoekje - Lovely Blanket - Moon Green" title="Mushie Knuffeldoekje - Lovely Blanket - Moon Green" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_moon_green_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8703)"
aria-label="Voeg toe aan verlanglijst Mushie Knuffeldoekje - Lovely Blanket - Moon Green"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8703)"
aria-label="Toevoegen om te vergelijken Mushie Knuffeldoekje - Lovely Blanket - Moon Green"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-moon-green-baby-knufdmuchimgreen"
:id="`slide-desc-8703-${$id('slider-id')}`">
Mushie Knuffeldoekje - Lovely Blanket - Moon Green </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8703.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8703" data-price-box="product-id-8703">
<span
x-data x-id="['product\u002Dprice\u002D8703']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8703')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Moon Green"
aria-label="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Moon Green"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8702/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8702-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8702-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8702" />
<a href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-moon-blue-baby-knufdmuchimblue"
title="Mushie Knuffeldoekje - Lovely Blanket - Moon Blue"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_moon_blue_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Knuffeldoekje - Lovely Blanket - Moon Blue" title="Mushie Knuffeldoekje - Lovely Blanket - Moon Blue" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_knuffeldoekje_-_lovely_blanket_-_moon_blue_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8702)"
aria-label="Voeg toe aan verlanglijst Mushie Knuffeldoekje - Lovely Blanket - Moon Blue"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8702)"
aria-label="Toevoegen om te vergelijken Mushie Knuffeldoekje - Lovely Blanket - Moon Blue"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-knuffeldoekje-lovely-blanket-moon-blue-baby-knufdmuchimblue"
:id="`slide-desc-8702-${$id('slider-id')}`">
Mushie Knuffeldoekje - Lovely Blanket - Moon Blue </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8702.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8702" data-price-box="product-id-8702">
<span
x-data x-id="['product\u002Dprice\u002D8702']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8702')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Moon Blue"
aria-label="In Winkelwagen Mushie Knuffeldoekje - Lovely Blanket - Moon Blue"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8696/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8696-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8696-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8696" />
<a href="https://www.lalashops.nl/geboortelijst-olly-olifant-baby-glijolifant"
title="Geboortelijst Olly Olifant"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_olly_olifant.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Geboortelijst Olly Olifant" title="Geboortelijst Olly Olifant" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_olly_olifant.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8696)"
aria-label="Voeg toe aan verlanglijst Geboortelijst Olly Olifant"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8696)"
aria-label="Toevoegen om te vergelijken Geboortelijst Olly Olifant"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/geboortelijst-olly-olifant-baby-glijolifant"
:id="`slide-desc-8696-${$id('slider-id')}`">
Geboortelijst Olly Olifant </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8696.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8696" data-price-box="product-id-8696">
<span
x-data x-id="['product\u002Dprice\u002D8696']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8696')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Geboortelijst Olly Olifant"
aria-label="In Winkelwagen Geboortelijst Olly Olifant"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8695/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8695-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8695-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8695" />
<a href="https://www.lalashops.nl/geboortelijst-olivia-sheep-baby-glijsheep"
title="Geboortelijst Olivia Sheep"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_olivia_sheep_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Geboortelijst Olivia Sheep" title="Geboortelijst Olivia Sheep" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_olivia_sheep_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8695)"
aria-label="Voeg toe aan verlanglijst Geboortelijst Olivia Sheep"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8695)"
aria-label="Toevoegen om te vergelijken Geboortelijst Olivia Sheep"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/geboortelijst-olivia-sheep-baby-glijsheep"
:id="`slide-desc-8695-${$id('slider-id')}`">
Geboortelijst Olivia Sheep </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8695.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8695" data-price-box="product-id-8695">
<span
x-data x-id="['product\u002Dprice\u002D8695']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8695')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Geboortelijst Olivia Sheep"
aria-label="In Winkelwagen Geboortelijst Olivia Sheep"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8694/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8694-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8694-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8694" />
<a href="https://www.lalashops.nl/geboortelijst-zina-zebra-baby-glijzebra"
title="Geboortelijst Zina Zebra"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_zina_zebra_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Geboortelijst Zina Zebra" title="Geboortelijst Zina Zebra" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_zina_zebra_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8694)"
aria-label="Voeg toe aan verlanglijst Geboortelijst Zina Zebra"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8694)"
aria-label="Toevoegen om te vergelijken Geboortelijst Zina Zebra"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/geboortelijst-zina-zebra-baby-glijzebra"
:id="`slide-desc-8694-${$id('slider-id')}`">
Geboortelijst Zina Zebra </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8694.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8694" data-price-box="product-id-8694">
<span
x-data x-id="['product\u002Dprice\u002D8694']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8694')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Geboortelijst Zina Zebra"
aria-label="In Winkelwagen Geboortelijst Zina Zebra"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8693/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8693-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8693-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8693" />
<a href="https://www.lalashops.nl/geboortelijst-bunny-flore-baby-glijbunny"
title="Geboortelijst Bunny Flore"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_bunny_flore_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Geboortelijst Bunny Flore" title="Geboortelijst Bunny Flore" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_bunny_flore_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8693)"
aria-label="Voeg toe aan verlanglijst Geboortelijst Bunny Flore"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8693)"
aria-label="Toevoegen om te vergelijken Geboortelijst Bunny Flore"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/geboortelijst-bunny-flore-baby-glijbunny"
:id="`slide-desc-8693-${$id('slider-id')}`">
Geboortelijst Bunny Flore </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8693.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8693" data-price-box="product-id-8693">
<span
x-data x-id="['product\u002Dprice\u002D8693']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8693')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Geboortelijst Bunny Flore"
aria-label="In Winkelwagen Geboortelijst Bunny Flore"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8692/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8692-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8692-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8692" />
<a href="https://www.lalashops.nl/geboortelijst-gina-giraf-baby-glijgiraf"
title="Geboortelijst Gina Giraf"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_gina_giraf_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Geboortelijst Gina Giraf" title="Geboortelijst Gina Giraf" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_gina_giraf_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8692)"
aria-label="Voeg toe aan verlanglijst Geboortelijst Gina Giraf"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8692)"
aria-label="Toevoegen om te vergelijken Geboortelijst Gina Giraf"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/geboortelijst-gina-giraf-baby-glijgiraf"
:id="`slide-desc-8692-${$id('slider-id')}`">
Geboortelijst Gina Giraf </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8692.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8692" data-price-box="product-id-8692">
<span
x-data x-id="['product\u002Dprice\u002D8692']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8692')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Geboortelijst Gina Giraf"
aria-label="In Winkelwagen Geboortelijst Gina Giraf"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8671/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8671-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8671-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8671" />
<a href="https://www.lalashops.nl/frigg-moon-latex-blush-0-6mnd-baby-friggmlblush0-6"
title="FRIGG Moon Latex - Blush 0-6mnd - Fopspeen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_blush_0-6_mnd_-_fopspeen_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="FRIGG Moon Latex - Blush 0-6mnd - Fopspeen" title="FRIGG Moon Latex - Blush 0-6mnd - Fopspeen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_blush_0-6_mnd_-_fopspeen_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8671)"
aria-label="Voeg toe aan verlanglijst FRIGG Moon Latex - Blush 0-6mnd - Fopspeen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8671)"
aria-label="Toevoegen om te vergelijken FRIGG Moon Latex - Blush 0-6mnd - Fopspeen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/frigg-moon-latex-blush-0-6mnd-baby-friggmlblush0-6"
:id="`slide-desc-8671-${$id('slider-id')}`">
FRIGG Moon Latex - Blush 0-6mnd - Fopspeen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8671.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8671" data-price-box="product-id-8671">
<span
x-data x-id="['product\u002Dprice\u002D8671']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8671')" data-price-amount="7.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 7,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen FRIGG Moon Latex - Blush 0-6mnd - Fopspeen"
aria-label="In Winkelwagen FRIGG Moon Latex - Blush 0-6mnd - Fopspeen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8669/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8669-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8669-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8669" />
<a href="https://www.lalashops.nl/frigg-moon-latex-cream-0-6mnd-baby-friggmlcream0-6"
title="FRIGG Moon Latex - Cream 0-6mnd - Fopspeen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_cream_0-6_mnd_-_fopspeen_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="FRIGG Moon Latex - Cream 0-6mnd - Fopspeen" title="FRIGG Moon Latex - Cream 0-6mnd - Fopspeen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_cream_0-6_mnd_-_fopspeen_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8669)"
aria-label="Voeg toe aan verlanglijst FRIGG Moon Latex - Cream 0-6mnd - Fopspeen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8669)"
aria-label="Toevoegen om te vergelijken FRIGG Moon Latex - Cream 0-6mnd - Fopspeen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/frigg-moon-latex-cream-0-6mnd-baby-friggmlcream0-6"
:id="`slide-desc-8669-${$id('slider-id')}`">
FRIGG Moon Latex - Cream 0-6mnd - Fopspeen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8669.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8669" data-price-box="product-id-8669">
<span
x-data x-id="['product\u002Dprice\u002D8669']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8669')" data-price-amount="7.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 7,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen FRIGG Moon Latex - Cream 0-6mnd - Fopspeen"
aria-label="In Winkelwagen FRIGG Moon Latex - Cream 0-6mnd - Fopspeen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8668/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8668-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8668-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8668" />
<a href="https://www.lalashops.nl/frigg-moon-latex-powderblush-0-6mnd-baby-friggmlpowd0-6"
title="FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_powderblush_0-6_mnd_-_fopspeen_-3.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen" title="FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_powderblush_0-6_mnd_-_fopspeen_-3.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8668)"
aria-label="Voeg toe aan verlanglijst FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8668)"
aria-label="Toevoegen om te vergelijken FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/frigg-moon-latex-powderblush-0-6mnd-baby-friggmlpowd0-6"
:id="`slide-desc-8668-${$id('slider-id')}`">
FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8668.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8668" data-price-box="product-id-8668">
<span
x-data x-id="['product\u002Dprice\u002D8668']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8668')" data-price-amount="7.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 7,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen"
aria-label="In Winkelwagen FRIGG Moon Latex - Powderblush 0-6mnd - Fopspeen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8667/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8667-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8667-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8667" />
<a href="https://www.lalashops.nl/mushie-stacking-pastel-kleuren-baby-mushistackpk"
title="Mushie Stacking - Pastel Kleuren"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_stacking_-_pastel_kleuren_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Stacking - Pastel Kleuren" title="Mushie Stacking - Pastel Kleuren" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_stacking_-_pastel_kleuren_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8667)"
aria-label="Voeg toe aan verlanglijst Mushie Stacking - Pastel Kleuren"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8667)"
aria-label="Toevoegen om te vergelijken Mushie Stacking - Pastel Kleuren"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-stacking-pastel-kleuren-baby-mushistackpk"
:id="`slide-desc-8667-${$id('slider-id')}`">
Mushie Stacking - Pastel Kleuren </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8667.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8667" data-price-box="product-id-8667">
<span
x-data x-id="['product\u002Dprice\u002D8667']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8667')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Stacking - Pastel Kleuren"
aria-label="In Winkelwagen Mushie Stacking - Pastel Kleuren"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8666/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8666-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8666-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8666" />
<a href="https://www.lalashops.nl/mushie-stacking-retro-pastel-kleuren-baby-mushistackrpk"
title="Mushie Stacking - Retro Pastel Kleuren"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_stacking_-_retro_pastel_kleuren_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Mushie Stacking - Retro Pastel Kleuren" title="Mushie Stacking - Retro Pastel Kleuren" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/m/u/mushie_stacking_-_retro_pastel_kleuren_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8666)"
aria-label="Voeg toe aan verlanglijst Mushie Stacking - Retro Pastel Kleuren"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8666)"
aria-label="Toevoegen om te vergelijken Mushie Stacking - Retro Pastel Kleuren"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/mushie-stacking-retro-pastel-kleuren-baby-mushistackrpk"
:id="`slide-desc-8666-${$id('slider-id')}`">
Mushie Stacking - Retro Pastel Kleuren </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8666.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8666" data-price-box="product-id-8666">
<span
x-data x-id="['product\u002Dprice\u002D8666']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8666')" data-price-amount="17.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 17,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Mushie Stacking - Retro Pastel Kleuren"
aria-label="In Winkelwagen Mushie Stacking - Retro Pastel Kleuren"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8665/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8665-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8665-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8665" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-dolfijn-baby-tikirbijtbaddolf"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065036_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065036_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8665)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8665)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-dolfijn-baby-tikirbijtbaddolf"
:id="`slide-desc-8665-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8665.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8665" data-price-box="product-id-8665">
<span
x-data x-id="['product\u002Dprice\u002D8665']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8665')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Dolfijn"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8664/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8664-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8664-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8664" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-schildpad-baby-tikiribijtbadschild"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065034_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065034_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8664)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8664)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-schildpad-baby-tikiribijtbadschild"
:id="`slide-desc-8664-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8664.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8664" data-price-box="product-id-8664">
<span
x-data x-id="['product\u002Dprice\u002D8664']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8664')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Schildpad"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8663/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8663-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8663-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8663" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-walvis-baby-tikiribijtbadwalvis"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Walvis"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065032_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS - Bijt- en Badspeelgoed met Rammelaar - Walvis" title="TIKIRI TOYS - Bijt- en Badspeelgoed met Rammelaar - Walvis" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065032_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8663)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Walvis"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8663)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Walvis"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-walvis-baby-tikiribijtbadwalvis"
:id="`slide-desc-8663-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Walvis </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8663.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8663" data-price-box="product-id-8663">
<span
x-data x-id="['product\u002Dprice\u002D8663']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8663')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Walvis"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Walvis"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8662/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8662-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8662-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8662" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-krab-baby-tikiribijtbadkrab"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065031_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065031_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8662)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8662)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-krab-baby-tikiribijtbadkrab"
:id="`slide-desc-8662-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8662.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8662" data-price-box="product-id-8662">
<span
x-data x-id="['product\u002Dprice\u002D8662']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8662')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krab"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8661/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8661-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8661-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8661" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-octopus-baby-tikiribijtbadocto"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065035_3.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065035_3.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8661)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8661)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-octopus-baby-tikiribijtbadocto"
:id="`slide-desc-8661-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8661.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8661" data-price-box="product-id-8661">
<span
x-data x-id="['product\u002Dprice\u002D8661']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8661')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Octopus"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8660/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8660-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8660-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8660" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-zeepaardje-baby-tikiribijtbadzeep"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065033_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065033_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8660)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8660)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-zeepaardje-baby-tikiribijtbadzeep"
:id="`slide-desc-8660-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8660.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8660" data-price-box="product-id-8660">
<span
x-data x-id="['product\u002Dprice\u002D8660']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8660')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zeepaardje"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8659/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8659-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8659-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8659" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-zebra-baby-tikiribijtbadzebra"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065013_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065013_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8659)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8659)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-zebra-baby-tikiribijtbadzebra"
:id="`slide-desc-8659-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8659.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8659" data-price-box="product-id-8659">
<span
x-data x-id="['product\u002Dprice\u002D8659']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8659')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Zebra"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8658/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8658-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8658-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8658" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-olifant-baby-tikiribijtbadolif"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/u/n/untitled-3.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/u/n/untitled-3.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8658)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8658)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-olifant-baby-tikiribijtbadolif"
:id="`slide-desc-8658-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8658.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8658" data-price-box="product-id-8658">
<span
x-data x-id="['product\u002Dprice\u002D8658']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8658')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Olifant"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8657/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8657-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8657-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8657" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-krokodil"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065011_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/5/0/5065011_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8657)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8657)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-krokodil"
:id="`slide-desc-8657-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8657.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8657" data-price-box="product-id-8657">
<span
x-data x-id="['product\u002Dprice\u002D8657']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8657')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Krokodil"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8656/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8656-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8656-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8656" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-leeuw-baby-tikiribijtbadleeuw"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/l/e/leeuw.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/l/e/leeuw.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8656)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8656)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-leeuw-baby-tikiribijtbadleeuw"
:id="`slide-desc-8656-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8656.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8656" data-price-box="product-id-8656">
<span
x-data x-id="['product\u002Dprice\u002D8656']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8656')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Leeuw"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8655/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8655-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8655-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8655" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-nijlpaard"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/h/i/hippo.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/h/i/hippo.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8655)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8655)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-nijlpaard"
:id="`slide-desc-8655-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8655.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8655" data-price-box="product-id-8655">
<span
x-data x-id="['product\u002Dprice\u002D8655']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8655')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Nijlpaard"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8654/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8654-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8654-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8654" />
<a href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-giraf-baby-tikiribijtbadgiraf"
title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/i/giraf.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf" title="TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/i/giraf.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8654)"
aria-label="Voeg toe aan verlanglijst TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8654)"
aria-label="Toevoegen om te vergelijken TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/tikiri-toys-bijt-en-badspeelgoed-met-rammelaar-giraf-baby-tikiribijtbadgiraf"
:id="`slide-desc-8654-${$id('slider-id')}`">
TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8654.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8654" data-price-box="product-id-8654">
<span
x-data x-id="['product\u002Dprice\u002D8654']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8654')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf"
aria-label="In Winkelwagen TIKIRI TOYS | Bijt- en Badspeelgoed met Rammelaar - Giraf"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8643/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8643-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8643-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8643" />
<a href="https://www.lalashops.nl/frigg-moon-latex-croissant-0-6mnd-baby-friggmlcrois0-6"
title="FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_croissant_0-6_mnd_-_fopspeen_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen" title="FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/f/r/frigg_moon_latex_-_croissant_0-6_mnd_-_fopspeen_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8643)"
aria-label="Voeg toe aan verlanglijst FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8643)"
aria-label="Toevoegen om te vergelijken FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/frigg-moon-latex-croissant-0-6mnd-baby-friggmlcrois0-6"
:id="`slide-desc-8643-${$id('slider-id')}`">
FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8643.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8643" data-price-box="product-id-8643">
<span
x-data x-id="['product\u002Dprice\u002D8643']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8643')" data-price-amount="7.5"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 7,50</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen"
aria-label="In Winkelwagen FRIGG Moon Latex - Croissant 0-6mnd - Fopspeen"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
<li class="swiper-slide">
<form method="post"
action="https://www.lalashops.nl/checkout/cart/add/uenc/%25uenc%25/product/8638/"
x-data="{
hovered: false,
grid: true ,
isMobile: false,
isMobileFunc () {
this.isMobile = window.matchMedia('(max-width: 768px)').matches;
}
}"
x-init="
isMobileFunc();
const labelClass = '.amlabel-position-top-right-8638-prod';
const labels = document.querySelectorAll(labelClass);
$watch('hovered', value => {
if (value) {
labels.forEach(el => el.style.opacity = '0');
} else {
labels.forEach(el => el.style.opacity = '1');
}
});
"
@mouseenter="hovered = true"
@mouseleave="hovered = false"
class="item product product-item product_addtocart_form card card-interactive flex flex-col w-full relative "
:class="isMobile ? 'product-item-mobile' : ''"
>
<style>
/* Generate styling for the label based on the product ID */
.amlabel-position-top-right-8638-prod {
transition: opacity 0.3s ease;
}
</style>
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <input type="hidden" name="product" value="8638" />
<a href="https://www.lalashops.nl/geboortelijst-ziggy-lion-baby-glijlion"
title="Geboortelijst Ziggy Lion"
class="product photo product-item-photo flex items-center mx-auto mb-3 h-[381px] rounded-product-card overflow-hidden w-full "
tabindex="-1">
<picture class="object-cover !h-auto group-hover:opacity-75 w-full !border-none"><source type="image/webp" srcset="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_ziggy_lion_-_1.webp"><img class="object-cover !h-auto group-hover:opacity-75 w-full !border-none" loading="lazy" alt="Geboortelijst Ziggy Lion" title="Geboortelijst Ziggy Lion" src="https://www.lalashops.nl/media/catalog/product/cache/89b3f63b713a9b12057ae927b22974bf/g/e/geboortelijst_ziggy_lion_-_1.jpg" width="360" height="360" loading="lazy"></picture>
</a>
<div class="absolute top-4 right-4 left-4 justify-between flex gap-2 z-50" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<div x-data="initWishlist()">
<button
@click="addToWishlist(8638)"
aria-label="Voeg toe aan verlanglijst Geboortelijst Ziggy Lion"
type="button"
class="wishlist-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="wishlist">
<span class="icon-heart text-2xl"></span>
</button>
</div>
<div x-data="initCompareOnProductList()">
<button
@click="addToCompare(8638)"
aria-label="Toevoegen om te vergelijken Geboortelijst Ziggy Lion"
type="button"
class="compare-button rounded-full w-12 h-12 bg-white p-0 border-0 inline-flex items-center justify-center text-lala-black hover:bg-lala-blue hover:text-white text-3xl"
data-addto="compare">
<span class="icon-balance text-2xl"></span>
</button>
</div>
</div>
<div class="product-info flex flex-col grow">
<div class="mt-2 mb-1 items-center justify-start text-lala-black text-base text-left ">
<a
class="product-item-link"
href="https://www.lalashops.nl/geboortelijst-ziggy-lion-baby-glijlion"
:id="`slide-desc-8638-${$id('slider-id')}`">
Geboortelijst Ziggy Lion </a>
</div>
<div class="pt-1 text-gray-900"
x-defer="intersect"
@update-prices-8638.window="updatePrice($event.detail);">
<div class="price-box price-final_price" data-role="priceBox" data-product-id="8638" data-price-box="product-id-8638">
<span
x-data x-id="['product\u002Dprice\u002D8638']" class="price-container price-final_price tax weee"
>
<span :id="$id('product\u002Dprice\u002D8638')" data-price-amount="19.95"
data-price-type="finalPrice"
class="price-wrapper "
><span class="price">€ 19,95</span></span>
</span>
</div> </div>
<div class="mt-auto pt-3 flex flex-wrap items-center gap-y-4 gap-x-2
">
<div class="add-to-cart-wrapper" x-show="hovered || !grid || isMobile" x-transition.opacity.duration.300ms>
<button
class="w-auto btn justify-center text-xl mr-auto"
:class="!grid && isMobile ? 'btn-secondary' : 'btn-primary'"
title="In Winkelwagen Geboortelijst Ziggy Lion"
aria-label="In Winkelwagen Geboortelijst Ziggy Lion"
data-addto="cart">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/>
</svg>
<span class="ml-2 inline md:ml-0 md:hidden lg:ml-2 lg:inline">
In Winkelwagen </span>
</button>
</div>
</div>
</div>
</form>
</li>
</div>
</div>
<script>
(function() {
const swiperCssUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/css/swiper-bundle.min.css';
const swiperJsUrl = 'https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Widgets/js/6.8.4_swiper-bundle.min.js';
// Load Swiper CSS
if (typeof window.SwiperCSS === 'undefined') {
const style = document.createElement("link");
style.rel = "stylesheet";
style.type = "text/css";
style.href = swiperCssUrl;
const insertAt = document.getElementsByTagName('link')[0];
if (insertAt) {
insertAt.parentNode.insertBefore(style, insertAt);
} else {
document.head.appendChild(style);
}
window.SwiperCSS = 'loaded';
}
function initSwiper() {
new Swiper('.swiper-container', {
loop: false,
slidesPerView: 1,
spaceBetween: 16,
autoplay: false,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
breakpoints: {
480: {
slidesPerView: 1.6,
spaceBetween: 16,
},
768: {
slidesPerView: 2.6,
spaceBetween: 16,
},
1024: {
slidesPerView: 3.6,
spaceBetween: 16,
},
1280: {
slidesPerView: 4.6,
spaceBetween: 16,
}
},
});
}
if (typeof window.Swiper === 'function') {
initSwiper();
} else {
// Load Swiper JS
const scriptSource = swiperJsUrl;
const pendingLoadScript = Array.from(document.scripts).find(script => script.src === scriptSource);
if (pendingLoadScript) {
pendingLoadScript.addEventListener('load', () => initSwiper());
return;
}
const script = document.createElement('script');
script.src = scriptSource;
script.async = true;
script.addEventListener('load', () => initSwiper());
document.head.appendChild(script);
}
})();
window.addEventListener("load", function() {
if (window.innerWidth > 479) {
let maxHeight = 0;
// Get all slides
const slides = document.querySelectorAll('.product-slider .swiper-slide');
// Find the tallest slide
slides.forEach(slide => {
const slideHeight = slide.offsetHeight;
if (slideHeight > maxHeight) {
maxHeight = slideHeight;
}
});
// Set the height of all slides and the swiper-wrapper to the max height
slides.forEach(slide => {
slide.style.height = `${maxHeight}px`;
});
const swiperWrapper = document.querySelector('.product-slider .swiper-wrapper');
if (swiperWrapper) {
swiperWrapper.style.height = `${maxHeight}px`;
}
}
});
</script>
</div>
</section>
</div>
<template x-data="initAmWidgetLabels__68985b5236b47" x-init="initLabels($el)"></template>
<script>
function initAmWidgetLabels__68985b5236b47() {
return {
initLabels($el) {
const labels = ["","","","","","","","","","","","","","","","","","","","","","","","","","","","",""];
const widgetContainer = $el?.previousElementSibling;
labels.forEach((productLabel, index) => {
const productSelector = `li:nth-child(${index + 1})`;
const productContainer = widgetContainer?.querySelector(productSelector);
if (productContainer) {
const labelClass = 'am-label_68985b5236b47' + index;
productContainer.innerHTML += productLabel;
productContainer.classList.add(labelClass);
hyva.replaceDomElement(
'.' + labelClass,
productContainer?.outerHTML
);
}
});
}
}
}
</script>
<div class="widget-content py-4 md:py-8 xl:pt-12 xl:pb-20 relative">
<div class="container grid grid-cols-1 md:grid-cols-2 gap-x-8 lg:gap-x-16 xl:gap-x-28 gap-y-4 xl:gap-y-6">
<div class="text-3xl md:text-4xl xl:text-5xl xl:!leading-[54px] font-bold md:col-span-2 xl:col-span-1 self-start mb-0">
LalaShops, uw digitale winkelcentrum </div>
<div class="w-full h-auto relative md:col-start-2 md:row-start-2 md:row-span-2 xl:row-span-3 pb-4 self-start">
<div class="relative">
<picture class="w-full h-auto object-cover rounded-[20px] relative z-10"><source type="image/webp" srcset="https://www.lalashops.nl/media/wysiwyg/Banners/ultimo-157k.webp"><img src="https://www.lalashops.nl/media/wysiwyg/Banners/ultimo-157k.png" class="w-full h-auto object-cover rounded-[20px] relative z-10" /></picture>
<div class="absolute inset-0 bg-lala-blue rounded-[20px] -translate-x-2.5 sm:-translate-x-3.5 xl:-translate-x-5 translate-y-2.5 sm:translate-y-3.5 xl:translate-y-5 z-0"></div>
</div>
</div>
<div class="flex flex-col space-y-4 xl:space-y-8 self-start">
<div class="text-lala-black font-light text-sm md:text-base !leading-6 mb-0">
Wij van LalaShops brengen scherpe prijzen, lokale samenwerkingen en verantwoord shoppen samen in ons bijzondere online winkelcentrum. In onze webshop vindt u elektronica, huis-, tuin- en keukenbenodigdheden, kristal- en edelstenen, (handgemaakte) sieraden en een diversiteit aan persoonlijke welzijns- en verzorgingsproducten. Wij geven ondernemers die de kwaliteit van hun producten en diensten reeds bewezen hebben graag een etalage voor hun producten en dragen hierbij direct ook onze eigen interesses en passies uit. U mag van ons niet minder dan topkwaliteit en -service verwachten. Dus neem de tijd, pak een kop koffie, wij nodigen u van harte uit tot een ontspannen online winkelmoment! Heeft u tijdens het shoppen vragen of specifieke wensen? Schroom niet om contact met ons op te nemen, wij helpen u graag. </div>
<a href="#" class="btn btn-primary rounded-3xl mr-auto cursor-pointer mb-auto xl:py-3 xl:px-8">
<span>
Over Ons </span>
</a>
</div>
</div>
</div></div>
<div class="prefooter-widget text-lala-black text-sm sm:text-base font-normal leading-4 sm:leading-5 py-6 sm:py-0 text-left sm:text-center">
<div class="container">
<ul class="flex flex-col sm:flex-row flex-wrap py-1 justify-center xl:justify-between items-start sm:items-center gap-4">
<li class="flex items-center gap-3">
<a href="https://www.lalashops.nl/">Privacy en Cookie Policy</a>
</li>
<li class="hidden sm:block"><span class="border-r border-lala-gray-light-ultra"></span></li>
<li class="flex items-center gap-3">
<a href="https://www.lalashops.nl/">Bestellingen en Retouren</a>
</li>
<li class="hidden sm:block"><span class="border-r border-lala-gray-light-ultra"></span></li>
<li class="flex items-center gap-3">
<a href="https://www.lalashops.nl/">Neem contact met ons op</a>
</li>
<li class="hidden sm:block"><span class="border-r border-lala-gray-light-ultra"></span></li>
<li class="flex items-center gap-3">
<a href="https://www.lalashops.nl/">Zoektermen</a>
</li>
<li class="hidden sm:block"><span class="border-r border-lala-gray-light-ultra"></span></li>
<li class="flex items-center gap-3">
<a href="https://www.lalashops.nl/">Geavanceerd zoeken</a>
</li>
<li class="hidden sm:block"><span class="border-r border-lala-gray-light-ultra"></span></li>
<li class="flex items-center gap-3">
<a href="https://www.lalashops.nl/">Sitemap</a>
</li>
<li class="hidden sm:block"><span class="border-r border-lala-gray-light-ultra"></span></li>
<li><a href="https://www.keurmerk.info/Leden_Partners/LidDetails/11498" target="_blank" rel="noopener"><img class="max-w-[135px]" src="https://www.keurmerk.info/Resources/Logo/rt-keurmerk_trustmark-wsk_ls3_medium-j?l=nl" alt="Onze vermelding op http://www.keurmerk.info"></a></li>
</ul>
</div>
</div></div><footer class="page-footer"><div class="footer content"><div class="flex flex-col justify-between">
<div class="container py-8 lg:py-16 mx-auto">
<div class="flex flex-wrap order-first gap-y-16 justify-between">
<div class="lg:w-3/4 w-full flex flex-wrap pr-4">
<div class="w-full grid grid-cols-1 sm:grid-cols-3 gap-8 text-base leading-5 font-light">
<div>
<div data-content-type="html" data-appearance="default" data-element="main" data-decoded="true"><h3>BESTEL INFORMATIE</h3>
<ul>
<li><a href="/sales/guest/form/"> Track and Trace </a></li>
<li><a href="/verzendkosten"> Betaling en verzending </a></li>
<li><a href="/bedrag-overmaken"> Bedrag overmaken </a></li>
<li><a href="/algemene-voorwaarden"> Algemene voorwaarden </a></li>
<li><a href="/privacy-policy-cookie-restriction-mode"> Privacy Policy </a></li>
</ul></div> </div>
<div>
<div data-content-type="html" data-appearance="default" data-element="main" data-decoded="true"><h3>BEDRIJFS INFORMATIE</h3>
<ul>
<li><a href="/klantenservice"> Klantenservice </a></li>
<li><a href="/contact_us"> Contact </a></li>
<li><a href="/bedrijfsgegevens"> Bedrijfsgegevens </a></li>
<li><a href="/over-ons"> Wie zijn wij </a></li>
<li><a href="/over-ons"> Onze Missie </a></li>
<li><a href="/over-ons"> Nieuwe Economie </a></li>
</ul></div> </div>
<div>
<div data-content-type="html" data-appearance="default" data-element="main" data-decoded="true"><h3>HANDIGE LINKS</h3>
<ul>
<li><a href="/customer/account/login/"> Mijn account </a></li>
<li><a href="/catalogsearch/advanced/"> Geavanceerd zoeken </a></li>
<li><a href="/over-ons/"> Peer to Peer (P2P) netwerken </a></li>
<li><a href="/sitemap/lalashops/sitemap.xml"> Sitemap </a></li>
</ul></div> </div>
</div>
</div> <div class="lg:w-1/4 md:w-1/2 font-light flex flex-col gap-3">
<picture class="mb-2"><source type="image/webp" srcset="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/images/lalalogo.webp"><img class="mb-2" src="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/images/lalalogo.png" srcset="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/images/lalalogo.png 1x, https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/images/lalalogo.png 2x" alt="Lalashops logo" width="334" height="81" /></picture>
<div class="font-light mb-1">De krachten van de natuur & de kracht van technologie!</div>
<div class="">
Doctor Schaepmanstraat 49 <br />
6004AD Limburg Weert </div>
<a href="mailto:info@lalashops.nl" class="flex gap-3 items-center mr-auto hover:text-lala-black"><span class="icon-envelope"></span>info@lalashops.nl</a>
<a href="tel:085 877 0866" class="flex gap-3 items-center mr-auto hover:text-lala-black"><span class="icon-phone-empty text-2xl -ml-0.5"></span>+31 085 877 0866</a>
<div class="flex gap-x-2"><a href="<div data-content-type="html" data-appearance="default" data-element="main" data-decoded="true">https://www.instagram.com/lalashops_nl/</div>" class="flex hover:text-lala-black" target="_blank"><span class="icon-instagram text-xl ml-0.5 mr-2.5"></span>Instagram</a> <a href="<div data-content-type="html" data-appearance="default" data-element="main" data-decoded="true">https://www.facebook.com/LalaShops.nl/?locale=nl_NL</div>" class="flex hover:text-lala-black" target="_blank"><span class=" icon-facebook text-2xl mr-2"></span>Facebook</div></a>
<a href="https://www.lalashops.nl/contact/" class="hover:text-lala-black">Contactformulier</a>
<form
class="form subscribe"
action="https://www.lalashops.nl/newsletter/subscriber/new/"
method="post"
x-data="initNewsletterForm()"
@submit.prevent="submitForm()"
id="newsletter-validate-detail"
aria-label="Abonneren op de nieuwsbrief">
<h3 class="mb-2 mt-4">
Inschrijven nieuwsbrief </h3>
<div class="flex justify-center md:justify-start mt-3">
<label for="newsletter-subscribe" class="sr-only">
E-mail adres </label>
<input
name="email"
type="email"
required
id="newsletter-subscribe"
class="form-input inline-flex text-lala-black w-full rounded-l-3xl rounded-r-none placeholder:text-sm placeholder:translate-y-[1px] pl-4 bg-lala-gray-light-ultra border-lala-black h-12"
placeholder="Voer uw e-mailadres in"
aria-describedby="footer-newsletter-heading">
<input name="form_key" type="hidden" value="20wYPTntN6NE5QDB" /> <button class="btn inline-flex shrink-0 ml-auto xl:mt-0 rounded-l-none rounded-r-3xl bg-white text-lala-blue font-normal justify-center items-center px-4 border-lala-black border border-l-0">
<span>Inschrijven</span>
</button>
</div>
<div>
<template x-if="displayErrorMessage">
<p class="flex items-center text-red">
<span class="inline-block w-8 h-8 mr-3">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" width="24" height="24" role="img">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
<title>exclamation-circle</title></svg>
</span>
<template x-for="errorMessage in errorMessages">
<span x-html="errorMessage"></span>
</template>
</p>
</template>
</div>
</form>
<div class="w-full">
</div>
<script>
function initNewsletterForm() {
return {
errors: 0,
hasCaptchaToken: 0,
displayErrorMessage: false,
errorMessages: [],
setErrorMessages(messages) {
this.errorMessages = [messages]
this.displayErrorMessage = this.errorMessages.length
},
submitForm() {
// Do not rename $form, the variable is expected to be declared in the recaptcha output
const $form = document.querySelector('#newsletter-validate-detail');
if (this.errors === 0) {
$form.submit();
}
}
}
}
</script>
</div> </div>
</div>
<div class="container py-6 mx-auto mt-auto flex sm:flex-row flex-col">
<small class="text-sm">
<span>© 2025 LaLashops.nl All Rights Reserved.</span>
</small> </div>
</div><script>
'use strict';
function amBrandsPopup() {
let cached = false;
const displayError = (error) => {
console.error(error);
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: "error",
text: "Er\u0020ging\u0020iets\u0020mis.\u0020Probeer\u0020opnieuw."
}], 10000
);
};
let letters = [
"A","B","C","D",
"E","F","G","H","I","J","K","L","M",
"N","O","P","Q","R","S","T","U","V","W","X","Y","Z","#"
];
return {
hoverPanelActiveId: null,
selectedLetter: null,
items: [],
letters: [],
showCount: null,
showFilter: null,
showImages: true,
showSearch: null,
loading: false,
label: 'Brands',
isPopupEnabled: false,
isTopMenuItemEnabled: false,
cache: false,
isMobile: false,
initErrorMessages(errors) {
const messages = [];
for (let error in Object.keys(errors)) {
messages.push({type: 'error', text: errors[error].message});
}
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(messages, 10000);
},
chooseLetter(letter) {
this.selectedLetter = this.selectedLetter === letter ? null : letter;
},
getQuery() {
return "query BrandsPopupQuery { ambrandlist(\n showCount: true\n displayZero: true\n ) {\n all_letters,\n items {\n alt\n brandId\n cnt\n image\n img\n label\n letter\n url\n }\n }\n storeConfig {\n amshopby_brand_general_brands_brands_popup,\n amshopby_brand_general_menu_item_label,\n amshopby_brand_general_brands_page,\n amshopby_brand_general_topmenu_enabled,\n amshopby_brand_general_brands_popup_config {\n show_images,\n display_zero,\n filter_display_all,\n image_width,\n image_height,\n show_filter,\n show_count\n }\n } }" },
/**
* Retrieve media url for given path
*
* @param path
* @returns {string}
*/
getMediaUrl(path) {
let stringToRemove = 'index.php/';
let baseUrl = BASE_URL.replace(stringToRemove, '');
return path.includes(baseUrl) ? path : baseUrl + path;
},
checkIsMobileResolution() {
this.isMobile = window.matchMedia('(max-width: 1023px)').matches;
},
getBrandUrl(url){
return BASE_URL + url;
},
init() {
this.checkIsMobileResolution();
this.$watch('hoverPanelActiveId', (value) => {
if (value === 'am-brand') {
this.sendRequest();
}
});
},
/**
* Get brands by letter
*
* @param result
* @returns {{imageWidth: *, isTopMenuItemEnabled: *, showCount: *, displayAll: *, showFilter: *, showImages: *, isPopupEnabled: *, label: *, imageHeight: *, filterDisplayAll: *, brandsPage: *}}
*/
settingsMapper(result) {
const config = result.data.storeConfig?.amshopby_brand_general_brands_popup_config;
return {
showImages: config.show_images,
showCount: config.show_count,
showFilter: config.show_filter,
imageWidth: config.image_width,
imageHeight: config.image_height,
filterDisplayAll: config.filter_display_all,
displayAll: config.display_zero,
isPopupEnabled: result.data.storeConfig?.amshopby_brand_general_brands_brands_popup,
label: result.data.storeConfig?.amshopby_brand_general_menu_item_label,
isTopMenuItemEnabled: result.data.storeConfig?.amshopby_brand_general_topmenu_enabled,
brandsPage: result.data.storeConfig?.amshopby_brand_general_brands_page,
}
},
/**
* Send request to graphql
*
* @returns {Promise<any>}
*/
async sendRequest() {
if (this.isMobile) {
return false;
}
this.loading = true;
try {
if (cached) {
this.loading = false;
return false;
}
const response = await fetch('https://www.lalashops.nl/graphql', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Store': 'lalashops_webshop_sv'
},
credentials: 'include',
body: JSON.stringify({query: this.getQuery(), variables: {}})
});
const result = await response.json();
if (result?.errors) {
this.initErrorMessages(result.errors);
return;
}
const data = result.data?.ambrandlist;
const mapper = this.settingsMapper(result);
// Update component settings
Object.keys(mapper).forEach(config => {
this[config] = mapper[config];
});
if (!this.filterDisplayAll) {
letters = data.all_letters.split(',');
}
const items = data.items.map(brand => {
brand.image = brand.img
? this.getMediaUrl(brand.img) : (brand.image ? this.getMediaUrl(brand.image) : null);
return brand;
});
this.letters = letters.map(letter => ({
letter,
brands: this.getLetterItems(items, letter),
}));
this.items = this.letters.filter(row => row.brands?.length > 0);
cached = true;
} catch (error) {
displayError(error);
} finally {
this.loading = false;
}
},
/**
* Get brands by letter
*
* @param items
* @param letter
* @returns {*}
*/
getLetterItems(items, letter) {
return items.filter(row => row.letter === letter);
},
convertHtml(text) {
let textField = document.createElement("textarea");
textField.innerHTML = text;
return textField.value;
}
}
}
</script>
</div></footer>
<!-- Start of Clerk.io E-commerce Personalisation tool - www.clerk.io -->
<script>
(function (w, d) {
var e = d.createElement('script');
e.type = 'text/javascript';
e.async = true;
e.src = (d.location.protocol == 'https:' ? 'https' : 'http') + '://custom.clerk.io/lalashopswebshop.js';
var s = d.getElementsByTagName('script')[0];
s.parentNode.insertBefore(e, s);
w.__clerk_q = w.__clerk_q || [];
w.Clerk = w.Clerk || function () {
w.__clerk_q.push(arguments)
};
})(window, document);
Clerk('config', {
key: 'r6oouas4KSv35Daq7rvNn4ZfZT6VY51L',
collect_email: true,
globals: {
uenc: 'aHR0cHM6Ly93d3cubGFsYXNob3BzLm5sLw==',
formkey: '20wYPTntN6NE5QDB',
currency_symbol: '€',
currency_iso: 'EUR'
},
formatters: {
convert_currency: function (price) {
const ex_rate = parseFloat('1') ?? null;
if (ex_rate) {
return price * ex_rate;
}
return price;
},
convert_currency_from_iso: function (price, currency_iso) {
const ex_rates = JSON.parse('{"AFN":false,"ALL":false,"DZD":false,"AOA":false,"ARS":false,"AMD":false,"AWG":false,"AUD":false,"AZN":false,"AZM":false,"BSD":false,"BHD":false,"BDT":false,"BBD":false,"BYR":false,"BZD":false,"BMD":false,"BTN":false,"BOB":false,"BAM":false,"BWP":false,"BRL":false,"GBP":false,"BND":false,"BGN":false,"BUK":false,"BIF":false,"XPF":false,"KHR":false,"CAD":false,"CVE":false,"KYD":false,"CLP":false,"CNY":false,"COP":false,"KMF":false,"CDF":false,"CRC":false,"HRK":false,"CUP":false,"CZK":false,"DKK":false,"DJF":false,"DOP":false,"XCD":false,"EGP":false,"GQE":false,"ERN":false,"EEK":false,"ETB":false,"EUR":1,"FKP":false,"FJD":false,"GMD":false,"GEK":false,"GEL":false,"GHS":false,"GIP":false,"GTQ":false,"GNF":false,"GYD":false,"HTG":false,"HNL":false,"HKD":false,"HUF":false,"ISK":false,"INR":false,"IDR":false,"IRR":false,"IQD":false,"ILS":false,"JMD":false,"JPY":false,"JOD":false,"KZT":false,"KES":false,"KWD":false,"KGS":false,"LAK":false,"LVL":false,"LBP":false,"LSL":false,"LRD":false,"LYD":false,"LTL":false,"MOP":false,"MKD":false,"MGA":false,"MWK":false,"MYR":false,"MVR":false,"MRO":false,"MUR":false,"MXN":false,"MDL":false,"MNT":false,"MAD":false,"MZN":false,"MMK":false,"NAD":false,"NPR":false,"ANG":false,"TWD":false,"NZD":false,"NIC":false,"NGN":false,"KPW":false,"NOK":false,"OMR":false,"PKR":false,"PAB":false,"PGK":false,"PYG":false,"PEN":false,"PHP":false,"PLN":false,"QAR":false,"RHD":false,"RON":false,"ROL":false,"RUB":false,"RWF":false,"SVC":false,"WST":false,"SAR":false,"RSD":false,"SCR":false,"SLL":false,"SGD":false,"SKK":false,"SBD":false,"SOS":false,"ZAR":false,"KRW":false,"LKR":false,"SHP":false,"SDG":false,"SRD":false,"SZL":false,"SEK":false,"CHF":false,"SYP":false,"STD":false,"TJS":false,"TZS":false,"THB":false,"TOP":false,"TTD":false,"TND":false,"TRY":false,"TRL":false,"TMM":false,"USD":"1.415000000000","UGX":false,"UAH":false,"AED":false,"UYU":false,"UZS":false,"VUV":false,"VEB":false,"VEF":false,"VND":false,"CHE":false,"CHW":false,"XOF":false,"YER":false,"ZMK":false,"ZWD":false}');
if (ex_rates[currency_iso] !== undefined) {
return price * ex_rates[currency_iso];
}
return price;
}
}
});
var collectbaskets = false;
if (collectbaskets) {
let open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function () {
this.addEventListener("load", function () {
if (this.responseURL.includes("=cart")) {
if (this.readyState === 4 && this.status === 200) {
var response = JSON.parse(this.responseText);
var clerk_productids = [];
if (response && response.hasOwnProperty('cart') && response.cart.hasOwnProperty('items')) {
for (var i = 0, len = response.cart.items.length; i < len; i++) {
clerk_productids.push(response.cart.items[i].product_id);
}
}
clerk_productids = clerk_productids.map(Number);
var clerk_last_productids = [];
if (localStorage.getItem('clerk_productids') !== null) {
clerk_last_productids = localStorage.getItem('clerk_productids').split(",");
clerk_last_productids = clerk_last_productids.map(Number);
}
clerk_productids = clerk_productids.sort((a, b) => a - b);
clerk_last_productids = clerk_last_productids.sort((a, b) => a - b);
if (JSON.stringify(clerk_productids) == JSON.stringify(clerk_last_productids)) {
// if equal - do nothing
} else {
if (JSON.stringify(clerk_productids) === "[0]") {
Clerk('cart', 'set', []);
} else {
Clerk('cart', 'set', clerk_productids);
}
}
localStorage.setItem("clerk_productids", clerk_productids);
}
}
}, false);
open.apply(this, arguments);
};
}
</script>
<!-- End of Clerk.io E-commerce Personalisation tool - www.clerk.io -->
<span
class="clerk"
data-template="@live-search"
data-instant-search-suggestions="3"
data-instant-search-categories="3"
data-instant-search-pages="3"
data-instant-search-pages-type="cms page"
data-instant-search-positioning="center"
data-instant-search="#search"></span>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Select all form elements matching the provided selector
let elems = document.querySelectorAll('#search_mini_form');
// Set the 'action' attribute for each form element
elems.forEach(function(formElement) {
formElement.setAttribute('action', 'https://www.lalashops.nl/catalogsearch/result');
});
});
</script>
<style type="text/css">
#search_autocomplete {
display: none !important;
}
</style>
<script>
(() => {
function src_default(Alpine) {
Alpine.directive("intersect", (el, { value, expression, modifiers }, { evaluateLater, cleanup }) => {
let evaluate = evaluateLater(expression);
let options = {
rootMargin: getRootMargin(modifiers),
threshold: getThreshhold(modifiers)
};
let observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting === (value === "leave"))
return;
evaluate();
modifiers.includes("once") && observer.disconnect();
});
}, options);
observer.observe(el);
cleanup(() => {
observer.disconnect();
});
});
}
function getThreshhold(modifiers) {
if (modifiers.includes("full"))
return 0.99;
if (modifiers.includes("half"))
return 0.5;
if (!modifiers.includes("threshold"))
return 0;
let threshold = modifiers[modifiers.indexOf("threshold") + 1];
if (threshold === "100")
return 1;
if (threshold === "0")
return 0;
return Number(`.${threshold}`);
}
function getLengthValue(rawValue) {
let match = rawValue.match(/^(-?[0-9]+)(px|%)?$/);
return match ? match[1] + (match[2] || "px") : void 0;
}
function getRootMargin(modifiers) {
const key = "margin";
const fallback = "0px 0px 0px 0px";
const index = modifiers.indexOf(key);
if (index === -1)
return fallback;
let values = [];
for (let i = 1; i < 5; i++) {
values.push(getLengthValue(modifiers[index + i] || ""));
}
values = values.filter((v) => v !== void 0);
return values.length ? values.join(" ").trim() : fallback;
}
document.addEventListener("alpine:init", () => {
window.Alpine.plugin(src_default);
});
})();
</script>
<script>
for (const [selector, deferUntil] of Object.entries({".product-slider section[x-data]":"intersect",".product-info [x-data]":"intersect","#filters-content [x-data]":"intersect","#review_form":"intersect","section[x-data^=initRecentlyViewedProductsComponent]":"intersect","div[x-data^=initBundleOptions]":"intersect","#product_addtocart_form [x-data]":"intersect","#notice-cookie-block":"intersect"})) {
document.querySelectorAll(selector).forEach(el => el.setAttribute('x-defer', `${deferUntil}`));
}
</script>
<script>
(function () {
"use strict";
const hasAlpine = new Promise(resolve => {
window.addEventListener('alpine:initialized', resolve, {once: true, passive: true});
});
const hasInteract = new Promise(resolve => {
(events => {
const onInteract = () => {
resolve();
events.forEach(type => window.removeEventListener(type, onInteract));
}
events.forEach(type => window.addEventListener(type, onInteract, {once: true, passive: true}))
})(['touchstart', 'mouseover', 'wheel', 'scroll', 'keydown'])
});
const onIntersect = (el) => {
return new Promise(resolve => {
const observer = new IntersectionObserver(entries => {
for (const entry of entries) {
if (entry.isIntersecting) {
observer.disconnect()
resolve();
}
}
}, {});
observer.observe(el);
});
}
function runComponent(el) {
hasAlpine.then(() => {
el.removeAttribute('x-ignore');
queueMicrotask(() => Alpine.initTree(el));
});
}
function initDeferredComponents() {
document.querySelectorAll('[x-data][x-defer]').forEach(el => {
el.setAttribute('x-ignore', '');
const deferUntil = (el.getAttribute('x-defer') || '').trim();
switch (deferUntil) {
case 'interact':
hasInteract.then(() => runComponent(el));
break;
case 'intersect':
onIntersect(el).then(() => runComponent(el))
break;
case 'idle':
window.requestIdleCallback
? window.requestIdleCallback(() => runComponent(el), {timeout: 4000})
: setTimeout(() => runComponent(el), 4000);
break;
case 'eager':
runComponent(el);
break;
default:
if (deferUntil.startsWith('event:') && deferUntil.length > 6) {
window.addEventListener(deferUntil.substring(6), () => runComponent(el), {once: true, passive: true});
}
}
});
}
window.addEventListener('alpine:init', initDeferredComponents, {once: true, passive: true});
})()
</script>
<script>
(() => {
// packages/collapse/src/index.js
function src_default(Alpine) {
Alpine.directive("collapse", collapse);
collapse.inline = (el, {
modifiers
}) => {
if (!modifiers.includes("min"))
return;
el._x_doShow = () => {};
el._x_doHide = () => {};
};
function collapse(el, {
modifiers
}) {
let duration = modifierValue(modifiers, "duration", 250) / 1e3;
let floor = modifierValue(modifiers, "min", 0);
let fullyHide = !modifiers.includes("min");
if (!el._x_isShown)
el.style.height = `${floor}px`;
if (!el._x_isShown && fullyHide)
el.hidden = true;
if (!el._x_isShown)
el.style.overflow = "hidden";
let setFunction = (el2, styles) => {
let revertFunction = Alpine.setStyles(el2, styles);
return styles.height ? () => {} : revertFunction;
};
let transitionStyles = {
transitionProperty: "height",
transitionDuration: `${duration}s`,
transitionTimingFunction: "cubic-bezier(0.4, 0.0, 0.2, 1)"
};
el._x_transition = {
in(before = () => {}, after = () => {}) {
if (fullyHide)
el.hidden = false;
if (fullyHide)
el.style.display = null;
let current = el.getBoundingClientRect().height;
el.style.height = "auto";
let full = el.getBoundingClientRect().height;
if (current === full) {
current = floor;
}
Alpine.transition(el, Alpine.setStyles, {
during: transitionStyles,
start: {
height: current + "px"
},
end: {
height: full + "px"
}
}, () => el._x_isShown = true, () => {
if (Math.abs(el.getBoundingClientRect().height - full) < 1) {
el.style.overflow = null;
}
});
},
out(before = () => {}, after = () => {}) {
let full = el.getBoundingClientRect().height;
Alpine.transition(el, setFunction, {
during: transitionStyles,
start: {
height: full + "px"
},
end: {
height: floor + "px"
}
}, () => el.style.overflow = "hidden", () => {
el._x_isShown = false;
if (el.style.height == `${floor}px` && fullyHide) {
el.style.display = "none";
el.hidden = true;
}
});
}
};
}
}
function modifierValue(modifiers, key, fallback) {
if (modifiers.indexOf(key) === -1)
return fallback;
const rawValue = modifiers[modifiers.indexOf(key) + 1];
if (!rawValue)
return fallback;
if (key === "duration") {
let match = rawValue.match(/([0-9]+)ms/);
if (match)
return match[1];
}
if (key === "min") {
let match = rawValue.match(/([0-9]+)px/);
if (match)
return match[1];
}
return rawValue;
}
// packages/collapse/builds/cdn.js
document.addEventListener("alpine:init", () => {
window.Alpine.plugin(src_default);
});
})();
</script>
<script>
// x-teleport implementation
(_ => {
document.addEventListener('DOMContentLoaded', event => {
// x-teleport available only for template
if (!Alpine.version.startsWith('2')) {
return;
}
const teleportDirective = (el, expression) => {
let target = document.querySelector(expression)
let clone = el.content.cloneNode(true).firstElementChild;
target.appendChild(clone);
setTimeout(() => {
target.querySelectorAll('[x-data]')
.forEach(el => Alpine.initializeComponent(el));
}, 0)
};
document.querySelectorAll('template').forEach(el => {
if (!el.hasAttribute('x-teleport')) {
return;
}
teleportDirective(el, el.getAttribute('x-teleport'));
});
document.querySelectorAll('[x-data]').forEach(el => {
if (el.hasAttribute('x-init')) {
return;
}
setTimeout(() => {
Alpine.initializeComponent(el);
}, 0);
});
});
})()
</script>
<script type="module"
src="https://www.lalashops.nl/static/version1754469272/frontend/FactorBlue/lalashops-hyva/nl_NL/Hyva_Theme/js/alpine3.min.js"
defer
crossorigin
></script>
<script>
'use strict';
function dispatchMessages(messages, hideAfter) {
const messagesEvent = new CustomEvent("messages-loaded", {
detail: {
messages: messages,
hideAfter: hideAfter
}
});
window.dispatchEvent(messagesEvent);
}
if (typeof hyva === 'undefined' || (!hyva.getBrowserStorage || !hyva.getCookie || !hyva.setCookie)) {
console.warn("Hyvä helpers are not loaded yet. Make sure they are included before this script");
}
(function( hyva, undefined ) {
hyva.initFormKey = () => {
const inputSelector = 'input[name="form_key"]',
formKey = hyva.getFormKey();
Array.from(document.querySelectorAll(inputSelector)).map(function (input) {
input.value = formKey
});
}
hyva.initMessages = () => {
try {
const messages = hyva.getCookie('mage-messages');
window.mageMessages = messages ? JSON.parse(decodeURIComponent(messages).replace(/\+/g, ' ')) : [];
dispatchMessages(window.mageMessages);
// empty `mage-messages` cookie
const skipSetDomain = true;
hyva.setCookie('mage-messages','', -1, skipSetDomain);
} catch (error) {
console.warn('Error parsing Cookie Messages:', error);
}
}
window.addEventListener('DOMContentLoaded', hyva.initFormKey);
hyva.alpineInitialized(hyva.initMessages)
}( window.hyva = window.hyva || {} ));
</script>
<script>
'use strict';
{
const private_content_key = 'mage-cache-storage';
const private_content_expire_key = 'mage-cache-timeout';
const private_content_version_key = 'private_content_version';
const section_data_ids_key = 'section_data_ids';
const mage_cache_session_id_key = 'mage-cache-sessid';
const last_visited_store_key = 'last_visited_store';
const ttl = 3600;
if (typeof hyva === 'undefined' || (!hyva.getBrowserStorage || !hyva.getCookie || !hyva.setCookie)) {
console.warn("Hyvä helpers are not loaded yet. Make sure they are included before this script");
}
function loadSectionData () {
const browserStorage = hyva.getBrowserStorage();
if (!browserStorage) {
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: "warning",
text: "Please enable LocalStorage in your browser."
}]
);
return;
}
try {
let isInvalid = false;
if (hyva.getCookie(last_visited_store_key) !== CURRENT_STORE_CODE) {
isInvalid = true;
}
hyva.setCookie(last_visited_store_key, CURRENT_STORE_CODE, false, false);
if (!hyva.getCookie(mage_cache_session_id_key)) {
isInvalid = true;
browserStorage.removeItem(private_content_key);
const skipSetDomain = true;
const days = false;
hyva.setCookie(mage_cache_session_id_key, true, days, skipSetDomain)
}
const cookieVersion = hyva.getCookie(private_content_version_key);
const storageVersion = browserStorage.getItem(private_content_version_key);
if (cookieVersion && !storageVersion || cookieVersion !== storageVersion) {
isInvalid = true;
}
const privateContentExpires = browserStorage.getItem(private_content_expire_key);
if (privateContentExpires && new Date(privateContentExpires) < new Date()) {
browserStorage.removeItem(private_content_key);
}
if (isInvalid && cookieVersion) {
fetchPrivateContent([]);
} else if (cookieVersion && storageVersion && cookieVersion === storageVersion) {
const privateContent = JSON.parse(browserStorage.getItem(private_content_key));
if (
privateContent &&
privateContentExpires &&
privateContent.cart &&
privateContent.customer
) {
dispatchPrivateContent(privateContent);
} else {
fetchPrivateContent([]);
}
} else {
if (document.getElementById('default-section-data')) {
const privateContent = JSON.parse(document.getElementById('default-section-data').innerText.trim());
dispatchPrivateContent(privateContent);
} else {
dispatchPrivateContent({});
}
}
} catch (error) {
console.warn('Error retrieving Private Content:', error);
}
}
hyva.alpineInitialized(loadSectionData)
window.addEventListener('reload-customer-section-data', loadSectionData);
function dispatchPrivateContent(data) {
const privateContentEvent = new CustomEvent("private-content-loaded", {
detail: {
data: data
}
});
window.dispatchEvent(privateContentEvent);
}
function fetchPrivateContent(sections) {
fetch(`${BASE_URL}customer/section/load/?sections=${encodeURIComponent(sections.join(','))}`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'X-Requested-With': 'XMLHttpRequest'
}
})
.then(response => response.json())
.then(
data => {
if (data) {
try {
const browserStorage = hyva.getBrowserStorage();
// merge new data preserving non-invalidated sections
const oldSectionData = JSON.parse(browserStorage.getItem(private_content_key) || '{}') || {};
if ((! data.cart || ! data.cart.cartId) && oldSectionData['checkout-data']) {
delete oldSectionData['checkout-data'];
}
const newSectionData = Object.assign(oldSectionData, data);
dispatchPrivateContent(newSectionData);
// don't persist messages, they've been dispatched already
if (newSectionData.messages && newSectionData.messages.messages ) {
newSectionData.messages.messages = [];
}
browserStorage.setItem(private_content_key, JSON.stringify(newSectionData));
const expiresAt = new Date(Date.now() + (ttl * 1000)).toISOString();
browserStorage.setItem(private_content_expire_key, expiresAt);
const newCookieVersion = hyva.getCookie(private_content_version_key);
browserStorage.setItem(private_content_version_key, newCookieVersion);
// We don't need the section_data_ids in Hyvä, but we store them for compatibility
// with Luma Fallback. Otherwise, not all sections are loaded in Luma Checkout
hyva.setCookie(
section_data_ids_key,
JSON.stringify(
Object.keys(data).reduce((sectionDataIds, sectionKey) => {
sectionDataIds[sectionKey] = data[sectionKey]['data_id'];
return sectionDataIds;
}, {})
),
false,
true
);
} catch (error) {
console.warn("Couldn't store privateContent", error);
}
}
}
);
}
}
</script>
<script>
(() => {
document.addEventListener('submit', event => event.target.action = event.target.action.replace('%25uenc%25', hyva.getUenc()));
})()
</script>
<script>
(events => {
const dispatchUserInteractionEvent = () => {
events.forEach(type => window.removeEventListener(type, dispatchUserInteractionEvent))
window.dispatchEvent(new Event('init-external-scripts'))
};
events.forEach(type => window.addEventListener(type, dispatchUserInteractionEvent, {once: true, passive: true}))
})(['touchstart', 'mouseover', 'wheel', 'scroll', 'keydown'])
</script>
<script>
function initCompareOnProductList() {
return {
addToCompare(productId) {
const formKey = hyva.getFormKey();
const postUrl = BASE_URL + 'catalog/product_compare/add/';
fetch(postUrl, {
"headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
},
"body": "form_key=" + formKey + "&product=" + productId + "&uenc=" + hyva.getUenc(),
"method": "POST",
"mode": "cors",
"credentials": "include"
}).then(function (response) {
if (response.redirected) {
window.location.href = response.url;
}
}).catch(function (error) {
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: "error",
text: error
}], 5000
);
});
}
};
}
</script>
<script>
function initWishlist() {
return {
addToWishlist(productId) {
const formKey = hyva.getFormKey();
const postUrl = BASE_URL + 'wishlist/index/add/';
fetch(postUrl, {
"headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
},
"body": "form_key=" + formKey + "&product=" + productId + "&uenc=" + hyva.getUenc(),
"method": "POST",
"mode": "cors",
"credentials": "include"
}).then(function (response) {
if (response.redirected) {
window.location.href = response.url;
} else if (response.ok) {
return response.json();
} else {
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: "warning",
text: "Could\u0020not\u0020add\u0020item\u0020to\u0020wishlist."
}], 5000
);
}
}).then(function (response) {
if (!response) { return }
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: (response.success) ? "success" : "error",
text: (response.success)
? "Product\u0020is\u0020toegevoegd\u0020aan\u0020uw\u0020verlanglijst."
: response.error_message
}], 5000
);
const reloadCustomerDataEvent = new CustomEvent("reload-customer-section-data");
window.dispatchEvent(reloadCustomerDataEvent);
}).catch(function (error) {
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: "error",
text: error
}], 5000
);
});
}
}
}
</script>
<script>
function initConfigurableOptions(productId, optionConfig) {
function findPathParam(key) {
const baseUrl = (BASE_URL.substring(0, 2) === '//' ? 'http:' : '') + BASE_URL;
const baseUrlParts = (new URL(baseUrl)).pathname.replace(/\/$/, '').split('/');
const pathParts = window.location.pathname.split('/').slice(baseUrlParts.length + 3);
for (let i = 0; i < pathParts.length; i += 2) {
if (pathParts[i] === key && pathParts.length > i) {
return pathParts[i + 1];
}
}
}
return {
optionConfig,
productId,
itemId: (new URLSearchParams(window.location.search)).get('id') || findPathParam('id'),
allowedAttributeOptions: [],
selectedValues: [],
init() {
this.findAllowedAttributeOptions();
this.$nextTick(() => {
if (typeof this.optionConfig.defaultValues === 'object') {
for (const [attributeId, value] of Object.entries(this.optionConfig.defaultValues)) {
this.changeOption(attributeId, value + '');
}
}
});
},
findSimpleIndex() {
this.productIndex = this.calculateSimpleIndexForPartialSelection(this.selectedValues);
},
calculateSimpleIndexForPartialSelection(selectedValues) {
if (selectedValues.length === 0) return 0;
let productIndexIds = Object.keys(this.optionConfig.index);
Object.keys(this.optionConfig.attributes).forEach((attribute) => {
const productsWithAttributeMatch = selectedValues[attribute]
? productIndexIds.filter((productIndex) => {
return this.optionConfig.index[productIndex][attribute] === this.selectedValues[attribute]
})
: [];
productIndexIds = productsWithAttributeMatch.length ? productsWithAttributeMatch : productIndexIds
})
return productIndexIds[0];
},
calculateSimpleIndexForFullSelection(selectedValues) {
const productIndexes = this.optionConfig.index;
return Object.keys(productIndexes).find(productIndex => {
const productCandidateOptions = productIndexes[productIndex];
for (const productOption in productCandidateOptions) {
if (
! selectedValues[productOption] ||
selectedValues[productOption] !== productCandidateOptions[productOption]
) {
return false;
}
}
return productIndex;
});
},
productIndex: 0,
findAllowedAttributeOptions() {
this.allowedAttributeOptions = this.calculateAllowedAttributeOptions(this.selectedValues);
},
calculateAllowedAttributeOptions(selectedValues) {
const allAttributes = this.optionConfig.attributes;
const allAttributesSorted = Object.values(allAttributes).sort((a,b) => {
return a.position - b.position
});
const newAllowedAttributeOptions = [];
allAttributesSorted.forEach(attribute => {
const selectionWithoutAttr = Object.assign({}, this.removeAttrFromSelection(selectedValues, attribute.id));
const availableIndexes = this.calculateAvailableProductIndexes(selectionWithoutAttr);
newAllowedAttributeOptions[attribute.id] = allAttributes[attribute.id].options.filter(option => {
return !!option.products.find(product => {
return availableIndexes.includes(product);
})
});
});
return newAllowedAttributeOptions;
},
calculateAvailableProductIndexes(selectedOptions) {
if (Object.keys(selectedOptions).length === 0) {
if (Object.values(this.optionConfig.salable || {}).length) {
return [].concat.apply([], [].concat.apply([], Object.values(this.optionConfig.salable).map(Object.values))).filter((x, i, a) => a.indexOf(x) === i)
}
return Object.keys(this.optionConfig.index);
}
const selectedIds = Object.keys(selectedOptions);
if (Object.values(this.optionConfig.salable || {}).length) {
const selectedOptionIndexes = selectedIds.map(attrId => {
const optionValue = selectedOptions[attrId];
return this.optionConfig.salable[attrId] && this.optionConfig.salable[attrId][optionValue] || []
})
return selectedOptionIndexes.reduce((acc, optionIndexes) => {
return acc.filter(index => optionIndexes.includes(index));
});
} else {
const productIndexes = this.optionConfig.index;
return Object.keys(productIndexes).filter(index => {
for (const attrId of selectedIds) {
if (productIndexes[index][attrId] !== `${selectedOptions[attrId]}`) return false
}
return true
});
}
},
findAttributeByOptionId(optionId) {
for (const attributeId in this.optionConfig.attributes) {
const attributeOptions = this.optionConfig.attributes[attributeId].options || [];
if (attributeOptions.find(option => option.id === optionId)) {
return attributeId;
}
}
},
getAllowedAttributeOptions(attributeId) {
return this.allowedAttributeOptions[attributeId] || []
},
getProductIdsForOption(option) {
const attributeId = this.findAttributeByOptionId(option.id);
const allOptions = this.optionConfig.attributes[attributeId];
const opt = (allOptions && allOptions.options || []).find(o => o.id === option.id);
return opt && opt.products
? opt.products
: [];
},
findProductIdsForPartialSelection(optionSelection) {
const candidateProducts = Object.values(optionSelection).reduce((candidates, optionId) => {
const newCandidates = this.getProductIdsForOption({id: optionId});
return candidates === null
? newCandidates
: candidates.filter(productId => newCandidates.includes(productId));
}, null);
return candidateProducts || [];
},
findCheapestProductForPartialSelection(optionSelection) {
const candidateProducts = this.findProductIdsForPartialSelection(optionSelection);
return candidateProducts.reduce((cheapest, simpleIdx) => {
// in the first iteration we start with simpleIdx as the currently cheapest product
if (! this.optionConfig.optionPrices[cheapest]) return simpleIdx;
const knownCheapestPrice = this.optionConfig.optionPrices[cheapest].finalPrice.amount;
return knownCheapestPrice > this.optionConfig.optionPrices[simpleIdx].finalPrice.amount
? simpleIdx
: cheapest;
}, 0)
},
findProductIdToUseForOptionPrice(option) {
// try to find a product for a complete selection
const attributeId = this.findAttributeByOptionId(option.id);
const optionSelection = Object.assign({}, this.selectedValues, {[attributeId]: option.id});
const matchingSimpleIndex = this.calculateSimpleIndexForFullSelection(optionSelection);
// if there is no complete selection, use the cheapest product for the option
return matchingSimpleIndex || this.findCheapestProductForPartialSelection(optionSelection);
},
getAttributeOptionLabel(option) {
const optionProduct = this.findProductIdToUseForOptionPrice(option);
if ((! optionProduct) || (optionProduct === this.productIndex)) {
return option.label;
}
const currentPrice = this.getOptionPriceAdjustmentBasePrice();
if (this.optionConfig.optionPrices[optionProduct]) {
const optionPrice = this.optionConfig.optionPrices[optionProduct].finalPrice.amount;
if (optionPrice !== currentPrice){
return option.label + ' ' + hyva.formatPrice(optionPrice - currentPrice, true);
}
}
return option.label;
},
getOptionPriceAdjustmentBasePrice() {
if (this.optionConfig.optionPrices[this.productIndex]) {
return this.optionConfig.optionPrices[this.productIndex].finalPrice.amount
}
const cheapestForSelection = this.findCheapestProductForPartialSelection(this.selectedValues);
return this.optionConfig.optionPrices[cheapestForSelection]
? this.optionConfig.optionPrices[cheapestForSelection].finalPrice.amount
: this.optionConfig.prices.finalPrice.amount; // default price if no option selection
},
clearOptionIfActive(optionId, value) {
if (this.selectedValues[optionId] === value) {
this.blurLabel()
this.changeOption(optionId, '')
}
},
removeAttrFromSelection(selectedValues, attributeId) {
attributeId = parseInt(attributeId);
return selectedValues.reduce((newSelection, val, attr) => {
if (attr !== attributeId) {
newSelection[attr] = val;
}
return newSelection;
}, []);
},
changeOption(attributeId, value) {
if (value === '') {
this.selectedValues = this.removeAttrFromSelection(this.selectedValues, attributeId)
} else if (value && this.getAllowedAttributeOptions(attributeId).find(option => option.id === value)) {
this.selectedValues[attributeId] = value;
}
this.findSimpleIndex();
this.findAllowedAttributeOptions();
this.updatePrices();
this.updateGallery();
window.dispatchEvent(
new CustomEvent(
'configurable-selection-changed',
{
detail: {
productId: this.productId,
optionId: attributeId,
value: value,
productIndex: this.productIndex,
selectedValues: this.selectedValues,
candidates: this.findProductIdsForPartialSelection(this.selectedValues),
}
}
)
);
},
calculateIsMinimalPrice() {
return (
this.selectedValues.filter(value => !!value).length <
Object.keys(this.optionConfig.attributes).length
);
},
updatePrices() {
const value = this.productIndex ?
this.optionConfig.optionPrices[this.productIndex] :
this.optionConfig.prices;
window.dispatchEvent(
new CustomEvent(
"update-prices-" + this.productId,
{
detail: Object.assign(
value,
{ isMinimalPrice: this.calculateIsMinimalPrice() }
)
}
)
);
},
updateGallery () {
if (this.productIndex) {
const images = this.optionConfig.images[this.productIndex];
images && window.dispatchEvent(new CustomEvent(
"update-gallery",
{ detail: this.sortImagesByPosition(images) }
));
} else {
window.dispatchEvent(new Event("reset-gallery"));
}
},
sortImagesByPosition(images) {
return images.sort((x, y) => {
return x.position === y.position ? 0 : (parseInt(x.position) > parseInt(y.position) ? 1 : -1)
});
},
onGetCartData(data) {
},
preselectCartItems(data) {
// pre-select options based on cart data for current (quote) itemId
const cart = data && data.cart;
if (cart && cart.items) {
const cartItem = cart.items.find((item) => {
return (
item.item_id === this.itemId
&& item.product_id === this.productId
)
});
if (cartItem && cartItem.options && cartItem.options.length) {
cartItem.options.map(option => {
this.changeOption(option.option_id, option.option_value);
})
}
}
},
preselectQuerystringItems() {
// pre-select option like ?size=167
const urlQueryParams = new URLSearchParams(window.location.search.replace('?',''));
this.preselectItemsBasedOnLocation(attribute => urlQueryParams.get(attribute.code));
},
preselectLocationHashItems() {
// pre-select option like #144=167
const urlHashParams = new URLSearchParams(window.location.hash.replace('#',''));
this.preselectItemsBasedOnLocation(attribute => urlHashParams.get(attribute.id));
},
preselectItemsBasedOnLocation(getLocationValue) {
Object.values(this.optionConfig.attributes).map(attribute => {
this.changeOption(attribute.id, getLocationValue(attribute))
});
}
}
}
</script>
<script>
function initSwatchOptions(swatchConfig) {
return {
swatchConfig,
getAttributeSwatchData(attributeId) {
const swatchConfig = Object.assign({}, this.swatchConfig[attributeId]);
swatchConfig['details'] = JSON.parse(swatchConfig['additional_data']);
return swatchConfig;
},
getAllAttributeOptions(attributeId) {
return (
this.optionConfig.attributes[attributeId] &&
this.optionConfig.attributes[attributeId].options
) || []
},
optionIsActive(attributeId, optionId) {
// return true if a product with this option is in stock
return !!this.getAllowedAttributeOptions(attributeId).find(
option => option.id === optionId
)
},
optionIsEnabled(attributeId, optionId) {
// return true if a product with this option is enabled
for (const productId in this.optionConfig.index) {
if (this.optionConfig.index[productId][attributeId] === optionId) {
return true;
}
}
return false;
},
mapSwatchTypeNumberToTypeCode(typeNumber) {
switch ("" + typeNumber) {
case "1":
return "color"
case "2":
return "image"
case "3":
return "empty"
case "0":
default:
return "text"
}
},
getTypeOfFirstOption(attributeId) {
for (const optionId in this.swatchConfig[attributeId]) {
const option = this.swatchConfig[attributeId][optionId];
if (typeof option.type !== 'undefined') {
return this.mapSwatchTypeNumberToTypeCode(option.type);
}
}
},
getVisualSwatchType(attributeId, targetOptionId) {
// If a type configuration is present for the given option id, use it
const config = this.swatchConfig[attributeId];
if (config[targetOptionId] && typeof config[targetOptionId].type !== 'undefined') {
return this.mapSwatchTypeNumberToTypeCode(config[targetOptionId].type);
}
// Otherwise - if no config is present for the target option - use the type of the first option
// with a type property from the attribute, thus assuming its the same type as the target option.
// (This edge case condition can occur on single swatch products if some options are not salable)
return this.getTypeOfFirstOption(attributeId);
},
getSwatchType(attributeId, optionId) {
// Deserialize the attribute details the first time they are used
if (this.swatchConfig[attributeId] && ! this.swatchConfig[attributeId].details) {
this.swatchConfig[attributeId] = this.getAttributeSwatchData(attributeId);
}
const type = this.swatchConfig[attributeId] &&
this.swatchConfig[attributeId].details &&
this.swatchConfig[attributeId].details.swatch_input_type ||
"empty";
return type === 'visual' ? this.getVisualSwatchType(attributeId, optionId) : type;
},
isTextSwatch(attributeId, optionId) {
return this.getSwatchType(attributeId, optionId) === 'text';
},
isVisualSwatch(attributeId, optionId) {
const type = this.getSwatchType(attributeId, optionId);
return ['image', 'color'].includes(type);
},
getSwatchBackgroundStyle(attributeId, optionId) {
const config = this.getSwatchConfig(attributeId, optionId);
const type = this.getSwatchType(attributeId, optionId);
if (type === "color") {
return 'background-color:' + config.value;
} else if (type === "image") {
return "background: #ffffff url('" + config.value + "') no-repeat center";
} else {
return '';
}
},
getSwatchText(attributeId, optionId) {
const config = this.getSwatchConfig(attributeId, optionId);
return config.label || config.value || this.getOptionLabelFromOptionConfig(attributeId, optionId);
},
getOptionLabelFromOptionConfig(attributeId, optionId) {
// Fallback if no value is present in swatchConfig data
// Reference issue https://gitlab.hyva.io/hyva-themes/magento2-default-theme/-/issues/190
const option = this.getAllAttributeOptions(attributeId).filter(option => option.id === optionId);
return option && option[0] && option[0].label ||'';
},
getSwatchConfig(attributeId, optionId) {
return this.swatchConfig[attributeId] && this.swatchConfig[attributeId][optionId]
? this.swatchConfig[attributeId][optionId]
: false;
},
activeTooltipItem: false,
tooltipPositionElement: false,
isTooltipVisible() {
return this.activeTooltipItem &&
this.getSwatchConfig(
this.activeTooltipItem.attribute,
this.activeTooltipItem.item
);
},
isFirstItemCol() {
return this.activeTooltipItem.index === 0;
},
getTooltipImageStyle(attributeId, optionId) {
const config = this.getSwatchConfig(attributeId, optionId);
const type = this.getSwatchType(attributeId, optionId);
if (type === "color") {
return 'background-color:' + config.value + '; width: 110px; height: 90px;';
} else if (type === "image") {
return "background: #ffffff url('" + config.thumb +
"') center center no-repeat; width: 110px; height: 90px;";
} else {
return 'display:none';
}
},
getTooltipPosition() {
return this.tooltipPositionElement ?
`top: ${this.tooltipPositionElement.offsetTop}px;` +
`left: ${
this.tooltipPositionElement.offsetLeft - (
this.tooltipPositionElement.closest('.snap') &&
this.tooltipPositionElement.closest('.snap').scrollLeft ||
0
)
}px;` : ''
},
getTooltipLabel() {
return this.getSwatchConfig(this.activeTooltipItem.attribute, this.activeTooltipItem.item).label
},
focusedLabel: false,
focusLabel(optionId) {
this.focusedLabel = optionId;
},
blurLabel() {
this.focusedLabel = false;
},
showSwatches: false,
initShowSwatchesIntersect() {
if ('IntersectionObserver' in window && !window.scrollY) {
let io = new IntersectionObserver(
entries => {
entries.map(entry => {
if (entry.isIntersecting) {
this.showSwatches = true;
io.unobserve(this.$root);
}
})
}
);
io.observe(this.$root);
} else {
this.showSwatches = true
}
}
}
}
</script>
<script>
'use strict';
(function () {
const modals = [];
const excludedFromFocusTrapping = new Set();
function trapFocusInNextModalWithOverlay() {
for (let idx = modals.length -1; idx >= 0; idx--) {
const nextOnStack = modals[idx];
const nextDialogElement = nextOnStack.instance.$refs[nextOnStack.name];
if (! isOverlayDisabled(nextDialogElement)) {
hyva.trapFocus(nextDialogElement);
break;
}
}
}
function focusables(dialogElement) {
const selector = 'button, [href], input, textarea, select, details, [tabindex]:not([tabindex="-1"])';
return Array.from(dialogElement.querySelectorAll(selector))
.filter(el => !el.hasAttribute('disabled'));
}
function firstVisible(elements) {
const a = Array.from(elements);
for (let i = 0; i < a.length; i++) {
if (a[i].offsetWidth || a[i].offsetHeight || a[i].getClientRects().length) return a[i];
}
return null;
}
function isInViewport(element) {
const rect = element && element.getBoundingClientRect();
return rect &&
rect.top >= 0 &&
rect.left >= 0 &&
rect.right <= window.innerWidth &&
rect.bottom <= window.innerHeight;
}
function setFocusAfterTransition(dialogElement, duration) {
const nested = Array.from(dialogElement.querySelectorAll('[role="dialog"]'));
const candidates = Array.from(dialogElement.querySelectorAll('[x-focus-first]'));
next: for (let candidate of candidates) {
for (let child of nested) {
if (child.contains(candidate)) continue next;
}
setTimeout(() => candidate.focus(), 50);
break;
}
window.setTimeout(() => {
const focusElement = firstVisible(dialogElement.querySelectorAll('[x-focus-first]')) ||
focusables(dialogElement)[0] ||
null;
focusElement && isInViewport(focusElement) && focusElement.focus();
}, Math.max(1, duration));
}
function determineTrigger($refs, dialog, trigger) {
if (typeof trigger === 'undefined' && typeof dialog === 'object' && dialog.target instanceof HTMLElement) {
return dialog.target;
}
if (typeof dialog === 'string' && typeof trigger === 'object' && trigger.target instanceof HTMLElement) {
return trigger.target;
}
if (typeof trigger === 'string') {
try {
return $refs[trigger] || document.querySelector(trigger)
} catch (e) {}
}
if (trigger instanceof Element) {
return trigger;
}
return null;
}
function isOverlayDisabled(dialog) {
return dialog && dialog.hasAttribute('x-no-overlay')
}
function areRemainingModalsWithoutOverlay(modals)
{
const overflowDisabled = modals.map(modal => modal.instance.$refs[modal.name]).filter(isOverlayDisabled);
return overflowDisabled.length === modals.length;
}
window.hyva.modal = function(options) {
const config = Object.assign({
dialog: 'dialog', duration: 300, transitionEnter: 'transition ease-out duration-300',
transitionEnterStart: 'opacity-0',
transitionEnterEnd: 'opacity-100',
transitionLeave: 'transition ease-in duration-300',
transitionLeaveStart: 'opacity-100',
transitionLeaveEnd: 'opacity-0',
}, options);
let lastHide = 0;
return {
opened: {},
show(dialog, trigger) {
const focusTargetAfterHide = determineTrigger(this.$refs, dialog, trigger);
const name = typeof dialog === 'string' ? dialog : config.dialog;
const dialogElement = this.$refs[name];
if (! dialogElement) {
return;
}
const useOverlay = ! dialogElement.hasAttribute('x-no-overlay');
dialogElement.scrollTop = 0;
if (this.opened[name]) {
return;
}
if (focusTargetAfterHide) {
focusTargetAfterHide.setAttribute('aria-expanded', 'true');
}
this.opened[name] = true;
useOverlay && this.$nextTick(() => hyva.trapFocus(dialogElement));
setFocusAfterTransition(dialogElement, config.duration);
const frame = {name, instance: this, focusTarget: focusTargetAfterHide, time: Date.now()};
modals.push(frame);
if (useOverlay) {
document.body.classList.add('overflow-hidden');
}
return new Promise(resolve => frame.resolve = resolve);
},
cancel() {
this.hide(false);
},
ok() {
this.hide(true);
},
hide(value) {
if (Date.now() - lastHide < config.duration) {
return;
}
lastHide = Date.now();
const modal = modals.pop() || {};
const name = modal.name;
this.opened[name] = false;
hyva.releaseFocus(modal.instance.$refs[modal.name])
trapFocusInNextModalWithOverlay();
const nextFocusAfterHide = modal.focusTarget;
nextFocusAfterHide && setTimeout(() => {
nextFocusAfterHide.setAttribute('aria-expanded', 'false');
nextFocusAfterHide.focus()
}, config.duration);
if (modals.length === 0 || areRemainingModalsWithoutOverlay(modals)) {
document.body.classList.remove('overflow-hidden');
}
modal.resolve(value);
},
overlay(dialog) {
const name = typeof dialog === 'string' ? dialog : config.dialog;
return {
['x-show']() {
return this.opened[name]
},
['x-transition:enter']: config.transitionEnter,
['x-transition:enter-start']: config.transitionEnterStart,
['x-transition:enter-end']: config.transitionEnterEnd,
['x-transition:leave']: config.transitionLeave,
['x-transition:leave-start']: config.transitionLeaveStart,
['x-transition:leave-end']: config.transitionLeaveEnd,
['@hyva-modal-show.window'](event) {
event.detail && event.detail.dialog === name && this.show(name, event.detail.focusAfterHide)
}
};
}
};
}
window.hyva.modal.peek = () => modals.length > 0 && modals[modals.length -1]
window.hyva.modal.pop = function () {
if (modals.length > 0) {
const modal = modals[modals.length -1];
modal.instance.hide();
}
}
window.hyva.modal.excludeSelectorsFromFocusTrap = function (selectors) {
typeof selectors === 'string' || selectors instanceof String
? excludedFromFocusTrapping.add(selectors)
: selectors.map(selector => excludedFromFocusTrapping.add(selector));
}
window.hyva.modal.eventListeners = {
keydown: event => {
if (event.key === 'Escape') {
window.hyva.modal.pop();
}
},
click: event => {
if (modals.length > 0) {
const modal = modals[modals.length -1];
const dialog = modal.instance.$refs[modal.name];
if (modal.time + 50 < Date.now() && // if last click processing is more than 50ms ago
! isOverlayDisabled(dialog) && // if dialog has overlay
! dialog.contains(event.target)) { // if click is outside of dialog
modal.instance.hide();
}
}
}
};
document.addEventListener('keydown', window.hyva.modal.eventListeners.keydown);
document.addEventListener('click', window.hyva.modal.eventListeners.click);
})();
</script>
<script>
'use strict';
function initParentContainerProcessor() {
const selectors = {
labelContainer: '.amasty-label-container',
galleryImg: '#gallery img:not(.amasty-label-image)'
}
return {
/**
* @param {AmlabelComponent} label
* @return {void}
*/
process: function (label) {
this.moveLabelToParent(label);
this.setParentStyles(label);
},
/**
* @param {AmlabelComponent} label
* @return {void}
*/
moveLabelToParent: function (label) {
const newParent = this.getNewParent(label);
if (!newParent) {
return;
}
const wrapperElement = newParent.querySelector(label.wrapperClass);
label.parent = newParent;
// if same wrapper already exists - move label there
if (wrapperElement && !wrapperElement.isSameNode(label.element)) {
this.insertLabelByPriority(label, wrapperElement);
} else {
newParent.prepend(label.element);
}
},
/**
* @param {AmlabelComponent} label
* @return {HTMLElement|null}
*/
getNewParent: function (label) {
// move label to container from settings
let newParent = label.element.closest(label.config.path)
|| this.findPreviousNodeExcludingScriptsAndDifferentLabels(label.element)?.querySelector(label.config.path)
|| label.parent.querySelector(label.config.path);
// Try to find default gallery container on product page if none of the config selectors found
if (!newParent && label.config.move !== 1 && label.config.mode === 'prod') {
newParent = document.querySelector(selectors.galleryImg)?.parentElement;
}
return newParent;
},
/**
* @param {HTMLElement} element
* @return {HTMLElement|null}
*/
findPreviousNodeExcludingScriptsAndDifferentLabels: function (element) {
const previousElement = element?.previousElementSibling;
if (!previousElement) {
return null;
}
if (previousElement?.tagName !== 'SCRIPT'
&& !previousElement?.className?.includes?.('amlabel-position-wrapper')
) {
return previousElement;
}
return this.findPreviousNodeExcludingScriptsAndDifferentLabels(previousElement);
},
/**
* @param {AmlabelComponent} label
* @param {HTMLElement} wrapperElement
* @return {void}
*/
insertLabelByPriority: function (label, wrapperElement) {
const labelContainers = wrapperElement.querySelectorAll(selectors.labelContainer);
const currentLabelOrder = label.labelContainer.dataset.amlabelOrder;
let insertAfterContainer = null;
// find the label behind which we want to insert current one by priority
labelContainers.forEach(labelContainer => {
if (labelContainer.dataset.amlabelOrder < currentLabelOrder) {
insertAfterContainer = labelContainer;
}
});
insertAfterContainer === null
? wrapperElement.prepend(label.labelContainer)
: insertAfterContainer.after(label.labelContainer);
label.element.remove();
label.element = wrapperElement;
},
/**
* @param {AmlabelComponent} label
* @return {void}
*/
setParentStyles: function (label) {
/* required for child position absolute */
!(label.parent.style.position === 'absolute') && (label.parent.style.position = 'relative');
!label.parent.style.width && label.parent.classList.add('w-fit-content');
!label.parent.style.marginLeft && label.parent.classList.add('ml-auto');
!label.parent.style.marginRight && label.parent.classList.add('mr-auto');
},
}
}
</script>
<script>
'use strict';
function initLabelItemProcessor() {
/**
* @typedef {Object} AmlabelComponent
*
* @property {HTMLElement} element Label wrapper element
* @property {HTMLElement} parent Element where label should be placed
* @property {boolean} initialized Is label initialized
* @property {string} wrapperClass Dynamic class for label wrapper to place multiple labels properly by position
* @property {HTMLElement} labelContainer Container for label text image and tooltip
* @property {Config} config Label Configuration
* @property {Object} parentContainerProcessor
* @property {Object} labelItemProcessor
*/
/**
* @typedef {Object} AmLabelConfig
*
* @property {0|1} alignment Labels Alignment config value (0 - Horizontal| 1 - Vertical)
* @property {number} label Label Id
* @property {number} margin Margin between labels config value
* @property {('cat'|'prod')} mode Label mode
* @property {number} move
* @property {number} order Label order
* @property {string} path The css selector to which label should place
* @property {string} position Label position
* @property {string} product Product Id
* @property {string} redirect_url
* @property {string} size Label size
* @property {{
* backgroundColor: string,
* color: string,
* content: string,
* status: 1|2|3
* }} tooltip
*/
return {
/**
* @param {AmlabelComponent} label
* @return {void}
*/
process: function(label) {
this.setLabelSize(label);
this.setLinkProps(label);
},
/**
* @param {AmlabelComponent} label
* @return {void}
*/
setLabelSize: function (label) {
if (!label.config.size) {
return;
}
label.labelContainer.style.width = label.parent.offsetWidth * label.config.size / 100 + 'px';
},
/**
*
* @param {Object} $event
* @param {HTMLElement} tooltipNode
*/
placeTooltip: function($event, tooltipNode) {
const labelNode = $event.target;
const labelNodeRect = labelNode.getBoundingClientRect();
tooltipNode.style.bottom = (window.innerHeight - labelNodeRect.top) + 'px';
tooltipNode.style.left = (labelNodeRect.left + labelNode.offsetWidth / 2 ) + 'px';
},
/**
* @param {AmlabelComponent} label
* @return {void}
*/
setLinkProps: function (label) {
!!label.config.redirect_url && label.labelContainer.classList.add('-link', 'cursor-pointer');
},
/**
* @param {Object} $event Click event
* @param {string} redirectUrl
*/
openLink: function($event, redirectUrl) {
if (redirectUrl.length === 0) {
return;
}
$event.preventDefault();
window.open(redirectUrl, '_blank');
}
}
}
</script>
<script>
(function () {
'use strict';
const observedEvent = 'amlabel-swatch-product-changed';
const selectors = {
swatchOptions: 'div[x-data^=initConfigurable][x-data*=Options]',
addToCartFormOnListing: 'form.product_addtocart_form',
galleryImage: '#gallery img:not(.amasty-label-image)',
labelWrapper: '.amlabel-position-wrapper'
}
/**
* @return {void}
*/
const injectLabelObserver = function () {
const swatches = document.querySelectorAll(selectors.swatchOptions);
swatches.forEach(swatch => {
const isListing = !!swatch.closest(selectors.addToCartFormOnListing);
const injectedDispatch = `$dispatch('${observedEvent}', `
+ `{productIndex: productIndex, element: $el, optionConfig: optionConfig, isListing: ${isListing ? 1 : 0}})`;
let mutatedInitAttribute = swatch.getAttribute('x-init');
mutatedInitAttribute += `; $watch('productIndex', (productIndex) => { ${injectedDispatch} });`;
swatch.setAttribute('x-init', mutatedInitAttribute);
});
}
/**
* @param {{
* productIndex: number,
* element: HTMLElement,
* optionConfig: Object,
* isListing: 0|1
* }} payload
* @return {void}
*/
const updateLabel = function ({detail: payload}) {
const {productIndex, element, optionConfig, isListing} = payload;
if (!productIndex) {
return;
}
const reloadUrl = optionConfig.label_reload;
const headers = {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
};
const body = new URLSearchParams({
product_ids: productIndex,
in_product_list: isListing
});
const labelContainerSelector = isListing ? optionConfig.label_category : optionConfig.label_product;
fetch(`${reloadUrl}?${body.toString()}`, {headers: headers, method: 'GET'}).then((response) => {
if (response.ok) {
return response.json();
}
}).then((result) => {
const labelHtml = result.labels && result.labels[productIndex];
let labelContainer = findClosest(element, labelContainerSelector);
// Try to find default gallery container on product page if none of the config selectors found
if (labelContainer === null && isListing === 0) {
labelContainer = document.querySelector(selectors.galleryImage)?.parentElement;
}
if (!!labelContainer) {
!!labelHtml ? replaceLabels(labelContainer, labelHtml) : clearLabelWrapper(labelContainer);
}
}).catch((error) => {
typeof window.dispatchMessages !== "undefined" && window.dispatchMessages(
[{
type: 'error',
text: error
}],
5000
);
});
}
/**
* We use approach from hyva.replaceDomElement method to replace labels and init components
*
* @param {HTMLElement} labelContainer
* @param {string} labelHtml
* @return {void}
*/
function replaceLabels(labelContainer, labelHtml) {
const parser = new DOMParser();
const doc = parser.parseFromString(labelHtml, 'text/html');
const nodes = doc.querySelectorAll(selectors.labelWrapper);
if (!nodes) {
return;
}
clearLabelWrapper(labelContainer);
// Extract all the script tags from the new content.
// Script tags won't execute when inserted into a dom-element directly,
// therefore we need to inject them to the head of the document.
const tmpScripts = doc.getElementsByTagName('script');
if (tmpScripts.length > 0) {
// Push all script tags into an array
// (to prevent dom manipulation while iterating over dom nodes)
const scripts = [...tmpScripts];
// Iterate over all script tags and duplicate+inject each into the head
scripts.forEach(script => {
let scriptNode = document.createElement('script');
scriptNode.innerHTML = script.innerHTML;
document.head.appendChild(scriptNode);
// Remove the original (non-executing) node from the page
script.parentNode.removeChild(script);
});
}
labelContainer.append(...nodes);
}
/**
* @param {HTMLElement} labelContainer
* @return {void}
*/
function clearLabelWrapper(labelContainer) {
labelContainer.querySelectorAll(selectors.labelWrapper).forEach(wrapper => wrapper.remove());
}
/**
* @param {HTMLElement} currentElement
* @param {string} selector
* @return {HTMLElement|null}
*/
function findClosest(currentElement, selector) {
// We need to limit parent searches to prevent labels from being associated with the wrong product.
const maxDepth = 3;
let counter = 0;
let closest = null;
while (currentElement.parentNode && closest === null && counter < maxDepth) {
++counter;
currentElement = currentElement.parentNode;
closest = currentElement.querySelector(selector);
}
return closest;
}
injectLabelObserver();
window.addEventListener(observedEvent, updateLabel);
})();
</script>
<script>
(function () {
'use strict';
const selectors = {
body: '.catalog-product-view',
productItem: 'product-item'
}
window.addEventListener('alpine:init', () => {
Alpine.directive('amintersect', (el, { expression }, { evaluate, cleanup }) => {
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
evaluate(expression);
observer.disconnect();
}
})
}, { threshold: 0.5 });
observer.observe(getElement());
cleanup(() => {
observer.disconnect()
});
function getElement() {
return !!document.querySelector(selectors.body) ? el.parentNode : getCategoryProductBlock(el);
}
function getCategoryProductBlock(el) {
if (el.previousElementSibling === null) {
return el;
}
if (!el.previousElementSibling.classList.contains(selectors.productItem)) {
return getCategoryProductBlock(el.previousElementSibling);
}
return el.previousElementSibling;
}
});
});
})();
</script>
<script type="application/json" id="default-section-data">
{"messages":[],"customer":[],"compare-products":[],"last-ordered-items":[],"cart":[],"directory-data":{"BE":{"name":"Belgi\u00eb"},"CH":{"name":"Zwitserland","regions":{"104":{"code":"AG","name":"Aargau"},"106":{"code":"AR","name":"Appenzell Ausserrhoden"},"105":{"code":"AI","name":"Appenzell Innerrhoden"},"108":{"code":"BL","name":"Basel-Landschaft"},"109":{"code":"BS","name":"Basel-Stadt"},"107":{"code":"BE","name":"Bern"},"110":{"code":"FR","name":"Friburg"},"111":{"code":"GE","name":"Geneva"},"112":{"code":"GL","name":"Glarus"},"113":{"code":"GR","name":"Graub\u00fcnden"},"114":{"code":"JU","name":"Jura"},"115":{"code":"LU","name":"Lucerne"},"116":{"code":"NE","name":"Neuch\u00e2tel"},"117":{"code":"NW","name":"Nidwalden"},"118":{"code":"OW","name":"Obwalden"},"120":{"code":"SH","name":"Schaffhausen"},"122":{"code":"SZ","name":"Schwyz"},"121":{"code":"SO","name":"Solothurn"},"119":{"code":"SG","name":"St. Gallen"},"123":{"code":"TG","name":"Thurgau"},"124":{"code":"TI","name":"Ticino"},"125":{"code":"UR","name":"Uri"},"126":{"code":"VD","name":"Vaud"},"127":{"code":"VS","name":"Wallis"},"128":{"code":"ZG","name":"Zug"},"129":{"code":"ZH","name":"Z\u00fcrich"}}},"DE":{"name":"Duitsland","regions":{"80":{"code":"BAW","name":"Baden-W\u00fcrttemberg"},"81":{"code":"BAY","name":"Bayern"},"82":{"code":"BER","name":"Berlin"},"83":{"code":"BRG","name":"Brandenburg"},"84":{"code":"BRE","name":"Bremen"},"85":{"code":"HAM","name":"Hamburg"},"86":{"code":"HES","name":"Hessen"},"87":{"code":"MEC","name":"Mecklenburg-Vorpommern"},"79":{"code":"NDS","name":"Niedersachsen"},"88":{"code":"NRW","name":"Nordrhein-Westfalen"},"89":{"code":"RHE","name":"Rheinland-Pfalz"},"90":{"code":"SAR","name":"Saarland"},"91":{"code":"SAS","name":"Sachsen"},"92":{"code":"SAC","name":"Sachsen-Anhalt"},"93":{"code":"SCN","name":"Schleswig-Holstein"},"94":{"code":"THE","name":"Th\u00fcringen"}}},"DK":{"name":"Denemarken","regions":{"581":{"code":"DK-84","name":"Hovedstaden"},"582":{"code":"DK-82","name":"Midtjylland"},"583":{"code":"DK-81","name":"Nordjylland"},"584":{"code":"DK-85","name":"Sj\u00e6lland"},"585":{"code":"DK-83","name":"Syddanmark"}}},"ES":{"name":"Spanje","regions":{"130":{"code":"A Coru\u0441a","name":"A Coru\u00f1a"},"131":{"code":"Alava","name":"Alava"},"132":{"code":"Albacete","name":"Albacete"},"133":{"code":"Alicante","name":"Alicante"},"134":{"code":"Almeria","name":"Almeria"},"135":{"code":"Asturias","name":"Asturias"},"136":{"code":"Avila","name":"Avila"},"137":{"code":"Badajoz","name":"Badajoz"},"138":{"code":"Baleares","name":"Baleares"},"139":{"code":"Barcelona","name":"Barcelona"},"140":{"code":"Burgos","name":"Burgos"},"141":{"code":"Caceres","name":"Caceres"},"142":{"code":"Cadiz","name":"Cadiz"},"143":{"code":"Cantabria","name":"Cantabria"},"144":{"code":"Castellon","name":"Castellon"},"145":{"code":"Ceuta","name":"Ceuta"},"146":{"code":"Ciudad Real","name":"Ciudad Real"},"147":{"code":"Cordoba","name":"Cordoba"},"148":{"code":"Cuenca","name":"Cuenca"},"149":{"code":"Girona","name":"Girona"},"150":{"code":"Granada","name":"Granada"},"151":{"code":"Guadalajara","name":"Guadalajara"},"152":{"code":"Guipuzcoa","name":"Guipuzcoa"},"153":{"code":"Huelva","name":"Huelva"},"154":{"code":"Huesca","name":"Huesca"},"155":{"code":"Jaen","name":"Jaen"},"156":{"code":"La Rioja","name":"La Rioja"},"157":{"code":"Las Palmas","name":"Las Palmas"},"158":{"code":"Leon","name":"Leon"},"159":{"code":"Lleida","name":"Lleida"},"160":{"code":"Lugo","name":"Lugo"},"161":{"code":"Madrid","name":"Madrid"},"162":{"code":"Malaga","name":"Malaga"},"163":{"code":"Melilla","name":"Melilla"},"164":{"code":"Murcia","name":"Murcia"},"165":{"code":"Navarra","name":"Navarra"},"166":{"code":"Ourense","name":"Ourense"},"167":{"code":"Palencia","name":"Palencia"},"168":{"code":"Pontevedra","name":"Pontevedra"},"169":{"code":"Salamanca","name":"Salamanca"},"170":{"code":"Santa Cruz de Tenerife","name":"Santa Cruz de Tenerife"},"171":{"code":"Segovia","name":"Segovia"},"172":{"code":"Sevilla","name":"Sevilla"},"173":{"code":"Soria","name":"Soria"},"174":{"code":"Tarragona","name":"Tarragona"},"175":{"code":"Teruel","name":"Teruel"},"176":{"code":"Toledo","name":"Toledo"},"177":{"code":"Valencia","name":"Valencia"},"178":{"code":"Valladolid","name":"Valladolid"},"179":{"code":"Vizcaya","name":"Vizcaya"},"180":{"code":"Zamora","name":"Zamora"},"181":{"code":"Zaragoza","name":"Zaragoza"}}},"FI":{"name":"Finland","regions":{"339":{"code":"Ahvenanmaa","name":"Ahvenanmaa"},"333":{"code":"Etel\u00e4-Karjala","name":"Etel\u00e4-Karjala"},"326":{"code":"Etel\u00e4-Pohjanmaa","name":"Etel\u00e4-Pohjanmaa"},"325":{"code":"Etel\u00e4-Savo","name":"Etel\u00e4-Savo"},"337":{"code":"It\u00e4-Uusimaa","name":"It\u00e4-Uusimaa"},"322":{"code":"Kainuu","name":"Kainuu"},"335":{"code":"Kanta-H\u00e4me","name":"Kanta-H\u00e4me"},"330":{"code":"Keski-Pohjanmaa","name":"Keski-Pohjanmaa"},"331":{"code":"Keski-Suomi","name":"Keski-Suomi"},"338":{"code":"Kymenlaakso","name":"Kymenlaakso"},"320":{"code":"Lappi","name":"Lappi"},"334":{"code":"P\u00e4ij\u00e4t-H\u00e4me","name":"P\u00e4ij\u00e4t-H\u00e4me"},"328":{"code":"Pirkanmaa","name":"Pirkanmaa"},"327":{"code":"Pohjanmaa","name":"Pohjanmaa"},"323":{"code":"Pohjois-Karjala","name":"Pohjois-Karjala"},"321":{"code":"Pohjois-Pohjanmaa","name":"Pohjois-Pohjanmaa"},"324":{"code":"Pohjois-Savo","name":"Pohjois-Savo"},"329":{"code":"Satakunta","name":"Satakunta"},"336":{"code":"Uusimaa","name":"Uusimaa"},"332":{"code":"Varsinais-Suomi","name":"Varsinais-Suomi"}}},"FR":{"name":"Frankrijk","regions":{"182":{"code":"1","name":"Ain"},"183":{"code":"2","name":"Aisne"},"184":{"code":"3","name":"Allier"},"185":{"code":"4","name":"Alpes-de-Haute-Provence"},"187":{"code":"6","name":"Alpes-Maritimes"},"188":{"code":"7","name":"Ard\u00e8che"},"189":{"code":"8","name":"Ardennes"},"190":{"code":"9","name":"Ari\u00e8ge"},"191":{"code":"10","name":"Aube"},"192":{"code":"11","name":"Aude"},"193":{"code":"12","name":"Aveyron"},"249":{"code":"67","name":"Bas-Rhin"},"194":{"code":"13","name":"Bouches-du-Rh\u00f4ne"},"195":{"code":"14","name":"Calvados"},"196":{"code":"15","name":"Cantal"},"197":{"code":"16","name":"Charente"},"198":{"code":"17","name":"Charente-Maritime"},"199":{"code":"18","name":"Cher"},"200":{"code":"19","name":"Corr\u00e8ze"},"201":{"code":"2A","name":"Corse-du-Sud"},"203":{"code":"21","name":"C\u00f4te-d'Or"},"204":{"code":"22","name":"C\u00f4tes-d'Armor"},"205":{"code":"23","name":"Creuse"},"261":{"code":"79","name":"Deux-S\u00e8vres"},"206":{"code":"24","name":"Dordogne"},"207":{"code":"25","name":"Doubs"},"208":{"code":"26","name":"Dr\u00f4me"},"273":{"code":"91","name":"Essonne"},"209":{"code":"27","name":"Eure"},"210":{"code":"28","name":"Eure-et-Loir"},"211":{"code":"29","name":"Finist\u00e8re"},"212":{"code":"30","name":"Gard"},"214":{"code":"32","name":"Gers"},"215":{"code":"33","name":"Gironde"},"250":{"code":"68","name":"Haut-Rhin"},"202":{"code":"2B","name":"Haute-Corse"},"213":{"code":"31","name":"Haute-Garonne"},"225":{"code":"43","name":"Haute-Loire"},"234":{"code":"52","name":"Haute-Marne"},"252":{"code":"70","name":"Haute-Sa\u00f4ne"},"256":{"code":"74","name":"Haute-Savoie"},"269":{"code":"87","name":"Haute-Vienne"},"186":{"code":"5","name":"Hautes-Alpes"},"247":{"code":"65","name":"Hautes-Pyr\u00e9n\u00e9es"},"274":{"code":"92","name":"Hauts-de-Seine"},"216":{"code":"34","name":"H\u00e9rault"},"217":{"code":"35","name":"Ille-et-Vilaine"},"218":{"code":"36","name":"Indre"},"219":{"code":"37","name":"Indre-et-Loire"},"220":{"code":"38","name":"Is\u00e8re"},"221":{"code":"39","name":"Jura"},"222":{"code":"40","name":"Landes"},"223":{"code":"41","name":"Loir-et-Cher"},"224":{"code":"42","name":"Loire"},"226":{"code":"44","name":"Loire-Atlantique"},"227":{"code":"45","name":"Loiret"},"228":{"code":"46","name":"Lot"},"229":{"code":"47","name":"Lot-et-Garonne"},"230":{"code":"48","name":"Loz\u00e8re"},"231":{"code":"49","name":"Maine-et-Loire"},"232":{"code":"50","name":"Manche"},"233":{"code":"51","name":"Marne"},"235":{"code":"53","name":"Mayenne"},"236":{"code":"54","name":"Meurthe-et-Moselle"},"237":{"code":"55","name":"Meuse"},"238":{"code":"56","name":"Morbihan"},"239":{"code":"57","name":"Moselle"},"240":{"code":"58","name":"Ni\u00e8vre"},"241":{"code":"59","name":"Nord"},"242":{"code":"60","name":"Oise"},"243":{"code":"61","name":"Orne"},"257":{"code":"75","name":"Paris"},"244":{"code":"62","name":"Pas-de-Calais"},"245":{"code":"63","name":"Puy-de-D\u00f4me"},"246":{"code":"64","name":"Pyr\u00e9n\u00e9es-Atlantiques"},"248":{"code":"66","name":"Pyr\u00e9n\u00e9es-Orientales"},"251":{"code":"69","name":"Rh\u00f4ne"},"253":{"code":"71","name":"Sa\u00f4ne-et-Loire"},"254":{"code":"72","name":"Sarthe"},"255":{"code":"73","name":"Savoie"},"259":{"code":"77","name":"Seine-et-Marne"},"258":{"code":"76","name":"Seine-Maritime"},"275":{"code":"93","name":"Seine-Saint-Denis"},"262":{"code":"80","name":"Somme"},"263":{"code":"81","name":"Tarn"},"264":{"code":"82","name":"Tarn-et-Garonne"},"272":{"code":"90","name":"Territoire-de-Belfort"},"277":{"code":"95","name":"Val-d'Oise"},"276":{"code":"94","name":"Val-de-Marne"},"265":{"code":"83","name":"Var"},"266":{"code":"84","name":"Vaucluse"},"267":{"code":"85","name":"Vend\u00e9e"},"268":{"code":"86","name":"Vienne"},"270":{"code":"88","name":"Vosges"},"271":{"code":"89","name":"Yonne"},"260":{"code":"78","name":"Yvelines"}}},"GB":{"name":"Verenigd Koninkrijk"},"GR":{"name":"Griekenland","regions":{"623":{"code":"GR-69","name":"\u00c1gion \u00d3ros"},"610":{"code":"GR-A","name":"Anatolik\u00ed Makedon\u00eda kai Thr\u00e1ki"},"611":{"code":"GR-I","name":"Attik\u00ed"},"612":{"code":"GR-G","name":"Dytik\u00ed Ell\u00e1da"},"613":{"code":"GR-C","name":"Dytik\u00ed Makedon\u00eda"},"614":{"code":"GR-F","name":"Ion\u00eda N\u00edsia"},"615":{"code":"GR-D","name":"\u00cdpeiros"},"616":{"code":"GR-B","name":"Kentrik\u00ed Makedon\u00eda"},"617":{"code":"GR-M","name":"Kr\u00edti"},"618":{"code":"GR-L","name":"N\u00f3tio Aiga\u00edo"},"619":{"code":"GR-J","name":"Pelop\u00f3nnisos"},"620":{"code":"GR-H","name":"Stere\u00e1 Ell\u00e1da"},"621":{"code":"GR-E","name":"Thessal\u00eda"},"622":{"code":"GR-K","name":"V\u00f3reio Aiga\u00edo"}}},"LU":{"name":"Luxemburg"},"NL":{"name":"Nederland"},"NO":{"name":"Noorwegen"},"PL":{"name":"Polen"},"PT":{"name":"Portugal","regions":{"796":{"code":"PT-01","name":"Aveiro"},"797":{"code":"PT-02","name":"Beja"},"798":{"code":"PT-03","name":"Braga"},"799":{"code":"PT-04","name":"Bragan\u00e7a"},"800":{"code":"PT-05","name":"Castelo Branco"},"801":{"code":"PT-06","name":"Coimbra"},"802":{"code":"PT-07","name":"\u00c9vora"},"803":{"code":"PT-08","name":"Faro"},"804":{"code":"PT-09","name":"Guarda"},"805":{"code":"PT-10","name":"Leiria"},"806":{"code":"PT-11","name":"Lisboa"},"807":{"code":"PT-12","name":"Portalegre"},"808":{"code":"PT-13","name":"Porto"},"815":{"code":"PT-30","name":"Regi\u00e3o Aut\u00f3noma da Madeira"},"814":{"code":"PT-20","name":"Regi\u00e3o Aut\u00f3noma dos A\u00e7ores"},"809":{"code":"PT-14","name":"Santar\u00e9m"},"810":{"code":"PT-15","name":"Set\u00fabal"},"811":{"code":"PT-16","name":"Viana do Castelo"},"812":{"code":"PT-17","name":"Vila Real"},"813":{"code":"PT-18","name":"Viseu"}}},"SE":{"name":"Zweden","regions":{"826":{"code":"SE-K","name":"Blekinge l\u00e4n"},"827":{"code":"SE-W","name":"Dalarnas l\u00e4n"},"829":{"code":"SE-X","name":"G\u00e4vleborgs l\u00e4n"},"828":{"code":"SE-I","name":"Gotlands l\u00e4n"},"830":{"code":"SE-N","name":"Hallands l\u00e4n"},"831":{"code":"SE-Z","name":"J\u00e4mtlands l\u00e4n"},"832":{"code":"SE-F","name":"J\u00f6nk\u00f6pings l\u00e4n"},"833":{"code":"SE-H","name":"Kalmar l\u00e4n"},"834":{"code":"SE-G","name":"Kronobergs l\u00e4n"},"835":{"code":"SE-BD","name":"Norrbottens l\u00e4n"},"845":{"code":"SE-T","name":"\u00d6rebro l\u00e4n"},"846":{"code":"SE-E","name":"\u00d6sterg\u00f6tlands l\u00e4n"},"836":{"code":"SE-M","name":"Sk\u00e5ne l\u00e4n"},"838":{"code":"SE-D","name":"S\u00f6dermanlands l\u00e4n"},"837":{"code":"SE-AB","name":"Stockholms l\u00e4n"},"839":{"code":"SE-C","name":"Uppsala l\u00e4n"},"840":{"code":"SE-S","name":"V\u00e4rmlands l\u00e4n"},"841":{"code":"SE-AC","name":"V\u00e4sterbottens l\u00e4n"},"842":{"code":"SE-Y","name":"V\u00e4sternorrlands l\u00e4n"},"843":{"code":"SE-U","name":"V\u00e4stmanlands l\u00e4n"},"844":{"code":"SE-O","name":"V\u00e4stra G\u00f6talands l\u00e4n"}}},"data_id":1754815314},"captcha":[],"instant-purchase":[],"loggedAsCustomer":[],"persistent":[],"review":[],"payments":[],"wishlist":{"items":[]},"hyva_checkout":[],"wp_ga4":[],"recently_viewed_product":[],"recently_compared_product":[],"product_data_storage":[],"paypal-billing-agreement":[]}</script>
<script>
'use strict';
function GoogleAnalytics () {
let self = this;
this.config = {
isCookieRestrictionModeEnabled: 1,
currentWebsite: 1,
cookieName: "user_allowed_save_cookie",
ordersTrackingData: [],
pageTrackingData: {"optPageUrl":"","isAnonymizedIpActive":false,"accountId":"UA-41059904-1"},
}
this.initGoogleAnalytics = function () {
let allowServices = false,
allowedCookies,
allowedWebsites;
if (self.config.isCookieRestrictionModeEnabled) {
allowedCookies = hyva.getCookie(self.config.cookieName);
if (allowedCookies !== null) {
allowedWebsites = JSON.parse(decodeURIComponent(allowedCookies));
if (allowedWebsites[self.config.currentWebsite] === 1) {
allowServices = true;
}
}
} else {
allowServices = true;
}
if (allowServices) {
(function (i, s, o, g, r, a, m) {
i.GoogleAnalyticsObject = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.defer = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
// Process page info
ga('create', self.config.pageTrackingData.accountId, 'auto');
if (self.config.pageTrackingData.isAnonymizedIpActive) {
ga('set', 'anonymizeIp', true);
}
// Process orders data
if (self.config.ordersTrackingData.hasOwnProperty('currency')) {
ga('require', 'ec', 'ec.js');
ga('set', 'currencyCode', self.config.ordersTrackingData.currency);
// Collect product data for GA
if (self.config.ordersTrackingData.products) {
self.config.ordersTrackingData.products.forEach(function (value) {
ga('ec:addProduct', value);
});
}
// Collect orders data for GA
if (self.config.ordersTrackingData.orders) {
self.config.ordersTrackingData.orders.forEach(function (value) {
ga('ec:setAction', 'purchase', value);
});
}
ga('send', 'pageview');
} else {
// Process Data if not orders
ga('send', 'pageview' + self.config.pageTrackingData.optPageUrl);
}
}
};
}
window.addEventListener("load", new GoogleAnalytics().initGoogleAnalytics);
</script>
</div></body>
</html>